/** * Документация 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. */ import type { GetFBSRatingIndexInfoV1ResponseIndexDynamics } from './GetFBSRatingIndexInfoV1ResponseIndexDynamics'; /** * * @export * @interface V1GetFBSRatingIndexInfoV1Response */ export interface V1GetFBSRatingIndexInfoV1Response { /** * Код валюты стоимости обработки ошибок. * @type {string} * @memberof V1GetFBSRatingIndexInfoV1Response */ currency_code?: string; /** * Индекс ошибок по дням. * @type {Array} * @memberof V1GetFBSRatingIndexInfoV1Response */ defects?: Array; /** * Значение индекса ошибок за период. * @type {number} * @memberof V1GetFBSRatingIndexInfoV1Response */ index?: number; /** * Дата начала расчётного периода в формате `YYYY-MM-DD`. * @type {string} * @memberof V1GetFBSRatingIndexInfoV1Response */ period_from?: string; /** * Дата окончания расчётного периода в формате `YYYY-MM-DD`. * @type {string} * @memberof V1GetFBSRatingIndexInfoV1Response */ period_to?: string; /** * Расходы на обработку ошибок за период. * @type {number} * @memberof V1GetFBSRatingIndexInfoV1Response */ processing_costs_sum?: number; } /** * Check if a given object implements the V1GetFBSRatingIndexInfoV1Response interface. */ export declare function instanceOfV1GetFBSRatingIndexInfoV1Response(value: object): value is V1GetFBSRatingIndexInfoV1Response; export declare function V1GetFBSRatingIndexInfoV1ResponseFromJSON(json: any): V1GetFBSRatingIndexInfoV1Response; export declare function V1GetFBSRatingIndexInfoV1ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): V1GetFBSRatingIndexInfoV1Response; export declare function V1GetFBSRatingIndexInfoV1ResponseToJSON(value?: V1GetFBSRatingIndexInfoV1Response | null): any;