interface IDecision {
    approved: boolean;
    authorization: SovietContract.Interfaces.IDocument;
    authorized: boolean;
    authorized_by: string;
    batch_id: SovietContract.Interfaces.IUint64;
    callback_contract: string;
    confirm_callback: string;
    coopname: string;
    created_at: string;
    decline_callback: string;
    expired_at: string;
    hash: string;
    id: SovietContract.Interfaces.IUint64;
    meta: string;
    statement: SovietContract.Interfaces.IDocument;
    type: string;
    username: string;
    validated: boolean;
    votes_against: string[];
    votes_for: string[];
}

Properties

approved: boolean
authorized: boolean
authorized_by: string
callback_contract: string
confirm_callback: string
coopname: string
created_at: string
decline_callback: string
expired_at: string
hash: string
meta: string
type: string
username: string
validated: boolean
votes_against: string[]
votes_for: string[]