TaxRegistration constructor

const TaxRegistration({
  1. required DateTime activeFrom,
  2. required String country,
  3. required TaxProductRegistrationsResourceCountryOptions countryOptions,
  4. required DateTime created,
  5. DateTime? expiresAt,
  6. required String id,
  7. required bool livemode,
  8. 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,
});