UNPKG

@apideck/node

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