Circle V2 API Docs
    Preparing search index...

    Type Alias SubfieldEntry

    A single subfield answer entry. value is the only required key — v1 reads it and ignores unknown keys, so fontSize, previous, editedBy, and editedAt are additive/optional and safe to round-trip through v1.

    type SubfieldEntry = {
        editedAt?: string;
        editedBy?: string;
        fontSize?: number;
        previous?: string;
        value: string;
    }
    Index

    Properties

    editedAt?: string
    editedBy?: string
    fontSize?: number
    previous?: string
    value: string