Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1ListTransferableSkusResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::CloudchannelV1::GoogleCloudChannelV1ListTransferableSkusResponse
 
 
- Includes:
 - Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/cloudchannel_v1/classes.rb,
lib/google/apis/cloudchannel_v1/representations.rb,
lib/google/apis/cloudchannel_v1/representations.rb 
Overview
Response message for CloudChannelService.ListTransferableSkus.
Instance Attribute Summary collapse
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A token to retrieve the next page of results.
 - 
  
    
      #transferable_skus  ⇒ Array<Google::Apis::CloudchannelV1::GoogleCloudChannelV1TransferableSku> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Information about existing SKUs for a customer that needs a transfer.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudChannelV1ListTransferableSkusResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudChannelV1ListTransferableSkusResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudChannelV1ListTransferableSkusResponse
Returns a new instance of GoogleCloudChannelV1ListTransferableSkusResponse.
      2048 2049 2050  | 
    
      # File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2048 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#next_page_token ⇒ String
A token to retrieve the next page of results. Pass to
ListTransferableSkusRequest.page_token to obtain that page.
Corresponds to the JSON property nextPageToken
      2041 2042 2043  | 
    
      # File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2041 def next_page_token @next_page_token end  | 
  
#transferable_skus ⇒ Array<Google::Apis::CloudchannelV1::GoogleCloudChannelV1TransferableSku>
Information about existing SKUs for a customer that needs a transfer.
Corresponds to the JSON property transferableSkus
      2046 2047 2048  | 
    
      # File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2046 def transferable_skus @transferable_skus end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2053 2054 2055 2056  | 
    
      # File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2053 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @transferable_skus = args[:transferable_skus] if args.key?(:transferable_skus) end  |