/** * Документация 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 { V2FboPosting } from './V2FboPosting'; /** * * @export * @interface V2FboPostingResponse */ export interface V2FboPostingResponse { /** * * @type {V2FboPosting} * @memberof V2FboPostingResponse */ result?: V2FboPosting; } /** * Check if a given object implements the V2FboPostingResponse interface. */ export declare function instanceOfV2FboPostingResponse(value: object): value is V2FboPostingResponse; export declare function V2FboPostingResponseFromJSON(json: any): V2FboPostingResponse; export declare function V2FboPostingResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): V2FboPostingResponse; export declare function V2FboPostingResponseToJSON(value?: V2FboPostingResponse | null): any;