@apideck/node
Version:
Apideck Node.js SDK
80 lines (79 loc) • 1.97 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 { Links } from './Links';
import { Meta } from './Meta';
import { Raw } from './Raw';
/**
*
* @export
* @interface GetExpensesResponse
*/
export interface GetExpensesResponse {
/**
* HTTP Response Status Code
* @type {number}
* @memberof GetExpensesResponse
*/
status_code: number;
/**
* HTTP Response Status
* @type {string}
* @memberof GetExpensesResponse
*/
status: string;
/**
* Apideck ID of service provider
* @type {string}
* @memberof GetExpensesResponse
*/
service: string;
/**
* Unified API resource name
* @type {string}
* @memberof GetExpensesResponse
*/
resource: string;
/**
* Operation performed
* @type {string}
* @memberof GetExpensesResponse
*/
operation: string;
/**
*
* @type {Array<Expense>}
* @memberof GetExpensesResponse
*/
data: Array<Expense>;
/**
*
* @type {Meta}
* @memberof GetExpensesResponse
*/
meta?: Meta;
/**
*
* @type {Links}
* @memberof GetExpensesResponse
*/
links?: Links;
/**
*
* @type {Raw}
* @memberof GetExpensesResponse
*/
_raw?: Raw | null;
}
export declare function GetExpensesResponseFromJSON(json: any): GetExpensesResponse;
export declare function GetExpensesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetExpensesResponse;
export declare function GetExpensesResponseToJSON(value?: GetExpensesResponse | null): any;