aftermath-ts-sdk - v3.3.3
    Preparing search index...

    Interface DynamicFieldObjectsWithCursor<ObjectType>

    Holds the dynamic field objects and an optional next cursor for pagination.

    interface DynamicFieldObjectsWithCursor<ObjectType> {
        dynamicFieldObjects: ObjectType[];
        nextCursor: string | null;
    }

    Type Parameters

    • ObjectType
    Index
    dynamicFieldObjects: ObjectType[]

    An array of objects derived from dynamic fields.

    nextCursor: string | null

    The next cursor for pagination. If null, no more fields are available.