lib/client/services/adjustment/adjustment.action.ts (4 lines of code) (raw):
/**
* Represents the actions that can be performed on ForecastAdjustment objects.
*/
export abstract class ForecastAdjustmentAction {}
/**
* The action used for activating ForecastAdjustment objects.
*/
export class ActivateForecastAdjustments implements ForecastAdjustmentAction {}
/**
* DeactivateForecastAdjustments
*/
export class DeactivateForecastAdjustments
implements ForecastAdjustmentAction {}