Interface IAccount

interface IAccount {
    createdAt?: string;
    id?: string;
    name: string;
    organizationId?: string;
    parentId: null | string;
    updatedAt?: string;
}

Hierarchy (view full)

Properties

createdAt?: string
id?: string
name: string
organizationId?: string
parentId: null | string
updatedAt?: string

Generated using TypeDoc