release 0.1.0
This commit is contained in:
62
dist/models/V1SearchAttributeValuesRequest.js
vendored
Normal file
62
dist/models/V1SearchAttributeValuesRequest.js
vendored
Normal file
@@ -0,0 +1,62 @@
|
||||
"use strict";
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
/**
|
||||
* Документация Ozon Seller API
|
||||
* По вопросам работы с Seller API обращайтесь в поддержку через личный кабинет. <aside class=\"warning\">Обновляем корневой TLS/SSL-сертификат GlobalSign — вместо него будем использовать <a href=\"https://app.harica.gr/\">HARICA</a>.<br><a href=\"https://dev.ozon.ru/news/775-Izmeneniia-v-Ozon-API-migratsiia-kornevogo-sertifikata-UTs-Ozon/\">Подробнее о переходе на HARICA на платформе разработчиков Ozon for dev</a></aside> > [Инструкции по работе с маркетплейсом](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.instanceOfV1SearchAttributeValuesRequest = instanceOfV1SearchAttributeValuesRequest;
|
||||
exports.V1SearchAttributeValuesRequestFromJSON = V1SearchAttributeValuesRequestFromJSON;
|
||||
exports.V1SearchAttributeValuesRequestFromJSONTyped = V1SearchAttributeValuesRequestFromJSONTyped;
|
||||
exports.V1SearchAttributeValuesRequestToJSON = V1SearchAttributeValuesRequestToJSON;
|
||||
/**
|
||||
* Check if a given object implements the V1SearchAttributeValuesRequest interface.
|
||||
*/
|
||||
function instanceOfV1SearchAttributeValuesRequest(value) {
|
||||
if (!('attribute_id' in value) || value['attribute_id'] === undefined)
|
||||
return false;
|
||||
if (!('description_category_id' in value) || value['description_category_id'] === undefined)
|
||||
return false;
|
||||
if (!('limit' in value) || value['limit'] === undefined)
|
||||
return false;
|
||||
if (!('type_id' in value) || value['type_id'] === undefined)
|
||||
return false;
|
||||
if (!('value' in value) || value['value'] === undefined)
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
function V1SearchAttributeValuesRequestFromJSON(json) {
|
||||
return V1SearchAttributeValuesRequestFromJSONTyped(json, false);
|
||||
}
|
||||
function V1SearchAttributeValuesRequestFromJSONTyped(json, ignoreDiscriminator) {
|
||||
if (json == null) {
|
||||
return json;
|
||||
}
|
||||
return {
|
||||
'attribute_id': json['attribute_id'],
|
||||
'description_category_id': json['description_category_id'],
|
||||
'limit': json['limit'],
|
||||
'type_id': json['type_id'],
|
||||
'value': json['value'],
|
||||
};
|
||||
}
|
||||
function V1SearchAttributeValuesRequestToJSON(value) {
|
||||
if (value == null) {
|
||||
return value;
|
||||
}
|
||||
return {
|
||||
'attribute_id': value['attribute_id'],
|
||||
'description_category_id': value['description_category_id'],
|
||||
'limit': value['limit'],
|
||||
'type_id': value['type_id'],
|
||||
'value': value['value'],
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user