-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added type property to Product and ProductBatchModel
- Loading branch information
Showing
6 changed files
with
66 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
|
||
/** | ||
* PHP 7.3 | ||
* | ||
* @category PaymentInvoiceType | ||
* @package RetailCrm\Api\Enum\Payments | ||
*/ | ||
|
||
namespace RetailCrm\Api\Enum\Payments; | ||
|
||
/** | ||
* Class PaymentInvoiceType | ||
* | ||
* @category PaymentInvoiceType | ||
* @package RetailCrm\Api\Enum\Payments | ||
*/ | ||
final class PaymentObjectType | ||
{ | ||
public const COMMODITY = 'commodity'; | ||
public const SERVICE = 'service'; | ||
public const PAYMENT = 'payment'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?php | ||
|
||
/** | ||
* PHP version 7.3 | ||
* | ||
* @category CallEventType | ||
* @package RetailCrm\Api\Enum\Telephony | ||
*/ | ||
|
||
namespace RetailCrm\Api\Enum\Product; | ||
|
||
/** | ||
* Class CallEventType | ||
* | ||
* @category CallEventType | ||
* @package RetailCrm\Api\Enum\Telephony | ||
*/ | ||
final class ProductType | ||
{ | ||
public const PRODUCT = 'product'; | ||
public const SERVICE = 'service'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters