/**
 * 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 EcommerceProductImages
 */
export interface EcommerceProductImages {
    /**
     * A unique identifier for an object.
     * @type {string}
     * @memberof EcommerceProductImages
     */
    readonly id?: string | null;
    /**
     * The URL of an image of the product.
     * @type {string}
     * @memberof EcommerceProductImages
     */
    url?: string | null;
}
export declare function EcommerceProductImagesFromJSON(json: any): EcommerceProductImages;
export declare function EcommerceProductImagesFromJSONTyped(json: any, ignoreDiscriminator: boolean): EcommerceProductImages;
export declare function EcommerceProductImagesToJSON(value?: EcommerceProductImages | null): any;
