1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-05-23 18:52:28 -04:00

Regenerate swagger files

This commit is contained in:
srcejon 2024-03-18 14:20:07 +00:00
parent b579225fcc
commit be554146bd
7 changed files with 83 additions and 2 deletions

View File

@ -10050,6 +10050,10 @@ margin-bottom: 20px;
"format" : "float", "format" : "float",
"description" : "Extruded height (from surface) for polygons" "description" : "Extruded height (from surface) for polygons"
}, },
"availableFrom" : {
"type" : "string",
"description" : "Date and time at which the item should first appear on 3D map"
},
"availableUntil" : { "availableUntil" : {
"type" : "string", "type" : "string",
"description" : "Date and time until after which this item should no longer appear on 3D map" "description" : "Date and time until after which this item should no longer appear on 3D map"
@ -10210,6 +10214,10 @@ margin-bottom: 20px;
"format" : "float", "format" : "float",
"description" : "Extruded height (from surface) for polygons" "description" : "Extruded height (from surface) for polygons"
}, },
"availableFrom" : {
"type" : "string",
"description" : "Date and time at which the item should first appear on 3D map"
},
"availableUntil" : { "availableUntil" : {
"type" : "string", "type" : "string",
"description" : "Date and time until after which this item should no longer appear on 3D map" "description" : "Date and time until after which this item should no longer appear on 3D map"
@ -58865,7 +58873,7 @@ except ApiException as e:
</div> </div>
<div id="generator"> <div id="generator">
<div class="content"> <div class="content">
Generated 2024-03-13T16:45:40.518+01:00 Generated 2024-03-18T15:19:34.728+01:00
</div> </div>
</div> </div>
</div> </div>

View File

@ -156,6 +156,9 @@ MapItem:
description: "Extruded height (from surface) for polygons" description: "Extruded height (from surface) for polygons"
type: number type: number
format: float format: float
availableFrom:
description: "Date and time at which the item should first appear on 3D map"
type: string
availableUntil: availableUntil:
description: "Date and time until after which this item should no longer appear on 3D map" description: "Date and time until after which this item should no longer appear on 3D map"
type: string type: string

View File

@ -10050,6 +10050,10 @@ margin-bottom: 20px;
"format" : "float", "format" : "float",
"description" : "Extruded height (from surface) for polygons" "description" : "Extruded height (from surface) for polygons"
}, },
"availableFrom" : {
"type" : "string",
"description" : "Date and time at which the item should first appear on 3D map"
},
"availableUntil" : { "availableUntil" : {
"type" : "string", "type" : "string",
"description" : "Date and time until after which this item should no longer appear on 3D map" "description" : "Date and time until after which this item should no longer appear on 3D map"
@ -10210,6 +10214,10 @@ margin-bottom: 20px;
"format" : "float", "format" : "float",
"description" : "Extruded height (from surface) for polygons" "description" : "Extruded height (from surface) for polygons"
}, },
"availableFrom" : {
"type" : "string",
"description" : "Date and time at which the item should first appear on 3D map"
},
"availableUntil" : { "availableUntil" : {
"type" : "string", "type" : "string",
"description" : "Date and time until after which this item should no longer appear on 3D map" "description" : "Date and time until after which this item should no longer appear on 3D map"
@ -58865,7 +58873,7 @@ except ApiException as e:
</div> </div>
<div id="generator"> <div id="generator">
<div class="content"> <div class="content">
Generated 2024-03-13T16:45:40.518+01:00 Generated 2024-03-18T15:19:34.728+01:00
</div> </div>
</div> </div>
</div> </div>

View File

@ -88,6 +88,8 @@ SWGMapItem::SWGMapItem() {
m_coordinates_isSet = false; m_coordinates_isSet = false;
extruded_height = 0.0f; extruded_height = 0.0f;
m_extruded_height_isSet = false; m_extruded_height_isSet = false;
available_from = nullptr;
m_available_from_isSet = false;
available_until = nullptr; available_until = nullptr;
m_available_until_isSet = false; m_available_until_isSet = false;
color_valid = 0; color_valid = 0;
@ -162,6 +164,8 @@ SWGMapItem::init() {
m_coordinates_isSet = false; m_coordinates_isSet = false;
extruded_height = 0.0f; extruded_height = 0.0f;
m_extruded_height_isSet = false; m_extruded_height_isSet = false;
available_from = new QString("");
m_available_from_isSet = false;
available_until = new QString(""); available_until = new QString("");
m_available_until_isSet = false; m_available_until_isSet = false;
color_valid = 0; color_valid = 0;
@ -240,6 +244,9 @@ SWGMapItem::cleanup() {
delete coordinates; delete coordinates;
} }
if(available_from != nullptr) {
delete available_from;
}
if(available_until != nullptr) { if(available_until != nullptr) {
delete available_until; delete available_until;
} }
@ -318,6 +325,8 @@ SWGMapItem::fromJsonObject(QJsonObject &pJson) {
::SWGSDRangel::setValue(&coordinates, pJson["coordinates"], "QList", "SWGMapCoordinate"); ::SWGSDRangel::setValue(&coordinates, pJson["coordinates"], "QList", "SWGMapCoordinate");
::SWGSDRangel::setValue(&extruded_height, pJson["extrudedHeight"], "float", ""); ::SWGSDRangel::setValue(&extruded_height, pJson["extrudedHeight"], "float", "");
::SWGSDRangel::setValue(&available_from, pJson["availableFrom"], "QString", "QString");
::SWGSDRangel::setValue(&available_until, pJson["availableUntil"], "QString", "QString"); ::SWGSDRangel::setValue(&available_until, pJson["availableUntil"], "QString", "QString");
::SWGSDRangel::setValue(&color_valid, pJson["colorValid"], "qint32", ""); ::SWGSDRangel::setValue(&color_valid, pJson["colorValid"], "qint32", "");
@ -430,6 +439,9 @@ SWGMapItem::asJsonObject() {
if(m_extruded_height_isSet){ if(m_extruded_height_isSet){
obj->insert("extrudedHeight", QJsonValue(extruded_height)); obj->insert("extrudedHeight", QJsonValue(extruded_height));
} }
if(available_from != nullptr && *available_from != QString("")){
toJsonValue(QString("availableFrom"), available_from, obj, QString("QString"));
}
if(available_until != nullptr && *available_until != QString("")){ if(available_until != nullptr && *available_until != QString("")){
toJsonValue(QString("availableUntil"), available_until, obj, QString("QString")); toJsonValue(QString("availableUntil"), available_until, obj, QString("QString"));
} }
@ -743,6 +755,16 @@ SWGMapItem::setExtrudedHeight(float extruded_height) {
this->m_extruded_height_isSet = true; this->m_extruded_height_isSet = true;
} }
QString*
SWGMapItem::getAvailableFrom() {
return available_from;
}
void
SWGMapItem::setAvailableFrom(QString* available_from) {
this->available_from = available_from;
this->m_available_from_isSet = true;
}
QString* QString*
SWGMapItem::getAvailableUntil() { SWGMapItem::getAvailableUntil() {
return available_until; return available_until;
@ -868,6 +890,9 @@ SWGMapItem::isSet(){
if(m_extruded_height_isSet){ if(m_extruded_height_isSet){
isObjectUpdated = true; break; isObjectUpdated = true; break;
} }
if(available_from && *available_from != QString("")){
isObjectUpdated = true; break;
}
if(available_until && *available_until != QString("")){ if(available_until && *available_until != QString("")){
isObjectUpdated = true; break; isObjectUpdated = true; break;
} }

View File

@ -135,6 +135,9 @@ public:
float getExtrudedHeight(); float getExtrudedHeight();
void setExtrudedHeight(float extruded_height); void setExtrudedHeight(float extruded_height);
QString* getAvailableFrom();
void setAvailableFrom(QString* available_from);
QString* getAvailableUntil(); QString* getAvailableUntil();
void setAvailableUntil(QString* available_until); void setAvailableUntil(QString* available_until);
@ -238,6 +241,9 @@ private:
float extruded_height; float extruded_height;
bool m_extruded_height_isSet; bool m_extruded_height_isSet;
QString* available_from;
bool m_available_from_isSet;
QString* available_until; QString* available_until;
bool m_available_until_isSet; bool m_available_until_isSet;

View File

@ -88,6 +88,8 @@ SWGMapItem_2::SWGMapItem_2() {
m_coordinates_isSet = false; m_coordinates_isSet = false;
extruded_height = 0.0f; extruded_height = 0.0f;
m_extruded_height_isSet = false; m_extruded_height_isSet = false;
available_from = nullptr;
m_available_from_isSet = false;
available_until = nullptr; available_until = nullptr;
m_available_until_isSet = false; m_available_until_isSet = false;
color_valid = 0; color_valid = 0;
@ -162,6 +164,8 @@ SWGMapItem_2::init() {
m_coordinates_isSet = false; m_coordinates_isSet = false;
extruded_height = 0.0f; extruded_height = 0.0f;
m_extruded_height_isSet = false; m_extruded_height_isSet = false;
available_from = new QString("");
m_available_from_isSet = false;
available_until = new QString(""); available_until = new QString("");
m_available_until_isSet = false; m_available_until_isSet = false;
color_valid = 0; color_valid = 0;
@ -240,6 +244,9 @@ SWGMapItem_2::cleanup() {
delete coordinates; delete coordinates;
} }
if(available_from != nullptr) {
delete available_from;
}
if(available_until != nullptr) { if(available_until != nullptr) {
delete available_until; delete available_until;
} }
@ -318,6 +325,8 @@ SWGMapItem_2::fromJsonObject(QJsonObject &pJson) {
::SWGSDRangel::setValue(&coordinates, pJson["coordinates"], "QList", "SWGMapCoordinate"); ::SWGSDRangel::setValue(&coordinates, pJson["coordinates"], "QList", "SWGMapCoordinate");
::SWGSDRangel::setValue(&extruded_height, pJson["extrudedHeight"], "float", ""); ::SWGSDRangel::setValue(&extruded_height, pJson["extrudedHeight"], "float", "");
::SWGSDRangel::setValue(&available_from, pJson["availableFrom"], "QString", "QString");
::SWGSDRangel::setValue(&available_until, pJson["availableUntil"], "QString", "QString"); ::SWGSDRangel::setValue(&available_until, pJson["availableUntil"], "QString", "QString");
::SWGSDRangel::setValue(&color_valid, pJson["colorValid"], "qint32", ""); ::SWGSDRangel::setValue(&color_valid, pJson["colorValid"], "qint32", "");
@ -430,6 +439,9 @@ SWGMapItem_2::asJsonObject() {
if(m_extruded_height_isSet){ if(m_extruded_height_isSet){
obj->insert("extrudedHeight", QJsonValue(extruded_height)); obj->insert("extrudedHeight", QJsonValue(extruded_height));
} }
if(available_from != nullptr && *available_from != QString("")){
toJsonValue(QString("availableFrom"), available_from, obj, QString("QString"));
}
if(available_until != nullptr && *available_until != QString("")){ if(available_until != nullptr && *available_until != QString("")){
toJsonValue(QString("availableUntil"), available_until, obj, QString("QString")); toJsonValue(QString("availableUntil"), available_until, obj, QString("QString"));
} }
@ -743,6 +755,16 @@ SWGMapItem_2::setExtrudedHeight(float extruded_height) {
this->m_extruded_height_isSet = true; this->m_extruded_height_isSet = true;
} }
QString*
SWGMapItem_2::getAvailableFrom() {
return available_from;
}
void
SWGMapItem_2::setAvailableFrom(QString* available_from) {
this->available_from = available_from;
this->m_available_from_isSet = true;
}
QString* QString*
SWGMapItem_2::getAvailableUntil() { SWGMapItem_2::getAvailableUntil() {
return available_until; return available_until;
@ -868,6 +890,9 @@ SWGMapItem_2::isSet(){
if(m_extruded_height_isSet){ if(m_extruded_height_isSet){
isObjectUpdated = true; break; isObjectUpdated = true; break;
} }
if(available_from && *available_from != QString("")){
isObjectUpdated = true; break;
}
if(available_until && *available_until != QString("")){ if(available_until && *available_until != QString("")){
isObjectUpdated = true; break; isObjectUpdated = true; break;
} }

View File

@ -135,6 +135,9 @@ public:
float getExtrudedHeight(); float getExtrudedHeight();
void setExtrudedHeight(float extruded_height); void setExtrudedHeight(float extruded_height);
QString* getAvailableFrom();
void setAvailableFrom(QString* available_from);
QString* getAvailableUntil(); QString* getAvailableUntil();
void setAvailableUntil(QString* available_until); void setAvailableUntil(QString* available_until);
@ -238,6 +241,9 @@ private:
float extruded_height; float extruded_height;
bool m_extruded_height_isSet; bool m_extruded_height_isSet;
QString* available_from;
bool m_available_from_isSet;
QString* available_until; QString* available_until;
bool m_available_until_isSet; bool m_available_until_isSet;