Class: Google::Apis::ProximitybeaconV1beta1::ListDiagnosticsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ProximitybeaconV1beta1::ListDiagnosticsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/proximitybeacon_v1beta1/classes.rb,
generated/google/apis/proximitybeacon_v1beta1/representations.rb,
generated/google/apis/proximitybeacon_v1beta1/representations.rb
Overview
Response that contains the requested diagnostics.
Instance Attribute Summary collapse
-
#diagnostics ⇒ Array<Google::Apis::ProximitybeaconV1beta1::Diagnostics>
The diagnostics matching the given request.
-
#next_page_token ⇒ String
Token that can be used for pagination.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListDiagnosticsResponse
constructor
A new instance of ListDiagnosticsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListDiagnosticsResponse
Returns a new instance of ListDiagnosticsResponse.
555 556 557 |
# File 'generated/google/apis/proximitybeacon_v1beta1/classes.rb', line 555 def initialize(**args) update!(**args) end |
Instance Attribute Details
#diagnostics ⇒ Array<Google::Apis::ProximitybeaconV1beta1::Diagnostics>
The diagnostics matching the given request.
Corresponds to the JSON property diagnostics
547 548 549 |
# File 'generated/google/apis/proximitybeacon_v1beta1/classes.rb', line 547 def diagnostics @diagnostics end |
#next_page_token ⇒ String
Token that can be used for pagination. Returned only if the request matches
more beacons than can be returned in this response.
Corresponds to the JSON property nextPageToken
553 554 555 |
# File 'generated/google/apis/proximitybeacon_v1beta1/classes.rb', line 553 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
560 561 562 563 |
# File 'generated/google/apis/proximitybeacon_v1beta1/classes.rb', line 560 def update!(**args) @diagnostics = args[:diagnostics] if args.key?(:diagnostics) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |