Class: Stripe::Issuing::CardholderUpdateParams::Individual
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Issuing::CardholderUpdateParams::Individual
- Defined in:
- lib/stripe/params/issuing/cardholder_update_params.rb
Defined Under Namespace
Classes: CardIssuing, Dob, Verification
Instance Attribute Summary collapse
-
#card_issuing ⇒ Object
Information related to the card_issuing program for this cardholder.
-
#dob ⇒ Object
The date of birth of this cardholder.
-
#first_name ⇒ Object
The first name of this cardholder.
-
#last_name ⇒ Object
The last name of this cardholder.
-
#verification ⇒ Object
Government-issued ID document for this cardholder.
Instance Method Summary collapse
-
#initialize(card_issuing: nil, dob: nil, first_name: nil, last_name: nil, verification: nil) ⇒ Individual
constructor
A new instance of Individual.
Methods inherited from RequestParams
Constructor Details
#initialize(card_issuing: nil, dob: nil, first_name: nil, last_name: nil, verification: nil) ⇒ Individual
Returns a new instance of Individual.
124 125 126 127 128 129 130 131 132 133 134 135 136 |
# File 'lib/stripe/params/issuing/cardholder_update_params.rb', line 124 def initialize( card_issuing: nil, dob: nil, first_name: nil, last_name: nil, verification: nil ) @card_issuing = card_issuing @dob = dob @first_name = first_name @last_name = last_name @verification = verification end |
Instance Attribute Details
#card_issuing ⇒ Object
Information related to the card_issuing program for this cardholder.
114 115 116 |
# File 'lib/stripe/params/issuing/cardholder_update_params.rb', line 114 def card_issuing @card_issuing end |
#dob ⇒ Object
The date of birth of this cardholder. Cardholders must be older than 13 years old.
116 117 118 |
# File 'lib/stripe/params/issuing/cardholder_update_params.rb', line 116 def dob @dob end |
#first_name ⇒ Object
The first name of this cardholder. Required before activating Cards. This field cannot contain any numbers, special characters (except periods, commas, hyphens, spaces and apostrophes) or non-latin letters.
118 119 120 |
# File 'lib/stripe/params/issuing/cardholder_update_params.rb', line 118 def first_name @first_name end |
#last_name ⇒ Object
The last name of this cardholder. Required before activating Cards. This field cannot contain any numbers, special characters (except periods, commas, hyphens, spaces and apostrophes) or non-latin letters.
120 121 122 |
# File 'lib/stripe/params/issuing/cardholder_update_params.rb', line 120 def last_name @last_name end |
#verification ⇒ Object
Government-issued ID document for this cardholder.
122 123 124 |
# File 'lib/stripe/params/issuing/cardholder_update_params.rb', line 122 def verification @verification end |