@apideck/node
Version:
Apideck Node.js SDK
40 lines (39 loc) • 1.21 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.
*/
/**
*
* @export
* @interface EcommerceProductOptions
*/
export interface EcommerceProductOptions {
/**
* A unique identifier for the option of the product.
* @type {string}
* @memberof EcommerceProductOptions
*/
id?: string | null;
/**
* The name of the option for the product.
* @type {string}
* @memberof EcommerceProductOptions
*/
name?: string | null;
/**
*
* @type {Array<string>}
* @memberof EcommerceProductOptions
*/
values?: Array<string>;
}
export declare function EcommerceProductOptionsFromJSON(json: any): EcommerceProductOptions;
export declare function EcommerceProductOptionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): EcommerceProductOptions;
export declare function EcommerceProductOptionsToJSON(value?: EcommerceProductOptions | null): any;