Class: Google::Apis::ContentV2_1::OrderReportTransaction

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ OrderReportTransaction

Returns a new instance of OrderReportTransaction.



6181
6182
6183
# File 'lib/google/apis/content_v2_1/classes.rb', line 6181

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

Instance Attribute Details

#disbursement_amountGoogle::Apis::ContentV2_1::Price

The disbursement amount. Corresponds to the JSON property disbursementAmount



6139
6140
6141
# File 'lib/google/apis/content_v2_1/classes.rb', line 6139

def disbursement_amount
  @disbursement_amount
end

#disbursement_creation_dateString

The date the disbursement was created, in ISO 8601 format. Corresponds to the JSON property disbursementCreationDate

Returns:

  • (String)


6144
6145
6146
# File 'lib/google/apis/content_v2_1/classes.rb', line 6144

def disbursement_creation_date
  @disbursement_creation_date
end

#disbursement_dateString

The date the disbursement was initiated, in ISO 8601 format. Corresponds to the JSON property disbursementDate

Returns:

  • (String)


6149
6150
6151
# File 'lib/google/apis/content_v2_1/classes.rb', line 6149

def disbursement_date
  @disbursement_date
end

#disbursement_idString

The ID of the disbursement. Corresponds to the JSON property disbursementId

Returns:

  • (String)


6154
6155
6156
# File 'lib/google/apis/content_v2_1/classes.rb', line 6154

def disbursement_id
  @disbursement_id
end

#merchant_idFixnum

The ID of the managing account. Corresponds to the JSON property merchantId

Returns:

  • (Fixnum)


6159
6160
6161
# File 'lib/google/apis/content_v2_1/classes.rb', line 6159

def merchant_id
  @merchant_id
end

#merchant_order_idString

Merchant-provided ID of the order. Corresponds to the JSON property merchantOrderId

Returns:

  • (String)


6164
6165
6166
# File 'lib/google/apis/content_v2_1/classes.rb', line 6164

def merchant_order_id
  @merchant_order_id
end

#order_idString

The ID of the order. Corresponds to the JSON property orderId

Returns:

  • (String)


6169
6170
6171
# File 'lib/google/apis/content_v2_1/classes.rb', line 6169

def order_id
  @order_id
end

#product_amountGoogle::Apis::ContentV2_1::ProductAmount

Total amount for the items. Corresponds to the JSON property productAmount



6174
6175
6176
# File 'lib/google/apis/content_v2_1/classes.rb', line 6174

def product_amount
  @product_amount
end

#transaction_dateString

The date of the transaction, in ISO 8601 format. Corresponds to the JSON property transactionDate

Returns:

  • (String)


6179
6180
6181
# File 'lib/google/apis/content_v2_1/classes.rb', line 6179

def transaction_date
  @transaction_date
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
# File 'lib/google/apis/content_v2_1/classes.rb', line 6186

def update!(**args)
  @disbursement_amount = args[:disbursement_amount] if args.key?(:disbursement_amount)
  @disbursement_creation_date = args[:disbursement_creation_date] if args.key?(:disbursement_creation_date)
  @disbursement_date = args[:disbursement_date] if args.key?(:disbursement_date)
  @disbursement_id = args[:disbursement_id] if args.key?(:disbursement_id)
  @merchant_id = args[:merchant_id] if args.key?(:merchant_id)
  @merchant_order_id = args[:merchant_order_id] if args.key?(:merchant_order_id)
  @order_id = args[:order_id] if args.key?(:order_id)
  @product_amount = args[:product_amount] if args.key?(:product_amount)
  @transaction_date = args[:transaction_date] if args.key?(:transaction_date)
end