-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathOAIHypercube_token.h
More file actions
73 lines (56 loc) · 1.76 KB
/
Copy pathOAIHypercube_token.h
File metadata and controls
73 lines (56 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/**
* GAMS Engine
* With GAMS Engine you can register and solve GAMS models. It has a namespace management system, so you can restrict your users to certain models.
*
* The version of the OpenAPI document: 26.01.08
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/*
* OAIHypercube_token.h
*
*
*/
#ifndef OAIHypercube_token_H
#define OAIHypercube_token_H
#include <QJsonObject>
#include "OAIQuota.h"
#include <QList>
#include <QString>
#include "OAIEnum.h"
#include "OAIObject.h"
namespace OpenAPI {
class OAIQuota;
class OAIHypercube_token : public OAIObject {
public:
OAIHypercube_token();
OAIHypercube_token(QString json);
~OAIHypercube_token() override;
QString asJson() const override;
QJsonObject asJsonObject() const override;
void fromJsonObject(QJsonObject json) override;
void fromJson(QString jsonString) override;
QString getHypercubeToken() const;
void setHypercubeToken(const QString &hypercube_token);
bool is_hypercube_token_Set() const;
bool is_hypercube_token_Valid() const;
QList<OAIQuota> getQuotaWarning() const;
void setQuotaWarning(const QList<OAIQuota> "a_warning);
bool is_quota_warning_Set() const;
bool is_quota_warning_Valid() const;
virtual bool isSet() const override;
virtual bool isValid() const override;
private:
void initializeModel();
QString m_hypercube_token;
bool m_hypercube_token_isSet;
bool m_hypercube_token_isValid;
QList<OAIQuota> m_quota_warning;
bool m_quota_warning_isSet;
bool m_quota_warning_isValid;
};
} // namespace OpenAPI
Q_DECLARE_METATYPE(OpenAPI::OAIHypercube_token)
#endif // OAIHypercube_token_H