/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Response from adding a part to multi-part upload or copy. * @export * @interface AddPartResponse */ export interface AddPartResponse { /** * The unique identifier of a multi-part request. * @type {string} * @memberof AddPartResponse */ uploadId?: string; /** * The part number of the add. * @type {number} * @memberof AddPartResponse */ partNumber?: number; /** * The state of this add. * @type {string} * @memberof AddPartResponse */ addPartState?: AddPartResponseAddPartStateEnum; /** * If the added failed, this will contain the error message of the cause. Will be null when the add is successful. * @type {string} * @memberof AddPartResponse */ errorMessage?: string; } /** * @export */ export declare const AddPartResponseAddPartStateEnum: { readonly ADD_SUCCESS: "ADD_SUCCESS"; readonly ADD_FAILED: "ADD_FAILED"; }; export type AddPartResponseAddPartStateEnum = typeof AddPartResponseAddPartStateEnum[keyof typeof AddPartResponseAddPartStateEnum]; /** * Check if a given object implements the AddPartResponse interface. */ export declare function instanceOfAddPartResponse(value: object): value is AddPartResponse; export declare function AddPartResponseFromJSON(json: any): AddPartResponse; export declare function AddPartResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AddPartResponse; export declare function AddPartResponseToJSON(json: any): AddPartResponse; export declare function AddPartResponseToJSONTyped(value?: AddPartResponse | null, ignoreDiscriminator?: boolean): any;