UNPKG

@apideck/node

Version:
34 lines (33 loc) 1.09 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. */ /** * * @export * @interface EcommerceProductCategories */ export interface EcommerceProductCategories { /** * A unique identifier for an object. * @type {string} * @memberof EcommerceProductCategories */ readonly id?: string | null; /** * The name of the category. * @type {string} * @memberof EcommerceProductCategories */ name?: string | null; } export declare function EcommerceProductCategoriesFromJSON(json: any): EcommerceProductCategories; export declare function EcommerceProductCategoriesFromJSONTyped(json: any, ignoreDiscriminator: boolean): EcommerceProductCategories; export declare function EcommerceProductCategoriesToJSON(value?: EcommerceProductCategories | null): any;