TaxRegistration constructor
const
TaxRegistration({
- required DateTime activeFrom,
- required String country,
- required TaxProductRegistrationsResourceCountryOptions countryOptions,
- required DateTime created,
- DateTime? expiresAt,
- required String id,
- required bool livemode,
- required TaxRegistrationStatus status,
TaxProductRegistrationsResourceTaxRegistration
A Tax `Registration` lets us know that your business is registered to collect tax on payments within a region, enabling you to [automatically collect tax](https://stripe.com/docs/tax). Stripe doesn't register on your behalf with the relevant authorities when you create a Tax `Registration` object. For more information on how to register to collect tax, see [our guide](https://stripe.com/docs/tax/registering). Related guide: [Using the Registrations API](https://stripe.com/docs/tax/registrations-api)
Implementation
const TaxRegistration({
required this.activeFrom,
required this.country,
required this.countryOptions,
required this.created,
this.expiresAt,
required this.id,
required this.livemode,
required this.status,
});