Ajout méthode getLiens, issue #0000379

This commit is contained in:
Michael RICOIS 2010-11-10 13:37:07 +00:00
parent b5169076d5
commit a4b139113c
4 changed files with 998 additions and 194 deletions

View File

@ -19,4 +19,8 @@ Type.17 = "Dirigeant"
Type.18 = "AnnoncesReturn"
Type.19 = "AnnoncesResult"
Type.20 = "Annonce"
Type.21 = "AnnonceEvenement"
Type.21 = "AnnonceEvenement"
Type.22 = "LiensReturn"
Type.23 = "LiensResult"
Type.24 = "Actionnaire"
Type.25 = "Participations"

View File

@ -0,0 +1,62 @@
<?php
class LiensReturn
{
/** @var ErrorType */
public $error;
/** @var LiensResult */
public $result;
}
class LiensResult
{
/** @var Actionnaire[] */
public $actionnaires;
/** @var Participation[] */
public $participations;
}
class Actionnaire
{
/** @var string */
public $Pmin;
/** @var string */
public $MajMin;
/** @var string */
public $RaisonSociale;
/** @var string */
public $Pays;
/** @var string */
public $Siren;
/** @var string */
public $Actif;
/** @var string */
public $Source;
/** @var string */
public $DateLien;
/** @var string */
public $DateMaj;
}
class Participation
{
/** @var string */
public $Pmin;
/** @var string */
public $MajMin;
/** @var string */
public $RaisonSociale;
/** @var string */
public $Pays;
/** @var string */
public $Siren;
/** @var string */
public $Actif;
/** @var string */
public $Source;
/** @var string */
public $DateLien;
/** @var string */
public $DateMaj;
}

View File

@ -5,6 +5,7 @@ require_once realpath(dirname(__FILE__)).'/RechercheEntrepriseTypes.php';
require_once realpath(dirname(__FILE__)).'/ListeEtablissementsTypes.php';
require_once realpath(dirname(__FILE__)).'/DirigeantsTypes.php';
require_once realpath(dirname(__FILE__)).'/AnnoncesTypes.php';
require_once realpath(dirname(__FILE__)).'/LiensTypes.php';
class ErrorType
{

File diff suppressed because it is too large Load Diff