UNPKG

@apideck/node

Version:
34 lines (33 loc) 1.07 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 EcommerceProductImages1 */ export interface EcommerceProductImages1 { /** * A unique identifier for an object. * @type {string} * @memberof EcommerceProductImages1 */ readonly id?: string | null; /** * The URL of an image of the variant. * @type {string} * @memberof EcommerceProductImages1 */ url?: string | null; } export declare function EcommerceProductImages1FromJSON(json: any): EcommerceProductImages1; export declare function EcommerceProductImages1FromJSONTyped(json: any, ignoreDiscriminator: boolean): EcommerceProductImages1; export declare function EcommerceProductImages1ToJSON(value?: EcommerceProductImages1 | null): any;