/** * Документация 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 { SupplyCheckIsValidDistributionRule } from './SupplyCheckIsValidDistributionRule'; import type { SupplyCheckCargoesPresentRule } from './SupplyCheckCargoesPresentRule'; import type { SupplyCheckEditDeadlineExpireRule } from './SupplyCheckEditDeadlineExpireRule'; import type { SupplyCheckPackageUnitWithDistributionRule } from './SupplyCheckPackageUnitWithDistributionRule'; import type { SupplyCheckPlacementZoneRule } from './SupplyCheckPlacementZoneRule'; import type { SupplyCheckExpireDatePresentedRule } from './SupplyCheckExpireDatePresentedRule'; /** * Чек-лист правил заполнения грузомест. * @export * @interface CargoesRulesGetResponseSupplyCheck */ export interface CargoesRulesGetResponseSupplyCheck { /** * * @type {SupplyCheckCargoesPresentRule} * @memberof CargoesRulesGetResponseSupplyCheck */ cargoes_presents_rule?: SupplyCheckCargoesPresentRule; /** * * @type {SupplyCheckEditDeadlineExpireRule} * @memberof CargoesRulesGetResponseSupplyCheck */ edit_deadline_expire_rule?: SupplyCheckEditDeadlineExpireRule; /** * * @type {SupplyCheckExpireDatePresentedRule} * @memberof CargoesRulesGetResponseSupplyCheck */ expire_dates_presented_rule?: SupplyCheckExpireDatePresentedRule; /** * * @type {SupplyCheckIsValidDistributionRule} * @memberof CargoesRulesGetResponseSupplyCheck */ is_valid_distribution_rule?: SupplyCheckIsValidDistributionRule; /** * * @type {SupplyCheckPackageUnitWithDistributionRule} * @memberof CargoesRulesGetResponseSupplyCheck */ package_units_with_distribution_rule?: SupplyCheckPackageUnitWithDistributionRule; /** * * @type {SupplyCheckPlacementZoneRule} * @memberof CargoesRulesGetResponseSupplyCheck */ placement_zones_rule?: SupplyCheckPlacementZoneRule; /** * Идентификатор поставки. * @type {number} * @memberof CargoesRulesGetResponseSupplyCheck */ supply_id?: number; } /** * Check if a given object implements the CargoesRulesGetResponseSupplyCheck interface. */ export declare function instanceOfCargoesRulesGetResponseSupplyCheck(value: object): value is CargoesRulesGetResponseSupplyCheck; export declare function CargoesRulesGetResponseSupplyCheckFromJSON(json: any): CargoesRulesGetResponseSupplyCheck; export declare function CargoesRulesGetResponseSupplyCheckFromJSONTyped(json: any, ignoreDiscriminator: boolean): CargoesRulesGetResponseSupplyCheck; export declare function CargoesRulesGetResponseSupplyCheckToJSON(value?: CargoesRulesGetResponseSupplyCheck | null): any;