-
Notifications
You must be signed in to change notification settings - Fork 5
/
OAIModel_hypercube_job.h
90 lines (69 loc) · 2.16 KB
/
OAIModel_hypercube_job.h
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/**
* 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: latest
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/*
* OAIModel_hypercube_job.h
*
*
*/
#ifndef OAIModel_hypercube_job_H
#define OAIModel_hypercube_job_H
#include <QJsonObject>
#include "OAITime_span.h"
#include <QList>
#include "OAIEnum.h"
#include "OAIObject.h"
namespace OpenAPI {
class OAITime_span;
class OAIModel_hypercube_job : public OAIObject {
public:
OAIModel_hypercube_job();
OAIModel_hypercube_job(QString json);
~OAIModel_hypercube_job() override;
QString asJson() const override;
QJsonObject asJsonObject() const override;
void fromJsonObject(QJsonObject json) override;
void fromJson(QString jsonString) override;
qint32 getJobNumber() const;
void setJobNumber(const qint32 &job_number);
bool is_job_number_Set() const;
bool is_job_number_Valid() const;
qint32 getProcessStatus() const;
void setProcessStatus(const qint32 &process_status);
bool is_process_status_Set() const;
bool is_process_status_Valid() const;
qint32 getStatus() const;
void setStatus(const qint32 &status);
bool is_status_Set() const;
bool is_status_Valid() const;
QList<OAITime_span> getTimes() const;
void setTimes(const QList<OAITime_span> ×);
bool is_times_Set() const;
bool is_times_Valid() const;
virtual bool isSet() const override;
virtual bool isValid() const override;
private:
void initializeModel();
qint32 job_number;
bool m_job_number_isSet;
bool m_job_number_isValid;
qint32 process_status;
bool m_process_status_isSet;
bool m_process_status_isValid;
qint32 status;
bool m_status_isSet;
bool m_status_isValid;
QList<OAITime_span> times;
bool m_times_isSet;
bool m_times_isValid;
};
} // namespace OpenAPI
Q_DECLARE_METATYPE(OpenAPI::OAIModel_hypercube_job)
#endif // OAIModel_hypercube_job_H