Bitpay\PayoutInstruction::setAddress PHP Method

setAddress() public method

Set the bitcoin address for this instruction.
public setAddress ( $address )
$address
    public function setAddress($address)
    {
        if (!empty($address)) {
            $this->address = trim($address);
        }
        return $this;
    }