UNPKG

@apideck/node

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