Class: Google::Apis::HomegraphV1::SyncResponsePayload

Inherits:
Object
  • Object
show all
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

Payload containing device information.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ SyncResponsePayload

Returns a new instance of SyncResponsePayload.



694
695
696
# File 'generated/google/apis/homegraph_v1/classes.rb', line 694

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#agent_user_idString

Third-party user ID Corresponds to the JSON property agentUserId

Returns:

  • (String)


687
688
689
# File 'generated/google/apis/homegraph_v1/classes.rb', line 687

def agent_user_id
  @agent_user_id
end

#devicesArray<Google::Apis::HomegraphV1::Device>

Devices associated with the third-party user. Corresponds to the JSON property devices



692
693
694
# File 'generated/google/apis/homegraph_v1/classes.rb', line 692

def devices
  @devices
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



699
700
701
702
# File 'generated/google/apis/homegraph_v1/classes.rb', line 699

def update!(**args)
  @agent_user_id = args[:agent_user_id] if args.key?(:agent_user_id)
  @devices = args[:devices] if args.key?(:devices)
end