@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
39 lines (38 loc) • 1.23 kB
TypeScript
/**
* Vectorize API (Beta)
* API for Vectorize services
*
* The version of the OpenAPI document: 0.0.1
*
*
* 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 StartFileUploadRequest
*/
export interface StartFileUploadRequest {
/**
*
* @type {string}
* @memberof StartFileUploadRequest
*/
name: string;
/**
*
* @type {string}
* @memberof StartFileUploadRequest
*/
contentType: string;
}
/**
* Check if a given object implements the StartFileUploadRequest interface.
*/
export declare function instanceOfStartFileUploadRequest(value: object): value is StartFileUploadRequest;
export declare function StartFileUploadRequestFromJSON(json: any): StartFileUploadRequest;
export declare function StartFileUploadRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): StartFileUploadRequest;
export declare function StartFileUploadRequestToJSON(json: any): StartFileUploadRequest;
export declare function StartFileUploadRequestToJSONTyped(value?: StartFileUploadRequest | null, ignoreDiscriminator?: boolean): any;