Class: Stripe::AccountPersonUpdateParams::UsCfpbData::RaceDetails
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountPersonUpdateParams::UsCfpbData::RaceDetails
- Defined in:
- lib/stripe/params/account_person_update_params.rb
Instance Attribute Summary collapse
-
#race ⇒ Object
The persons race.
-
#race_other ⇒ Object
Please specify your race, when other is selected.
Instance Method Summary collapse
-
#initialize(race: nil, race_other: nil) ⇒ RaceDetails
constructor
A new instance of RaceDetails.
Methods inherited from RequestParams
Constructor Details
#initialize(race: nil, race_other: nil) ⇒ RaceDetails
Returns a new instance of RaceDetails.
261 262 263 264 |
# File 'lib/stripe/params/account_person_update_params.rb', line 261 def initialize(race: nil, race_other: nil) @race = race @race_other = race_other end |
Instance Attribute Details
#race ⇒ Object
The persons race.
257 258 259 |
# File 'lib/stripe/params/account_person_update_params.rb', line 257 def race @race end |
#race_other ⇒ Object
Please specify your race, when other is selected.
259 260 261 |
# File 'lib/stripe/params/account_person_update_params.rb', line 259 def race_other @race_other end |