Proposal defines the core field members of a governance proposal.

interface ProposalSDKType {
    content?: AnySDKType | TextProposalSDKType;
    deposit_end_time: undefined | Date;
    final_tally_result: undefined | TallyResultSDKType;
    is_expedited: boolean;
    proposal_id: bigint;
    status: ProposalStatus;
    submit_time: undefined | Date;
    total_deposit: CoinSDKType[];
    voting_end_time: undefined | Date;
    voting_start_time: undefined | Date;
}

Properties

deposit_end_time: undefined | Date
final_tally_result: undefined | TallyResultSDKType
is_expedited: boolean
proposal_id: bigint
submit_time: undefined | Date
total_deposit: CoinSDKType[]
voting_end_time: undefined | Date
voting_start_time: undefined | Date