Type Alias Assignment

type Assignment = {
    assigneeId: string;
    createdAt?: string;
    createdBy?: string;
    id: string;
    links: { self: Link; space?: Link };
    roles: RoleType[];
    spaceId: string;
    tenantId: string;
    type: AssignmentType;
    updatedAt?: string;
    updatedBy?: string;
}
Index

Properties

assigneeId: string

The userId or groupId based on the type.

createdAt?: string
createdBy?: string
id: string
links: { self: Link; space?: Link }
roles: RoleType[]
spaceId: string
tenantId: string
updatedAt?: string
updatedBy?: string