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