Class: Google::Apis::AndroiddeviceprovisioningV1::ListVendorsResponse

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

Response message to list vendors of the partner.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListVendorsResponse

Returns a new instance of ListVendorsResponse.



1169
1170
1171
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 1169

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

Instance Attribute Details

#next_page_tokenString

A token to retrieve the next page of results. Omitted if no further results are available. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1156
1157
1158
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 1156

def next_page_token
  @next_page_token
end

#total_sizeFixnum

The total count of items in the list irrespective of pagination. Corresponds to the JSON property totalSize

Returns:

  • (Fixnum)


1161
1162
1163
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 1161

def total_size
  @total_size
end

#vendorsArray<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



1167
1168
1169
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 1167

def vendors
  @vendors
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1174
1175
1176
1177
1178
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 1174

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