Class: Google::Apis::DfareportingV3_3::OrderDocumentsListResponse

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

Overview

Order document List Response

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ OrderDocumentsListResponse

Returns a new instance of OrderDocumentsListResponse.



8004
8005
8006
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 8004

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)


7992
7993
7994
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 7992

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)


7997
7998
7999
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 7997

def next_page_token
  @next_page_token
end

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

Order document collection Corresponds to the JSON property orderDocuments



8002
8003
8004
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 8002

def order_documents
  @order_documents
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8009
8010
8011
8012
8013
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 8009

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