Interface HistoryElement

interface HistoryElement {
    _element_parent?: AttributeData<
        string
        | AttributeValueTypeElement
        | Element,
    >;
    _type: string;
    author?: User;
    element_name: { value: string };
    hash: string;
    isPublic?: boolean;
    links?: RestApiLink[];
    organization: string;
    timestamp?: string;
}

Hierarchy (View Summary)

Properties

_element_parent?: AttributeData<string | AttributeValueTypeElement | Element>
_type: string
author?: User
element_name: { value: string }
hash: string
isPublic?: boolean
links?: RestApiLink[]
organization: string
timestamp?: string