Class: Google::Apis::DfareportingV2_1::ListOrderDocumentsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable
Defined in:
generated/google/apis/dfareporting_v2_1/classes.rb,
generated/google/apis/dfareporting_v2_1/representations.rb,
generated/google/apis/dfareporting_v2_1/representations.rb

Overview

Order document List Response

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ListOrderDocumentsResponse

Returns a new instance of ListOrderDocumentsResponse.



7080
7081
7082
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 7080

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

Instance Attribute Details

#kindString

Identifies what kind of resource this is. Value: the fixed string " dfareporting#orderDocumentsListResponse". Corresponds to the JSON property kind

Returns:

  • (String)


7068
7069
7070
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 7068

def kind
  @kind
end

#next_page_tokenString

Pagination token to be used for the next list operation. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


7073
7074
7075
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 7073

def next_page_token
  @next_page_token
end

#order_documentsArray<Google::Apis::DfareportingV2_1::OrderDocument>

Order document collection Corresponds to the JSON property orderDocuments



7078
7079
7080
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 7078

def order_documents
  @order_documents
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7085
7086
7087
7088
7089
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 7085

def update!(**args)
  @kind = args[:kind] unless args[:kind].nil?
  @next_page_token = args[:next_page_token] unless args[:next_page_token].nil?
  @order_documents = args[:order_documents] unless args[:order_documents].nil?
end