CreateSubscriptionRequest constructor

CreateSubscriptionRequest({
  1. required String locationId,
  2. String? idempotencyKey,
  3. required String customerId,
  4. String? timezone,
  5. SubscriptionSource? source,
  6. String? cardId,
  7. String? taxPercentage,
  8. String? startDate,
  9. Money? priceOverrideMoney,
  10. String? canceledDate,
  11. required String planId,
})

Implementation

CreateSubscriptionRequest({
required this.locationId, this.idempotencyKey, required this.customerId,
this.timezone, this.source, this.cardId, this.taxPercentage,
this.startDate, this.priceOverrideMoney, this.canceledDate,
required this.planId
});