in lib/client/services/placement/placement.service.ts [28:40]
async performPlacementAction(
placementAction: PlacementAction,
filterStatement: Statement,
): Promise<UpdateResult> {
return this._client.performPlacementAction({
placementAction: {
attributes: {
"xsi:type": placementAction.constructor.name,
},
},
filterStatement,
});
}