class Google::Apis::SmartdevicemanagementV1::GoogleHomeEnterpriseSdmV1ExecuteDeviceCommandRequest

Request message for SmartDeviceManagementService.ExecuteDeviceCommand

Attributes

command[RW]

The command name to execute, represented by the fully qualified protobuf message name. Corresponds to the JSON property `command` @return [String]

params[RW]

The command message to execute, represented as a Struct. Corresponds to the JSON property `params` @return [Hash<String,Object>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/smartdevicemanagement_v1/classes.rb, line 82
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/smartdevicemanagement_v1/classes.rb, line 87
def update!(**args)
  @command = args[:command] if args.key?(:command)
  @params = args[:params] if args.key?(:params)
end