SerialCourseCustomer constructor
SerialCourseCustomer({
- int? id,
- String? name,
- String? feedbackId,
- DateTime? created,
- DateTime? modified,
- DateTime? deletedAt,
- required int numWeeks,
- required DateTime startDate,
- required DateTime endDate,
- required int weeklyPriceCents,
- String? timeZone,
- String? stripeCheckoutSessionId,
- String? stripeSubscriptionScheduledId,
- String? stripeSubscriptionId,
- DateTime? cancelAt,
- DateTime? canceledAt,
- bool? cancelAtPeriodEnd,
- required SubscriptionStatusEnum subscriptionStatus,
- int? serialCourse,
- int? customer,
- 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,
});