Iyzipay\JsonBuilder::addPrice PHP Method

addPrice() public method

public addPrice ( $key, $value = null ) : JsonBuilder
$key
$value
return JsonBuilder
    public function addPrice($key, $value = null)
    {
        if (isset($value)) {
            $this->json[$key] = RequestFormatter::formatPrice($value);
        }
        return $this;
    }