-
Notifications
You must be signed in to change notification settings - Fork 5
/
OAIJob_no_text_entry.h
182 lines (141 loc) · 4.65 KB
/
OAIJob_no_text_entry.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/**
* 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.
*/
/*
* OAIJob_no_text_entry.h
*
*
*/
#ifndef OAIJob_no_text_entry_H
#define OAIJob_no_text_entry_H
#include <QJsonObject>
#include "OAIModel_user.h"
#include <QDateTime>
#include <QList>
#include <QString>
#include "OAIEnum.h"
#include "OAIObject.h"
namespace OpenAPI {
class OAIModel_user;
class OAIJob_no_text_entry : public OAIObject {
public:
OAIJob_no_text_entry();
OAIJob_no_text_entry(QString json);
~OAIJob_no_text_entry() override;
QString asJson() const override;
QJsonObject asJsonObject() const override;
void fromJsonObject(QJsonObject json) override;
void fromJson(QString jsonString) override;
QList<QString> getArguments() const;
void setArguments(const QList<QString> &arguments);
bool is_arguments_Set() const;
bool is_arguments_Valid() const;
QDateTime getFinishedAt() const;
void setFinishedAt(const QDateTime &finished_at);
bool is_finished_at_Set() const;
bool is_finished_at_Valid() const;
bool isIsDataProvided() const;
void setIsDataProvided(const bool &is_data_provided);
bool is_is_data_provided_Set() const;
bool is_is_data_provided_Valid() const;
bool isIsTemporaryModel() const;
void setIsTemporaryModel(const bool &is_temporary_model);
bool is_is_temporary_model_Set() const;
bool is_is_temporary_model_Valid() const;
QString getModel() const;
void setModel(const QString &model);
bool is_model_Set() const;
bool is_model_Valid() const;
QString getRNamespace() const;
void setRNamespace(const QString &r_namespace);
bool is_r_namespace_Set() const;
bool is_r_namespace_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;
QString getStdoutFilename() const;
void setStdoutFilename(const QString &stdout_filename);
bool is_stdout_filename_Set() const;
bool is_stdout_filename_Valid() const;
QList<QString> getStreamEntries() const;
void setStreamEntries(const QList<QString> &stream_entries);
bool is_stream_entries_Set() const;
bool is_stream_entries_Valid() const;
QDateTime getSubmittedAt() const;
void setSubmittedAt(const QDateTime &submitted_at);
bool is_submitted_at_Set() const;
bool is_submitted_at_Valid() const;
QString getTag() const;
void setTag(const QString &tag);
bool is_tag_Set() const;
bool is_tag_Valid() const;
QString getToken() const;
void setToken(const QString &token);
bool is_token_Set() const;
bool is_token_Valid() const;
OAIModel_user getUser() const;
void setUser(const OAIModel_user &user);
bool is_user_Set() const;
bool is_user_Valid() const;
virtual bool isSet() const override;
virtual bool isValid() const override;
private:
void initializeModel();
QList<QString> arguments;
bool m_arguments_isSet;
bool m_arguments_isValid;
QDateTime finished_at;
bool m_finished_at_isSet;
bool m_finished_at_isValid;
bool is_data_provided;
bool m_is_data_provided_isSet;
bool m_is_data_provided_isValid;
bool is_temporary_model;
bool m_is_temporary_model_isSet;
bool m_is_temporary_model_isValid;
QString model;
bool m_model_isSet;
bool m_model_isValid;
QString r_namespace;
bool m_r_namespace_isSet;
bool m_r_namespace_isValid;
qint32 process_status;
bool m_process_status_isSet;
bool m_process_status_isValid;
qint32 status;
bool m_status_isSet;
bool m_status_isValid;
QString stdout_filename;
bool m_stdout_filename_isSet;
bool m_stdout_filename_isValid;
QList<QString> stream_entries;
bool m_stream_entries_isSet;
bool m_stream_entries_isValid;
QDateTime submitted_at;
bool m_submitted_at_isSet;
bool m_submitted_at_isValid;
QString tag;
bool m_tag_isSet;
bool m_tag_isValid;
QString token;
bool m_token_isSet;
bool m_token_isValid;
OAIModel_user user;
bool m_user_isSet;
bool m_user_isValid;
};
} // namespace OpenAPI
Q_DECLARE_METATYPE(OpenAPI::OAIJob_no_text_entry)
#endif // OAIJob_no_text_entry_H