| 1 | <?php |
||
| 5 | class getAllRetailsResult |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var string |
||
| 9 | */ |
||
| 10 | protected $schema = null; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | protected $any = null; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param string $schema |
||
| 19 | * @param string $any |
||
| 20 | */ |
||
| 21 | public function __construct($schema = null, $any = null) |
||
| 22 | { |
||
| 23 | $this->schema = $schema; |
||
| 24 | $this->any = $any; |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return string |
||
| 29 | */ |
||
| 30 | public function getSchema() |
||
| 31 | { |
||
| 32 | return $this->schema; |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @param string $schema |
||
| 37 | * |
||
| 38 | * @return \SmsaSDK\Methods\getAllRetailsResult |
||
| 39 | */ |
||
| 40 | public function setSchema($schema) |
||
| 41 | { |
||
| 42 | $this->schema = $schema; |
||
| 43 | |||
| 44 | return $this; |
||
| 45 | } |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @return string |
||
| 49 | */ |
||
| 50 | public function getAny() |
||
| 51 | { |
||
| 52 | return $this->any; |
||
| 53 | } |
||
| 54 | |||
| 55 | /** |
||
| 56 | * @param string $any |
||
| 57 | * |
||
| 58 | * @return \SmsaSDK\Methods\getAllRetailsResult |
||
| 59 | */ |
||
| 60 | public function setAny($any) |
||
| 61 | { |
||
| 62 | $this->any = $any; |
||
| 63 | |||
| 64 | return $this; |
||
| 65 | } |
||
| 66 | } |
||
| 67 |