Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions Facade/PayoutFacade.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,20 @@ class PayoutFacade
*/
public $message;

/**
* @var string $reference
* @SerializedName("Reference")
* @Type("string")
*/
public $reference;

/**
* @var string $motif
* @SerializedName("Motif")
* @Type("string")
*/
public $motif;

/**
* @var ExtraParametersFacade $extraParameters
* @SerializedName("ExtraParameters")
Expand Down
9 changes: 8 additions & 1 deletion Facade/UserCardRegistrationFacade.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,11 @@ class UserCardRegistrationFacade
* @Type("string")
*/
public $urlReturn;
}

/**
* @var string $urlCallback
* @SerializedName("UrlCallback")
* @Type("string")
*/
public $urlCallback;
}
42 changes: 42 additions & 0 deletions Facade/VoucherCopyFacade.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,46 @@ class VoucherCopyFacade
* @Type("string")
*/
public $href;

/**
* @var string $contentType
* @SerializedName("ContentType")
* @Type("string")
*/
public $contentType;

/**
* @var string $status
* @SerializedName("Status")
* @Type("integer")
*/
public $status;

/**
* @var string $message
* @SerializedName("Message")
* @Type("string")
*/
public $message;

/**
* @var string $additionalStatus
* @SerializedName("AdditionalStatus")
* @Type("integer")
*/
public $additionnalStatus;

/**
* @var string $treatmentDate
* @SerializedName("TreatmentDate")
* @Type("DateTime<'Y-m-d\TH:i:s+'>")
*/
public $treatmentDate;

/**
* @var string $receivedDate
* @SerializedName("ReceivedDate")
* @Type("DateTime<'Y-m-d\TH:i:s+'>")
*/
public $receivedDate;
}