/**
 * 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' | 'SLACK_CHANNEL_ID' | 'ENABLE_AUDIT_LOGS_REPORT' | 'CREATIVE_BORDER_TYPE';
    const KeyEnum: {
        FEEDKEY: KeyEnum;
        LIFTTESTACTIVE: KeyEnum;
        EVENTFILTERALLOWED: KeyEnum;
        SKUALLOWEDCHARS: KeyEnum;
        TRANSACTIONCURRENCY: KeyEnum;
        CREATIVENAMEFORMAT: KeyEnum;
        CLICKSIGNING: KeyEnum;
        SLACKCHANNELID: KeyEnum;
        ENABLEAUDITLOGSREPORT: KeyEnum;
        CREATIVEBORDERTYPE: KeyEnum;
    };
    type TypeEnum = 'BOOLEAN' | 'STRING' | 'JSON' | 'INTEGER' | 'DOUBLE' | 'FLOAT';
    const TypeEnum: {
        BOOLEAN: TypeEnum;
        STRING: TypeEnum;
        JSON: TypeEnum;
        INTEGER: TypeEnum;
        DOUBLE: TypeEnum;
        FLOAT: TypeEnum;
    };
}
