UNPKG

@apideck/node

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