45 lines
1011 B
PHP
45 lines
1011 B
PHP
|
<?php
|
||
|
/**
|
||
|
* MODULE PRESTASHOP OFFICIEL CHRONOPOST
|
||
|
*
|
||
|
* LICENSE : All rights reserved - COPY AND REDISTRIBUTION FORBIDDEN WITHOUT PRIOR CONSENT FROM OXILEO
|
||
|
* LICENCE : Tous droits réservés, le droit d'auteur s'applique - COPIE ET REDISTRIBUTION INTERDITES SANS ACCORD EXPRES D'OXILEO
|
||
|
*
|
||
|
* @author Oxileo SAS <contact@oxileo.eu>
|
||
|
* @copyright 2001-2014 Oxileo SAS
|
||
|
* @license Proprietary - no redistribution without authorization
|
||
|
*/
|
||
|
|
||
|
class recherchePointChronopost {
|
||
|
/* string */
|
||
|
public $accountNumber;
|
||
|
/* string */
|
||
|
public $password;
|
||
|
/* string */
|
||
|
public $address;
|
||
|
/* string */
|
||
|
public $zipCode;
|
||
|
/* string */
|
||
|
public $city;
|
||
|
/* string */
|
||
|
public $countryCode;
|
||
|
/* string */
|
||
|
public $type;
|
||
|
/* string */
|
||
|
public $productCode;
|
||
|
/* string */
|
||
|
public $service;
|
||
|
/* string */
|
||
|
public $weight;
|
||
|
/* string */
|
||
|
public $shippingDate;
|
||
|
/* string */
|
||
|
public $maxPointChronopost;
|
||
|
/* string */
|
||
|
public $maxDistanceSearch;
|
||
|
/* string */
|
||
|
public $holidayTolerant;
|
||
|
}
|
||
|
|
||
|
?>
|