Class: Stripe::AccountPersonService::UpdateParams::UsCfpbData
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountPersonService::UpdateParams::UsCfpbData
- Defined in:
- lib/stripe/services/account_person_service.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.
300 301 302 303 304 |
# File 'lib/stripe/services/account_person_service.rb', line 300 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
294 295 296 |
# File 'lib/stripe/services/account_person_service.rb', line 294 def ethnicity_details @ethnicity_details end |
#race_details ⇒ Object
The persons race details
296 297 298 |
# File 'lib/stripe/services/account_person_service.rb', line 296 def race_details @race_details end |
#self_identified_gender ⇒ Object
The persons self-identified gender
298 299 300 |
# File 'lib/stripe/services/account_person_service.rb', line 298 def self_identified_gender @self_identified_gender end |