Class: Google::Apis::HomegraphV1::SyncResponse
- Inherits:
-
Object
- Object
- Google::Apis::HomegraphV1::SyncResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/homegraph_v1/classes.rb,
generated/google/apis/homegraph_v1/representations.rb,
generated/google/apis/homegraph_v1/representations.rb
Overview
Response type for the Sync
call. This should follow the same format as the Google smart home action.
devices.SYNC
response. # Example json ` "requestId": "ff36a3cc-ec34-11e6-
b1a0-64510650abcf", "payload": ` "agentUserId": "1836.15267389", "devices": [`
"id": "123", "type": "action.devices.types.OUTLET", "traits": [ "action.
devices.traits.OnOff" ], "name": ` "defaultNames": ["My Outlet 1234"], "name":
"Night light", "nicknames": ["wall plug"] `, "willReportState": false, "
deviceInfo": ` "manufacturer": "lights-out-inc", "model": "hs1234", "hwVersion"
: "3.2", "swVersion": "11.4" `, "customData": ` "fooValue": 74, "barValue":
true, "bazValue": "foo" ` `] ` `
Instance Attribute Summary collapse
-
#payload ⇒ Google::Apis::HomegraphV1::SyncResponsePayload
Payload containing device information.
-
#request_id ⇒ String
Request ID used for debugging.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SyncResponse
constructor
A new instance of SyncResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SyncResponse
Returns a new instance of SyncResponse.
590 591 592 |
# File 'generated/google/apis/homegraph_v1/classes.rb', line 590 def initialize(**args) update!(**args) end |
Instance Attribute Details
#payload ⇒ Google::Apis::HomegraphV1::SyncResponsePayload
Payload containing device information.
Corresponds to the JSON property payload
583 584 585 |
# File 'generated/google/apis/homegraph_v1/classes.rb', line 583 def payload @payload end |
#request_id ⇒ String
Request ID used for debugging. Copied from the request.
Corresponds to the JSON property requestId
588 589 590 |
# File 'generated/google/apis/homegraph_v1/classes.rb', line 588 def request_id @request_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
595 596 597 598 |
# File 'generated/google/apis/homegraph_v1/classes.rb', line 595 def update!(**args) @payload = args[:payload] if args.key?(:payload) @request_id = args[:request_id] if args.key?(:request_id) end |