/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface ApplicationRole { key?: string; groups?: string[]; name?: string; defaultGroups?: string[]; selectedByDefault?: boolean; defined?: boolean; numberOfSeats?: number; remainingSeats?: number; userCount?: number; userCountDescription?: string; hasUnlimitedSeats?: boolean; platform?: boolean; } //# sourceMappingURL=application_role.d.ts.map