@tomei/rental
Version:
Tomei Rental Package
40 lines (33 loc) • 775 B
text/typescript
/**
* Enum representing the status of a rental.
*/
export enum RentalStatusEnum {
/**
* Customer confirmed a rental, but rental period hasn't started.
*/
RESERVED = 'Reserved',
/**
* Customer already paid, and the rental period has started.
*/
ACTIVE = 'Active',
/**
* Rental is suspended because of a reason by the system.
*/
SUSPENDED = 'Suspended',
/**
* Rental has been cancelled by the customer.
*/
CANCELLED = 'Cancelled',
/**
* Rental has been terminated by the customer.
*/
TERMINATED = 'Terminated',
/**
* Customer is pending signing rental agreement
*/
PENDING_SIGNING = 'Pending Signing',
/**
* Customer is pending key collection
*/
PENDING_KEY_COLLECTION = 'Pending Key Collection',
}