import type * as ElevenLabs from "../index"; /** * Experiment membership recorded on a conversation. */ export interface ExperimentAssignment { /** Experiment key. */ key: string; /** Variant identifier: the branch id for server_branch, or the client-supplied variant for client_declared. */ variant: string; source: ElevenLabs.ExperimentAssignmentSource; /** The AgentExperiment id, when the assignment maps to a registered experiment. */ experimentId?: string; }