Skip to content

Commit

Permalink
Change S/N to 1/0
Browse files Browse the repository at this point in the history
  • Loading branch information
andyts93 committed Oct 29, 2021
1 parent 033a1b3 commit a4bb572
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Api/LabelParameter.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ public function toArray()
'outputType' => $this->outputType,
'offsetX' => $this->offsetX,
'offsetY' => $this->offsetY,
'isBorderRequired' => $this->isBorderRequired ? "S" : "N",
'isLogoRequired' => $this->isLogoRequired ? "S" : "N",
'isBarcodeControlRowRequired' => $this->isBarcodeControlRowRequired ? "S" : "N"
'isBorderRequired' => $this->isBorderRequired ? 1 : 0,
'isLogoRequired' => $this->isLogoRequired ? 1 : 0,
'isBarcodeControlRowRequired' => $this->isBarcodeControlRowRequired ? 1 : 0
];
}
}

0 comments on commit a4bb572

Please sign in to comment.