/**
 * цена
 */
export type Price = {
    /**
     * Количество единиц
     */
    amount?: number;
    /**
     * Валюта
     */
    currency?: string;
};
