import { AccessPolicy } from './AccessPolicy';
export interface DeveloperUpdateParams {
    /**
     * A list of ids of roles to be assigned to the developer.
     */
    roles?: string[];
    accessPolicy?: AccessPolicy;
    id: string;
}
