| @@ 21-82 (lines=62) @@ | ||
| 18 | /** |
|
| 19 | * Account Response Model. |
|
| 20 | */ |
|
| 21 | class AccountResponseModel extends AbstractModel implements ResponseModelInterface |
|
| 22 | { |
|
| 23 | /** |
|
| 24 | * Kind of response. |
|
| 25 | * |
|
| 26 | * @SA\Type("string") |
|
| 27 | * @SA\SerializedName("kind") |
|
| 28 | * |
|
| 29 | * @var string|null |
|
| 30 | */ |
|
| 31 | protected $kind; |
|
| 32 | ||
| 33 | /** |
|
| 34 | * Collection of response models. |
|
| 35 | * |
|
| 36 | * @SA\Type("array<Zibios\WrikePhpJmsserializer\Model\Account\AccountResourceModel>") |
|
| 37 | * @SA\SerializedName("data") |
|
| 38 | * |
|
| 39 | * @var array|AccountResourceModel]|null |
|
| 40 | */ |
|
| 41 | protected $data; |
|
| 42 | ||
| 43 | /** |
|
| 44 | * @return null|string |
|
| 45 | */ |
|
| 46 | public function getKind() |
|
| 47 | { |
|
| 48 | return $this->kind; |
|
| 49 | } |
|
| 50 | ||
| 51 | /** |
|
| 52 | * @param null|string $kind |
|
| 53 | * |
|
| 54 | * @return $this |
|
| 55 | */ |
|
| 56 | public function setKind($kind) |
|
| 57 | { |
|
| 58 | $this->kind = $kind; |
|
| 59 | ||
| 60 | return $this; |
|
| 61 | } |
|
| 62 | ||
| 63 | /** |
|
| 64 | * @return array|AccountResourceModel[]|null |
|
| 65 | */ |
|
| 66 | public function getData() |
|
| 67 | { |
|
| 68 | return $this->data; |
|
| 69 | } |
|
| 70 | ||
| 71 | /** |
|
| 72 | * @param array|AccountResourceModel[]|null $data |
|
| 73 | * |
|
| 74 | * @return $this |
|
| 75 | */ |
|
| 76 | public function setData($data) |
|
| 77 | { |
|
| 78 | $this->data = $data; |
|
| 79 | ||
| 80 | return $this; |
|
| 81 | } |
|
| 82 | } |
|
| 83 | ||
| @@ 21-82 (lines=62) @@ | ||
| 18 | /** |
|
| 19 | * Attachment Response Model. |
|
| 20 | */ |
|
| 21 | class AttachmentResponseModel extends AbstractModel implements ResponseModelInterface |
|
| 22 | { |
|
| 23 | /** |
|
| 24 | * Kind of response. |
|
| 25 | * |
|
| 26 | * @SA\Type("string") |
|
| 27 | * @SA\SerializedName("kind") |
|
| 28 | * |
|
| 29 | * @var string|null |
|
| 30 | */ |
|
| 31 | protected $kind; |
|
| 32 | ||
| 33 | /** |
|
| 34 | * Collection of response models. |
|
| 35 | * |
|
| 36 | * @SA\Type("array<Zibios\WrikePhpJmsserializer\Model\Attachment\AttachmentResourceModel>") |
|
| 37 | * @SA\SerializedName("data") |
|
| 38 | * |
|
| 39 | * @var array|AttachmentResourceModel]|null |
|
| 40 | */ |
|
| 41 | protected $data; |
|
| 42 | ||
| 43 | /** |
|
| 44 | * @return null|string |
|
| 45 | */ |
|
| 46 | public function getKind() |
|
| 47 | { |
|
| 48 | return $this->kind; |
|
| 49 | } |
|
| 50 | ||
| 51 | /** |
|
| 52 | * @param null|string $kind |
|
| 53 | * |
|
| 54 | * @return $this |
|
| 55 | */ |
|
| 56 | public function setKind($kind) |
|
| 57 | { |
|
| 58 | $this->kind = $kind; |
|
| 59 | ||
| 60 | return $this; |
|
| 61 | } |
|
| 62 | ||
| 63 | /** |
|
| 64 | * @return array|AttachmentResourceModel[]|null |
|
| 65 | */ |
|
| 66 | public function getData() |
|
| 67 | { |
|
| 68 | return $this->data; |
|
| 69 | } |
|
| 70 | ||
| 71 | /** |
|
| 72 | * @param array|AttachmentResourceModel[]|null $data |
|
| 73 | * |
|
| 74 | * @return $this |
|
| 75 | */ |
|
| 76 | public function setData($data) |
|
| 77 | { |
|
| 78 | $this->data = $data; |
|
| 79 | ||
| 80 | return $this; |
|
| 81 | } |
|
| 82 | } |
|
| 83 | ||
| @@ 21-82 (lines=62) @@ | ||
| 18 | /** |
|
| 19 | * Color Response Model. |
|
| 20 | */ |
|
| 21 | class ColorResponseModel extends AbstractModel implements ResponseModelInterface |
|
| 22 | { |
|
| 23 | /** |
|
| 24 | * Kind of response. |
|
| 25 | * |
|
| 26 | * @SA\Type("string") |
|
| 27 | * @SA\SerializedName("kind") |
|
| 28 | * |
|
| 29 | * @var string|null |
|
| 30 | */ |
|
| 31 | protected $kind; |
|
| 32 | ||
| 33 | /** |
|
| 34 | * Collection of response models. |
|
| 35 | * |
|
| 36 | * @SA\Type("array<Zibios\WrikePhpJmsserializer\Model\Color\ColorResourceModel>") |
|
| 37 | * @SA\SerializedName("data") |
|
| 38 | * |
|
| 39 | * @var array|ColorResourceModel]|null |
|
| 40 | */ |
|
| 41 | protected $data; |
|
| 42 | ||
| 43 | /** |
|
| 44 | * @return null|string |
|
| 45 | */ |
|
| 46 | public function getKind() |
|
| 47 | { |
|
| 48 | return $this->kind; |
|
| 49 | } |
|
| 50 | ||
| 51 | /** |
|
| 52 | * @param null|string $kind |
|
| 53 | * |
|
| 54 | * @return $this |
|
| 55 | */ |
|
| 56 | public function setKind($kind) |
|
| 57 | { |
|
| 58 | $this->kind = $kind; |
|
| 59 | ||
| 60 | return $this; |
|
| 61 | } |
|
| 62 | ||
| 63 | /** |
|
| 64 | * @return array|ColorResourceModel[]|null |
|
| 65 | */ |
|
| 66 | public function getData() |
|
| 67 | { |
|
| 68 | return $this->data; |
|
| 69 | } |
|
| 70 | ||
| 71 | /** |
|
| 72 | * @param array|ColorResourceModel[]|null $data |
|
| 73 | * |
|
| 74 | * @return $this |
|
| 75 | */ |
|
| 76 | public function setData($data) |
|
| 77 | { |
|
| 78 | $this->data = $data; |
|
| 79 | ||
| 80 | return $this; |
|
| 81 | } |
|
| 82 | } |
|
| 83 | ||
| @@ 21-82 (lines=62) @@ | ||
| 18 | /** |
|
| 19 | * Comment Response Model. |
|
| 20 | */ |
|
| 21 | class CommentResponseModel extends AbstractModel implements ResponseModelInterface |
|
| 22 | { |
|
| 23 | /** |
|
| 24 | * Kind of response. |
|
| 25 | * |
|
| 26 | * @SA\Type("string") |
|
| 27 | * @SA\SerializedName("kind") |
|
| 28 | * |
|
| 29 | * @var string|null |
|
| 30 | */ |
|
| 31 | protected $kind; |
|
| 32 | ||
| 33 | /** |
|
| 34 | * Collection of response models. |
|
| 35 | * |
|
| 36 | * @SA\Type("array<Zibios\WrikePhpJmsserializer\Model\Comment\CommentResourceModel>") |
|
| 37 | * @SA\SerializedName("data") |
|
| 38 | * |
|
| 39 | * @var array|CommentResourceModel]|null |
|
| 40 | */ |
|
| 41 | protected $data; |
|
| 42 | ||
| 43 | /** |
|
| 44 | * @return null|string |
|
| 45 | */ |
|
| 46 | public function getKind() |
|
| 47 | { |
|
| 48 | return $this->kind; |
|
| 49 | } |
|
| 50 | ||
| 51 | /** |
|
| 52 | * @param null|string $kind |
|
| 53 | * |
|
| 54 | * @return $this |
|
| 55 | */ |
|
| 56 | public function setKind($kind) |
|
| 57 | { |
|
| 58 | $this->kind = $kind; |
|
| 59 | ||
| 60 | return $this; |
|
| 61 | } |
|
| 62 | ||
| 63 | /** |
|
| 64 | * @return array|CommentResourceModel[]|null |
|
| 65 | */ |
|
| 66 | public function getData() |
|
| 67 | { |
|
| 68 | return $this->data; |
|
| 69 | } |
|
| 70 | ||
| 71 | /** |
|
| 72 | * @param array|CommentResourceModel[]|null $data |
|
| 73 | * |
|
| 74 | * @return $this |
|
| 75 | */ |
|
| 76 | public function setData($data) |
|
| 77 | { |
|
| 78 | $this->data = $data; |
|
| 79 | ||
| 80 | return $this; |
|
| 81 | } |
|
| 82 | } |
|
| 83 | ||
| @@ 21-82 (lines=62) @@ | ||
| 18 | /** |
|
| 19 | * Contact Response Model. |
|
| 20 | */ |
|
| 21 | class ContactResponseModel extends AbstractModel implements ResponseModelInterface |
|
| 22 | { |
|
| 23 | /** |
|
| 24 | * Kind of response. |
|
| 25 | * |
|
| 26 | * @SA\Type("string") |
|
| 27 | * @SA\SerializedName("kind") |
|
| 28 | * |
|
| 29 | * @var string|null |
|
| 30 | */ |
|
| 31 | protected $kind; |
|
| 32 | ||
| 33 | /** |
|
| 34 | * Collection of response models. |
|
| 35 | * |
|
| 36 | * @SA\Type("array<Zibios\WrikePhpJmsserializer\Model\Contact\ContactResourceModel>") |
|
| 37 | * @SA\SerializedName("data") |
|
| 38 | * |
|
| 39 | * @var array|ContactResourceModel]|null |
|
| 40 | */ |
|
| 41 | protected $data; |
|
| 42 | ||
| 43 | /** |
|
| 44 | * @return null|string |
|
| 45 | */ |
|
| 46 | public function getKind() |
|
| 47 | { |
|
| 48 | return $this->kind; |
|
| 49 | } |
|
| 50 | ||
| 51 | /** |
|
| 52 | * @param null|string $kind |
|
| 53 | * |
|
| 54 | * @return $this |
|
| 55 | */ |
|
| 56 | public function setKind($kind) |
|
| 57 | { |
|
| 58 | $this->kind = $kind; |
|
| 59 | ||
| 60 | return $this; |
|
| 61 | } |
|
| 62 | ||
| 63 | /** |
|
| 64 | * @return array|ContactResourceModel[]|null |
|
| 65 | */ |
|
| 66 | public function getData() |
|
| 67 | { |
|
| 68 | return $this->data; |
|
| 69 | } |
|
| 70 | ||
| 71 | /** |
|
| 72 | * @param array|ContactResourceModel[]|null $data |
|
| 73 | * |
|
| 74 | * @return $this |
|
| 75 | */ |
|
| 76 | public function setData($data) |
|
| 77 | { |
|
| 78 | $this->data = $data; |
|
| 79 | ||
| 80 | return $this; |
|
| 81 | } |
|
| 82 | } |
|
| 83 | ||
| @@ 21-82 (lines=62) @@ | ||
| 18 | /** |
|
| 19 | * Custom Field Response Model. |
|
| 20 | */ |
|
| 21 | class CustomFieldResponseModel extends AbstractModel implements ResponseModelInterface |
|
| 22 | { |
|
| 23 | /** |
|
| 24 | * Kind of response. |
|
| 25 | * |
|
| 26 | * @SA\Type("string") |
|
| 27 | * @SA\SerializedName("kind") |
|
| 28 | * |
|
| 29 | * @var string|null |
|
| 30 | */ |
|
| 31 | protected $kind; |
|
| 32 | ||
| 33 | /** |
|
| 34 | * Collection of response models. |
|
| 35 | * |
|
| 36 | * @SA\Type("array<Zibios\WrikePhpJmsserializer\Model\CustomField\CustomFieldResourceModel>") |
|
| 37 | * @SA\SerializedName("data") |
|
| 38 | * |
|
| 39 | * @var array|CustomFieldResourceModel]|null |
|
| 40 | */ |
|
| 41 | protected $data; |
|
| 42 | ||
| 43 | /** |
|
| 44 | * @return null|string |
|
| 45 | */ |
|
| 46 | public function getKind() |
|
| 47 | { |
|
| 48 | return $this->kind; |
|
| 49 | } |
|
| 50 | ||
| 51 | /** |
|
| 52 | * @param null|string $kind |
|
| 53 | * |
|
| 54 | * @return $this |
|
| 55 | */ |
|
| 56 | public function setKind($kind) |
|
| 57 | { |
|
| 58 | $this->kind = $kind; |
|
| 59 | ||
| 60 | return $this; |
|
| 61 | } |
|
| 62 | ||
| 63 | /** |
|
| 64 | * @return array|CustomFieldResourceModel[]|null |
|
| 65 | */ |
|
| 66 | public function getData() |
|
| 67 | { |
|
| 68 | return $this->data; |
|
| 69 | } |
|
| 70 | ||
| 71 | /** |
|
| 72 | * @param array|CustomFieldResourceModel[]|null $data |
|
| 73 | * |
|
| 74 | * @return $this |
|
| 75 | */ |
|
| 76 | public function setData($data) |
|
| 77 | { |
|
| 78 | $this->data = $data; |
|
| 79 | ||
| 80 | return $this; |
|
| 81 | } |
|
| 82 | } |
|
| 83 | ||
| @@ 21-82 (lines=62) @@ | ||
| 18 | /** |
|
| 19 | * Dependency Response Model. |
|
| 20 | */ |
|
| 21 | class DependencyResponseModel extends AbstractModel implements ResponseModelInterface |
|
| 22 | { |
|
| 23 | /** |
|
| 24 | * Kind of response. |
|
| 25 | * |
|
| 26 | * @SA\Type("string") |
|
| 27 | * @SA\SerializedName("kind") |
|
| 28 | * |
|
| 29 | * @var string|null |
|
| 30 | */ |
|
| 31 | protected $kind; |
|
| 32 | ||
| 33 | /** |
|
| 34 | * Collection of response models. |
|
| 35 | * |
|
| 36 | * @SA\Type("array<Zibios\WrikePhpJmsserializer\Model\Dependency\DependencyResourceModel>") |
|
| 37 | * @SA\SerializedName("data") |
|
| 38 | * |
|
| 39 | * @var array|DependencyResourceModel]|null |
|
| 40 | */ |
|
| 41 | protected $data; |
|
| 42 | ||
| 43 | /** |
|
| 44 | * @return null|string |
|
| 45 | */ |
|
| 46 | public function getKind() |
|
| 47 | { |
|
| 48 | return $this->kind; |
|
| 49 | } |
|
| 50 | ||
| 51 | /** |
|
| 52 | * @param null|string $kind |
|
| 53 | * |
|
| 54 | * @return $this |
|
| 55 | */ |
|
| 56 | public function setKind($kind) |
|
| 57 | { |
|
| 58 | $this->kind = $kind; |
|
| 59 | ||
| 60 | return $this; |
|
| 61 | } |
|
| 62 | ||
| 63 | /** |
|
| 64 | * @return array|DependencyResourceModel[]|null |
|
| 65 | */ |
|
| 66 | public function getData() |
|
| 67 | { |
|
| 68 | return $this->data; |
|
| 69 | } |
|
| 70 | ||
| 71 | /** |
|
| 72 | * @param array|DependencyResourceModel[]|null $data |
|
| 73 | * |
|
| 74 | * @return $this |
|
| 75 | */ |
|
| 76 | public function setData($data) |
|
| 77 | { |
|
| 78 | $this->data = $data; |
|
| 79 | ||
| 80 | return $this; |
|
| 81 | } |
|
| 82 | } |
|
| 83 | ||
| @@ 21-82 (lines=62) @@ | ||
| 18 | /** |
|
| 19 | * Folder Response Model. |
|
| 20 | */ |
|
| 21 | class FolderResponseModel extends AbstractModel implements ResponseModelInterface |
|
| 22 | { |
|
| 23 | /** |
|
| 24 | * Kind of response. |
|
| 25 | * |
|
| 26 | * @SA\Type("string") |
|
| 27 | * @SA\SerializedName("kind") |
|
| 28 | * |
|
| 29 | * @var string|null |
|
| 30 | */ |
|
| 31 | protected $kind; |
|
| 32 | ||
| 33 | /** |
|
| 34 | * Collection of response models. |
|
| 35 | * |
|
| 36 | * @SA\Type("array<Zibios\WrikePhpJmsserializer\Model\Folder\FolderResourceModel>") |
|
| 37 | * @SA\SerializedName("data") |
|
| 38 | * |
|
| 39 | * @var array|FolderResourceModel]|null |
|
| 40 | */ |
|
| 41 | protected $data; |
|
| 42 | ||
| 43 | /** |
|
| 44 | * @return null|string |
|
| 45 | */ |
|
| 46 | public function getKind() |
|
| 47 | { |
|
| 48 | return $this->kind; |
|
| 49 | } |
|
| 50 | ||
| 51 | /** |
|
| 52 | * @param null|string $kind |
|
| 53 | * |
|
| 54 | * @return $this |
|
| 55 | */ |
|
| 56 | public function setKind($kind) |
|
| 57 | { |
|
| 58 | $this->kind = $kind; |
|
| 59 | ||
| 60 | return $this; |
|
| 61 | } |
|
| 62 | ||
| 63 | /** |
|
| 64 | * @return array|FolderResourceModel[]|null |
|
| 65 | */ |
|
| 66 | public function getData() |
|
| 67 | { |
|
| 68 | return $this->data; |
|
| 69 | } |
|
| 70 | ||
| 71 | /** |
|
| 72 | * @param array|FolderResourceModel[]|null $data |
|
| 73 | * |
|
| 74 | * @return $this |
|
| 75 | */ |
|
| 76 | public function setData($data) |
|
| 77 | { |
|
| 78 | $this->data = $data; |
|
| 79 | ||
| 80 | return $this; |
|
| 81 | } |
|
| 82 | } |
|
| 83 | ||
| @@ 21-82 (lines=62) @@ | ||
| 18 | /** |
|
| 19 | * Group Response Model. |
|
| 20 | */ |
|
| 21 | class GroupResponseModel extends AbstractModel implements ResponseModelInterface |
|
| 22 | { |
|
| 23 | /** |
|
| 24 | * Kind of response. |
|
| 25 | * |
|
| 26 | * @SA\Type("string") |
|
| 27 | * @SA\SerializedName("kind") |
|
| 28 | * |
|
| 29 | * @var string|null |
|
| 30 | */ |
|
| 31 | protected $kind; |
|
| 32 | ||
| 33 | /** |
|
| 34 | * Collection of response models. |
|
| 35 | * |
|
| 36 | * @SA\Type("array<Zibios\WrikePhpJmsserializer\Model\Group\GroupResourceModel>") |
|
| 37 | * @SA\SerializedName("data") |
|
| 38 | * |
|
| 39 | * @var array|GroupResourceModel]|null |
|
| 40 | */ |
|
| 41 | protected $data; |
|
| 42 | ||
| 43 | /** |
|
| 44 | * @return array|null|GroupResourceModel[] |
|
| 45 | */ |
|
| 46 | public function getData() |
|
| 47 | { |
|
| 48 | return $this->data; |
|
| 49 | } |
|
| 50 | ||
| 51 | /** |
|
| 52 | * @param array|null|GroupResourceModel[] $data |
|
| 53 | * |
|
| 54 | * @return $this |
|
| 55 | */ |
|
| 56 | public function setData($data) |
|
| 57 | { |
|
| 58 | $this->data = $data; |
|
| 59 | ||
| 60 | return $this; |
|
| 61 | } |
|
| 62 | ||
| 63 | /** |
|
| 64 | * @return null|string |
|
| 65 | */ |
|
| 66 | public function getKind() |
|
| 67 | { |
|
| 68 | return $this->kind; |
|
| 69 | } |
|
| 70 | ||
| 71 | /** |
|
| 72 | * @param null|string $kind |
|
| 73 | * |
|
| 74 | * @return $this |
|
| 75 | */ |
|
| 76 | public function setKind($kind) |
|
| 77 | { |
|
| 78 | $this->kind = $kind; |
|
| 79 | ||
| 80 | return $this; |
|
| 81 | } |
|
| 82 | } |
|
| 83 | ||
| @@ 21-82 (lines=62) @@ | ||
| 18 | /** |
|
| 19 | * Id Response Model. |
|
| 20 | */ |
|
| 21 | class IdResponseModel extends AbstractModel implements ResponseModelInterface |
|
| 22 | { |
|
| 23 | /** |
|
| 24 | * Kind of response. |
|
| 25 | * |
|
| 26 | * @SA\Type("string") |
|
| 27 | * @SA\SerializedName("kind") |
|
| 28 | * |
|
| 29 | * @var string|null |
|
| 30 | */ |
|
| 31 | protected $kind; |
|
| 32 | ||
| 33 | /** |
|
| 34 | * Collection of response models. |
|
| 35 | * |
|
| 36 | * @SA\Type("array<Zibios\WrikePhpJmsserializer\Model\Id\IdResourceModel>") |
|
| 37 | * @SA\SerializedName("data") |
|
| 38 | * |
|
| 39 | * @var array|IdResourceModel]|null |
|
| 40 | */ |
|
| 41 | protected $data; |
|
| 42 | ||
| 43 | /** |
|
| 44 | * @return null|string |
|
| 45 | */ |
|
| 46 | public function getKind() |
|
| 47 | { |
|
| 48 | return $this->kind; |
|
| 49 | } |
|
| 50 | ||
| 51 | /** |
|
| 52 | * @param null|string $kind |
|
| 53 | * |
|
| 54 | * @return $this |
|
| 55 | */ |
|
| 56 | public function setKind($kind) |
|
| 57 | { |
|
| 58 | $this->kind = $kind; |
|
| 59 | ||
| 60 | return $this; |
|
| 61 | } |
|
| 62 | ||
| 63 | /** |
|
| 64 | * @return array|IdResourceModel[]|null |
|
| 65 | */ |
|
| 66 | public function getData() |
|
| 67 | { |
|
| 68 | return $this->data; |
|
| 69 | } |
|
| 70 | ||
| 71 | /** |
|
| 72 | * @param array|IdResourceModel[]|null $data |
|
| 73 | * |
|
| 74 | * @return $this |
|
| 75 | */ |
|
| 76 | public function setData($data) |
|
| 77 | { |
|
| 78 | $this->data = $data; |
|
| 79 | ||
| 80 | return $this; |
|
| 81 | } |
|
| 82 | } |
|
| 83 | ||
| @@ 21-82 (lines=62) @@ | ||
| 18 | /** |
|
| 19 | * Invitation Response Model. |
|
| 20 | */ |
|
| 21 | class InvitationResponseModel extends AbstractModel implements ResponseModelInterface |
|
| 22 | { |
|
| 23 | /** |
|
| 24 | * Kind of response. |
|
| 25 | * |
|
| 26 | * @SA\Type("string") |
|
| 27 | * @SA\SerializedName("kind") |
|
| 28 | * |
|
| 29 | * @var string|null |
|
| 30 | */ |
|
| 31 | protected $kind; |
|
| 32 | ||
| 33 | /** |
|
| 34 | * Collection of response models. |
|
| 35 | * |
|
| 36 | * @SA\Type("array<Zibios\WrikePhpJmsserializer\Model\Invitation\InvitationResourceModel>") |
|
| 37 | * @SA\SerializedName("data") |
|
| 38 | * |
|
| 39 | * @var array|InvitationResourceModel]|null |
|
| 40 | */ |
|
| 41 | protected $data; |
|
| 42 | ||
| 43 | /** |
|
| 44 | * @return array|null|InvitationResourceModel[] |
|
| 45 | */ |
|
| 46 | public function getData() |
|
| 47 | { |
|
| 48 | return $this->data; |
|
| 49 | } |
|
| 50 | ||
| 51 | /** |
|
| 52 | * @param array|null|InvitationResourceModel[] $data |
|
| 53 | * |
|
| 54 | * @return $this |
|
| 55 | */ |
|
| 56 | public function setData($data) |
|
| 57 | { |
|
| 58 | $this->data = $data; |
|
| 59 | ||
| 60 | return $this; |
|
| 61 | } |
|
| 62 | ||
| 63 | /** |
|
| 64 | * @return null|string |
|
| 65 | */ |
|
| 66 | public function getKind() |
|
| 67 | { |
|
| 68 | return $this->kind; |
|
| 69 | } |
|
| 70 | ||
| 71 | /** |
|
| 72 | * @param null|string $kind |
|
| 73 | * |
|
| 74 | * @return $this |
|
| 75 | */ |
|
| 76 | public function setKind($kind) |
|
| 77 | { |
|
| 78 | $this->kind = $kind; |
|
| 79 | ||
| 80 | return $this; |
|
| 81 | } |
|
| 82 | } |
|
| 83 | ||
| @@ 21-82 (lines=62) @@ | ||
| 18 | /** |
|
| 19 | * Task Response Model. |
|
| 20 | */ |
|
| 21 | class TaskResponseModel extends AbstractModel implements ResponseModelInterface |
|
| 22 | { |
|
| 23 | /** |
|
| 24 | * Kind of response. |
|
| 25 | * |
|
| 26 | * @SA\Type("string") |
|
| 27 | * @SA\SerializedName("kind") |
|
| 28 | * |
|
| 29 | * @var string|null |
|
| 30 | */ |
|
| 31 | protected $kind; |
|
| 32 | ||
| 33 | /** |
|
| 34 | * Collection of response models. |
|
| 35 | * |
|
| 36 | * @SA\Type("array<Zibios\WrikePhpJmsserializer\Model\Task\TaskResourceModel>") |
|
| 37 | * @SA\SerializedName("data") |
|
| 38 | * |
|
| 39 | * @var array|TaskResourceModel]|null |
|
| 40 | */ |
|
| 41 | protected $data; |
|
| 42 | ||
| 43 | /** |
|
| 44 | * @return null|string |
|
| 45 | */ |
|
| 46 | public function getKind() |
|
| 47 | { |
|
| 48 | return $this->kind; |
|
| 49 | } |
|
| 50 | ||
| 51 | /** |
|
| 52 | * @param null|string $kind |
|
| 53 | * |
|
| 54 | * @return $this |
|
| 55 | */ |
|
| 56 | public function setKind($kind) |
|
| 57 | { |
|
| 58 | $this->kind = $kind; |
|
| 59 | ||
| 60 | return $this; |
|
| 61 | } |
|
| 62 | ||
| 63 | /** |
|
| 64 | * @return array|TaskResourceModel[]|null |
|
| 65 | */ |
|
| 66 | public function getData() |
|
| 67 | { |
|
| 68 | return $this->data; |
|
| 69 | } |
|
| 70 | ||
| 71 | /** |
|
| 72 | * @param array|TaskResourceModel[]|null $data |
|
| 73 | * |
|
| 74 | * @return $this |
|
| 75 | */ |
|
| 76 | public function setData($data) |
|
| 77 | { |
|
| 78 | $this->data = $data; |
|
| 79 | ||
| 80 | return $this; |
|
| 81 | } |
|
| 82 | } |
|
| 83 | ||
| @@ 21-82 (lines=62) @@ | ||
| 18 | /** |
|
| 19 | * Timelog Response Model. |
|
| 20 | */ |
|
| 21 | class TimelogResponseModel extends AbstractModel implements ResponseModelInterface |
|
| 22 | { |
|
| 23 | /** |
|
| 24 | * Kind of response. |
|
| 25 | * |
|
| 26 | * @SA\Type("string") |
|
| 27 | * @SA\SerializedName("kind") |
|
| 28 | * |
|
| 29 | * @var string|null |
|
| 30 | */ |
|
| 31 | protected $kind; |
|
| 32 | ||
| 33 | /** |
|
| 34 | * Collection of response models. |
|
| 35 | * |
|
| 36 | * @SA\Type("array<Zibios\WrikePhpJmsserializer\Model\Timelog\TimelogResourceModel>") |
|
| 37 | * @SA\SerializedName("data") |
|
| 38 | * |
|
| 39 | * @var array|TimelogResourceModel]|null |
|
| 40 | */ |
|
| 41 | protected $data; |
|
| 42 | ||
| 43 | /** |
|
| 44 | * @return null|string |
|
| 45 | */ |
|
| 46 | public function getKind() |
|
| 47 | { |
|
| 48 | return $this->kind; |
|
| 49 | } |
|
| 50 | ||
| 51 | /** |
|
| 52 | * @param null|string $kind |
|
| 53 | * |
|
| 54 | * @return $this |
|
| 55 | */ |
|
| 56 | public function setKind($kind) |
|
| 57 | { |
|
| 58 | $this->kind = $kind; |
|
| 59 | ||
| 60 | return $this; |
|
| 61 | } |
|
| 62 | ||
| 63 | /** |
|
| 64 | * @return array|TimelogResourceModel[]|null |
|
| 65 | */ |
|
| 66 | public function getData() |
|
| 67 | { |
|
| 68 | return $this->data; |
|
| 69 | } |
|
| 70 | ||
| 71 | /** |
|
| 72 | * @param array|TimelogResourceModel[]|null $data |
|
| 73 | * |
|
| 74 | * @return $this |
|
| 75 | */ |
|
| 76 | public function setData($data) |
|
| 77 | { |
|
| 78 | $this->data = $data; |
|
| 79 | ||
| 80 | return $this; |
|
| 81 | } |
|
| 82 | } |
|
| 83 | ||
| @@ 21-82 (lines=62) @@ | ||
| 18 | /** |
|
| 19 | * User Response Model. |
|
| 20 | */ |
|
| 21 | class UserResponseModel extends AbstractModel implements ResponseModelInterface |
|
| 22 | { |
|
| 23 | /** |
|
| 24 | * Kind of response. |
|
| 25 | * |
|
| 26 | * @SA\Type("string") |
|
| 27 | * @SA\SerializedName("kind") |
|
| 28 | * |
|
| 29 | * @var string|null |
|
| 30 | */ |
|
| 31 | protected $kind; |
|
| 32 | ||
| 33 | /** |
|
| 34 | * Collection of response models. |
|
| 35 | * |
|
| 36 | * @SA\Type("array<Zibios\WrikePhpJmsserializer\Model\User\UserResourceModel>") |
|
| 37 | * @SA\SerializedName("data") |
|
| 38 | * |
|
| 39 | * @var array|UserResourceModel]|null |
|
| 40 | */ |
|
| 41 | protected $data; |
|
| 42 | ||
| 43 | /** |
|
| 44 | * @return array|null|UserResourceModel[] |
|
| 45 | */ |
|
| 46 | public function getData() |
|
| 47 | { |
|
| 48 | return $this->data; |
|
| 49 | } |
|
| 50 | ||
| 51 | /** |
|
| 52 | * @param array|null|UserResourceModel[] $data |
|
| 53 | * |
|
| 54 | * @return $this |
|
| 55 | */ |
|
| 56 | public function setData($data) |
|
| 57 | { |
|
| 58 | $this->data = $data; |
|
| 59 | ||
| 60 | return $this; |
|
| 61 | } |
|
| 62 | ||
| 63 | /** |
|
| 64 | * @return null|string |
|
| 65 | */ |
|
| 66 | public function getKind() |
|
| 67 | { |
|
| 68 | return $this->kind; |
|
| 69 | } |
|
| 70 | ||
| 71 | /** |
|
| 72 | * @param null|string $kind |
|
| 73 | * |
|
| 74 | * @return $this |
|
| 75 | */ |
|
| 76 | public function setKind($kind) |
|
| 77 | { |
|
| 78 | $this->kind = $kind; |
|
| 79 | ||
| 80 | return $this; |
|
| 81 | } |
|
| 82 | } |
|
| 83 | ||
| @@ 21-82 (lines=62) @@ | ||
| 18 | /** |
|
| 19 | * Version Response Model. |
|
| 20 | */ |
|
| 21 | class VersionResponseModel extends AbstractModel implements ResponseModelInterface |
|
| 22 | { |
|
| 23 | /** |
|
| 24 | * Kind of response. |
|
| 25 | * |
|
| 26 | * @SA\Type("string") |
|
| 27 | * @SA\SerializedName("kind") |
|
| 28 | * |
|
| 29 | * @var string|null |
|
| 30 | */ |
|
| 31 | protected $kind; |
|
| 32 | ||
| 33 | /** |
|
| 34 | * Collection of response models. |
|
| 35 | * |
|
| 36 | * @SA\Type("array<Zibios\WrikePhpJmsserializer\Model\Version\VersionResourceModel>") |
|
| 37 | * @SA\SerializedName("data") |
|
| 38 | * |
|
| 39 | * @var array|VersionResourceModel]|null |
|
| 40 | */ |
|
| 41 | protected $data; |
|
| 42 | ||
| 43 | /** |
|
| 44 | * @return null|string |
|
| 45 | */ |
|
| 46 | public function getKind() |
|
| 47 | { |
|
| 48 | return $this->kind; |
|
| 49 | } |
|
| 50 | ||
| 51 | /** |
|
| 52 | * @param null|string $kind |
|
| 53 | * |
|
| 54 | * @return $this |
|
| 55 | */ |
|
| 56 | public function setKind($kind) |
|
| 57 | { |
|
| 58 | $this->kind = $kind; |
|
| 59 | ||
| 60 | return $this; |
|
| 61 | } |
|
| 62 | ||
| 63 | /** |
|
| 64 | * @return array|VersionResourceModel[]|null |
|
| 65 | */ |
|
| 66 | public function getData() |
|
| 67 | { |
|
| 68 | return $this->data; |
|
| 69 | } |
|
| 70 | ||
| 71 | /** |
|
| 72 | * @param array|VersionResourceModel[]|null $data |
|
| 73 | * |
|
| 74 | * @return $this |
|
| 75 | */ |
|
| 76 | public function setData($data) |
|
| 77 | { |
|
| 78 | $this->data = $data; |
|
| 79 | ||
| 80 | return $this; |
|
| 81 | } |
|
| 82 | } |
|
| 83 | ||
| @@ 21-82 (lines=62) @@ | ||
| 18 | /** |
|
| 19 | * Workflow Response Model. |
|
| 20 | */ |
|
| 21 | class WorkflowResponseModel extends AbstractModel implements ResponseModelInterface |
|
| 22 | { |
|
| 23 | /** |
|
| 24 | * Kind of response. |
|
| 25 | * |
|
| 26 | * @SA\Type("string") |
|
| 27 | * @SA\SerializedName("kind") |
|
| 28 | * |
|
| 29 | * @var string|null |
|
| 30 | */ |
|
| 31 | protected $kind; |
|
| 32 | ||
| 33 | /** |
|
| 34 | * Collection of response models. |
|
| 35 | * |
|
| 36 | * @SA\Type("array<Zibios\WrikePhpJmsserializer\Model\Workflow\WorkflowResourceModel>") |
|
| 37 | * @SA\SerializedName("data") |
|
| 38 | * |
|
| 39 | * @var array|WorkflowResourceModel]|null |
|
| 40 | */ |
|
| 41 | protected $data; |
|
| 42 | ||
| 43 | /** |
|
| 44 | * @return null|string |
|
| 45 | */ |
|
| 46 | public function getKind() |
|
| 47 | { |
|
| 48 | return $this->kind; |
|
| 49 | } |
|
| 50 | ||
| 51 | /** |
|
| 52 | * @param null|string $kind |
|
| 53 | * |
|
| 54 | * @return $this |
|
| 55 | */ |
|
| 56 | public function setKind($kind) |
|
| 57 | { |
|
| 58 | $this->kind = $kind; |
|
| 59 | ||
| 60 | return $this; |
|
| 61 | } |
|
| 62 | ||
| 63 | /** |
|
| 64 | * @return array|WorkflowResourceModel[]|null |
|
| 65 | */ |
|
| 66 | public function getData() |
|
| 67 | { |
|
| 68 | return $this->data; |
|
| 69 | } |
|
| 70 | ||
| 71 | /** |
|
| 72 | * @param array|WorkflowResourceModel[]|null $data |
|
| 73 | * |
|
| 74 | * @return $this |
|
| 75 | */ |
|
| 76 | public function setData($data) |
|
| 77 | { |
|
| 78 | $this->data = $data; |
|
| 79 | ||
| 80 | return $this; |
|
| 81 | } |
|
| 82 | } |
|
| 83 | ||