/**
 * Print Status
 *
 * @description The status of the print for the invoice
 */
export enum PrintStatus {
	NotSet = 'NotSet',
	NeedToPrint = 'NeedToPrint',
	PrintComplete = 'PrintComplete',
}
