async performOrderAction()

in lib/client/services/order/order.service.ts [24:37]


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