GoogleApi.HomeGraph.V1.Model.SyncResponse (google_api_home_graph v0.9.0) View Source

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" } }] } }

Attributes

  • payload (type: GoogleApi.HomeGraph.V1.Model.SyncResponsePayload.t, default: nil) - Devices associated with the third-party user.
  • requestId (type: String.t, default: nil) - Request ID used for debugging. Copied from the request.

Link to this section Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Link to this section Types

Specs

t() :: %GoogleApi.HomeGraph.V1.Model.SyncResponse{
  payload: GoogleApi.HomeGraph.V1.Model.SyncResponsePayload.t(),
  requestId: String.t()
}

Link to this section Functions

Specs

decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.