Interface ExternalAccess

interface ExternalAccess {
    email: string;
    grantor: string;
    link: string;
    message: string;
    status: LiteralString<"Active" | "Revoked" | "Expired">;
    validUntil: string;
    whenAdded: string;
}

Properties

email: string

email address this token is associated with

grantor: string

which Rev User generated this token

link: string

link to access the resource this token is associated with

message: string

optional message assigned when the token was created

status: LiteralString<"Active" | "Revoked" | "Expired">

Current status of the token.

validUntil: string

the date until this token expires

whenAdded: string

When this token was added (JSON date)