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