You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
-
- namespace App\Codes;
-
- /**
- * 領収証発行依頼ステータス
- */
- enum ReceiptIssuingOrderStatus: int
- {
- case NONE = 0;
- case CREATED = 100; // 新規作成
- case SMS_SENDING = 200; // SMS送信中
- case SMS_RECEIVED = 300; // SMS送信完了
- case SMS_OPENED = 400; // SMS開封
-
- // 郵送関連
- case MAIL_REQUEST = 500; // 郵送依頼中
- case PREPARING_FOR_MAIL = 510; // 郵送準備中
- case MAIL_DONE = 520; // 郵送完了
-
- // Email送信関連
- case EMAIL_SENDING = 600; // Email送信中
- case EMAIL_DONE = 610; // Email送信完了
-
- // PDFダウンロード
- case DOWNLOAD_DONE = 700; // ダウンロード完了
- }
|