Class: Google::Apis::DfareportingV2_7::OrderDocumentsListResponse
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_7::OrderDocumentsListResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_7/classes.rb,
generated/google/apis/dfareporting_v2_7/representations.rb,
generated/google/apis/dfareporting_v2_7/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_7::OrderDocument>
Order document collection Corresponds to the JSON property
orderDocuments
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OrderDocumentsListResponse
constructor
A new instance of OrderDocumentsListResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ OrderDocumentsListResponse
Returns a new instance of OrderDocumentsListResponse
7786 7787 7788 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 7786 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
7774 7775 7776 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 7774 def kind @kind end |
#next_page_token ⇒ String
Pagination token to be used for the next list operation.
Corresponds to the JSON property nextPageToken
7779 7780 7781 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 7779 def next_page_token @next_page_token end |
#order_documents ⇒ Array<Google::Apis::DfareportingV2_7::OrderDocument>
Order document collection
Corresponds to the JSON property orderDocuments
7784 7785 7786 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 7784 def order_documents @order_documents end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7791 7792 7793 7794 7795 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 7791 def update!(**args) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @order_documents = args[:order_documents] if args.key?(:order_documents) end |