Skip to content

Commit a4bb572

Browse files
committed
Change S/N to 1/0
1 parent 033a1b3 commit a4bb572

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Api/LabelParameter.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,9 @@ public function toArray()
117117
'outputType' => $this->outputType,
118118
'offsetX' => $this->offsetX,
119119
'offsetY' => $this->offsetY,
120-
'isBorderRequired' => $this->isBorderRequired ? "S" : "N",
121-
'isLogoRequired' => $this->isLogoRequired ? "S" : "N",
122-
'isBarcodeControlRowRequired' => $this->isBarcodeControlRowRequired ? "S" : "N"
120+
'isBorderRequired' => $this->isBorderRequired ? 1 : 0,
121+
'isLogoRequired' => $this->isLogoRequired ? 1 : 0,
122+
'isBarcodeControlRowRequired' => $this->isBarcodeControlRowRequired ? 1 : 0
123123
];
124124
}
125125
}

0 commit comments

Comments
 (0)