JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3RbrbankId; } public function setBankId($bankId) { $this->bankId = $bankId; } public function getInstallmentPrices() { return $this->installmentPrices; } public function setInstallmentPrices($installmentPrices) { $this->installmentPrices = $installmentPrices; } public function getJsonObject() { return JsonBuilder::create() ->add("bankId", $this->getBankId()) ->addArray("installmentPrices", $this->getInstallmentPrices()) ->getObject(); } public function toPKIRequestString() { return RequestStringBuilder::create() ->append("bankId", $this->getBankId()) ->appendArray("installmentPrices", $this->getInstallmentPrices()) ->getRequestString(); } }