-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathOAIJob_no_text_entry_page.h
More file actions
91 lines (70 loc) · 2.18 KB
/
Copy pathOAIJob_no_text_entry_page.h
File metadata and controls
91 lines (70 loc) · 2.18 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/**
* 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.
*/
/*
* OAIJob_no_text_entry_page.h
*
*
*/
#ifndef OAIJob_no_text_entry_page_H
#define OAIJob_no_text_entry_page_H
#include <QJsonObject>
#include "OAIJob_no_text_entry.h"
#include <QList>
#include <QString>
#include "OAIEnum.h"
#include "OAIObject.h"
namespace OpenAPI {
class OAIJob_no_text_entry;
class OAIJob_no_text_entry_page : public OAIObject {
public:
OAIJob_no_text_entry_page();
OAIJob_no_text_entry_page(QString json);
~OAIJob_no_text_entry_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<OAIJob_no_text_entry> getResults() const;
void setResults(const QList<OAIJob_no_text_entry> &results);
bool is_results_Set() const;
bool is_results_Valid() const;
virtual bool isSet() const override;
virtual bool isValid() const override;
private:
void initializeModel();
qint32 m_count;
bool m_count_isSet;
bool m_count_isValid;
QString m_next;
bool m_next_isSet;
bool m_next_isValid;
QString m_previous;
bool m_previous_isSet;
bool m_previous_isValid;
QList<OAIJob_no_text_entry> m_results;
bool m_results_isSet;
bool m_results_isValid;
};
} // namespace OpenAPI
Q_DECLARE_METATYPE(OpenAPI::OAIJob_no_text_entry_page)
#endif // OAIJob_no_text_entry_page_H