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

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

Set the status for this instruction
public setStatus ( $status )
$status
    public function setStatus($status)
    {
        if (!empty($status) && ctype_print($status)) {
            $this->status = trim($status);
        }
        return $this;
    }