Class: Stripe::Issuing::Token::NetworkData::Mastercard
- Inherits:
-
StripeObject
- Object
- StripeObject
- Stripe::Issuing::Token::NetworkData::Mastercard
- Defined in:
- lib/stripe/resources/issuing/token.rb
Constant Summary
Constants inherited from StripeObject
StripeObject::RESERVED_FIELD_NAMES
Instance Attribute Summary collapse
-
#card_reference_id ⇒ Object
readonly
A unique reference ID from MasterCard to represent the card account number.
-
#token_reference_id ⇒ Object
readonly
The network-unique identifier for the token.
-
#token_requestor_id ⇒ Object
readonly
The ID of the entity requesting tokenization, specific to MasterCard.
-
#token_requestor_name ⇒ Object
readonly
The name of the entity requesting tokenization, if known.
Attributes inherited from StripeObject
Method Summary
Methods inherited from StripeObject
#==, #[], #[]=, 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
#card_reference_id ⇒ Object (readonly)
A unique reference ID from MasterCard to represent the card account number.
34 35 36 |
# File 'lib/stripe/resources/issuing/token.rb', line 34 def card_reference_id @card_reference_id end |
#token_reference_id ⇒ Object (readonly)
The network-unique identifier for the token.
36 37 38 |
# File 'lib/stripe/resources/issuing/token.rb', line 36 def token_reference_id @token_reference_id end |
#token_requestor_id ⇒ Object (readonly)
The ID of the entity requesting tokenization, specific to MasterCard.
38 39 40 |
# File 'lib/stripe/resources/issuing/token.rb', line 38 def token_requestor_id @token_requestor_id end |
#token_requestor_name ⇒ Object (readonly)
The name of the entity requesting tokenization, if known. This is directly provided from MasterCard.
40 41 42 |
# File 'lib/stripe/resources/issuing/token.rb', line 40 def token_requestor_name @token_requestor_name end |