UNPKG

@apideck/node

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