interface IQuestion {
    context: string;
    coopname: string;
    counter_votes_abstained: Interfaces.Meet.IUint64;
    counter_votes_against: Interfaces.Meet.IUint64;
    counter_votes_for: Interfaces.Meet.IUint64;
    decision: string;
    id: Interfaces.Meet.IUint64;
    meet_id: Interfaces.Meet.IUint64;
    number: Interfaces.Meet.IUint64;
    title: string;
    voters_abstained: string[];
    voters_against: string[];
    voters_for: string[];
}

Hierarchy (view full)

Properties

context: string
coopname: string
counter_votes_abstained: Interfaces.Meet.IUint64
counter_votes_against: Interfaces.Meet.IUint64
counter_votes_for: Interfaces.Meet.IUint64
decision: string
title: string
voters_abstained: string[]
voters_against: string[]
voters_for: string[]