-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
158 additions
and
148 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
16 changes: 0 additions & 16 deletions
16
src/SecucardConnect/Product/General/Model/BaseDeliveryConfiguration.php
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
src/SecucardConnect/Product/General/Model/CheckoutOptions.php
This file was deleted.
Oops, something went wrong.
26 changes: 0 additions & 26 deletions
26
src/SecucardConnect/Product/General/Model/CollectionDeliveryConfiguration.php
This file was deleted.
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
21 changes: 0 additions & 21 deletions
21
src/SecucardConnect/Product/General/Model/OrderOptions.php
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
src/SecucardConnect/Product/General/Model/ShippingDeliveryConfiguration.php
This file was deleted.
Oops, something went wrong.
15 changes: 15 additions & 0 deletions
15
src/SecucardConnect/Product/Smart/Model/BaseDeliveryOptions.php
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 SecucardConnect\Product\Smart\Model; | ||
|
||
/** | ||
* BaseDeliveryOptions Api Model class | ||
*/ | ||
class BaseDeliveryOptions | ||
{ | ||
/** | ||
* @var string | ||
*/ | ||
public $type; | ||
} |
34 changes: 34 additions & 0 deletions
34
src/SecucardConnect/Product/Smart/Model/DeliveryOptionsCollection.php
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,34 @@ | ||
<?php | ||
|
||
namespace SecucardConnect\Product\Smart\Model; | ||
|
||
/** | ||
* DeliveryOptionsCollection Api Model class | ||
*/ | ||
class DeliveryOptionsCollection extends BaseDeliveryOptions | ||
{ | ||
/** | ||
* @var string string | ||
*/ | ||
public $type = Transaction::DELIVERY_OPTIONS_COLLECTION; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
public $store_id; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
public $code; | ||
|
||
/** | ||
* @var DeliveryOptionsTimeSlot | ||
*/ | ||
public $scheduled_slot; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
public $delivered_at; | ||
} |
34 changes: 34 additions & 0 deletions
34
src/SecucardConnect/Product/Smart/Model/DeliveryOptionsShipping.php
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,34 @@ | ||
<?php | ||
|
||
namespace SecucardConnect\Product\Smart\Model; | ||
|
||
/** | ||
* DeliveryOptionsShipping Api Model class | ||
*/ | ||
class DeliveryOptionsShipping extends BaseDeliveryOptions | ||
{ | ||
/** | ||
* @var string | ||
*/ | ||
public $type = Transaction::DELIVERY_OPTIONS_SHIPPING; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
public $shipped_at; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
public $shipped_by; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
public $tracking_code; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
public $invoice_number; | ||
} |
19 changes: 19 additions & 0 deletions
19
src/SecucardConnect/Product/Smart/Model/DeliveryOptionsTimeSlot.php
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,19 @@ | ||
<?php | ||
|
||
namespace SecucardConnect\Product\Smart\Model; | ||
|
||
/** | ||
* DeliveryOptionsTimeSlot Api Model class | ||
*/ | ||
class DeliveryOptionsTimeSlot | ||
{ | ||
/** | ||
* @var string | ||
*/ | ||
public $start_date; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
public $end_date; | ||
} |
This file was deleted.
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
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