Class: Google::Apis::AndroiddeviceprovisioningV1::CustomerListCustomersResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AndroiddeviceprovisioningV1::CustomerListCustomersResponse
 
- 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 for listing my customers.
Instance Attribute Summary collapse
- 
  
    
      #customers  ⇒ Array<Google::Apis::AndroiddeviceprovisioningV1::Company> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The customer accounts the calling user is a member of. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A token used to access the next page of results. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CustomerListCustomersResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of CustomerListCustomersResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CustomerListCustomersResponse
Returns a new instance of CustomerListCustomersResponse
| 340 341 342 | # File 'generated/google/apis/androiddeviceprovisioning_v1/classes.rb', line 340 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#customers ⇒ Array<Google::Apis::AndroiddeviceprovisioningV1::Company>
The customer accounts the calling user is a member of.
Corresponds to the JSON property customers
| 332 333 334 | # File 'generated/google/apis/androiddeviceprovisioning_v1/classes.rb', line 332 def customers @customers end | 
#next_page_token ⇒ String
A token used to access the next page of results. Omitted if no further
results are available.
Corresponds to the JSON property nextPageToken
| 338 339 340 | # File 'generated/google/apis/androiddeviceprovisioning_v1/classes.rb', line 338 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 345 346 347 348 | # File 'generated/google/apis/androiddeviceprovisioning_v1/classes.rb', line 345 def update!(**args) @customers = args[:customers] if args.key?(:customers) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |