You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
-
- namespace App\Transmission\Layouts;
-
- use App\Transmission\InterfaceID;
-
- class IF24_01Response extends IFResponse
- {
-
- public int $shopNo;
- public int $discountTicketCode;
-
- const COL_NAME_SHOP_NO = 'ShopNo';
- const COL_NAME_DISCOUNTTICKET_CODE = 'DiscountTicketCode';
-
- public function __construct()
- {
- parent::__construct();
- $this->header->interfaceId = InterfaceID::IF24_01->value;
- }
-
- public function getBodyArray(): array
- {
- $body = [];
- $body[self::COL_NAME_SHOP_NO] = $this->shopNo;
- $body[self::COL_NAME_DISCOUNTTICKET_CODE] = $this->discountTicketCode;
-
- return $body;
- }
- }
|