UNPKG

@apideck/node

Version:
80 lines (79 loc) 2.04 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 { Links } from './Links'; import { Meta } from './Meta'; import { Raw } from './Raw'; /** * * @export * @interface GetAttachmentsResponse */ export interface GetAttachmentsResponse { /** * HTTP Response Status Code * @type {number} * @memberof GetAttachmentsResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof GetAttachmentsResponse */ status: string; /** * Apideck ID of service provider * @type {string} * @memberof GetAttachmentsResponse */ service: string; /** * Unified API resource name * @type {string} * @memberof GetAttachmentsResponse */ resource: string; /** * Operation performed * @type {string} * @memberof GetAttachmentsResponse */ operation: string; /** * * @type {Array<Attachment>} * @memberof GetAttachmentsResponse */ data: Array<Attachment>; /** * * @type {Meta} * @memberof GetAttachmentsResponse */ meta?: Meta; /** * * @type {Links} * @memberof GetAttachmentsResponse */ links?: Links; /** * * @type {Raw} * @memberof GetAttachmentsResponse */ _raw?: Raw | null; } export declare function GetAttachmentsResponseFromJSON(json: any): GetAttachmentsResponse; export declare function GetAttachmentsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetAttachmentsResponse; export declare function GetAttachmentsResponseToJSON(value?: GetAttachmentsResponse | null): any;