-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathOAICleanable_job_result_page.h
100 lines (77 loc) · 2.46 KB
/
OAICleanable_job_result_page.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
91
92
93
94
95
96
97
98
99
100
/**
* 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.
*/
/*
* OAICleanable_job_result_page.h
*
*
*/
#ifndef OAICleanable_job_result_page_H
#define OAICleanable_job_result_page_H
#include <QJsonObject>
#include "OAICleanable_job_result.h"
#include <QList>
#include <QString>
#include "OAIEnum.h"
#include "OAIObject.h"
namespace OpenAPI {
class OAICleanable_job_result;
class OAICleanable_job_result_page : public OAIObject {
public:
OAICleanable_job_result_page();
OAICleanable_job_result_page(QString json);
~OAICleanable_job_result_page() override;
QString asJson() const override;
QJsonObject asJsonObject() const override;
void fromJsonObject(QJsonObject json) override;
void fromJson(QString jsonString) override;
qint32 getCount() const;
void setCount(const qint32 &count);
bool is_count_Set() const;
bool is_count_Valid() const;
QString getNext() const;
void setNext(const QString &next);
bool is_next_Set() const;
bool is_next_Valid() const;
QString getPrevious() const;
void setPrevious(const QString &previous);
bool is_previous_Set() const;
bool is_previous_Valid() const;
QList<OAICleanable_job_result> getResults() const;
void setResults(const QList<OAICleanable_job_result> &results);
bool is_results_Set() const;
bool is_results_Valid() const;
qint32 getTotalLength() const;
void setTotalLength(const qint32 &total_length);
bool is_total_length_Set() const;
bool is_total_length_Valid() const;
virtual bool isSet() const override;
virtual bool isValid() const override;
private:
void initializeModel();
qint32 count;
bool m_count_isSet;
bool m_count_isValid;
QString next;
bool m_next_isSet;
bool m_next_isValid;
QString previous;
bool m_previous_isSet;
bool m_previous_isValid;
QList<OAICleanable_job_result> results;
bool m_results_isSet;
bool m_results_isValid;
qint32 total_length;
bool m_total_length_isSet;
bool m_total_length_isValid;
};
} // namespace OpenAPI
Q_DECLARE_METATYPE(OpenAPI::OAICleanable_job_result_page)
#endif // OAICleanable_job_result_page_H