UNPKG

@apideck/node

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