Ajout type

This commit is contained in:
Michael RICOIS 2010-10-26 13:24:16 +00:00
parent 5718e8bc5f
commit ac8e52531b

View File

@ -21,6 +21,14 @@ class SetCommandeReturnType
public $result; public $result;
} }
class ListeCommandeReturnType
{
/** @var ErrorType */
public $error;
/** @var ListeCommande */
public $result;
}
class ListeBilan class ListeBilan
{ {
/** @var ErrorType */ /** @var ErrorType */
@ -54,8 +62,10 @@ class ListeCommandeFiltre
class ListeCommande class ListeCommande
{ {
/** @var ErrorType */ /** @var int */
public $error; public $nbCommandes;
/** @var RefCommande[] */
public $commandes;
} }
@ -74,7 +84,7 @@ class RefCommande
public $fichier; public $fichier;
/** /**
* Information textuel * Information sur l'état de la commande
* @var string * @var string
*/ */
public $info; public $info;
@ -96,6 +106,12 @@ class RefCommande
* @var string * @var string
*/ */
public $dateReception; public $dateReception;
/**
* Identifiant de l'utilisateur qui a passé la commande
* @var string
*/
public $login;
} }
class InfoDemandeur class InfoDemandeur