Class: Google::Apis::AndroiddeviceprovisioningV1::FindDevicesByOwnerRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/androiddeviceprovisioning_v1/classes.rb,
lib/google/apis/androiddeviceprovisioning_v1/representations.rb,
lib/google/apis/androiddeviceprovisioning_v1/representations.rb

Overview

Request to find devices by customers.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ FindDevicesByOwnerRequest

Returns a new instance of FindDevicesByOwnerRequest.



910
911
912
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 910

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

Instance Attribute Details

#customer_idArray<Fixnum>

Required. The list of customer IDs to search for. Corresponds to the JSON property customerId

Returns:

  • (Array<Fixnum>)


892
893
894
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 892

def customer_id
  @customer_id
end

#limitFixnum

Required. The maximum number of devices to show in a page of results. Must be between 1 and 100 inclusive. Corresponds to the JSON property limit

Returns:

  • (Fixnum)


898
899
900
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 898

def limit
  @limit
end

#page_tokenString

A token specifying which result page to return. Corresponds to the JSON property pageToken

Returns:

  • (String)


903
904
905
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 903

def page_token
  @page_token
end

#section_typeString

Required. The section type of the device's provisioning record. Corresponds to the JSON property sectionType

Returns:

  • (String)


908
909
910
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 908

def section_type
  @section_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



915
916
917
918
919
920
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 915

def update!(**args)
  @customer_id = args[:customer_id] if args.key?(:customer_id)
  @limit = args[:limit] if args.key?(:limit)
  @page_token = args[:page_token] if args.key?(:page_token)
  @section_type = args[:section_type] if args.key?(:section_type)
end