47 lines
1.1 KiB
PHP
Executable File
47 lines
1.1 KiB
PHP
Executable File
<?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 bureauDeTabac {
|
|
/* string */
|
|
public $adresse1;
|
|
/* string */
|
|
public $adresse2;
|
|
/* string */
|
|
public $adresse3;
|
|
/* string */
|
|
public $codePostal;
|
|
/* dateTime */
|
|
public $dateArriveColis;
|
|
/* string */
|
|
public $horairesOuvertureDimanche;
|
|
/* string */
|
|
public $horairesOuvertureJeudi;
|
|
/* string */
|
|
public $horairesOuvertureLundi;
|
|
/* string */
|
|
public $horairesOuvertureMardi;
|
|
/* string */
|
|
public $horairesOuvertureMercredi;
|
|
/* string */
|
|
public $horairesOuvertureSamedi;
|
|
/* string */
|
|
public $horairesOuvertureVendredi;
|
|
/* string */
|
|
public $identifiantChronopostPointA2PAS;
|
|
/* string */
|
|
public $localite;
|
|
/* string */
|
|
public $nomEnseigne;
|
|
}
|
|
|
|
?>
|