/** * Adzerk Decision API * Adzerk Decision API * * The version of the OpenAPI document: 1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface ConsentRequest */ export interface ConsentRequest { /** * * @type {string} * @memberof ConsentRequest */ userKey?: string; /** * * @type {object} * @memberof ConsentRequest */ consent?: object; } export declare function ConsentRequestFromJSON(json: any): ConsentRequest; export declare function ConsentRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConsentRequest; export declare function ConsentRequestToJSON(value?: ConsentRequest | null): any;