Lime Web Components API Documentation - v7.2.0
    Preparing search index...

    Type Alias LimeObjectRecord

    LimeObjectRecord: PrivateProps<LimeObjectSystemProperties> & {
        _limetype: string;
        [property: string]: LimeObjectRecord | LimeObjectValue;
    }

    The raw shape of a Lime object as returned by query repositories. System fields are prefixed with _ and the limetype is included as _limetype. The runtime normalizes these into the underscore-less form before storing in state or wrapping as a LimeObject.

    Use this when consuming raw responses (for example ObjectResponse.objects) rather than fully wrapped objects returned from getObject.

    Unlike LimeObjectData — which describes a hydrated object's primitive property values — raw records may carry a nested record for relation properties. A belongsto or hasone property arrives as a LimeObjectRecord.