/**
 * FastAPI
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 0.1.0
 *
 *
 * 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 Price
 */
export interface Price {
    /**
     * The current price of the product, including any discounts.
     * @type {number}
     * @memberof Price
     */
    price: number;
    /**
     *
     * @type {number}
     * @memberof Price
     */
    compare_at_price?: number | null;
    /**
     * The currency code of the product.
     * @type {string}
     * @memberof Price
     */
    currency: string;
}
/**
 * Check if a given object implements the Price interface.
 */
export declare function instanceOfPrice(value: object): value is Price;
export declare function PriceFromJSON(json: any): Price;
export declare function PriceFromJSONTyped(json: any, ignoreDiscriminator: boolean): Price;
export declare function PriceToJSON(json: any): Price;
export declare function PriceToJSONTyped(value?: Price | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=Price.d.ts.map