class Google::Apis::ContentV2_1::SettlementTransactionIdentifiers
Attributes
adjustment_id[RW]
The identifier of the adjustments, if it is available. Corresponds to the JSON property `adjustmentId` @return [String]
merchant_order_id[RW]
The merchant provided order ID. Corresponds to the JSON property `merchantOrderId` @return [String]
order_item_id[RW]
The identifier of the item. Corresponds to the JSON property `orderItemId` @return [String]
settlement_entry_id[RW]
The unique ID of the settlement transaction entry. Corresponds to the JSON property `settlementEntryId` @return [String]
shipment_ids[RW]
The shipment ids for the item. Corresponds to the JSON property `shipmentIds` @return [Array<String>]
transaction_id[RW]
The Google
transaction ID. Corresponds to the JSON property `transactionId` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/content_v2_1/classes.rb, line 14388 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/content_v2_1/classes.rb, line 14393 def update!(**args) @adjustment_id = args[:adjustment_id] if args.key?(:adjustment_id) @merchant_order_id = args[:merchant_order_id] if args.key?(:merchant_order_id) @order_item_id = args[:order_item_id] if args.key?(:order_item_id) @settlement_entry_id = args[:settlement_entry_id] if args.key?(:settlement_entry_id) @shipment_ids = args[:shipment_ids] if args.key?(:shipment_ids) @transaction_id = args[:transaction_id] if args.key?(:transaction_id) end