/** * 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 AgentUploadFileRequest */ export interface AgentUploadFileRequest { /** * * @type {string} * @memberof AgentUploadFileRequest */ content?: string; /** * * @type {string} * @memberof AgentUploadFileRequest */ mimeType?: string; /** * * @type {string} * @memberof AgentUploadFileRequest */ name?: string; } /** * Check if a given object implements the AgentUploadFileRequest interface. */ export declare function instanceOfAgentUploadFileRequest(value: object): value is AgentUploadFileRequest; export declare function AgentUploadFileRequestFromJSON(json: any): AgentUploadFileRequest; export declare function AgentUploadFileRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AgentUploadFileRequest; export declare function AgentUploadFileRequestToJSON(json: any): AgentUploadFileRequest; export declare function AgentUploadFileRequestToJSONTyped(value?: AgentUploadFileRequest | null, ignoreDiscriminator?: boolean): any;