Class: Google::Apis::DfareportingV2_1::ListOrderDocumentsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_1::ListOrderDocumentsResponse
- 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
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#next_page_token ⇒ String
Pagination token to be used for the next list operation.
-
#order_documents ⇒ Array<Google::Apis::DfareportingV2_1::OrderDocument>
Order document collection Corresponds to the JSON property
orderDocuments
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListOrderDocumentsResponse
constructor
A new instance of ListOrderDocumentsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::Hashable
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
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#orderDocumentsListResponse".
Corresponds to the JSON property kind
7068 7069 7070 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 7068 def kind @kind end |
#next_page_token ⇒ String
Pagination token to be used for the next list operation.
Corresponds to the JSON property nextPageToken
7073 7074 7075 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 7073 def next_page_token @next_page_token end |
#order_documents ⇒ Array<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 |