async performCustomTargetingKeyAction()

in lib/client/services/customTargeting/customTargeting.service.ts [52:64]


  async performCustomTargetingKeyAction(
    customTargetingKeyAction: CustomTargetingKeyAction,
    filterStatement: Statement,
  ): Promise<UpdateResult> {
    return this._client.performCustomTargetingKeyAction({
      customTargetingKeyAction: {
        attributes: {
          "xsi:type": customTargetingKeyAction.constructor.name,
        },
      },
      filterStatement,
    });
  }