Class: Google::Apis::AndroiddeviceprovisioningV1::ListVendorsResponse
- Inherits:
-
Object
- Object
- Google::Apis::AndroiddeviceprovisioningV1::ListVendorsResponse
- 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 to list vendors of the partner.
Instance Attribute Summary collapse
-
#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.
-
#vendors ⇒ Array<Google::Apis::AndroiddeviceprovisioningV1::Company>
List of vendors of the reseller partner.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListVendorsResponse
constructor
A new instance of ListVendorsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListVendorsResponse
Returns a new instance of ListVendorsResponse.
1123 1124 1125 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 1123 def initialize(**args) update!(**args) end |
Instance Attribute Details
#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
1110 1111 1112 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 1110 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
1115 1116 1117 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 1115 def total_size @total_size end |
#vendors ⇒ Array<Google::Apis::AndroiddeviceprovisioningV1::Company>
List of vendors of the reseller partner. Fields name, companyId and
companyName are populated to the Company object.
Corresponds to the JSON property vendors
1121 1122 1123 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 1121 def vendors @vendors end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1128 1129 1130 1131 1132 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 1128 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @total_size = args[:total_size] if args.key?(:total_size) @vendors = args[:vendors] if args.key?(:vendors) end |