Class: Stripe::Tax::RegistrationCreateParams::CountryOptions::Us

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

Defined Under Namespace

Classes: AdmissionsTax, AttendanceTax, EntertainmentTax, GrossReceiptsTax, HospitalityTax, LocalAmusementTax, LocalLeaseTax, LuxuryTax, MassTransitParkingTax, ParkingTax, ResortTax, StateSalesTax, TourismTax

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(admissions_tax: nil, attendance_tax: nil, entertainment_tax: nil, gross_receipts_tax: nil, hospitality_tax: nil, local_amusement_tax: nil, local_lease_tax: nil, luxury_tax: nil, mass_transit_parking_tax: nil, parking_tax: nil, resort_tax: nil, state: nil, state_sales_tax: nil, tourism_tax: nil, type: nil) ⇒ Us

Returns a new instance of Us.



1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
# File 'lib/stripe/params/tax/registration_create_params.rb', line 1618

def initialize(
  admissions_tax: nil,
  attendance_tax: nil,
  entertainment_tax: nil,
  gross_receipts_tax: nil,
  hospitality_tax: nil,
  local_amusement_tax: nil,
  local_lease_tax: nil,
  luxury_tax: nil,
  mass_transit_parking_tax: nil,
  parking_tax: nil,
  resort_tax: nil,
  state: nil,
  state_sales_tax: nil,
  tourism_tax: nil,
  type: nil
)
  @admissions_tax = admissions_tax
  @attendance_tax = attendance_tax
  @entertainment_tax = entertainment_tax
  @gross_receipts_tax = gross_receipts_tax
  @hospitality_tax = hospitality_tax
  @local_amusement_tax = local_amusement_tax
  @local_lease_tax = local_lease_tax
  @luxury_tax = luxury_tax
  @mass_transit_parking_tax = mass_transit_parking_tax
  @parking_tax = parking_tax
  @resort_tax = resort_tax
  @state = state
  @state_sales_tax = state_sales_tax
  @tourism_tax = tourism_tax
  @type = type
end

Instance Attribute Details

#admissions_taxObject

Options for the admission tax registration.



1588
1589
1590
# File 'lib/stripe/params/tax/registration_create_params.rb', line 1588

def admissions_tax
  @admissions_tax
end

#attendance_taxObject

Options for the attendance tax registration.



1590
1591
1592
# File 'lib/stripe/params/tax/registration_create_params.rb', line 1590

def attendance_tax
  @attendance_tax
end

#entertainment_taxObject

Options for the entertainment tax registration.



1592
1593
1594
# File 'lib/stripe/params/tax/registration_create_params.rb', line 1592

def entertainment_tax
  @entertainment_tax
end

#gross_receipts_taxObject

Options for the gross receipts tax registration.



1594
1595
1596
# File 'lib/stripe/params/tax/registration_create_params.rb', line 1594

def gross_receipts_tax
  @gross_receipts_tax
end

#hospitality_taxObject

Options for the hospitality tax registration.



1596
1597
1598
# File 'lib/stripe/params/tax/registration_create_params.rb', line 1596

def hospitality_tax
  @hospitality_tax
end

#local_amusement_taxObject

Options for the local amusement tax registration.



1598
1599
1600
# File 'lib/stripe/params/tax/registration_create_params.rb', line 1598

def local_amusement_tax
  @local_amusement_tax
end

#local_lease_taxObject

Options for the local lease tax registration.



1600
1601
1602
# File 'lib/stripe/params/tax/registration_create_params.rb', line 1600

def local_lease_tax
  @local_lease_tax
end

#luxury_taxObject

Options for the luxury tax registration.



1602
1603
1604
# File 'lib/stripe/params/tax/registration_create_params.rb', line 1602

def luxury_tax
  @luxury_tax
end

#mass_transit_parking_taxObject

Options for the mass transit parking tax registration.



1604
1605
1606
# File 'lib/stripe/params/tax/registration_create_params.rb', line 1604

def mass_transit_parking_tax
  @mass_transit_parking_tax
end

#parking_taxObject

Options for the parking tax registration.



1606
1607
1608
# File 'lib/stripe/params/tax/registration_create_params.rb', line 1606

def parking_tax
  @parking_tax
end

#resort_taxObject

Options for the resort tax registration.



1608
1609
1610
# File 'lib/stripe/params/tax/registration_create_params.rb', line 1608

def resort_tax
  @resort_tax
end

#stateObject

Two-letter US state code (ISO 3166-2).



1610
1611
1612
# File 'lib/stripe/params/tax/registration_create_params.rb', line 1610

def state
  @state
end

#state_sales_taxObject

Options for the state sales tax registration.



1612
1613
1614
# File 'lib/stripe/params/tax/registration_create_params.rb', line 1612

def state_sales_tax
  @state_sales_tax
end

#tourism_taxObject

Options for the tourism tax registration.



1614
1615
1616
# File 'lib/stripe/params/tax/registration_create_params.rb', line 1614

def tourism_tax
  @tourism_tax
end

#typeObject

Type of registration to be created in the US.



1616
1617
1618
# File 'lib/stripe/params/tax/registration_create_params.rb', line 1616

def type
  @type
end