Class: Stripe::AccountPersonUpdateParams::UsCfpbData::RaceDetails

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/account_person_update_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

#initialize(race: nil, race_other: nil) ⇒ RaceDetails

Returns a new instance of RaceDetails.



309
310
311
312
# File 'lib/stripe/params/account_person_update_params.rb', line 309

def initialize(race: nil, race_other: nil)
  @race = race
  @race_other = race_other
end

Instance Attribute Details

#raceObject

The persons race.



305
306
307
# File 'lib/stripe/params/account_person_update_params.rb', line 305

def race
  @race
end

#race_otherObject

Please specify your race, when other is selected.



307
308
309
# File 'lib/stripe/params/account_person_update_params.rb', line 307

def race_other
  @race_other
end