55 lines
1.3 KiB
PHP
Executable File
55 lines
1.3 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 pointCHR {
|
|
/* boolean */
|
|
public $accesPersonneMobiliteReduite;
|
|
/* boolean */
|
|
public $actif;
|
|
/* string */
|
|
public $adresse1;
|
|
/* string */
|
|
public $adresse2;
|
|
/* string */
|
|
public $adresse3;
|
|
/* string */
|
|
public $codePays;
|
|
/* string */
|
|
public $codePostal;
|
|
/* string */
|
|
public $coordGeolocalisationLatitude;
|
|
/* string */
|
|
public $coordGeolocalisationLongitude;
|
|
/* int */
|
|
public $distanceEnMetre;
|
|
/* string */
|
|
public $identifiant;
|
|
/* string */
|
|
public $indiceDeLocalisation;
|
|
/* listeHoraireOuverturePourUnJour */
|
|
public $listeHoraireOuverture;
|
|
/* periodeFermeture */
|
|
public $listePeriodeFermeture;
|
|
/* string */
|
|
public $localite;
|
|
/* string */
|
|
public $nom;
|
|
/* int */
|
|
public $poidsMaxi;
|
|
/* string */
|
|
public $typeDePoint;
|
|
/* string */
|
|
public $urlGoogleMaps;
|
|
}
|
|
|
|
?>
|