interface RolesCapabilityPayload {
    roles?: RolePayload[];
    roleToProjectActors?: {
        [key: string]: ProjectCreateResourceIdentifier[];
    };
}

Properties

roles?: RolePayload[]

The list of roles to create.

roleToProjectActors?: {
    [key: string]: ProjectCreateResourceIdentifier[];
}

A map of role PCRI (can be ID or REF) to a list of user or group PCRI IDs to associate with the role and project.

Type declaration

  • [key: string]: ProjectCreateResourceIdentifier[]

    A map of role PCRI (can be ID or REF) to a list of user or group PCRI IDs to associate with the role and project.