UNPKG

@revxui/api-clients-ts

Version:

swagger client for @revxui/api-clients-ts

64 lines (63 loc) 1.93 kB
/** * 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 { BaseModel } from './baseModel'; export interface ClickDestination { active?: boolean; advertiserId?: number; androidClickUrl?: string; androidImpressionTracker?: string; androidS2sClickTrackingUrl?: string; campaignType?: ClickDestination.CampaignTypeEnum; clickUrl?: string; createdBy?: number; creationTime?: number; creativeFormat?: ClickDestination.CreativeFormatEnum; creativeSets?: Array<BaseModel>; dco?: boolean; enrichedEngagement?: number; generatedUrlType?: ClickDestination.GeneratedUrlTypeEnum; id?: number; iosCLickUrl?: string; iosImpressionTracker?: string; iosS2sClickTrackingUrl?: string; isArchived?: boolean; licenseeId?: number; modifiedBy?: number; modifiedTime?: number; name?: string; placebo?: boolean; refactored?: boolean; serverTrackingUrl?: string; skadTarget?: boolean; vtaTriggerPercentile?: number; webClickUrl?: string; webImpressionTracker?: string; webS2sClickTrackingUrl?: string; } export declare namespace ClickDestination { type CampaignTypeEnum = 'UA' | 'RT'; const CampaignTypeEnum: { UA: CampaignTypeEnum; RT: CampaignTypeEnum; }; type CreativeFormatEnum = 'MULTI_DEVICE' | 'CTV'; const CreativeFormatEnum: { MULTIDEVICE: CreativeFormatEnum; CTV: CreativeFormatEnum; }; type GeneratedUrlTypeEnum = 'CLICK' | 'S2S' | 'SKAD'; const GeneratedUrlTypeEnum: { CLICK: GeneratedUrlTypeEnum; S2S: GeneratedUrlTypeEnum; SKAD: GeneratedUrlTypeEnum; }; }