File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed
Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 1+ <?php
2+ namespace Fortifi \ProductManager \Response ;
3+
4+ class ProvisioningRetryResponse extends ProvisioningResponse
5+ {
6+ public function __construct ()
7+ {
8+ $ this ->type = ResponseType::PROVISION_RETRY ();
9+ }
10+ }
Original file line number Diff line number Diff line change 66/**
77 * @method static ResponseType PROVISION_SUCCESS
88 * @method static ResponseType PROVISION_PROCESSING
9+ * @method static ResponseType PROVISION_RETRY
910 * @method static ResponseType PROVISION_FAILED
1011 * @method static ResponseType AVAILABILITY_CHECK
1112 * @method static ResponseType AVAILABILITY_RESERVE
@@ -26,6 +27,10 @@ class ResponseType extends Enum
2627 * Provisioning Request Failed
2728 */
2829 const PROVISION_FAILED = 'provision.failed ' ;
30+ /**
31+ * Provisioning Request Failed, Please Retry
32+ */
33+ const PROVISION_RETRY = 'provision.retry ' ;
2934
3035 /**
3136 * Product Availability Check
You can’t perform that action at this time.
0 commit comments