/** * 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. */ /** * ListEventsCsvResponse streams the export payload when ResponseFormat is set to RESPONSE_FORMAT_CSV. * @export * @interface ListEventsCsvResponse */ export interface ListEventsCsvResponse { /** * * @type {string} * @memberof ListEventsCsvResponse */ contentType?: string; /** * * @type {string} * @memberof ListEventsCsvResponse */ csvData?: string; } /** * Check if a given object implements the ListEventsCsvResponse interface. */ export declare function instanceOfListEventsCsvResponse(value: object): value is ListEventsCsvResponse; export declare function ListEventsCsvResponseFromJSON(json: any): ListEventsCsvResponse; export declare function ListEventsCsvResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListEventsCsvResponse; export declare function ListEventsCsvResponseToJSON(json: any): ListEventsCsvResponse; export declare function ListEventsCsvResponseToJSONTyped(value?: ListEventsCsvResponse | null, ignoreDiscriminator?: boolean): any;