Coupon class

Constructors

Coupon({int? id, String? code, DiscountTypeEnum? discountType, String? description, double? lessonDiscount, int? applyStudent, int? applyTutor, DateTime? startAt, DateTime? endAt, int? originalUnitPriceInCents, int? presentUnitPriceInCents, int? originalAmountInCents, int? presentAmountInCents, int? eligibleMinBookingNumber})
Returns a new Coupon instance.

Properties

applyStudent int?
It indicates that this discount code is bound to this student
getter/setter pair
applyTutor int?
It indicates that this discount code is bound to this tutor
getter/setter pair
code String?
If empty the system will generate a random one after saving
getter/setter pair
description String?
It will show on checkout page when customer using this discount
getter/setter pair
discountType DiscountTypeEnum?
Please note: This property should have been non-nullable! Since the specification file does not include a default value (using the "default:" property), however, the generated source code must fall back to having a nullable type. Consider adding a "default:" property in the specification file to hide this note.
getter/setter pair
eligibleMinBookingNumber int?
The student must have a specified minimum number of booking to be eligible to use the discount coupon
getter/setter pair
endAt DateTime?
This field represents the expired time of the coupon code.if null,it means no limitation
getter/setter pair
hashCode int
The hash code for this object.
no setteroverride
id int?
Please note: This property should have been non-nullable! Since the specification file does not include a default value (using the "default:" property), however, the generated source code must fall back to having a nullable type. Consider adding a "default:" property in the specification file to hide this note.
getter/setter pair
lessonDiscount double?
Please note: This property should have been non-nullable! Since the specification file does not include a default value (using the "default:" property), however, the generated source code must fall back to having a nullable type. Consider adding a "default:" property in the specification file to hide this note.
getter/setter pair
originalAmountInCents int?
Please note: This property should have been non-nullable! Since the specification file does not include a default value (using the "default:" property), however, the generated source code must fall back to having a nullable type. Consider adding a "default:" property in the specification file to hide this note.
getter/setter pair
originalUnitPriceInCents int?
Please note: This property should have been non-nullable! Since the specification file does not include a default value (using the "default:" property), however, the generated source code must fall back to having a nullable type. Consider adding a "default:" property in the specification file to hide this note.
getter/setter pair
presentAmountInCents int?
Please note: This property should have been non-nullable! Since the specification file does not include a default value (using the "default:" property), however, the generated source code must fall back to having a nullable type. Consider adding a "default:" property in the specification file to hide this note.
getter/setter pair
presentUnitPriceInCents int?
Please note: This property should have been non-nullable! Since the specification file does not include a default value (using the "default:" property), however, the generated source code must fall back to having a nullable type. Consider adding a "default:" property in the specification file to hide this note.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
startAt DateTime?
This field represents the effective time of the coupon code.if null,it means no limitation
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
override

Static Methods

fromJson(dynamic value) Coupon?
Returns a new Coupon instance and imports its values from value if it's a Map, null otherwise.
listFromJson(dynamic json, {bool growable = false}) List<Coupon>
mapFromJson(dynamic json) Map<String, Coupon>
mapListFromJson(dynamic json, {bool growable = false}) Map<String, List<Coupon>>

Constants

requiredKeys → const Set<String>
The list of required keys that must be present in a JSON.