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

Properties

approved: boolean
authorized: boolean
authorized_by: string
coopname: string
created_at: string
type: string
username: string
validated: boolean
votes_against: string[]
votes_for: string[]