Class: Stripe::Tax::RegistrationService::CreateParams::CountryOptions::Ca

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/tax/registration_service.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.



200
201
202
203
# File 'lib/stripe/services/tax/registration_service.rb', line 200

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.



196
197
198
# File 'lib/stripe/services/tax/registration_service.rb', line 196

def province_standard
  @province_standard
end

#typeObject

Type of registration to be created in Canada.



198
199
200
# File 'lib/stripe/services/tax/registration_service.rb', line 198

def type
  @type
end