Class: Google::Apis::DfareportingV2_3::Order

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

Overview

Describes properties of a DoubleClick Planning order.

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) ⇒ Order

Returns a new instance of Order.



6952
6953
6954
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6952

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#account_idString

Account ID of this order. Corresponds to the JSON property accountId

Returns:

  • (String)


6854
6855
6856
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6854

def 
  @account_id
end

#advertiser_idString

Advertiser ID of this order. Corresponds to the JSON property advertiserId

Returns:

  • (String)


6859
6860
6861
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6859

def advertiser_id
  @advertiser_id
end

#approver_user_profile_idsArray<String>

IDs for users that have to approve documents created for this order. Corresponds to the JSON property approverUserProfileIds

Returns:

  • (Array<String>)


6864
6865
6866
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6864

def 
  @approver_user_profile_ids
end

#buyer_invoice_idString

Buyer invoice ID associated with this order. Corresponds to the JSON property buyerInvoiceId

Returns:

  • (String)


6869
6870
6871
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6869

def buyer_invoice_id
  @buyer_invoice_id
end

#buyer_organization_nameString

Name of the buyer organization. Corresponds to the JSON property buyerOrganizationName

Returns:

  • (String)


6874
6875
6876
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6874

def buyer_organization_name
  @buyer_organization_name
end

#commentsString

Comments in this order. Corresponds to the JSON property comments

Returns:

  • (String)


6879
6880
6881
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6879

def comments
  @comments
end

#contactsArray<Google::Apis::DfareportingV2_3::OrderContact>

Contacts for this order. Corresponds to the JSON property contacts



6884
6885
6886
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6884

def contacts
  @contacts
end

#idString

ID of this order. This is a read-only, auto-generated field. Corresponds to the JSON property id

Returns:

  • (String)


6889
6890
6891
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6889

def id
  @id
end

#kindString

Identifies what kind of resource this is. Value: the fixed string " dfareporting#order". Corresponds to the JSON property kind

Returns:

  • (String)


6895
6896
6897
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6895

def kind
  @kind
end

#last_modified_infoGoogle::Apis::DfareportingV2_3::LastModifiedInfo

Modification timestamp. Corresponds to the JSON property lastModifiedInfo



6900
6901
6902
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6900

def last_modified_info
  @last_modified_info
end

#nameString

Name of this order. Corresponds to the JSON property name

Returns:

  • (String)


6905
6906
6907
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6905

def name
  @name
end

#notesString

Notes of this order. Corresponds to the JSON property notes

Returns:

  • (String)


6910
6911
6912
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6910

def notes
  @notes
end

#planning_term_idString

ID of the terms and conditions template used in this order. Corresponds to the JSON property planningTermId

Returns:

  • (String)


6915
6916
6917
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6915

def planning_term_id
  @planning_term_id
end

#project_idString

Project ID of this order. Corresponds to the JSON property projectId

Returns:

  • (String)


6920
6921
6922
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6920

def project_id
  @project_id
end

#seller_order_idString

Seller order ID associated with this order. Corresponds to the JSON property sellerOrderId

Returns:

  • (String)


6925
6926
6927
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6925

def seller_order_id
  @seller_order_id
end

#seller_organization_nameString

Name of the seller organization. Corresponds to the JSON property sellerOrganizationName

Returns:

  • (String)


6930
6931
6932
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6930

def seller_organization_name
  @seller_organization_name
end

#site_idArray<String>

Site IDs this order is associated with. Corresponds to the JSON property siteId

Returns:

  • (Array<String>)


6935
6936
6937
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6935

def site_id
  @site_id
end

#site_namesArray<String>

Free-form site names this order is associated with. Corresponds to the JSON property siteNames

Returns:

  • (Array<String>)


6940
6941
6942
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6940

def site_names
  @site_names
end

#subaccount_idString

Subaccount ID of this order. Corresponds to the JSON property subaccountId

Returns:

  • (String)


6945
6946
6947
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6945

def subaccount_id
  @subaccount_id
end

#terms_and_conditionsString

Terms and conditions of this order. Corresponds to the JSON property termsAndConditions

Returns:

  • (String)


6950
6951
6952
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6950

def terms_and_conditions
  @terms_and_conditions
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6957
6958
6959
6960
6961
6962
6963
6964
6965
6966
6967
6968
6969
6970
6971
6972
6973
6974
6975
6976
6977
6978
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6957

def update!(**args)
  @account_id = args[:account_id] if args.key?(:account_id)
  @advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
  @approver_user_profile_ids = args[:approver_user_profile_ids] if args.key?(:approver_user_profile_ids)
  @buyer_invoice_id = args[:buyer_invoice_id] if args.key?(:buyer_invoice_id)
  @buyer_organization_name = args[:buyer_organization_name] if args.key?(:buyer_organization_name)
  @comments = args[:comments] if args.key?(:comments)
  @contacts = args[:contacts] if args.key?(:contacts)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @last_modified_info = args[:last_modified_info] if args.key?(:last_modified_info)
  @name = args[:name] if args.key?(:name)
  @notes = args[:notes] if args.key?(:notes)
  @planning_term_id = args[:planning_term_id] if args.key?(:planning_term_id)
  @project_id = args[:project_id] if args.key?(:project_id)
  @seller_order_id = args[:seller_order_id] if args.key?(:seller_order_id)
  @seller_organization_name = args[:seller_organization_name] if args.key?(:seller_organization_name)
  @site_id = args[:site_id] if args.key?(:site_id)
  @site_names = args[:site_names] if args.key?(:site_names)
  @subaccount_id = args[:subaccount_id] if args.key?(:subaccount_id)
  @terms_and_conditions = args[:terms_and_conditions] if args.key?(:terms_and_conditions)
end