interface IComplexDecision2 {
    action: IExtendedAction;
    document: IGeneratedDocument<any>;
    signed_document: ISignedDocument2<any>;
    votes_against: IExtendedAction[];
    votes_for: IExtendedAction[];
}

Properties

document: IGeneratedDocument<any>
signed_document: ISignedDocument2<any>
votes_against: IExtendedAction[]
votes_for: IExtendedAction[]