import type { Schedule } from './Schedule'; /** * @type PromotionAbtestGroupAssignment: * * @property abtestDescription: * * @property abtestId: * * @property enabled: * * @property schedule: * * @property segmentDescription: * * @property segmentId: * */ export type PromotionAbtestGroupAssignment = { abtestDescription: string; abtestId: string; enabled: boolean; schedule: Schedule; segmentDescription: string; segmentId: string; } & { [key: string]: any; };