UNPKG

@revxui/api-clients-ts

Version:

swagger client for @revxui/api-clients-ts

38 lines (37 loc) 1.2 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. */ export interface AdvertiserAppSettingsDTO { key?: AdvertiserAppSettingsDTO.KeyEnum; type?: AdvertiserAppSettingsDTO.TypeEnum; value?: string; } export declare namespace AdvertiserAppSettingsDTO { type KeyEnum = 'FEED_KEY' | 'LIFT_TEST_ACTIVE' | 'EVENT_FILTER_ALLOWED' | 'SKU_ALLOWED_CHARS' | 'TRANSACTION_CURRENCY' | 'CREATIVE_NAME_FORMAT' | 'CLICK_SIGNING'; const KeyEnum: { FEEDKEY: KeyEnum; LIFTTESTACTIVE: KeyEnum; EVENTFILTERALLOWED: KeyEnum; SKUALLOWEDCHARS: KeyEnum; TRANSACTIONCURRENCY: KeyEnum; CREATIVENAMEFORMAT: KeyEnum; CLICKSIGNING: KeyEnum; }; type TypeEnum = 'BOOLEAN' | 'STRING' | 'JSON' | 'INTEGER' | 'DOUBLE' | 'FLOAT'; const TypeEnum: { BOOLEAN: TypeEnum; STRING: TypeEnum; JSON: TypeEnum; INTEGER: TypeEnum; DOUBLE: TypeEnum; FLOAT: TypeEnum; }; }