@apideck/node
Version:
Apideck Node.js SDK
66 lines (65 loc) • 1.76 kB
TypeScript
/**
* 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 { Raw } from './Raw';
/**
*
* @export
* @interface GetJournalEntryResponse
*/
export interface GetJournalEntryResponse {
/**
* HTTP Response Status Code
* @type {number}
* @memberof GetJournalEntryResponse
*/
status_code: number;
/**
* HTTP Response Status
* @type {string}
* @memberof GetJournalEntryResponse
*/
status: string;
/**
* Apideck ID of service provider
* @type {string}
* @memberof GetJournalEntryResponse
*/
service: string;
/**
* Unified API resource name
* @type {string}
* @memberof GetJournalEntryResponse
*/
resource: string;
/**
* Operation performed
* @type {string}
* @memberof GetJournalEntryResponse
*/
operation: string;
/**
*
* @type {JournalEntry}
* @memberof GetJournalEntryResponse
*/
data: JournalEntry;
/**
*
* @type {Raw}
* @memberof GetJournalEntryResponse
*/
_raw?: Raw | null;
}
export declare function GetJournalEntryResponseFromJSON(json: any): GetJournalEntryResponse;
export declare function GetJournalEntryResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetJournalEntryResponse;
export declare function GetJournalEntryResponseToJSON(value?: GetJournalEntryResponse | null): any;