"use strict"; /* tslint:disable */ /* eslint-disable */ /** * Документация 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. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.instanceOfV1GiveoutInfoRequest = instanceOfV1GiveoutInfoRequest; exports.V1GiveoutInfoRequestFromJSON = V1GiveoutInfoRequestFromJSON; exports.V1GiveoutInfoRequestFromJSONTyped = V1GiveoutInfoRequestFromJSONTyped; exports.V1GiveoutInfoRequestToJSON = V1GiveoutInfoRequestToJSON; /** * Check if a given object implements the V1GiveoutInfoRequest interface. */ function instanceOfV1GiveoutInfoRequest(value) { if (!('giveout_id' in value) || value['giveout_id'] === undefined) return false; return true; } function V1GiveoutInfoRequestFromJSON(json) { return V1GiveoutInfoRequestFromJSONTyped(json, false); } function V1GiveoutInfoRequestFromJSONTyped(json, ignoreDiscriminator) { if (json == null) { return json; } return { 'giveout_id': json['giveout_id'], }; } function V1GiveoutInfoRequestToJSON(value) { if (value == null) { return value; } return { 'giveout_id': value['giveout_id'], }; }