Class: Stripe::Tax::RegistrationCreateParams::CountryOptions::Ca

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

Defined Under Namespace

Classes: ProvinceStandard

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(province_standard: nil, type: nil) ⇒ Ca

Returns a new instance of Ca.



338
339
340
341
# File 'lib/stripe/params/tax/registration_create_params.rb', line 338

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

Instance Attribute Details

#province_standardObject

Options for the provincial tax registration.



334
335
336
# File 'lib/stripe/params/tax/registration_create_params.rb', line 334

def province_standard
  @province_standard
end

#typeObject

Type of registration to be created in Canada.



336
337
338
# File 'lib/stripe/params/tax/registration_create_params.rb', line 336

def type
  @type
end