| 1 | <?php |
||
| 8 | class ARBGetSubscriptionRequest extends ANetApiRequestType |
||
| 9 | { |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @property string $subscriptionId |
||
| 13 | */ |
||
| 14 | private $subscriptionId = null; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @property bool $includeTransactions; |
||
| 18 | */ |
||
| 19 | private $includeTransactions = false; |
||
| 20 | |||
| 21 | 1 | /** |
|
| 22 | * Gets as subscriptionId |
||
| 23 | 1 | * |
|
| 24 | * @return string |
||
| 25 | */ |
||
| 26 | public function getSubscriptionId() |
||
| 30 | |||
| 31 | /** |
||
| 32 | 1 | * Sets a new subscriptionId |
|
| 33 | * |
||
| 34 | 1 | * @param string $subscriptionId |
|
| 35 | 1 | * @return self |
|
| 36 | */ |
||
| 37 | public function setSubscriptionId($subscriptionId) |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Gets the includeTransactions flag |
||
| 45 | * |
||
| 46 | * @return bool |
||
| 47 | */ |
||
| 48 | public function getIncludeTransactions() |
||
| 52 | |||
| 53 | /** |
||
| 54 | * Sets the includeTransactions flag on the request |
||
| 55 | * |
||
| 56 | * @param $includeTransactions |
||
| 57 | * @return $this |
||
| 58 | */ |
||
| 59 | public function setIncludeTransactions($includeTransactions) |
||
| 64 | |||
| 65 | } |