Class: Google::Apis::ContentV2_1::SettlementTransactionTransaction
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::SettlementTransactionTransaction
- 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
Instance Attribute Summary collapse
-
#post_date ⇒ String
The time on which the event occurred in ISO 8601 format.
-
#type ⇒ String
The type of the transaction that occurred.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SettlementTransactionTransaction
constructor
A new instance of SettlementTransactionTransaction.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ SettlementTransactionTransaction
Returns a new instance of SettlementTransactionTransaction.
10916 10917 10918 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 10916 def initialize(**args) update!(**args) end |
Instance Attribute Details
#post_date ⇒ String
The time on which the event occurred in ISO 8601 format.
Corresponds to the JSON property postDate
10900 10901 10902 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 10900 def post_date @post_date end |
#type ⇒ String
The type of the transaction that occurred. Acceptable values are:
- "
order
" - "
reversal
" - "
orderRefund
" - "
reversalRefund
" - "
issueRelatedRefundAndReplacement
" - "
returnLabelShippingFeeTransaction
" - "
reversalIssueRelatedRefundAndReplacement
" - "
reversalReturnLabelShippingFeeTransaction
" Corresponds to the JSON propertytype
10914 10915 10916 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 10914 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10921 10922 10923 10924 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 10921 def update!(**args) @post_date = args[:post_date] if args.key?(:post_date) @type = args[:type] if args.key?(:type) end |