Class: Stripe::Issuing::Token::NetworkData::WalletProvider
- Inherits:
-
StripeObject
- Object
- StripeObject
- Stripe::Issuing::Token::NetworkData::WalletProvider
- Defined in:
- lib/stripe/resources/issuing/token.rb
Defined Under Namespace
Classes: CardholderAddress
Constant Summary
Constants inherited from StripeObject
StripeObject::RESERVED_FIELD_NAMES
Instance Attribute Summary collapse
-
#account_id ⇒ Object
readonly
The wallet provider-given account ID of the digital wallet the token belongs to.
-
#account_trust_score ⇒ Object
readonly
An evaluation on the trustworthiness of the wallet account between 1 and 5.
-
#card_number_source ⇒ Object
readonly
The method used for tokenizing a card.
-
#cardholder_address ⇒ Object
readonly
Attribute for field cardholder_address.
-
#cardholder_name ⇒ Object
readonly
The name of the cardholder tokenizing the card.
-
#device_trust_score ⇒ Object
readonly
An evaluation on the trustworthiness of the device.
-
#hashed_account_email_address ⇒ Object
readonly
The hashed email address of the cardholder’s account with the wallet provider.
-
#reason_codes ⇒ Object
readonly
The reasons for suggested tokenization given by the card network.
-
#suggested_decision ⇒ Object
readonly
The recommendation on responding to the tokenization request.
-
#suggested_decision_version ⇒ Object
readonly
The version of the standard for mapping reason codes followed by the wallet provider.
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?, #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
#account_id ⇒ Object (readonly)
The wallet provider-given account ID of the digital wallet the token belongs to.
94 95 96 |
# File 'lib/stripe/resources/issuing/token.rb', line 94 def account_id @account_id end |
#account_trust_score ⇒ Object (readonly)
An evaluation on the trustworthiness of the wallet account between 1 and 5. A higher score indicates more trustworthy.
96 97 98 |
# File 'lib/stripe/resources/issuing/token.rb', line 96 def account_trust_score @account_trust_score end |
#card_number_source ⇒ Object (readonly)
The method used for tokenizing a card.
98 99 100 |
# File 'lib/stripe/resources/issuing/token.rb', line 98 def card_number_source @card_number_source end |
#cardholder_address ⇒ Object (readonly)
Attribute for field cardholder_address
100 101 102 |
# File 'lib/stripe/resources/issuing/token.rb', line 100 def cardholder_address @cardholder_address end |
#cardholder_name ⇒ Object (readonly)
The name of the cardholder tokenizing the card.
102 103 104 |
# File 'lib/stripe/resources/issuing/token.rb', line 102 def cardholder_name @cardholder_name end |
#device_trust_score ⇒ Object (readonly)
An evaluation on the trustworthiness of the device. A higher score indicates more trustworthy.
104 105 106 |
# File 'lib/stripe/resources/issuing/token.rb', line 104 def device_trust_score @device_trust_score end |
#hashed_account_email_address ⇒ Object (readonly)
The hashed email address of the cardholder’s account with the wallet provider.
106 107 108 |
# File 'lib/stripe/resources/issuing/token.rb', line 106 def hashed_account_email_address @hashed_account_email_address end |
#reason_codes ⇒ Object (readonly)
The reasons for suggested tokenization given by the card network.
108 109 110 |
# File 'lib/stripe/resources/issuing/token.rb', line 108 def reason_codes @reason_codes end |
#suggested_decision ⇒ Object (readonly)
The recommendation on responding to the tokenization request.
110 111 112 |
# File 'lib/stripe/resources/issuing/token.rb', line 110 def suggested_decision @suggested_decision end |
#suggested_decision_version ⇒ Object (readonly)
The version of the standard for mapping reason codes followed by the wallet provider.
112 113 114 |
# File 'lib/stripe/resources/issuing/token.rb', line 112 def suggested_decision_version @suggested_decision_version end |
Class Method Details
.field_remappings ⇒ Object
118 119 120 |
# File 'lib/stripe/resources/issuing/token.rb', line 118 def self.field_remappings @field_remappings = {} end |
.inner_class_types ⇒ Object
114 115 116 |
# File 'lib/stripe/resources/issuing/token.rb', line 114 def self.inner_class_types @inner_class_types = { cardholder_address: CardholderAddress } end |