forked from loafle/openapi-generator-original
Merge branch 'master' of https://github.com/swagger-api/swagger-codegen
This commit is contained in:
commit
b71fe61bb7
@ -862,6 +862,7 @@ Here are some companies/projects using Swagger Codegen in production. To add you
|
|||||||
- [HashData](http://www.hashdata.cn/)
|
- [HashData](http://www.hashdata.cn/)
|
||||||
- [Hewlett Packard Enterprise](https://hpe.com)
|
- [Hewlett Packard Enterprise](https://hpe.com)
|
||||||
- [High Technologies Center](http://htc-cs.com)
|
- [High Technologies Center](http://htc-cs.com)
|
||||||
|
- [IBM](https://www.ibm.com)
|
||||||
- [IMS Health](http://www.imshealth.com/en/solution-areas/technology-and-applications)
|
- [IMS Health](http://www.imshealth.com/en/solution-areas/technology-and-applications)
|
||||||
- [Intent HQ](http://www.intenthq.com)
|
- [Intent HQ](http://www.intenthq.com)
|
||||||
- [Interactive Intelligence](http://developer.mypurecloud.com/)
|
- [Interactive Intelligence](http://developer.mypurecloud.com/)
|
||||||
|
@ -97,10 +97,10 @@
|
|||||||
obj['string'] = ApiClient.convertToType(data['string'], 'String');
|
obj['string'] = ApiClient.convertToType(data['string'], 'String');
|
||||||
}
|
}
|
||||||
if (data.hasOwnProperty('byte')) {
|
if (data.hasOwnProperty('byte')) {
|
||||||
obj['byte'] = ApiClient.convertToType(data['byte'], Blob);
|
obj['byte'] = ApiClient.convertToType(data['byte'], 'Blob');
|
||||||
}
|
}
|
||||||
if (data.hasOwnProperty('binary')) {
|
if (data.hasOwnProperty('binary')) {
|
||||||
obj['binary'] = ApiClient.convertToType(data['binary'], Blob);
|
obj['binary'] = ApiClient.convertToType(data['binary'], 'Blob');
|
||||||
}
|
}
|
||||||
if (data.hasOwnProperty('date')) {
|
if (data.hasOwnProperty('date')) {
|
||||||
obj['date'] = ApiClient.convertToType(data['date'], 'Date');
|
obj['date'] = ApiClient.convertToType(data['date'], 'Date');
|
||||||
|
@ -97,10 +97,10 @@
|
|||||||
obj['string'] = ApiClient.convertToType(data['string'], 'String');
|
obj['string'] = ApiClient.convertToType(data['string'], 'String');
|
||||||
}
|
}
|
||||||
if (data.hasOwnProperty('byte')) {
|
if (data.hasOwnProperty('byte')) {
|
||||||
obj['byte'] = ApiClient.convertToType(data['byte'], Blob);
|
obj['byte'] = ApiClient.convertToType(data['byte'], 'Blob');
|
||||||
}
|
}
|
||||||
if (data.hasOwnProperty('binary')) {
|
if (data.hasOwnProperty('binary')) {
|
||||||
obj['binary'] = ApiClient.convertToType(data['binary'], Blob);
|
obj['binary'] = ApiClient.convertToType(data['binary'], 'Blob');
|
||||||
}
|
}
|
||||||
if (data.hasOwnProperty('date')) {
|
if (data.hasOwnProperty('date')) {
|
||||||
obj['date'] = ApiClient.convertToType(data['date'], 'Date');
|
obj['date'] = ApiClient.convertToType(data['date'], 'Date');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user