interface StreamResource {
    amount: string;
    amount_per_period: string;
    canceled_at: string;
    cliff_amount: string;
    closed: boolean;
    contract_signer_cap: { account: string };
    created: string;
    current_pause_start: string;
    end: string;
    fees: {
        streamflow_fee: string;
        streamflow_fee_percentage: string;
        streamflow_fee_withdrawn: string;
    };
    funds_unlocked_at_last_rate_change: string;
    last_rate_change_time: string;
    last_withdrawn_at: string;
    meta: {
        automatic_withdrawal: boolean;
        can_topup: boolean;
        can_update_rate: boolean;
        cancelable_by_recipient: boolean;
        cancelable_by_sender: boolean;
        contract_name: string;
        pausable: boolean;
        transferable_by_recipient: boolean;
        transferable_by_sender: boolean;
        withdrawal_frequency: string;
    };
    pause_cumulative: string;
    period: string;
    recipient: string;
    sender: string;
    start: string;
    withdrawn: string;
}

Properties

amount: string
amount_per_period: string
canceled_at: string
cliff_amount: string
closed: boolean
contract_signer_cap: { account: string }
created: string
current_pause_start: string
end: string
fees: {
    streamflow_fee: string;
    streamflow_fee_percentage: string;
    streamflow_fee_withdrawn: string;
}
funds_unlocked_at_last_rate_change: string
last_rate_change_time: string
last_withdrawn_at: string
meta: {
    automatic_withdrawal: boolean;
    can_topup: boolean;
    can_update_rate: boolean;
    cancelable_by_recipient: boolean;
    cancelable_by_sender: boolean;
    contract_name: string;
    pausable: boolean;
    transferable_by_recipient: boolean;
    transferable_by_sender: boolean;
    withdrawal_frequency: string;
}
pause_cumulative: string
period: string
recipient: string
sender: string
start: string
withdrawn: string