/**
 * VRt.Studio [ST]
 *
 * The version of the OpenAPI document: 7.18.2755
 * Contact: servicedesk@veeroute.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator.
 * Do not edit the class manually.
 */
import { TableCustomfieldsStudio } from './tableCustomfields';
/**
 * Hardlink and element fields for table.
 */
export interface TableHardlinkFieldsStudio {
    [key: string]: any | any;
    /**
     * Essence type.
     */
    essence_type?: TableHardlinkFieldsStudioEssenceTypeEnum;
    /**
     * Essence key, unique identifier, may be `null`.
     */
    essence_key?: string | null;
    /**
     * Using essence for calculations.
     */
    enabled?: boolean;
    /**
     * A flag indicating whether changes to the entity have been made relative to the original data. `true` - means that the data is original and has not been changed.
     */
    readonly pristine?: boolean;
    /**
     * Element type. For an hardlink, a list of types is specified separated by commas.
     */
    element_type?: string | null;
    /**
     * Elements count.
     */
    elements_count?: number;
    /**
     * Essence key, unique identifier, may be `null`.
     */
    trip_key?: string | null;
    /**
     * Name, information field.
     */
    trip_name?: string;
    /**
     * Attributes.
     */
    attributes?: string;
    customfields?: TableCustomfieldsStudio;
}
export declare enum TableHardlinkFieldsStudioEssenceTypeEnum {
    HARDLINK = "HARDLINK",
    ELEMENT = "ELEMENT"
}
