@webitel/api-services
    Preparing search index...

    The Contact's variable. Arbitrary data that is populated by users or clients. Duplicate keys and values are allowed.

    interface ContactsVariable {
        createdAt?: string;
        createdBy?: WebitelContactsLookup;
        etag?: string;
        id?: string;
        key?: string;
        updatedAt?: string;
        updatedBy?: WebitelContactsLookup;
        value?: unknown;
        ver?: number;
    }
    Index

    Properties

    createdAt?: string

    The user who created this Field.

    Timestamp(milli) of the Field creation.

    etag?: string

    Unique ID of the latest version of the update. This ID changes after any update to the underlying value(s).

    id?: string

    The unique ID of the association. Never changes.

    key?: string

    Key name of the variable.

    updatedAt?: string

    Timestamp(milli) of the last Field update. Take part in Etag generation.

    The user who performed last Update.

    value?: unknown

    JSON value of the variable.

    ver?: number

    Version of the latest update. Numeric sequence.