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