@apideck/node
Version:
Apideck Node.js SDK
40 lines (39 loc) • 1.25 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 EcommerceProductOptions1
*/
export interface EcommerceProductOptions1 {
/**
* A unique identifier for the option of the variant.
* @type {string}
* @memberof EcommerceProductOptions1
*/
id?: string | null;
/**
* The name of the option for the variant.
* @type {string}
* @memberof EcommerceProductOptions1
*/
name?: string | null;
/**
* The value of the option for the variant.
* @type {string}
* @memberof EcommerceProductOptions1
*/
value?: string | null;
}
export declare function EcommerceProductOptions1FromJSON(json: any): EcommerceProductOptions1;
export declare function EcommerceProductOptions1FromJSONTyped(json: any, ignoreDiscriminator: boolean): EcommerceProductOptions1;
export declare function EcommerceProductOptions1ToJSON(value?: EcommerceProductOptions1 | null): any;