UNPKG

@apideck/node

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