/** * Документация 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 PostingBooleanResponse */ export interface PostingBooleanResponse { /** * Результат обработки запроса. `true`, если запрос выполнился без ошибок. * @type {boolean} * @memberof PostingBooleanResponse */ result?: boolean; } /** * Check if a given object implements the PostingBooleanResponse interface. */ export declare function instanceOfPostingBooleanResponse(value: object): value is PostingBooleanResponse; export declare function PostingBooleanResponseFromJSON(json: any): PostingBooleanResponse; export declare function PostingBooleanResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostingBooleanResponse; export declare function PostingBooleanResponseToJSON(value?: PostingBooleanResponse | null): any;