async performProposalAction()

in lib/client/services/proposal/proposal.service.ts [38:51]


  async performProposalAction(
    proposalAction: ProposalAction,
    filterStatement: Statement,
  ): Promise<UpdateResult> {
    return this._client.performProposalAction({
      ProposalAction: {
        attributes: {
          "xsi:type": proposalAction.constructor.name,
        },
        ...proposalAction.buildAttributes(),
      },
      filterStatement,
    });
  }