class Google::Apis::ContentV2_1::SettlementTransactionTransaction

Attributes

post_date[RW]

The time on which the event occurred in ISO 8601 format. Corresponds to the JSON property `postDate` @return [String]

type[RW]

The type of the transaction that occurred. Acceptable values are: - “`order`” - “`reversal`” - “`orderRefund`” - “`reversalRefund`” - “` issueRelatedRefundAndReplacement`” - “`returnLabelShippingFeeTransaction`” - “` reversalIssueRelatedRefundAndReplacement`” - “` reversalReturnLabelShippingFeeTransaction`” - “`lumpSumCorrectionTransaction`” Corresponds to the JSON property `type` @return [String]

Public Class Methods

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