Class: Stripe::Issuing::Transaction::CryptoTransaction::CryptoTransactionConfirmed
- Inherits:
-
StripeObject
- Object
- StripeObject
- Stripe::Issuing::Transaction::CryptoTransaction::CryptoTransactionConfirmed
- Defined in:
- lib/stripe/resources/issuing/transaction.rb
Defined Under Namespace
Classes: Fee
Constant Summary
Constants inherited from StripeObject
StripeObject::RESERVED_FIELD_NAMES
Instance Attribute Summary collapse
-
#amount ⇒ Object
readonly
The crypto amount for the confirmed transaction.
-
#amount_mcc_upcharged ⇒ Object
readonly
The upcharged MCC amount, if one was applied.
-
#chain ⇒ Object
readonly
The blockchain network for the confirmed transaction.
-
#confirmed_at ⇒ Object
readonly
When the transaction was confirmed onchain.
-
#currency ⇒ Object
readonly
The currency of the crypto transaction amount.
-
#fees ⇒ Object
readonly
Fees associated with the transaction.
-
#from_address ⇒ Object
readonly
The source wallet address for the transaction.
-
#memo ⇒ Object
readonly
Memo metadata attached to the transaction, if present.
-
#to_address ⇒ Object
readonly
The destination wallet address for the transaction.
-
#transaction_hash ⇒ Object
readonly
The blockchain transaction hash.
Attributes inherited from StripeObject
Class Method Summary collapse
Methods inherited from StripeObject
#==, #[], #[]=, #_get_inner_class_type, additive_object_param, additive_object_param?, #as_json, construct_from, #deleted?, #dirty!, #each, #eql?, field_encodings, #hash, #initialize, #inspect, #keys, #marshal_dump, #marshal_load, protected_fields, #serialize_params, #to_hash, #to_json, #to_s, #update_attributes, #values
Constructor Details
This class inherits a constructor from Stripe::StripeObject
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Stripe::StripeObject
Instance Attribute Details
#amount ⇒ Object (readonly)
The crypto amount for the confirmed transaction.
54 55 56 |
# File 'lib/stripe/resources/issuing/transaction.rb', line 54 def amount @amount end |
#amount_mcc_upcharged ⇒ Object (readonly)
The upcharged MCC amount, if one was applied.
56 57 58 |
# File 'lib/stripe/resources/issuing/transaction.rb', line 56 def amount_mcc_upcharged @amount_mcc_upcharged end |
#chain ⇒ Object (readonly)
The blockchain network for the confirmed transaction.
58 59 60 |
# File 'lib/stripe/resources/issuing/transaction.rb', line 58 def chain @chain end |
#confirmed_at ⇒ Object (readonly)
When the transaction was confirmed onchain.
60 61 62 |
# File 'lib/stripe/resources/issuing/transaction.rb', line 60 def confirmed_at @confirmed_at end |
#currency ⇒ Object (readonly)
The currency of the crypto transaction amount.
62 63 64 |
# File 'lib/stripe/resources/issuing/transaction.rb', line 62 def currency @currency end |
#fees ⇒ Object (readonly)
Fees associated with the transaction.
64 65 66 |
# File 'lib/stripe/resources/issuing/transaction.rb', line 64 def fees @fees end |
#from_address ⇒ Object (readonly)
The source wallet address for the transaction.
66 67 68 |
# File 'lib/stripe/resources/issuing/transaction.rb', line 66 def from_address @from_address end |
#memo ⇒ Object (readonly)
Memo metadata attached to the transaction, if present.
68 69 70 |
# File 'lib/stripe/resources/issuing/transaction.rb', line 68 def memo @memo end |
#to_address ⇒ Object (readonly)
The destination wallet address for the transaction.
70 71 72 |
# File 'lib/stripe/resources/issuing/transaction.rb', line 70 def to_address @to_address end |
#transaction_hash ⇒ Object (readonly)
The blockchain transaction hash.
72 73 74 |
# File 'lib/stripe/resources/issuing/transaction.rb', line 72 def transaction_hash @transaction_hash end |
Class Method Details
.field_remappings ⇒ Object
78 79 80 |
# File 'lib/stripe/resources/issuing/transaction.rb', line 78 def self.field_remappings @field_remappings = {} end |
.inner_class_types ⇒ Object
74 75 76 |
# File 'lib/stripe/resources/issuing/transaction.rb', line 74 def self.inner_class_types @inner_class_types = { fees: Fee } end |