"use strict"; /* tslint:disable */ /* eslint-disable */ /** * Документация 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. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.instanceOfGetFBSRatingIndexInfoV1ResponseIndexDynamics = instanceOfGetFBSRatingIndexInfoV1ResponseIndexDynamics; exports.GetFBSRatingIndexInfoV1ResponseIndexDynamicsFromJSON = GetFBSRatingIndexInfoV1ResponseIndexDynamicsFromJSON; exports.GetFBSRatingIndexInfoV1ResponseIndexDynamicsFromJSONTyped = GetFBSRatingIndexInfoV1ResponseIndexDynamicsFromJSONTyped; exports.GetFBSRatingIndexInfoV1ResponseIndexDynamicsToJSON = GetFBSRatingIndexInfoV1ResponseIndexDynamicsToJSON; /** * Check if a given object implements the GetFBSRatingIndexInfoV1ResponseIndexDynamics interface. */ function instanceOfGetFBSRatingIndexInfoV1ResponseIndexDynamics(value) { return true; } function GetFBSRatingIndexInfoV1ResponseIndexDynamicsFromJSON(json) { return GetFBSRatingIndexInfoV1ResponseIndexDynamicsFromJSONTyped(json, false); } function GetFBSRatingIndexInfoV1ResponseIndexDynamicsFromJSONTyped(json, ignoreDiscriminator) { if (json == null) { return json; } return { 'date': json['date'] == null ? undefined : json['date'], 'index_by_date': json['index_by_date'] == null ? undefined : json['index_by_date'], 'processing_costs_sum_by_date': json['processing_costs_sum_by_date'] == null ? undefined : json['processing_costs_sum_by_date'], }; } function GetFBSRatingIndexInfoV1ResponseIndexDynamicsToJSON(value) { if (value == null) { return value; } return { 'date': value['date'], 'index_by_date': value['index_by_date'], 'processing_costs_sum_by_date': value['processing_costs_sum_by_date'], }; }