import { EndStrategyEnum } from '../engagement/EndStrategyEnum';
import { TypeEnum } from '../engagement/TypeEnum';
/** Configuration of an engagement triggered by a given pricing */
export interface EngagementConfiguration {
    /** Default action executed once the engagement is fully consumed */
    defaultEndAction: EndStrategyEnum;
    /** Engagement's duration displayed using ISO8601 */
    duration: string;
    /** Engagement type, either fully pre-paid (upfront) or periodically paid up to engagement duration (periodic) */
    type: TypeEnum;
}
//# sourceMappingURL=EngagementConfiguration.d.ts.map