Class: Google::Apis::AndroiddeviceprovisioningV1::ListCustomersResponse

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 of all customers related to this partner.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListCustomersResponse

Returns a new instance of ListCustomersResponse.



1058
1059
1060
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 1058

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

Instance Attribute Details

#customersArray<Google::Apis::AndroiddeviceprovisioningV1::Company>

List of customers related to this reseller partner. Corresponds to the JSON property customers



1045
1046
1047
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 1045

def customers
  @customers
end

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


1051
1052
1053
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 1051

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)


1056
1057
1058
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 1056

def total_size
  @total_size
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1063
1064
1065
1066
1067
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 1063

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