Class: Stripe::AccountPersonCreateParams::UsCfpbData
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountPersonCreateParams::UsCfpbData
- Defined in:
- lib/stripe/params/account_person_create_params.rb
Defined Under Namespace
Classes: EthnicityDetails, RaceDetails
Instance Attribute Summary collapse
-
#ethnicity_details ⇒ Object
The persons ethnicity details.
-
#race_details ⇒ Object
The persons race details.
-
#self_identified_gender ⇒ Object
The persons self-identified gender.
Instance Method Summary collapse
-
#initialize(ethnicity_details: nil, race_details: nil, self_identified_gender: nil) ⇒ UsCfpbData
constructor
A new instance of UsCfpbData.
Methods inherited from RequestParams
Constructor Details
#initialize(ethnicity_details: nil, race_details: nil, self_identified_gender: nil) ⇒ UsCfpbData
Returns a new instance of UsCfpbData.
273 274 275 276 277 |
# File 'lib/stripe/params/account_person_create_params.rb', line 273 def initialize(ethnicity_details: nil, race_details: nil, self_identified_gender: nil) @ethnicity_details = ethnicity_details @race_details = race_details @self_identified_gender = self_identified_gender end |
Instance Attribute Details
#ethnicity_details ⇒ Object
The persons ethnicity details
267 268 269 |
# File 'lib/stripe/params/account_person_create_params.rb', line 267 def ethnicity_details @ethnicity_details end |
#race_details ⇒ Object
The persons race details
269 270 271 |
# File 'lib/stripe/params/account_person_create_params.rb', line 269 def race_details @race_details end |
#self_identified_gender ⇒ Object
The persons self-identified gender
271 272 273 |
# File 'lib/stripe/params/account_person_create_params.rb', line 271 def self_identified_gender @self_identified_gender end |