Class: Google::Apis::AndroiddeviceprovisioningV1::ListCustomersResponse
- Inherits:
-
Object
- Object
- Google::Apis::AndroiddeviceprovisioningV1::ListCustomersResponse
- 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
Response message of all customers related to this partner.
Instance Attribute Summary collapse
-
#customers ⇒ Array<Google::Apis::AndroiddeviceprovisioningV1::Company>
List of customers related to this reseller partner.
-
#next_page_token ⇒ String
A token to retrieve the next page of results.
-
#total_size ⇒ Fixnum
The total count of items in the list irrespective of pagination.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListCustomersResponse
constructor
A new instance of ListCustomersResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListCustomersResponse
Returns a new instance of ListCustomersResponse.
1116 1117 1118 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 1116 def initialize(**args) update!(**args) end |
Instance Attribute Details
#customers ⇒ Array<Google::Apis::AndroiddeviceprovisioningV1::Company>
List of customers related to this reseller partner.
Corresponds to the JSON property customers
1103 1104 1105 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 1103 def customers @customers end |
#next_page_token ⇒ String
A token to retrieve the next page of results. Omitted if no further results
are available.
Corresponds to the JSON property nextPageToken
1109 1110 1111 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 1109 def next_page_token @next_page_token end |
#total_size ⇒ Fixnum
The total count of items in the list irrespective of pagination.
Corresponds to the JSON property totalSize
1114 1115 1116 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 1114 def total_size @total_size end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1121 1122 1123 1124 1125 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 1121 def update!(**args) @customers = args[:customers] if args.key?(:customers) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @total_size = args[:total_size] if args.key?(:total_size) end |