class Google::Apis::ContentV2_1::SettlementTransaction

Settlement transactions give a detailed breakdown of the settlement report.

Attributes

amount[RW]

The amount for the transaction. Corresponds to the JSON property `amount` @return [Google::Apis::ContentV2_1::SettlementTransactionAmount]

identifiers[RW]

Identifiers of the transaction. Corresponds to the JSON property `identifiers` @return [Google::Apis::ContentV2_1::SettlementTransactionIdentifiers]

kind[RW]

Identifies what kind of resource this is. Value: the fixed string “`content# settlementTransaction`” Corresponds to the JSON property `kind` @return [String]

transaction[RW]

Details of the transaction. Corresponds to the JSON property `transaction` @return [Google::Apis::ContentV2_1::SettlementTransactionTransaction]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/content_v2_1/classes.rb, line 14242
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 14247
def update!(**args)
  @amount = args[:amount] if args.key?(:amount)
  @identifiers = args[:identifiers] if args.key?(:identifiers)
  @kind = args[:kind] if args.key?(:kind)
  @transaction = args[:transaction] if args.key?(:transaction)
end