| 1 | <?php |
||
| 19 | class VersionResponseModel implements ResponseModelInterface |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * Kind of response. |
||
| 23 | * |
||
| 24 | * @SA\Type("string") |
||
| 25 | * @SA\SerializedName("kind") |
||
| 26 | * |
||
| 27 | * @var string|null |
||
| 28 | */ |
||
| 29 | protected $kind; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Collection of response models. |
||
| 33 | * |
||
| 34 | * @SA\Type("array<Zibios\WrikePhpJmsserializer\Model\Version\VersionResourceModel>") |
||
| 35 | * @SA\SerializedName("data") |
||
| 36 | * |
||
| 37 | * @var array|VersionResourceModel]|null |
||
| 38 | */ |
||
| 39 | protected $data; |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @return null|string |
||
| 43 | */ |
||
| 44 | 1 | public function getKind() |
|
| 48 | |||
| 49 | /** |
||
| 50 | * @param null|string $kind |
||
| 51 | * |
||
| 52 | * @return $this |
||
| 53 | */ |
||
| 54 | 1 | public function setKind($kind) |
|
| 60 | |||
| 61 | /** |
||
| 62 | * @return array|VersionResourceModel[]|null |
||
| 63 | */ |
||
| 64 | 1 | public function getData() |
|
| 68 | |||
| 69 | /** |
||
| 70 | * @param array|VersionResourceModel[]|null $data |
||
| 71 | * |
||
| 72 | * @return $this |
||
| 73 | */ |
||
| 74 | 1 | public function setData($data) |
|
| 80 | } |
||
| 81 |