Class: Google::Apis::AndroidpublisherV3::ListSubscriptionOffersResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AndroidpublisherV3::ListSubscriptionOffersResponse
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/androidpublisher_v3/classes.rb,
lib/google/apis/androidpublisher_v3/representations.rb,
lib/google/apis/androidpublisher_v3/representations.rb 
Overview
Response message for ListSubscriptionOffers.
Instance Attribute Summary collapse
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A token, which can be sent as
page_tokento retrieve the next page. - 
  
    
      #subscription_offers  ⇒ Array<Google::Apis::AndroidpublisherV3::SubscriptionOffer> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The subscription offers from the specified subscription.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListSubscriptionOffersResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ListSubscriptionOffersResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ ListSubscriptionOffersResponse
Returns a new instance of ListSubscriptionOffersResponse.
      3511 3512 3513  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3511 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#next_page_token ⇒ String
A token, which can be sent as page_token to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
      3504 3505 3506  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3504 def next_page_token @next_page_token end  | 
  
#subscription_offers ⇒ Array<Google::Apis::AndroidpublisherV3::SubscriptionOffer>
The subscription offers from the specified subscription.
Corresponds to the JSON property subscriptionOffers
      3509 3510 3511  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3509 def subscription_offers @subscription_offers end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3516 3517 3518 3519  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3516 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @subscription_offers = args[:subscription_offers] if args.key?(:subscription_offers) end  |