async performCreativeWrapperAction()

in lib/client/services/creativeWrapper/creativeWrapper.service.ts [33:45]


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