SerialCourseCustomer constructor

SerialCourseCustomer({
  1. int? id,
  2. String? name,
  3. String? feedbackId,
  4. DateTime? created,
  5. DateTime? modified,
  6. DateTime? deletedAt,
  7. required int numWeeks,
  8. required DateTime startDate,
  9. required DateTime endDate,
  10. required int weeklyPriceCents,
  11. String? timeZone,
  12. String? stripeCheckoutSessionId,
  13. String? stripeSubscriptionScheduledId,
  14. String? stripeSubscriptionId,
  15. DateTime? cancelAt,
  16. DateTime? canceledAt,
  17. bool? cancelAtPeriodEnd,
  18. required SubscriptionStatusEnum subscriptionStatus,
  19. int? serialCourse,
  20. int? customer,
  21. int? chat,
})

Returns a new SerialCourseCustomer instance.

Implementation

SerialCourseCustomer({
  this.id,
  this.name,
  this.feedbackId,
  this.created,
  this.modified,
  this.deletedAt,
  required this.numWeeks,
  required this.startDate,
  required this.endDate,
  required this.weeklyPriceCents,
  this.timeZone,
  this.stripeCheckoutSessionId,
  this.stripeSubscriptionScheduledId,
  this.stripeSubscriptionId,
  this.cancelAt,
  this.canceledAt,
  this.cancelAtPeriodEnd,
  required this.subscriptionStatus,
  this.serialCourse,
  this.customer,
  this.chat,
});