/** * Документация 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 ValueTimezoneInfo */ export interface ValueTimezoneInfo { /** * Название часового пояса. * @type {string} * @memberof ValueTimezoneInfo */ iana_name?: string; /** * Смещение часового пояса от UTC-0 в секундах. * @type {string} * @memberof ValueTimezoneInfo */ offset?: string; } /** * Check if a given object implements the ValueTimezoneInfo interface. */ export declare function instanceOfValueTimezoneInfo(value: object): value is ValueTimezoneInfo; export declare function ValueTimezoneInfoFromJSON(json: any): ValueTimezoneInfo; export declare function ValueTimezoneInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValueTimezoneInfo; export declare function ValueTimezoneInfoToJSON(value?: ValueTimezoneInfo | null): any;