/** * SDRangel * This is the web API of SDRangel SDR software. SDRangel is an Open Source Qt5/OpenGL 3.0+ GUI and server Software Defined Radio and signal analyzer in software. It supports Airspy, BladeRF, HackRF, LimeSDR, PlutoSDR, RTL-SDR, SDRplay RSP1 and FunCube * * OpenAPI spec version: 4.0.0 * Contact: f4exb06@gmail.com * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ /* * SWGInstanceChannelsResponse.h * * Summarized information about channel plugins available in this SDRangel instance */ #ifndef SWGInstanceChannelsResponse_H_ #define SWGInstanceChannelsResponse_H_ #include #include "SWGChannelListItem.h" #include #include "SWGObject.h" namespace SWGSDRangel { class SWGInstanceChannelsResponse: public SWGObject { public: SWGInstanceChannelsResponse(); SWGInstanceChannelsResponse(QString* json); virtual ~SWGInstanceChannelsResponse(); void init(); void cleanup(); QString asJson (); QJsonObject* asJsonObject(); void fromJsonObject(QJsonObject &json); SWGInstanceChannelsResponse* fromJson(QString &jsonString); qint32 getChannelcount(); void setChannelcount(qint32 channelcount); QList* getChannels(); void setChannels(QList* channels); private: qint32 channelcount; QList* channels; }; } #endif /* SWGInstanceChannelsResponse_H_ */