@revxui/api-clients-ts
Version:
swagger client for @revxui/api-clients-ts
42 lines (41 loc) • 1.23 kB
TypeScript
/**
* Api Documentation
* Api Documentation
*
* OpenAPI spec version: 1.0
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
import { ABTestingVariantDTO } from './aBTestingVariantDTO';
export interface ABTestingDTO {
abTestingVariants?: Array<ABTestingVariantDTO>;
advertiserId?: number;
baseStrategyId?: number;
campaignId?: number;
description?: string;
endDate?: number;
experimentName?: string;
experimentType?: ABTestingDTO.ExperimentTypeEnum;
licenseeId?: number;
startDate?: number;
status?: ABTestingDTO.StatusEnum;
winMetric?: string;
}
export declare namespace ABTestingDTO {
type ExperimentTypeEnum = 'INCREMENTALITY_TEST' | 'AB_TEST';
const ExperimentTypeEnum: {
INCREMENTALITYTEST: ExperimentTypeEnum;
ABTEST: ExperimentTypeEnum;
};
type StatusEnum = 'LIVE' | 'SCHEDULED' | 'GENERATING_REPORT' | 'STOPPED' | 'COMPLETED';
const StatusEnum: {
LIVE: StatusEnum;
SCHEDULED: StatusEnum;
GENERATINGREPORT: StatusEnum;
STOPPED: StatusEnum;
COMPLETED: StatusEnum;
};
}