Class: Google::Apis::DfareportingV2_6::ListOrderDocumentsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_6::ListOrderDocumentsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_6/classes.rb,
generated/google/apis/dfareporting_v2_6/representations.rb,
generated/google/apis/dfareporting_v2_6/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_6::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::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListOrderDocumentsResponse
Returns a new instance of ListOrderDocumentsResponse.
7742 7743 7744 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 7742 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
7730 7731 7732 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 7730 def kind @kind end |
#next_page_token ⇒ String
Pagination token to be used for the next list operation.
Corresponds to the JSON property nextPageToken
7735 7736 7737 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 7735 def next_page_token @next_page_token end |
#order_documents ⇒ Array<Google::Apis::DfareportingV2_6::OrderDocument>
Order document collection
Corresponds to the JSON property orderDocuments
7740 7741 7742 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 7740 def order_documents @order_documents end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7747 7748 7749 7750 7751 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 7747 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 |