import { LevelTypeEnum } from './LevelTypeEnum';
import { RequirementLoSEnum } from './RequirementLoSEnum';
/** Partner level of an account */
export interface Level {
    /** Level of partner */
    level: LevelTypeEnum;
    /** Contains an MSA certificate */
    msa: boolean;
    /** Level of Support required */
    requirement: RequirementLoSEnum;
}
//# sourceMappingURL=Level.d.ts.map