-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModel.cs
311 lines (290 loc) · 11.1 KB
/
Model.cs
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
namespace FormsByAir.SDK.Model
{
public class TagData
{
public string Tag { get; set; }
public string Data { get; set; }
public List<TagData> Tags { get; set; }
}
public class DeliveryException
{
public string DocumentDeliveryId { get; set; }
public string Message { get; set; }
public string StackTrace { get; set; }
}
public class DocumentRequest
{
public string FormId { get; set; }
public List<TagData> Prefill { get; set; }
public bool Submit { get; set; }
public int? Version { get; set; }
}
public class DocumentRequestResponse
{
public string DocumentId { get; set; }
}
public class Document
{
public string DocumentId { get; set; }
public string FormId { get; set; }
public DateTime? RequestedDateTime { get; set; }
public string RequestedEmailAddress { get; set; }
public DateTime? ReceivedDateTime { get; set; }
public DateTime? PurgedDateTime { get; set; }
public string DocumentStatusId { get; set; }
public string WorkflowStatusId { get; set; }
public string Reference { get; set; }
public string UserId { get; set; }
public int DocumentVersion { get; set; }
public string WorkflowUserId { get; set; }
}
public class DocumentInformation
{
public Document Document { get; set; }
public List<DocumentVersion> DocumentVersions { get; set; }
public List<DocumentWorkflow> DocumentWorkflows { get; set; }
public List<Document> DocumentRequests { get; set; }
public List<DocumentDelivery> DocumentDeliveries { get; set; }
}
public partial class DocumentWorkflow
{
public string DocumentWorkflowId { get; set; }
public string DocumentId { get; set; }
public DateTime WorkflowDateTime { get; set; }
public string UserId { get; set; }
public string WorkflowStatusId { get; set; }
public string WorkflowUserId { get; set; }
public string Comment { get; set; }
public int DocumentVersion { get; set; }
public string Stage { get; set; }
}
public class DocumentVersion
{
public string DocumentVersionId { get; set; }
public string DocumentId { get; set; }
public int Version { get; set; }
public SubmissionType SubmissionType { get; set; }
public DateTime ReceivedDateTime { get; set; }
public string IPAddress { get; set; }
public string UserAgent { get; set; }
public string UserId { get; set; }
public string Referrer { get; set; }
public string Stage { get; set; }
}
public enum SubmissionType
{
Workflow = -1,
Submit = 0,
SubmitPartial = 1,
SaveUserTemplate = 2,
SaveUser = 3,
Save = 4,
Request = 5,
Resubmit = 6,
Validation = 7,
Delete = 8,
Open = 9,
Expired = 10,
Upgrade = 11,
Purged = 12,
ThirdPartyRequest = 13,
ThirdPartySubmit = 14,
API = 15,
Download = 16,
Authorisation = 17,
Reprocess = 18,
Update = 19,
AutoSave = 20,
Authorise = 21,
Start = 22,
Section = 23
}
public class Subscription
{
public string SubscriptionId { get; set; }
public string Reference { get; set; }
public string FilePath { get; set; }
}
public class DocumentDelivery
{
public string DocumentDeliveryId { get; set; }
public string DocumentId { get; set; }
public string SubscriptionId { get; set; }
public DateTime QueuedDateTime { get; set; }
public DateTime? DeliveryDateTime { get; set; }
public DateTime? ExpiryDateTime { get; set; }
public string DeliveryRef { get; set; }
public DateTime? LockTimeoutDateTime { get; set; }
public Subscription Subscription { get; set; }
}
public class DocumentResponse
{
public Schema Schema { get; set; }
}
public class Schema
{
public Element Form { get; set; }
public List<SimpleType> SimpleTypes { get; set; }
public List<ComplexType> ComplexTypes { get; set; }
public string FormId { get; set; }
public int Version { get; set; }
public string Style { get; set; }
public string Header { get; set; }
public string Footer { get; set; }
public string ValidationScript { get; set; }
public string TrackingScript { get; set; }
public string TrackingLabel { get; set; }
public string DocumentReference { get; set; }
public bool BlockSave { get; set; }
public bool BlockSaveCookie { get; set; }
public bool HideNavFirstSection { get; set; }
public bool HideRestart { get; set; }
public bool HideFormAfterSubmit { get; set; }
public bool HideTitle { get; set; }
public string ConfirmationMessage { get; set; }
public string SubmitUrl { get; set; }
public string ReturnUrl { get; set; }
public string DocumentNotFoundMessage { get; set; }
public string ClosedMessage { get; set; }
public bool SaveCompletedSections { get; set; }
public bool SaveDocumentDeliveryId { get; set; }
public bool SaveRequestDocumentId { get; set; }
public bool SaveRequestCompleted { get; set; }
public bool BlockSubmitOnEnter { get; set; }
public bool AutoSaveSections { get; set; }
public bool SaveSectionValidationData { get; set; }
public bool SaveSectionValidationMessage { get; set; }
public bool SaveSectionValidationReference { get; set; }
public int? DocumentVersion { get; set; }
public bool AutoGenerateMissingTags { get; set; }
public bool SaveTryCount { get; set; }
}
public class Element
{
public string Name { get; set; }
public string Type { get; set; }
public bool Required { get; set; }
public bool AllowMany { get; set; }
public bool Hidden { get; set; }
public bool ReadOnly { get; set; }
public bool ReadOnlyPrefill { get; set; }
public bool PopupNote { get; set; }
public bool ForceDropdown { get; set; } //deprecated
public bool AllowManualEntry { get; set; }
public bool MatchStart { get; set; }
public bool GetExtendedData { get; set; }
public bool AutoCollapse { get; set; }
public string Limit { get; set; }
public string Title { get; set; }
public string Prompt { get; set; }
public string Note { get; set; }
public string Hint { get; set; }
public string AutofillKey { get; set; }
public string Visibility { get; set; }
public List<Element> Elements { get; set; }
public List<Element> DocumentElements { get; set; }
public SimpleType SimpleType { get; set; }
public ElementType ElementType { get; set; }
public string DocumentValue { get; set; }
public string Completed { get; set; }
public string DefaultValue { get; set; }
public string SubscriptionId { get; set; }
public string ValidationMethod { get; set; }
public string ValidationMessage { get; set; }
public bool ValidationInline { get; set; }
public string ConfirmationMessage { get; set; }
public string TableId { get; set; }
public string Audit { get; set; }
public string ListType { get; set; }
public Element Parent { get; set; }
public Element LinkedRepeaterParent { get; set; }
public string Format { get; set; }
public string Min { get; set; }
public string Max { get; set; }
public string Step { get; set; }
public string Decimals { get; set; }
public string LinkedRepeater { get; set; }
public bool Inline { get; set; }
public bool PostSubmit { get; set; } //deprecated
public string Width { get; set; }
public bool AttachResponse { get; set; }
public string Country { get; set; }
public string Sort { get; set; }
public string CssClass { get; set; }
public bool CanDuplicate { get; set; }
public bool CanSubmitPartial { get; set; }
public string ArrayExpression { get; set; }
public string DisplayProperty { get; set; }
public string DocumentDeliveryId { get; set; }
public string RequestDocumentId { get; set; }
public string FilenameFormat { get; set; }
public JToken Token { get; set; }
public string SectionValidationData { get; set; }
public string SectionValidationMessage { get; set; }
public string SectionValidationReference { get; set; }
public string SectionValidationDateTime { get; set; }
public string SectionValidationResult { get; set; }
public string Autocomplete { get; set; }
public string Filter { get; set; }
public bool DeferValidation { get; set; }
public int? TryCount { get; set; }
}
public enum ElementType
{
Question = 0,
Group = 1,
Condition = 3,
Workflow = 4,
Section = 5,
ValidationService = 6,
Request = 7,
PaymentService = 8
}
public class Enumeration
{
public string Value { get; set; }
public string Name { get; set; }
public string Note { get; set; }
}
public class SimpleType
{
public string Name { get; set; }
public List<Enumeration> Values { get; set; }
}
public class ComplexType
{
public string Name { get; set; }
public List<Element> Elements { get; set; }
}
public class Attribute
{
public string Name { get; set; }
public string Value { get; set; }
public string Setter { get; set; }
public string Getter { get; set; }
public string EntityName { get; set; }
public string Filter { get; set; }
public string ForEach { get; set; }
public List<Attribute> Attributes { get; set; }
}
public class Entity
{
public string Id { get; set; }
public string Setter { get; set; }
public string Getter { get; set; }
public string Name { get; set; }
public string ForEach { get; set; }
public string Filter { get; set; }
public List<Attribute> Attributes { get; set; }
public List<Entity> Entities { get; set; }
}
public class FileDelivery
{
public byte[] File { get; set; }
public string FileName { get; set; }
public string FilePath { get; set; }
}
}