exampleData: {
    coop: {
        city: string;
        is_branched: boolean;
    };
    decision: {
        id: string;
    };
    meet: {
        close_at_datetime: string;
        current_quorum_percent: number;
        open_at_datetime: string;
        presider_full_name: string;
        secretary_full_name: string;
        type: string;
    };
    meta: {
        created_at: string;
    };
    questions: {
        context: string;
        counter_votes_abstained: string;
        counter_votes_against: string;
        counter_votes_for: string;
        decision: string;
        is_accepted: boolean;
        number: string;
        title: string;
        votes_abstained_percent: number;
        votes_against_percent: number;
        votes_for_percent: number;
        votes_total: number;
    }[];
    vars: {
        full_abbr_genitive: string;
        name: string;
    };
} = ...

Type declaration

  • coop: {
        city: string;
        is_branched: boolean;
    }
    • city: string
    • is_branched: boolean
  • decision: {
        id: string;
    }
    • id: string
  • meet: {
        close_at_datetime: string;
        current_quorum_percent: number;
        open_at_datetime: string;
        presider_full_name: string;
        secretary_full_name: string;
        type: string;
    }
    • close_at_datetime: string
    • current_quorum_percent: number
    • open_at_datetime: string
    • presider_full_name: string
    • secretary_full_name: string
    • type: string
  • meta: {
        created_at: string;
    }
    • created_at: string
  • questions: {
        context: string;
        counter_votes_abstained: string;
        counter_votes_against: string;
        counter_votes_for: string;
        decision: string;
        is_accepted: boolean;
        number: string;
        title: string;
        votes_abstained_percent: number;
        votes_against_percent: number;
        votes_for_percent: number;
        votes_total: number;
    }[]
  • vars: {
        full_abbr_genitive: string;
        name: string;
    }
    • full_abbr_genitive: string
    • name: string