/** * @type ABTestSegment: Document representing an AB test segment. In an AB test that compares different customer experiences, a segment defines the customers who receive a particular experience. * * @property testId: The ID of the associated AB test. * - **Min Length:** 1 * - **Max Length:** 40 * * @property segmentId: The ID of the segment. * - **Min Length:** 1 * - **Max Length:** 40 * */ export type ABTestSegment = { testId: string; segmentId: string; } & { [key: string]: any; };