UNPKG

@apideck/node

Version:
80 lines (79 loc) 2.01 kB
/** * 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 { EcommerceProduct } from './EcommerceProduct'; import { Links } from './Links'; import { Meta } from './Meta'; import { Raw } from './Raw'; /** * * @export * @interface GetProductsResponse */ export interface GetProductsResponse { /** * HTTP Response Status Code * @type {number} * @memberof GetProductsResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof GetProductsResponse */ status: string; /** * Apideck ID of service provider * @type {string} * @memberof GetProductsResponse */ service: string; /** * Unified API resource name * @type {string} * @memberof GetProductsResponse */ resource: string; /** * Operation performed * @type {string} * @memberof GetProductsResponse */ operation: string; /** * * @type {Array<EcommerceProduct>} * @memberof GetProductsResponse */ data: Array<EcommerceProduct>; /** * * @type {Raw} * @memberof GetProductsResponse */ _raw?: Raw | null; /** * * @type {Meta} * @memberof GetProductsResponse */ meta?: Meta; /** * * @type {Links} * @memberof GetProductsResponse */ links?: Links; } export declare function GetProductsResponseFromJSON(json: any): GetProductsResponse; export declare function GetProductsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetProductsResponse; export declare function GetProductsResponseToJSON(value?: GetProductsResponse | null): any;