UNPKG

@apideck/node

Version:
66 lines (65 loc) 1.78 kB
/** * Apideck * The Apideck OpenAPI Spec: SDK Optimized * * The version of the OpenAPI document: 10.13.0 * Contact: support@apideck.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Raw } from './Raw'; import { UploadSession } from './UploadSession'; /** * * @export * @interface GetUploadSessionResponse */ export interface GetUploadSessionResponse { /** * HTTP Response Status Code * @type {number} * @memberof GetUploadSessionResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof GetUploadSessionResponse */ status: string; /** * Apideck ID of service provider * @type {string} * @memberof GetUploadSessionResponse */ service: string; /** * Unified API resource name * @type {string} * @memberof GetUploadSessionResponse */ resource: string; /** * Operation performed * @type {string} * @memberof GetUploadSessionResponse */ operation: string; /** * * @type {UploadSession} * @memberof GetUploadSessionResponse */ data: UploadSession; /** * * @type {Raw} * @memberof GetUploadSessionResponse */ _raw?: Raw | null; } export declare function GetUploadSessionResponseFromJSON(json: any): GetUploadSessionResponse; export declare function GetUploadSessionResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetUploadSessionResponse; export declare function GetUploadSessionResponseToJSON(value?: GetUploadSessionResponse | null): any;