@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 { EcommerceStore } from './EcommerceStore';
import { Raw } from './Raw';
/**
*
* @export
* @interface GetStoreResponse
*/
export interface GetStoreResponse {
/**
* HTTP Response Status Code
* @type {number}
* @memberof GetStoreResponse
*/
status_code: number;
/**
* HTTP Response Status
* @type {string}
* @memberof GetStoreResponse
*/
status: string;
/**
* Apideck ID of service provider
* @type {string}
* @memberof GetStoreResponse
*/
service: string;
/**
* Unified API resource name
* @type {string}
* @memberof GetStoreResponse
*/
resource: string;
/**
* Operation performed
* @type {string}
* @memberof GetStoreResponse
*/
operation: string;
/**
*
* @type {EcommerceStore}
* @memberof GetStoreResponse
*/
data: EcommerceStore;
/**
*
* @type {Raw}
* @memberof GetStoreResponse
*/
_raw?: Raw | null;
}
export declare function GetStoreResponseFromJSON(json: any): GetStoreResponse;
export declare function GetStoreResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetStoreResponse;
export declare function GetStoreResponseToJSON(value?: GetStoreResponse | null): any;