Bitpay\PayoutInstruction::setAmount PHP Метод

setAmount() публичный Метод

Set the amount for this instruction.
public setAmount ( $amount )
$amount
    public function setAmount($amount)
    {
        if (!empty($amount)) {
            $this->amount = $amount;
        }
        return $this;
    }