/** * Документация 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 { GetSellerActionsV1ResponseAction } from './GetSellerActionsV1ResponseAction'; /** * * @export * @interface SellerApiGetSellerActionsV1Response */ export interface SellerApiGetSellerActionsV1Response { /** * Результаты запроса. * @type {Array} * @memberof SellerApiGetSellerActionsV1Response */ result?: Array; } /** * Check if a given object implements the SellerApiGetSellerActionsV1Response interface. */ export declare function instanceOfSellerApiGetSellerActionsV1Response(value: object): value is SellerApiGetSellerActionsV1Response; export declare function SellerApiGetSellerActionsV1ResponseFromJSON(json: any): SellerApiGetSellerActionsV1Response; export declare function SellerApiGetSellerActionsV1ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SellerApiGetSellerActionsV1Response; export declare function SellerApiGetSellerActionsV1ResponseToJSON(value?: SellerApiGetSellerActionsV1Response | null): any;