/** * Admin priority levels for the team */ export interface AdminPriorityLevel { /** The primary admin ids for the team */ primary_admin_ids?: number[]; /** The secondary admin ids for the team */ secondary_admin_ids?: number[]; }