Ajout méthode getLiens, issue #0000379
This commit is contained in:
parent
b5169076d5
commit
a4b139113c
@ -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"
|
62
library/WsScore/Types/LiensTypes.php
Normal file
62
library/WsScore/Types/LiensTypes.php
Normal 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;
|
||||
}
|
@ -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
Loading…
x
Reference in New Issue
Block a user