Class: Stripe::AccountCreateParams::Individual::Dob

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/account_create_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(day: nil, month: nil, year: nil) ⇒ Dob

Returns a new instance of Dob.



1896
1897
1898
1899
1900
# File 'lib/stripe/params/account_create_params.rb', line 1896

def initialize(day: nil, month: nil, year: nil)
  @day = day
  @month = month
  @year = year
end

Instance Attribute Details

#dayObject

The day of birth, between 1 and 31.



1890
1891
1892
# File 'lib/stripe/params/account_create_params.rb', line 1890

def day
  @day
end

#monthObject

The month of birth, between 1 and 12.



1892
1893
1894
# File 'lib/stripe/params/account_create_params.rb', line 1892

def month
  @month
end

#yearObject

The four-digit year of birth.



1894
1895
1896
# File 'lib/stripe/params/account_create_params.rb', line 1894

def year
  @year
end