TrackManiaControl/libs/Maniaplanet/DedicatedServer/Structures/Bill.php

26 lines
575 B
PHP
Raw Normal View History

2014-01-16 16:56:24 +01:00
<?php
/**
* ManiaPlanet dedicated server Xml-RPC client
*
* @license http://www.gnu.org/licenses/lgpl.html LGPL License 3
*/
2014-05-08 19:38:15 +02:00
2014-01-16 16:56:24 +01:00
namespace Maniaplanet\DedicatedServer\Structures;
class Bill extends AbstractStructure
{
const STATE_CREATING_TRANSACTION = 1;
2014-06-12 15:39:50 +02:00
const STATE_ISSUED = 2;
const STATE_VALIDATING_PAYMENT = 3;
const STATE_PAYED = 4;
const STATE_REFUSED = 5;
const STATE_ERROR = 6;
2014-05-08 19:38:15 +02:00
/** @var int */
2014-01-16 16:56:24 +01:00
public $state;
2014-05-08 19:38:15 +02:00
/** @var string */
2014-01-16 16:56:24 +01:00
public $stateName;
2014-05-08 19:38:15 +02:00
/** @var int */
2014-01-16 16:56:24 +01:00
public $transactionId;
}