Class: Google::Apis::AndroiddeviceprovisioningV1::ListVendorCustomersResponse
- Inherits:
-
Object
- Object
- Google::Apis::AndroiddeviceprovisioningV1::ListVendorCustomersResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androiddeviceprovisioning_v1/classes.rb,
generated/google/apis/androiddeviceprovisioning_v1/representations.rb,
generated/google/apis/androiddeviceprovisioning_v1/representations.rb
Overview
Response message to list customers of the vendor.
Instance Attribute Summary collapse
-
#customers ⇒ Array<Google::Apis::AndroiddeviceprovisioningV1::Company>
List of customers of the vendor.
-
#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) ⇒ ListVendorCustomersResponse
constructor
A new instance of ListVendorCustomersResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListVendorCustomersResponse
Returns a new instance of ListVendorCustomersResponse
981 982 983 |
# File 'generated/google/apis/androiddeviceprovisioning_v1/classes.rb', line 981 def initialize(**args) update!(**args) end |
Instance Attribute Details
#customers ⇒ Array<Google::Apis::AndroiddeviceprovisioningV1::Company>
List of customers of the vendor.
Corresponds to the JSON property customers
968 969 970 |
# File 'generated/google/apis/androiddeviceprovisioning_v1/classes.rb', line 968 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
974 975 976 |
# File 'generated/google/apis/androiddeviceprovisioning_v1/classes.rb', line 974 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
979 980 981 |
# File 'generated/google/apis/androiddeviceprovisioning_v1/classes.rb', line 979 def total_size @total_size end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
986 987 988 989 990 |
# File 'generated/google/apis/androiddeviceprovisioning_v1/classes.rb', line 986 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 |