This repository has been archived by the owner on Sep 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
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
1 parent
25a0423
commit 0755ec4
Showing
6 changed files
with
3,697 additions
and
82 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,44 @@ | ||
<?php | ||
/* | ||
* This file is part of the Payline package. | ||
* | ||
* (c) Monext <http://www.monext.net> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
namespace Payline; | ||
|
||
class Order | ||
{ | ||
|
||
public $ref; | ||
|
||
public $origin; | ||
|
||
public $country; | ||
|
||
public $taxes; | ||
|
||
public $amount; | ||
|
||
public $currency; | ||
|
||
public $date; | ||
|
||
public $quantity; | ||
|
||
public $comment; | ||
|
||
public $details; | ||
|
||
public $deliveryTime; | ||
|
||
public $deliveryMode; | ||
|
||
public $deliveryExpectedDate; | ||
|
||
public $deliveryExpectedDelay; | ||
<?php | ||
/* | ||
* This file is part of the Payline package. | ||
* | ||
* (c) Monext <http://www.monext.net> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
namespace Payline; | ||
|
||
class Order | ||
{ | ||
|
||
public $ref; | ||
|
||
public $origin; | ||
|
||
public $country; | ||
|
||
public $taxes; | ||
|
||
public $amount; | ||
|
||
public $currency; | ||
|
||
public $date; | ||
|
||
public $quantity; | ||
|
||
public $comment; | ||
|
||
public $details; | ||
|
||
public $deliveryTime; | ||
|
||
public $deliveryMode; | ||
|
||
public $deliveryExpectedDate; | ||
|
||
public $deliveryExpectedDelay; | ||
|
||
public $deliveryCharge; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,34 @@ | ||
<?php | ||
/* | ||
* This file is part of the Payline package. | ||
* | ||
* (c) Monext <http://www.monext.net> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
namespace Payline; | ||
|
||
class Payment | ||
{ | ||
|
||
public $amount; | ||
|
||
public $currency; | ||
|
||
public $action; | ||
|
||
public $mode; | ||
|
||
public $method; | ||
|
||
public $contractNumber; | ||
|
||
public $differedActionDate; | ||
|
||
public $softDescriptor; | ||
|
||
public $cardBrand; | ||
<?php | ||
/* | ||
* This file is part of the Payline package. | ||
* | ||
* (c) Monext <http://www.monext.net> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
namespace Payline; | ||
|
||
class Payment | ||
{ | ||
|
||
public $amount; | ||
|
||
public $currency; | ||
|
||
public $action; | ||
|
||
public $mode; | ||
|
||
public $method; | ||
|
||
public $contractNumber; | ||
|
||
public $differedActionDate; | ||
|
||
public $softDescriptor; | ||
|
||
public $cardBrand; | ||
|
||
public $registrationToken; | ||
} |
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,38 @@ | ||
<?php | ||
/* | ||
* This file is part of the Payline package. | ||
* | ||
* (c) Monext <http://www.monext.net> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
namespace Payline; | ||
|
||
class SubMerchant | ||
{ | ||
|
||
public $subMerchantId; | ||
|
||
public $subMerchantName; | ||
|
||
public $subMerchantMCC; | ||
|
||
public $subMerchantSIRET; | ||
|
||
public $subMerchantTaxCode; | ||
|
||
public $subMerchantStreet; | ||
|
||
public $subMerchantCity; | ||
|
||
public $subMerchantZipCode; | ||
|
||
public $subMerchantCountry; | ||
|
||
public $subMerchantState; | ||
|
||
public $subMerchantEmailAddress; | ||
|
||
public $subMerchantPhoneNumber; | ||
} |
Oops, something went wrong.