Type Alias ApiKeyBody

type ApiKeyBody = {
    description: string;
    expiry?: string;
    sub?: string;
    subType?: "user" | "externalClient";
}
Index

Properties

description: string

Text that describes the API key.

expiry?: string
sub?: string
subType?: "user" | "externalClient"