Class: Google::Apis::ContentV2::OrderreportsListDisbursementsResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContentV2::OrderreportsListDisbursementsResponse
 
 
- Defined in:
 - generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/representations.rb 
Instance Attribute Summary collapse
- 
  
    
      #disbursements  ⇒ Array<Google::Apis::ContentV2::OrderReportDisbursement> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The list of disbursements.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Identifies what kind of resource this is.
 - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The token for the retrieval of the next page of disbursements.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ OrderreportsListDisbursementsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of OrderreportsListDisbursementsResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ OrderreportsListDisbursementsResponse
Returns a new instance of OrderreportsListDisbursementsResponse
      5290 5291 5292  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 5290 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#disbursements ⇒ Array<Google::Apis::ContentV2::OrderReportDisbursement>
The list of disbursements.
Corresponds to the JSON property disbursements
      5277 5278 5279  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 5277 def disbursements @disbursements end  | 
  
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "content#
orderreportsListDisbursementsResponse".
Corresponds to the JSON property kind
      5283 5284 5285  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 5283 def kind @kind end  | 
  
#next_page_token ⇒ String
The token for the retrieval of the next page of disbursements.
Corresponds to the JSON property nextPageToken
      5288 5289 5290  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 5288 def next_page_token @next_page_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      5295 5296 5297 5298 5299  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 5295 def update!(**args) @disbursements = args[:disbursements] if args.key?(:disbursements) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end  |