Class: Stripe::Tax::Registration::CreateParams::CountryOptions::Ca

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



1113
1114
1115
1116
# File 'lib/stripe/resources/tax/registration.rb', line 1113

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.



1109
1110
1111
# File 'lib/stripe/resources/tax/registration.rb', line 1109

def province_standard
  @province_standard
end

#typeObject

Type of registration to be created in Canada.



1111
1112
1113
# File 'lib/stripe/resources/tax/registration.rb', line 1111

def type
  @type
end