Interface OrgWorkspace

interface OrgWorkspace {
    id: string;
    key: string;
    name: string;
    orgId: string;
    logoUri?: string;
    secret: string;
    createdAt: Date;
    updatedAt: Date;
    archivedAt?: Date;
    trialEndDate?: string;
    featureFlags?: string[];
}

Properties

id: string
key: string
name: string
orgId: string
logoUri?: string
secret: string
createdAt: Date
updatedAt: Date
archivedAt?: Date
trialEndDate?: string
featureFlags?: string[]