Class: Google::Apis::DfareportingV3_5::OrderDocumentsListResponse

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

Overview

Order document List Response

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ OrderDocumentsListResponse

Returns a new instance of OrderDocumentsListResponse.



8209
8210
8211
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 8209

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)


8197
8198
8199
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 8197

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)


8202
8203
8204
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 8202

def next_page_token
  @next_page_token
end

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

Order document collection Corresponds to the JSON property orderDocuments



8207
8208
8209
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 8207

def order_documents
  @order_documents
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8214
8215
8216
8217
8218
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 8214

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