/** * Документация Ozon Seller API * По вопросам работы с Seller API обращайтесь в поддержку через личный кабинет. > [Инструкции по работе с маркетплейсом](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. */ /** * Часовой пояс. * @export * @interface TimeslotTZTimezoneInfo */ export interface TimeslotTZTimezoneInfo { /** * Название часового пояса. * @type {string} * @memberof TimeslotTZTimezoneInfo */ iana_name?: string; /** * Смещение часового пояса от UTC-0 в секундах. * @type {string} * @memberof TimeslotTZTimezoneInfo */ offset?: string; } /** * Check if a given object implements the TimeslotTZTimezoneInfo interface. */ export declare function instanceOfTimeslotTZTimezoneInfo(value: object): value is TimeslotTZTimezoneInfo; export declare function TimeslotTZTimezoneInfoFromJSON(json: any): TimeslotTZTimezoneInfo; export declare function TimeslotTZTimezoneInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): TimeslotTZTimezoneInfo; export declare function TimeslotTZTimezoneInfoToJSON(value?: TimeslotTZTimezoneInfo | null): any;