-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from WoutervanderLoopNL/develop-enum
Support Enum
- Loading branch information
Showing
299 changed files
with
2,496 additions
and
855 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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,11 @@ | ||
<?php | ||
|
||
namespace Picqer\BolRetailerV10\Enum; | ||
|
||
// This class is auto generated by OpenApi\ModelGenerator | ||
enum BillingDetailsSalutation: string | ||
{ | ||
case MALE = 'MALE'; | ||
case FEMALE = 'FEMALE'; | ||
case UNKNOWN = 'UNKNOWN'; | ||
} |
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,13 @@ | ||
<?php | ||
|
||
namespace Picqer\BolRetailerV10\Enum; | ||
|
||
// This class is auto generated by OpenApi\ModelGenerator | ||
enum BulkCommissionQueryCondition: string | ||
{ | ||
case NEW = 'NEW'; | ||
case AS_NEW = 'AS_NEW'; | ||
case GOOD = 'GOOD'; | ||
case REASONABLE = 'REASONABLE'; | ||
case MODERATE = 'MODERATE'; | ||
} |
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,36 @@ | ||
<?php | ||
|
||
namespace Picqer\BolRetailerV10\Enum; | ||
|
||
// This class is auto generated by OpenApi\ModelGenerator | ||
enum ChangeTransportRequestTransporterCode: string | ||
{ | ||
case BRIEFPOST = 'BRIEFPOST'; | ||
case UPS = 'UPS'; | ||
case TNT = 'TNT'; | ||
case TNT_EXTRA = 'TNT-EXTRA'; | ||
case TNT_BRIEF = 'TNT_BRIEF'; | ||
case TNT_EXPRESS = 'TNT-EXPRESS'; | ||
case DYL = 'DYL'; | ||
case DPD_NL = 'DPD-NL'; | ||
case DPD_BE = 'DPD-BE'; | ||
case BPOST_BE = 'BPOST_BE'; | ||
case BPOST_BRIEF = 'BPOST_BRIEF'; | ||
case DHLFORYOU = 'DHLFORYOU'; | ||
case GLS = 'GLS'; | ||
case FEDEX_NL = 'FEDEX_NL'; | ||
case FEDEX_BE = 'FEDEX_BE'; | ||
case OTHER = 'OTHER'; | ||
case DHL = 'DHL'; | ||
case DHL_DE = 'DHL_DE'; | ||
case DHL_GLOBAL_MAIL = 'DHL-GLOBAL-MAIL'; | ||
case TSN = 'TSN'; | ||
case FIEGE = 'FIEGE'; | ||
case TRANSMISSION = 'TRANSMISSION'; | ||
case PARCEL_NL = 'PARCEL-NL'; | ||
case LOGOIX = 'LOGOIX'; | ||
case PACKS = 'PACKS'; | ||
case COURIER = 'COURIER'; | ||
case TRUNKRS = 'TRUNKRS'; | ||
case CYCLOON = 'CYCLOON'; | ||
} |
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,10 @@ | ||
<?php | ||
|
||
namespace Picqer\BolRetailerV10\Enum; | ||
|
||
// This class is auto generated by OpenApi\ModelGenerator | ||
enum ConditionCategory: string | ||
{ | ||
case NEW = 'NEW'; | ||
case SECONDHAND = 'SECONDHAND'; | ||
} |
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,13 @@ | ||
<?php | ||
|
||
namespace Picqer\BolRetailerV10\Enum; | ||
|
||
// This class is auto generated by OpenApi\ModelGenerator | ||
enum ConditionName: string | ||
{ | ||
case NEW = 'NEW'; | ||
case AS_NEW = 'AS_NEW'; | ||
case GOOD = 'GOOD'; | ||
case REASONABLE = 'REASONABLE'; | ||
case MODERATE = 'MODERATE'; | ||
} |
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,14 @@ | ||
<?php | ||
|
||
namespace Picqer\BolRetailerV10\Enum; | ||
|
||
// This class is auto generated by OpenApi\ModelGenerator | ||
enum CreateDeliveryInfoTransporterCode: string | ||
{ | ||
case POSTNL = 'POSTNL'; | ||
case DHL = 'DHL'; | ||
case DPD = 'DPD'; | ||
case GLS = 'GLS'; | ||
case UPS = 'UPS'; | ||
case OTHER = 'OTHER'; | ||
} |
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,9 @@ | ||
<?php | ||
|
||
namespace Picqer\BolRetailerV10\Enum; | ||
|
||
// This class is auto generated by OpenApi\ModelGenerator | ||
enum CreateOfferExportRequestFormat: string | ||
{ | ||
case CSV = 'CSV'; | ||
} |
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,12 @@ | ||
<?php | ||
|
||
namespace Picqer\BolRetailerV10\Enum; | ||
|
||
// This class is auto generated by OpenApi\ModelGenerator | ||
enum CreateProductContentSingleRequestLanguage: string | ||
{ | ||
case NL = 'nl'; | ||
case NL_BE = 'nl-BE'; | ||
case FR = 'fr'; | ||
case FR_BE = 'fr-BE'; | ||
} |
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,13 @@ | ||
<?php | ||
|
||
namespace Picqer\BolRetailerV10\Enum; | ||
|
||
// This class is auto generated by OpenApi\ModelGenerator | ||
enum CreateReturnRequestHandlingResult: string | ||
{ | ||
case RETURN_RECEIVED = 'RETURN_RECEIVED'; | ||
case EXCHANGE_PRODUCT = 'EXCHANGE_PRODUCT'; | ||
case RETURN_DOES_NOT_MEET_CONDITIONS = 'RETURN_DOES_NOT_MEET_CONDITIONS'; | ||
case REPAIR_PRODUCT = 'REPAIR_PRODUCT'; | ||
case CUSTOMER_KEEPS_PRODUCT_PAID = 'CUSTOMER_KEEPS_PRODUCT_PAID'; | ||
} |
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,9 @@ | ||
<?php | ||
|
||
namespace Picqer\BolRetailerV10\Enum; | ||
|
||
// This class is auto generated by OpenApi\ModelGenerator | ||
enum CreateUnpublishedOfferReportRequestFormat: string | ||
{ | ||
case CSV = 'CSV'; | ||
} |
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,11 @@ | ||
<?php | ||
|
||
namespace Picqer\BolRetailerV10\Enum; | ||
|
||
// This class is auto generated by OpenApi\ModelGenerator | ||
enum CustomerDetailsSalutation: string | ||
{ | ||
case MALE = 'MALE'; | ||
case FEMALE = 'FEMALE'; | ||
case UNKNOWN = 'UNKNOWN'; | ||
} |
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,14 @@ | ||
<?php | ||
|
||
namespace Picqer\BolRetailerV10\Enum; | ||
|
||
// This class is auto generated by OpenApi\ModelGenerator | ||
enum DeliveryInformationTransporterCode: string | ||
{ | ||
case POSTNL = 'POSTNL'; | ||
case DHL = 'DHL'; | ||
case DPD = 'DPD'; | ||
case GLS = 'GLS'; | ||
case UPS = 'UPS'; | ||
case OTHER = 'OTHER'; | ||
} |
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,11 @@ | ||
<?php | ||
|
||
namespace Picqer\BolRetailerV10\Enum; | ||
|
||
// This class is auto generated by OpenApi\ModelGenerator | ||
enum DeliveryOptionLabelType: string | ||
{ | ||
case PARCEL = 'PARCEL'; | ||
case MAILBOX = 'MAILBOX'; | ||
case MAILBOX_LIGHT = 'MAILBOX_LIGHT'; | ||
} |
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,27 @@ | ||
<?php | ||
|
||
namespace Picqer\BolRetailerV10\Enum; | ||
|
||
// This class is auto generated by OpenApi\ModelGenerator | ||
enum FulfilmentDeliveryCode: string | ||
{ | ||
case _24UURS_23 = '24uurs-23'; | ||
case _24UURS_22 = '24uurs-22'; | ||
case _24UURS_21 = '24uurs-21'; | ||
case _24UURS_20 = '24uurs-20'; | ||
case _24UURS_19 = '24uurs-19'; | ||
case _24UURS_18 = '24uurs-18'; | ||
case _24UURS_17 = '24uurs-17'; | ||
case _24UURS_16 = '24uurs-16'; | ||
case _24UURS_15 = '24uurs-15'; | ||
case _24UURS_14 = '24uurs-14'; | ||
case _24UURS_13 = '24uurs-13'; | ||
case _24UURS_12 = '24uurs-12'; | ||
case _1_2D = '1-2d'; | ||
case _2_3D = '2-3d'; | ||
case _3_5D = '3-5d'; | ||
case _4_8D = '4-8d'; | ||
case _1_8D = '1-8d'; | ||
case MIJNLEVERBELOFTE = 'MijnLeverbelofte'; | ||
case VVB = 'VVB'; | ||
} |
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,10 @@ | ||
<?php | ||
|
||
namespace Picqer\BolRetailerV10\Enum; | ||
|
||
// This class is auto generated by OpenApi\ModelGenerator | ||
enum FulfilmentMethod: string | ||
{ | ||
case FBR = 'FBR'; | ||
case FBB = 'FBB'; | ||
} |
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,12 @@ | ||
<?php | ||
|
||
namespace Picqer\BolRetailerV10\Enum; | ||
|
||
// This class is auto generated by OpenApi\ModelGenerator | ||
enum GetCatalogProductAcceptLanguage: string | ||
{ | ||
case NL = 'nl'; | ||
case NL_BE = 'nl-BE'; | ||
case FR = 'fr'; | ||
case FR_BE = 'fr-BE'; | ||
} |
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,13 @@ | ||
<?php | ||
|
||
namespace Picqer\BolRetailerV10\Enum; | ||
|
||
// This class is auto generated by OpenApi\ModelGenerator | ||
enum GetCommissionCondition: string | ||
{ | ||
case NEW = 'NEW'; | ||
case AS_NEW = 'AS_NEW'; | ||
case GOOD = 'GOOD'; | ||
case REASONABLE = 'REASONABLE'; | ||
case MODERATE = 'MODERATE'; | ||
} |
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,15 @@ | ||
<?php | ||
|
||
namespace Picqer\BolRetailerV10\Enum; | ||
|
||
// This class is auto generated by OpenApi\ModelGenerator | ||
enum GetCompetingOffersCondition: string | ||
{ | ||
case ALL = 'ALL'; | ||
case BAD = 'BAD'; | ||
case MODERATE = 'MODERATE'; | ||
case REASONABLE = 'REASONABLE'; | ||
case GOOD = 'GOOD'; | ||
case AS_NEW = 'AS_NEW'; | ||
case NEW = 'NEW'; | ||
} |
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,10 @@ | ||
<?php | ||
|
||
namespace Picqer\BolRetailerV10\Enum; | ||
|
||
// This class is auto generated by OpenApi\ModelGenerator | ||
enum GetCompetingOffersCountryCode: string | ||
{ | ||
case NL = 'NL'; | ||
case BE = 'BE'; | ||
} |
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,10 @@ | ||
<?php | ||
|
||
namespace Picqer\BolRetailerV10\Enum; | ||
|
||
// This class is auto generated by OpenApi\ModelGenerator | ||
enum GetInventoryState: string | ||
{ | ||
case REGULAR = 'REGULAR'; | ||
case GRADED = 'GRADED'; | ||
} |
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,10 @@ | ||
<?php | ||
|
||
namespace Picqer\BolRetailerV10\Enum; | ||
|
||
// This class is auto generated by OpenApi\ModelGenerator | ||
enum GetInventoryStock: string | ||
{ | ||
case SUFFICIENT = 'SUFFICIENT'; | ||
case INSUFFICIENT = 'INSUFFICIENT'; | ||
} |
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,11 @@ | ||
<?php | ||
|
||
namespace Picqer\BolRetailerV10\Enum; | ||
|
||
// This class is auto generated by OpenApi\ModelGenerator | ||
enum GetInvoiceRequestsState: string | ||
{ | ||
case OPEN = 'OPEN'; | ||
case UPLOAD_ERROR = 'UPLOAD_ERROR'; | ||
case ALL = 'ALL'; | ||
} |
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,10 @@ | ||
<?php | ||
|
||
namespace Picqer\BolRetailerV10\Enum; | ||
|
||
// This class is auto generated by OpenApi\ModelGenerator | ||
enum GetLoadCarrierLabelsLabelType: string | ||
{ | ||
case WAREHOUSE = 'WAREHOUSE'; | ||
case TRANSPORT = 'TRANSPORT'; | ||
} |
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,10 @@ | ||
<?php | ||
|
||
namespace Picqer\BolRetailerV10\Enum; | ||
|
||
// This class is auto generated by OpenApi\ModelGenerator | ||
enum GetOfferInsightsName: string | ||
{ | ||
case PRODUCT_VISITS = 'PRODUCT_VISITS'; | ||
case BUY_BOX_PERCENTAGE = 'BUY_BOX_PERCENTAGE'; | ||
} |
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,11 @@ | ||
<?php | ||
|
||
namespace Picqer\BolRetailerV10\Enum; | ||
|
||
// This class is auto generated by OpenApi\ModelGenerator | ||
enum GetOfferInsightsPeriod: string | ||
{ | ||
case DAY = 'DAY'; | ||
case WEEK = 'WEEK'; | ||
case MONTH = 'MONTH'; | ||
} |
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,11 @@ | ||
<?php | ||
|
||
namespace Picqer\BolRetailerV10\Enum; | ||
|
||
// This class is auto generated by OpenApi\ModelGenerator | ||
enum GetOrdersFulfilmentMethod: string | ||
{ | ||
case FBR = 'FBR'; | ||
case FBB = 'FBB'; | ||
case ALL = 'ALL'; | ||
} |
Oops, something went wrong.