Class: Stripe::Tax::RegistrationCreateParams::CountryOptions::Me

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

Defined Under Namespace

Classes: Standard

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(standard: nil, type: nil) ⇒ Me

Returns a new instance of Me.



980
981
982
983
# File 'lib/stripe/params/tax/registration_create_params.rb', line 980

def initialize(standard: nil, type: nil)
  @standard = standard
  @type = type
end

Instance Attribute Details

#standardObject

Options for the standard registration.



976
977
978
# File 'lib/stripe/params/tax/registration_create_params.rb', line 976

def standard
  @standard
end

#typeObject

Type of registration to be created in ‘country`.



978
979
980
# File 'lib/stripe/params/tax/registration_create_params.rb', line 978

def type
  @type
end