@farmart-tech/brave-firebase-adapter
    Preparing search index...

    Interface ISegmentGroup

    Definition of a user/device segment group.

    interface ISegmentGroup {
        __global_data?: boolean;
        createdAt?: string;
        criteria: { list: string[] };
        type: "user.id" | "device.platform" | "geo.state" | "device.environment";
        updatedAt?: string;
    }

    Hierarchy

    • CommonFirebaseDataConfigs
      • ISegmentGroup
    Index

    Properties

    __global_data?: boolean

    Indicates if this data is a global fallback.

    createdAt?: string

    ISO 8601 creation timestamp.

    criteria: { list: string[] }

    Criteria for membership (e.g., list of IDs or states).

    type: "user.id" | "device.platform" | "geo.state" | "device.environment"

    The field used to categorize users into this segment.

    updatedAt?: string

    ISO 8601 last update timestamp.