UNPKG

@apideck/node

Version:
66 lines (65 loc) 1.64 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 { UnifiedFile } from './UnifiedFile'; /** * * @export * @interface GetFileResponse */ export interface GetFileResponse { /** * HTTP Response Status Code * @type {number} * @memberof GetFileResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof GetFileResponse */ status: string; /** * Apideck ID of service provider * @type {string} * @memberof GetFileResponse */ service: string; /** * Unified API resource name * @type {string} * @memberof GetFileResponse */ resource: string; /** * Operation performed * @type {string} * @memberof GetFileResponse */ operation: string; /** * * @type {UnifiedFile} * @memberof GetFileResponse */ data: UnifiedFile; /** * * @type {Raw} * @memberof GetFileResponse */ _raw?: Raw | null; } export declare function GetFileResponseFromJSON(json: any): GetFileResponse; export declare function GetFileResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetFileResponse; export declare function GetFileResponseToJSON(value?: GetFileResponse | null): any;