@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
10 lines • 364 B
TypeScript
import { EngagementPeriod } from './EngagementPeriod';
import { EndRule } from './EndRule';
/** Description of an Engagement */
export interface Engagement {
/** Current engagement period */
currentPeriod: EngagementPeriod;
/** Describes the rule applied at the end of the Engagement */
endRule?: EndRule;
}
//# sourceMappingURL=Engagement.d.ts.map