Class: Google::Apis::ContentV2_1::SettlementTransaction

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

Overview

Settlement transactions give a detailed breakdown of the settlement report.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SettlementTransaction

Returns a new instance of SettlementTransaction.



12341
12342
12343
# File 'generated/google/apis/content_v2_1/classes.rb', line 12341

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

Instance Attribute Details

#amountGoogle::Apis::ContentV2_1::SettlementTransactionAmount

The amount for the transaction. Corresponds to the JSON property amount



12323
12324
12325
# File 'generated/google/apis/content_v2_1/classes.rb', line 12323

def amount
  @amount
end

#identifiersGoogle::Apis::ContentV2_1::SettlementTransactionIdentifiers

Identifiers of the transaction. Corresponds to the JSON property identifiers



12328
12329
12330
# File 'generated/google/apis/content_v2_1/classes.rb', line 12328

def identifiers
  @identifiers
end

#kindString

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

Returns:

  • (String)


12334
12335
12336
# File 'generated/google/apis/content_v2_1/classes.rb', line 12334

def kind
  @kind
end

#transactionGoogle::Apis::ContentV2_1::SettlementTransactionTransaction

Details of the transaction. Corresponds to the JSON property transaction



12339
12340
12341
# File 'generated/google/apis/content_v2_1/classes.rb', line 12339

def transaction
  @transaction
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



12346
12347
12348
12349
12350
12351
# File 'generated/google/apis/content_v2_1/classes.rb', line 12346

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