| 1 | <?php |
||
| 7 | final class DocumentCreateRequest |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | private $productDocument; |
||
| 13 | /** |
||
| 14 | * @var string |
||
| 15 | */ |
||
| 16 | private $documentFormat; |
||
| 17 | /** |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | private $signature; |
||
| 21 | /** |
||
| 22 | * @var string|null |
||
| 23 | */ |
||
| 24 | private $productGroup; |
||
| 25 | /** |
||
| 26 | * @var string|null |
||
| 27 | */ |
||
| 28 | private $type; |
||
| 29 | |||
| 30 | public function __construct( |
||
| 43 | |||
| 44 | public function getProductDocument(): string |
||
| 48 | |||
| 49 | public function getDocumentFormat(): string |
||
| 53 | |||
| 54 | public function getSignature(): string |
||
| 58 | |||
| 59 | public function getProductGroup(): ?string |
||
| 63 | |||
| 64 | public function getType(): ?string |
||
| 68 | } |
||
| 69 |