Interface EntryPointRecord

EntryPointRecord types

interface EntryPointRecord {
    createdAt?: string;
    description?: string;
    id: string;
    isActive: boolean;
    name: string;
    orgId: string;
    settings?: Record<string, any>;
    type: string;
    updatedAt?: string;
}

Properties

createdAt?: string
description?: string
id: string
isActive: boolean
name: string
orgId: string
settings?: Record<string, any>
type: string
updatedAt?: string