Type Alias Share

type Share = {
    assigneeId: string;
    createdAt?: string;
    createdBy?: string;
    disabled?: boolean;
    id: string;
    links?: { self: Link; space?: Link };
    resourceId: string;
    resourceName?: string;
    resourceType: "app";
    roles?: ShareRoleType[];
    spaceId: string;
    tenantId: string;
    type: ShareType;
    updatedAt?: string;
    updatedBy?: string;
}
Index

Properties

assigneeId: string

The userId or groupId based on the type.

createdAt?: string
createdBy?: string
disabled?: boolean
id: string
links?: { self: Link; space?: Link }
resourceId: string
resourceName?: string
resourceType: "app"
roles?: ShareRoleType[]
spaceId: string
tenantId: string
type: ShareType
updatedAt?: string
updatedBy?: string