release 0.1.0

This commit is contained in:
apilki
2026-08-21 12:19:50 +00:00
parent 7b0a9d8ad1
commit b73e6aa106
8734 changed files with 470872 additions and 2 deletions

View File

@@ -0,0 +1,128 @@
/**
* Документация Ozon Seller API
* По вопросам работы с Seller API обращайтесь в поддержку через личный кабинет. <aside class=\"warning\">Обновляем корневой TLS/SSL-сертификат GlobalSign — вместо него будем использовать <a href=\"https://app.harica.gr/\">HARICA</a>.<br><a href=\"https://dev.ozon.ru/news/775-Izmeneniia-v-Ozon-API-migratsiia-kornevogo-sertifikata-UTs-Ozon/\">Подробнее о переходе на HARICA на платформе разработчиков Ozon for dev</a></aside> > [Инструкции по работе с маркетплейсом](https://seller-edu.ozon.ru) > [Информационная платформа и сообщество разработчиков Ozon for dev](https://dev.ozon.ru/)
*
* The version of the OpenAPI document: 2.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import type { DeliveryMethodHolidays } from './DeliveryMethodHolidays';
import type { DeliveryPointInfoResponsePointDeliveryMethodDeliveryType } from './DeliveryPointInfoResponsePointDeliveryMethodDeliveryType';
import type { PointDeliveryMethodCoordinates } from './PointDeliveryMethodCoordinates';
import type { DeliveryMethodProperties } from './DeliveryMethodProperties';
import type { DeliveryMethodWorkingHours } from './DeliveryMethodWorkingHours';
import type { DeliveryMethodAddressDetails } from './DeliveryMethodAddressDetails';
/**
* Метод доставки.
* @export
* @interface DeliveryPointInfoResponsePointDeliveryMethod
*/
export interface DeliveryPointInfoResponsePointDeliveryMethod {
/**
* Адрес.
* @type {string}
* @memberof DeliveryPointInfoResponsePointDeliveryMethod
*/
address?: string;
/**
*
* @type {DeliveryMethodAddressDetails}
* @memberof DeliveryPointInfoResponsePointDeliveryMethod
*/
address_details?: DeliveryMethodAddressDetails;
/**
*
* @type {PointDeliveryMethodCoordinates}
* @memberof DeliveryPointInfoResponsePointDeliveryMethod
*/
coordinates?: PointDeliveryMethodCoordinates;
/**
*
* @type {DeliveryPointInfoResponsePointDeliveryMethodDeliveryType}
* @memberof DeliveryPointInfoResponsePointDeliveryMethod
*/
delivery_type?: DeliveryPointInfoResponsePointDeliveryMethodDeliveryType;
/**
* Описание.
* @type {string}
* @memberof DeliveryPointInfoResponsePointDeliveryMethod
*/
description?: string;
/**
* Количество гардеробов.
* @type {number}
* @memberof DeliveryPointInfoResponsePointDeliveryMethod
*/
fitting_rooms_count?: number;
/**
* Праздничные дни.
* @type {Array<DeliveryMethodHolidays>}
* @memberof DeliveryPointInfoResponsePointDeliveryMethod
*/
holidays?: Array<DeliveryMethodHolidays>;
/**
* `true`, если праздники заполнены.
*
* @type {boolean}
* @memberof DeliveryPointInfoResponsePointDeliveryMethod
*/
holidays_filled?: boolean;
/**
* Изображения.
* @type {Array<string>}
* @memberof DeliveryPointInfoResponsePointDeliveryMethod
*/
images?: Array<string>;
/**
* Идентификатор локации.
* @type {string}
* @memberof DeliveryPointInfoResponsePointDeliveryMethod
*/
location_id?: string;
/**
* Идентификатор точки на карте.
* @type {number}
* @memberof DeliveryPointInfoResponsePointDeliveryMethod
*/
map_point_id?: number;
/**
* Название.
* @type {string}
* @memberof DeliveryPointInfoResponsePointDeliveryMethod
*/
name?: string;
/**
* Свойства.
* @type {Array<DeliveryMethodProperties>}
* @memberof DeliveryPointInfoResponsePointDeliveryMethod
*/
properties?: Array<DeliveryMethodProperties>;
/**
* Рейтинг пункта выдачи заказов.
* @type {number}
* @memberof DeliveryPointInfoResponsePointDeliveryMethod
*/
pvz_rating?: number;
/**
* Период хранения.
* @type {number}
* @memberof DeliveryPointInfoResponsePointDeliveryMethod
*/
storage_period?: number;
/**
* Часы работы.
* @type {Array<DeliveryMethodWorkingHours>}
* @memberof DeliveryPointInfoResponsePointDeliveryMethod
*/
working_hours?: Array<DeliveryMethodWorkingHours>;
}
/**
* Check if a given object implements the DeliveryPointInfoResponsePointDeliveryMethod interface.
*/
export declare function instanceOfDeliveryPointInfoResponsePointDeliveryMethod(value: object): value is DeliveryPointInfoResponsePointDeliveryMethod;
export declare function DeliveryPointInfoResponsePointDeliveryMethodFromJSON(json: any): DeliveryPointInfoResponsePointDeliveryMethod;
export declare function DeliveryPointInfoResponsePointDeliveryMethodFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeliveryPointInfoResponsePointDeliveryMethod;
export declare function DeliveryPointInfoResponsePointDeliveryMethodToJSON(value?: DeliveryPointInfoResponsePointDeliveryMethod | null): any;