/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * 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 ClientRedirectPayload */ export interface ClientRedirectPayload { /** * * @type {boolean} * @memberof ClientRedirectPayload */ conversionTracking?: boolean; /** * * @type {string} * @memberof ClientRedirectPayload */ destination?: string; } /** * Check if a given object implements the ClientRedirectPayload interface. */ export declare function instanceOfClientRedirectPayload(value: object): value is ClientRedirectPayload; export declare function ClientRedirectPayloadFromJSON(json: any): ClientRedirectPayload; export declare function ClientRedirectPayloadFromJSONTyped(json: any, ignoreDiscriminator: boolean): ClientRedirectPayload; export declare function ClientRedirectPayloadToJSON(json: any): ClientRedirectPayload; export declare function ClientRedirectPayloadToJSONTyped(value?: ClientRedirectPayload | null, ignoreDiscriminator?: boolean): any;