glexchange 2.1.0 → 4.18.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (44) hide show
  1. checksums.yaml +4 -4
  2. data/lib/glexchange.rb +84 -16
  3. data/lib/glexchange/model/Document.rb +1 -1
  4. data/lib/glexchange/model/ReferenceDocument.rb +2 -1
  5. data/lib/glexchange/model/Submission.rb +1 -0
  6. data/lib/glexchange/model/Target.rb +1 -1
  7. data/lib/glexchange/model/WordCount.rb +0 -1
  8. data/lib/glexchange/pdws/DocumentService_4180.rb +1889 -0
  9. data/lib/glexchange/pdws/DocumentService_4180Driver.rb +83 -0
  10. data/lib/glexchange/pdws/DocumentService_4180MappingRegistry.rb +1911 -0
  11. data/lib/glexchange/pdws/ProjectService_4180.rb +1789 -0
  12. data/lib/glexchange/pdws/ProjectService_4180Driver.rb +75 -0
  13. data/lib/glexchange/pdws/ProjectService_4180MappingRegistry.rb +1890 -0
  14. data/lib/glexchange/pdws/SubmissionService_4180.rb +2138 -0
  15. data/lib/glexchange/pdws/SubmissionService_4180Driver.rb +171 -0
  16. data/lib/glexchange/pdws/SubmissionService_4180MappingRegistry.rb +2095 -0
  17. data/lib/glexchange/pdws/TargetService_4180.rb +2115 -0
  18. data/lib/glexchange/pdws/TargetService_4180Driver.rb +187 -0
  19. data/lib/glexchange/pdws/TargetService_4180MappingRegistry.rb +2128 -0
  20. data/lib/glexchange/pdws/UserProfileService_4180.rb +1772 -0
  21. data/lib/glexchange/pdws/UserProfileService_4180Driver.rb +82 -0
  22. data/lib/glexchange/pdws/UserProfileService_4180MappingRegistry.rb +1899 -0
  23. data/lib/glexchange/pdws/WorkflowService_4180.rb +1892 -0
  24. data/lib/glexchange/pdws/WorkflowService_4180Driver.rb +115 -0
  25. data/lib/glexchange/pdws/WorkflowService_4180MappingRegistry.rb +1971 -0
  26. metadata +21 -21
  27. data/lib/glexchange/pdws/DocumentService_4130.rb +0 -1847
  28. data/lib/glexchange/pdws/DocumentService_4130Driver.rb +0 -81
  29. data/lib/glexchange/pdws/DocumentService_4130MappingRegistry.rb +0 -1866
  30. data/lib/glexchange/pdws/ProjectService_4130.rb +0 -1748
  31. data/lib/glexchange/pdws/ProjectService_4130Driver.rb +0 -74
  32. data/lib/glexchange/pdws/ProjectService_4130MappingRegistry.rb +0 -1846
  33. data/lib/glexchange/pdws/SubmissionService_4130.rb +0 -2076
  34. data/lib/glexchange/pdws/SubmissionService_4130Driver.rb +0 -163
  35. data/lib/glexchange/pdws/SubmissionService_4130MappingRegistry.rb +0 -2035
  36. data/lib/glexchange/pdws/TargetService_4130.rb +0 -2041
  37. data/lib/glexchange/pdws/TargetService_4130Driver.rb +0 -178
  38. data/lib/glexchange/pdws/TargetService_4130MappingRegistry.rb +0 -2065
  39. data/lib/glexchange/pdws/UserProfileService_4130.rb +0 -1732
  40. data/lib/glexchange/pdws/UserProfileService_4130Driver.rb +0 -81
  41. data/lib/glexchange/pdws/UserProfileService_4130MappingRegistry.rb +0 -1855
  42. data/lib/glexchange/pdws/WorkflowService_4130.rb +0 -1852
  43. data/lib/glexchange/pdws/WorkflowService_4130Driver.rb +0 -114
  44. data/lib/glexchange/pdws/WorkflowService_4130MappingRegistry.rb +0 -1927
@@ -0,0 +1,2115 @@
1
+ require 'xsd/qname'
2
+
3
+ module Glexchange
4
+ module Pdws
5
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}Notification
6
+ # errorMessage - SOAP::SOAPString
7
+ # notificationDate - Date
8
+ # notificationPriority - NotificationPriority
9
+ # notificationText - SOAP::SOAPString
10
+ class Notification
11
+ attr_accessor :errorMessage
12
+ attr_accessor :notificationDate
13
+ attr_accessor :notificationPriority
14
+ attr_accessor :notificationText
15
+
16
+ def initialize(errorMessage = nil, notificationDate = nil, notificationPriority = nil, notificationText = nil)
17
+ @errorMessage = errorMessage
18
+ @notificationDate = notificationDate
19
+ @notificationPriority = notificationPriority
20
+ @notificationText = notificationText
21
+ end
22
+ end
23
+
24
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}NotificationPriority
25
+ # notificationPriorityName - SOAP::SOAPString
26
+ class NotificationPriority
27
+ attr_accessor :notificationPriorityName
28
+
29
+ def initialize(notificationPriorityName = nil)
30
+ @notificationPriorityName = notificationPriorityName
31
+ end
32
+ end
33
+
34
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}Announcement
35
+ # announcementText - SOAP::SOAPString
36
+ # date - Date
37
+ class Announcement
38
+ attr_accessor :announcementText
39
+ attr_accessor :date
40
+
41
+ def initialize(announcementText = nil, date = nil)
42
+ @announcementText = announcementText
43
+ @date = date
44
+ end
45
+ end
46
+
47
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}Batch
48
+ # name - SOAP::SOAPString
49
+ # targetLanguages - SOAP::SOAPString
50
+ # workflowDefinition - WorkflowDefinition
51
+ class Batch
52
+ attr_accessor :name
53
+ attr_accessor :targetLanguages
54
+ attr_accessor :workflowDefinition
55
+
56
+ def initialize(name = nil, targetLanguages = [], workflowDefinition = nil)
57
+ @name = name
58
+ @targetLanguages = targetLanguages
59
+ @workflowDefinition = workflowDefinition
60
+ end
61
+ end
62
+
63
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}ContentMonitorPluginInfo
64
+ # pluginId - SOAP::SOAPString
65
+ # pluginName - SOAP::SOAPString
66
+ class ContentMonitorPluginInfo
67
+ attr_accessor :pluginId
68
+ attr_accessor :pluginName
69
+
70
+ def initialize(pluginId = nil, pluginName = nil)
71
+ @pluginId = pluginId
72
+ @pluginName = pluginName
73
+ end
74
+ end
75
+
76
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}Date
77
+ # critical - SOAP::SOAPBoolean
78
+ # date - SOAP::SOAPLong
79
+ class Date
80
+ attr_accessor :critical
81
+ attr_accessor :date
82
+
83
+ def initialize(critical = nil, date = nil)
84
+ @critical = critical
85
+ @date = date
86
+ end
87
+ end
88
+
89
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}Document
90
+ # documentGroup - DocumentGroup
91
+ # documentInfo - DocumentInfo
92
+ # id - SOAP::SOAPString
93
+ # sourceLanguage - Language
94
+ # sourceWordCount - SOAP::SOAPInt
95
+ # ticket - SOAP::SOAPString
96
+ class Document
97
+ attr_accessor :documentGroup
98
+ attr_accessor :documentInfo
99
+ attr_accessor :id
100
+ attr_accessor :sourceLanguage
101
+ attr_accessor :sourceWordCount
102
+ attr_accessor :ticket
103
+
104
+ def initialize(documentGroup = nil, documentInfo = nil, id = nil, sourceLanguage = nil, sourceWordCount = nil, ticket = nil)
105
+ @documentGroup = documentGroup
106
+ @documentInfo = documentInfo
107
+ @id = id
108
+ @sourceLanguage = sourceLanguage
109
+ @sourceWordCount = sourceWordCount
110
+ @ticket = ticket
111
+ end
112
+ end
113
+
114
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}DocumentGroup
115
+ # classifier - SOAP::SOAPString
116
+ # documents - Document
117
+ # mimeType - SOAP::SOAPString
118
+ # submission - Submission
119
+ class DocumentGroup
120
+ attr_accessor :classifier
121
+ attr_accessor :documents
122
+ attr_accessor :mimeType
123
+ attr_accessor :submission
124
+
125
+ def initialize(classifier = nil, documents = [], mimeType = nil, submission = nil)
126
+ @classifier = classifier
127
+ @documents = documents
128
+ @mimeType = mimeType
129
+ @submission = submission
130
+ end
131
+ end
132
+
133
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}DocumentInfo
134
+ # childDocumentInfos - DocumentInfo
135
+ # clientIdentifier - SOAP::SOAPString
136
+ # dateRequested - Date
137
+ # instructions - SOAP::SOAPString
138
+ # metadata - Metadata
139
+ # name - SOAP::SOAPString
140
+ # projectTicket - SOAP::SOAPString
141
+ # sourceLocale - SOAP::SOAPString
142
+ # submissionTicket - SOAP::SOAPString
143
+ # targetInfos - TargetInfo
144
+ # wordCount - SOAP::SOAPInt
145
+ class DocumentInfo
146
+ attr_accessor :childDocumentInfos
147
+ attr_accessor :clientIdentifier
148
+ attr_accessor :dateRequested
149
+ attr_accessor :instructions
150
+ attr_accessor :metadata
151
+ attr_accessor :name
152
+ attr_accessor :projectTicket
153
+ attr_accessor :sourceLocale
154
+ attr_accessor :submissionTicket
155
+ attr_accessor :targetInfos
156
+ attr_accessor :wordCount
157
+
158
+ def initialize(childDocumentInfos = [], clientIdentifier = nil, dateRequested = nil, instructions = nil, metadata = [], name = nil, projectTicket = nil, sourceLocale = nil, submissionTicket = nil, targetInfos = [], wordCount = nil)
159
+ @childDocumentInfos = childDocumentInfos
160
+ @clientIdentifier = clientIdentifier
161
+ @dateRequested = dateRequested
162
+ @instructions = instructions
163
+ @metadata = metadata
164
+ @name = name
165
+ @projectTicket = projectTicket
166
+ @sourceLocale = sourceLocale
167
+ @submissionTicket = submissionTicket
168
+ @targetInfos = targetInfos
169
+ @wordCount = wordCount
170
+ end
171
+ end
172
+
173
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}DocumentPagedList
174
+ # elements - Document
175
+ # pagedListInfo - PagedListInfo
176
+ # tasks - Task
177
+ # totalCount - SOAP::SOAPLong
178
+ class DocumentPagedList
179
+ attr_accessor :elements
180
+ attr_accessor :pagedListInfo
181
+ attr_accessor :tasks
182
+ attr_accessor :totalCount
183
+
184
+ def initialize(elements = [], pagedListInfo = nil, tasks = [], totalCount = nil)
185
+ @elements = elements
186
+ @pagedListInfo = pagedListInfo
187
+ @tasks = tasks
188
+ @totalCount = totalCount
189
+ end
190
+ end
191
+
192
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}DocumentSearchRequest
193
+ # projectTickets - SOAP::SOAPString
194
+ # sourceLocaleId - SOAP::SOAPString
195
+ # submissionTicket - SOAP::SOAPString
196
+ class DocumentSearchRequest
197
+ attr_accessor :projectTickets
198
+ attr_accessor :sourceLocaleId
199
+ attr_accessor :submissionTicket
200
+
201
+ def initialize(projectTickets = [], sourceLocaleId = nil, submissionTicket = nil)
202
+ @projectTickets = projectTickets
203
+ @sourceLocaleId = sourceLocaleId
204
+ @submissionTicket = submissionTicket
205
+ end
206
+ end
207
+
208
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}DocumentTicket
209
+ # submissionTicket - SOAP::SOAPString
210
+ # ticketId - SOAP::SOAPString
211
+ class DocumentTicket
212
+ attr_accessor :submissionTicket
213
+ attr_accessor :ticketId
214
+
215
+ def initialize(submissionTicket = nil, ticketId = nil)
216
+ @submissionTicket = submissionTicket
217
+ @ticketId = ticketId
218
+ end
219
+ end
220
+
221
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}EntityTypeEnum
222
+ # name - SOAP::SOAPString
223
+ # value - SOAP::SOAPInt
224
+ class EntityTypeEnum
225
+ attr_accessor :name
226
+ attr_accessor :value
227
+
228
+ def initialize(name = nil, value = nil)
229
+ @name = name
230
+ @value = value
231
+ end
232
+ end
233
+
234
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}FileFormatProfile
235
+ # configurable - SOAP::SOAPBoolean
236
+ # isDefault - SOAP::SOAPBoolean
237
+ # mimeType - SOAP::SOAPString
238
+ # pluginId - SOAP::SOAPString
239
+ # pluginName - SOAP::SOAPString
240
+ # profileName - SOAP::SOAPString
241
+ # targetWorkflowDefinition - WorkflowDefinition
242
+ # ticket - SOAP::SOAPString
243
+ class FileFormatProfile
244
+ attr_accessor :configurable
245
+ attr_accessor :isDefault
246
+ attr_accessor :mimeType
247
+ attr_accessor :pluginId
248
+ attr_accessor :pluginName
249
+ attr_accessor :profileName
250
+ attr_accessor :targetWorkflowDefinition
251
+ attr_accessor :ticket
252
+
253
+ def initialize(configurable = nil, isDefault = nil, mimeType = nil, pluginId = nil, pluginName = nil, profileName = nil, targetWorkflowDefinition = nil, ticket = nil)
254
+ @configurable = configurable
255
+ @isDefault = isDefault
256
+ @mimeType = mimeType
257
+ @pluginId = pluginId
258
+ @pluginName = pluginName
259
+ @profileName = profileName
260
+ @targetWorkflowDefinition = targetWorkflowDefinition
261
+ @ticket = ticket
262
+ end
263
+ end
264
+
265
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}FileFormatProgressData
266
+ # dateCompleted - Date
267
+ # fileCount - SOAP::SOAPLong
268
+ # fileFormatName - SOAP::SOAPString
269
+ # fileProgressData - FileProgressData
270
+ # jobTicket - SOAP::SOAPString
271
+ # workflowDueDate - Date
272
+ # workflowStatus - SOAP::SOAPString
273
+ class FileFormatProgressData
274
+ attr_accessor :dateCompleted
275
+ attr_accessor :fileCount
276
+ attr_accessor :fileFormatName
277
+ attr_accessor :fileProgressData
278
+ attr_accessor :jobTicket
279
+ attr_accessor :workflowDueDate
280
+ attr_accessor :workflowStatus
281
+
282
+ def initialize(dateCompleted = nil, fileCount = nil, fileFormatName = nil, fileProgressData = nil, jobTicket = nil, workflowDueDate = nil, workflowStatus = nil)
283
+ @dateCompleted = dateCompleted
284
+ @fileCount = fileCount
285
+ @fileFormatName = fileFormatName
286
+ @fileProgressData = fileProgressData
287
+ @jobTicket = jobTicket
288
+ @workflowDueDate = workflowDueDate
289
+ @workflowStatus = workflowStatus
290
+ end
291
+ end
292
+
293
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}FileProgressData
294
+ # numberOfAvailableFiles - SOAP::SOAPInt
295
+ # numberOfCanceledFiles - SOAP::SOAPInt
296
+ # numberOfCompletedFiles - SOAP::SOAPInt
297
+ # numberOfDeliveredFiles - SOAP::SOAPInt
298
+ # numberOfFailedFiles - SOAP::SOAPInt
299
+ # numberOfInProcessFiles - SOAP::SOAPInt
300
+ # overallProgressPercent - SOAP::SOAPInt
301
+ class FileProgressData
302
+ attr_accessor :numberOfAvailableFiles
303
+ attr_accessor :numberOfCanceledFiles
304
+ attr_accessor :numberOfCompletedFiles
305
+ attr_accessor :numberOfDeliveredFiles
306
+ attr_accessor :numberOfFailedFiles
307
+ attr_accessor :numberOfInProcessFiles
308
+ attr_accessor :overallProgressPercent
309
+
310
+ def initialize(numberOfAvailableFiles = nil, numberOfCanceledFiles = nil, numberOfCompletedFiles = nil, numberOfDeliveredFiles = nil, numberOfFailedFiles = nil, numberOfInProcessFiles = nil, overallProgressPercent = nil)
311
+ @numberOfAvailableFiles = numberOfAvailableFiles
312
+ @numberOfCanceledFiles = numberOfCanceledFiles
313
+ @numberOfCompletedFiles = numberOfCompletedFiles
314
+ @numberOfDeliveredFiles = numberOfDeliveredFiles
315
+ @numberOfFailedFiles = numberOfFailedFiles
316
+ @numberOfInProcessFiles = numberOfInProcessFiles
317
+ @overallProgressPercent = overallProgressPercent
318
+ end
319
+ end
320
+
321
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}FuzzyTmStatistics
322
+ # fuzzyName - SOAP::SOAPString
323
+ # wordCount - SOAP::SOAPInt
324
+ class FuzzyTmStatistics
325
+ attr_accessor :fuzzyName
326
+ attr_accessor :wordCount
327
+
328
+ def initialize(fuzzyName = nil, wordCount = nil)
329
+ @fuzzyName = fuzzyName
330
+ @wordCount = wordCount
331
+ end
332
+ end
333
+
334
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}ItemFolderEnum
335
+ # value - SOAP::SOAPInt
336
+ class ItemFolderEnum
337
+ attr_accessor :value
338
+
339
+ def initialize(value = nil)
340
+ @value = value
341
+ end
342
+ end
343
+
344
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}ItemStatusEnum
345
+ # name - SOAP::SOAPString
346
+ # value - SOAP::SOAPInt
347
+ class ItemStatusEnum
348
+ attr_accessor :name
349
+ attr_accessor :value
350
+
351
+ def initialize(name = nil, value = nil)
352
+ @name = name
353
+ @value = value
354
+ end
355
+ end
356
+
357
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}Metadata
358
+ # key - SOAP::SOAPString
359
+ # value - SOAP::SOAPString
360
+ class Metadata
361
+ attr_accessor :key
362
+ attr_accessor :value
363
+
364
+ def initialize(key = nil, value = nil)
365
+ @key = key
366
+ @value = value
367
+ end
368
+ end
369
+
370
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}Language
371
+ # locale - SOAP::SOAPString
372
+ # value - SOAP::SOAPString
373
+ class Language
374
+ attr_accessor :locale
375
+ attr_accessor :value
376
+
377
+ def initialize(locale = nil, value = nil)
378
+ @locale = locale
379
+ @value = value
380
+ end
381
+ end
382
+
383
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}LanguageDirection
384
+ # sourceLanguage - Language
385
+ # targetLanguage - Language
386
+ class LanguageDirection
387
+ attr_accessor :sourceLanguage
388
+ attr_accessor :targetLanguage
389
+
390
+ def initialize(sourceLanguage = nil, targetLanguage = nil)
391
+ @sourceLanguage = sourceLanguage
392
+ @targetLanguage = targetLanguage
393
+ end
394
+ end
395
+
396
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}LanguageDirectionModel
397
+ # dateCompleted - Date
398
+ # fileCount - SOAP::SOAPLong
399
+ # fileFormatProgressData - FileFormatProgressData
400
+ # fileProgress - FileProgressData
401
+ # sourceLanguage - Language
402
+ # targetLanguage - Language
403
+ # workflowDueDate - Date
404
+ # workflowStatus - SOAP::SOAPString
405
+ class LanguageDirectionModel
406
+ attr_accessor :dateCompleted
407
+ attr_accessor :fileCount
408
+ attr_accessor :fileFormatProgressData
409
+ attr_accessor :fileProgress
410
+ attr_accessor :sourceLanguage
411
+ attr_accessor :targetLanguage
412
+ attr_accessor :workflowDueDate
413
+ attr_accessor :workflowStatus
414
+
415
+ def initialize(dateCompleted = nil, fileCount = nil, fileFormatProgressData = [], fileProgress = nil, sourceLanguage = nil, targetLanguage = nil, workflowDueDate = nil, workflowStatus = nil)
416
+ @dateCompleted = dateCompleted
417
+ @fileCount = fileCount
418
+ @fileFormatProgressData = fileFormatProgressData
419
+ @fileProgress = fileProgress
420
+ @sourceLanguage = sourceLanguage
421
+ @targetLanguage = targetLanguage
422
+ @workflowDueDate = workflowDueDate
423
+ @workflowStatus = workflowStatus
424
+ end
425
+ end
426
+
427
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}LanguagePhaseInfo
428
+ # phaseStartDate - Date
429
+ # sourceFileList - SOAP::SOAPString
430
+ # tmStatistics - TmStatistics
431
+ class LanguagePhaseInfo
432
+ attr_accessor :phaseStartDate
433
+ attr_accessor :sourceFileList
434
+ attr_accessor :tmStatistics
435
+
436
+ def initialize(phaseStartDate = nil, sourceFileList = [], tmStatistics = nil)
437
+ @phaseStartDate = phaseStartDate
438
+ @sourceFileList = sourceFileList
439
+ @tmStatistics = tmStatistics
440
+ end
441
+ end
442
+
443
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}Organization
444
+ # availableTasks - SOAP::SOAPInteger
445
+ # parentOrganization - Organization
446
+ # organizationInfo - OrganizationInfo
447
+ # tasks - Task
448
+ # ticket - SOAP::SOAPString
449
+ class Organization
450
+ attr_accessor :availableTasks
451
+ attr_accessor :parentOrganization
452
+ attr_accessor :organizationInfo
453
+ attr_accessor :tasks
454
+ attr_accessor :ticket
455
+
456
+ def initialize(availableTasks = nil, parentOrganization = nil, organizationInfo = nil, tasks = [], ticket = nil)
457
+ @availableTasks = availableTasks
458
+ @parentOrganization = parentOrganization
459
+ @organizationInfo = organizationInfo
460
+ @tasks = tasks
461
+ @ticket = ticket
462
+ end
463
+ end
464
+
465
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}OrganizationInfo
466
+ # name - SOAP::SOAPString
467
+ # ticket - SOAP::SOAPString
468
+ # currencyCode - SOAP::SOAPString
469
+ # domain - SOAP::SOAPString
470
+ # theme - SOAP::SOAPString
471
+ # enabled - SOAP::SOAPBoolean
472
+ class OrganizationInfo
473
+ attr_accessor :name
474
+ attr_accessor :ticket
475
+ attr_accessor :currencyCode
476
+ attr_accessor :domain
477
+ attr_accessor :theme
478
+ attr_accessor :enabled
479
+
480
+ def initialize(name = nil, ticket = nil, currencyCode = nil, domain = nil, theme = nil, enabled = nil)
481
+ @name = name
482
+ @ticket = ticket
483
+ @currencyCode = currencyCode
484
+ @domain = domain
485
+ @theme = theme
486
+ @enabled = enabled
487
+ end
488
+ end
489
+
490
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}PagedListInfo
491
+ # index - SOAP::SOAPInt
492
+ # indexesSize - SOAP::SOAPInt
493
+ # size - SOAP::SOAPInt
494
+ # sortDirection - SOAP::SOAPString
495
+ # sortProperty - SOAP::SOAPString
496
+ class PagedListInfo
497
+ attr_accessor :index
498
+ attr_accessor :indexesSize
499
+ attr_accessor :size
500
+ attr_accessor :sortDirection
501
+ attr_accessor :sortProperty
502
+
503
+ def initialize(index = nil, indexesSize = nil, size = nil, sortDirection = nil, sortProperty = nil)
504
+ @index = index
505
+ @indexesSize = indexesSize
506
+ @size = size
507
+ @sortDirection = sortDirection
508
+ @sortProperty = sortProperty
509
+ end
510
+ end
511
+
512
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}Phase
513
+ # dateEnded - Date
514
+ # dueDate - Date
515
+ # name - SOAP::SOAPString
516
+ # status - ItemStatusEnum
517
+ class Phase
518
+ attr_accessor :dateEnded
519
+ attr_accessor :dueDate
520
+ attr_accessor :name
521
+ attr_accessor :status
522
+
523
+ def initialize(dateEnded = nil, dueDate = nil, name = nil, status = nil)
524
+ @dateEnded = dateEnded
525
+ @dueDate = dueDate
526
+ @name = name
527
+ @status = status
528
+ end
529
+ end
530
+
531
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}PreviewResult
532
+ # message - SOAP::SOAPString
533
+ # repositoryItem - RepositoryItem
534
+ class PreviewResult
535
+ attr_accessor :message
536
+ attr_accessor :repositoryItem
537
+
538
+ def initialize(message = nil, repositoryItem = nil)
539
+ @message = message
540
+ @repositoryItem = repositoryItem
541
+ end
542
+ end
543
+
544
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}Priority
545
+ # name - SOAP::SOAPString
546
+ # value - SOAP::SOAPInt
547
+ class Priority
548
+ attr_accessor :name
549
+ attr_accessor :value
550
+
551
+ def initialize(name = nil, value = nil)
552
+ @name = name
553
+ @value = value
554
+ end
555
+ end
556
+
557
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}Project
558
+ # announcements - Announcement
559
+ # contentMonitorPluginInfo - ContentMonitorPluginInfo
560
+ # defaultTargetWorkflowDefinition - WorkflowDefinition
561
+ # defaultTargetWorkflowDefinitionTicket - SOAP::SOAPString
562
+ # fileFormatProfiles - FileFormatProfile
563
+ # includeSubmissionNameInLocalizationKit - SOAP::SOAPBoolean
564
+ # metadata - Metadata
565
+ # organizationName - SOAP::SOAPString
566
+ # projectCustomFieldConfiguration - ProjectCustomFieldConfiguration
567
+ # projectInfo - ProjectInfo
568
+ # projectLanguageDirections - ProjectLanguageDirection
569
+ # ticket - SOAP::SOAPString
570
+ # workflowDefinitions - WorkflowDefinition
571
+ class Project
572
+ attr_accessor :announcements
573
+ attr_accessor :contentMonitorPluginInfo
574
+ attr_accessor :defaultTargetWorkflowDefinition
575
+ attr_accessor :defaultTargetWorkflowDefinitionTicket
576
+ attr_accessor :fileFormatProfiles
577
+ attr_accessor :includeSubmissionNameInLocalizationKit
578
+ attr_accessor :metadata
579
+ attr_accessor :organizationName
580
+ attr_accessor :projectCustomFieldConfiguration
581
+ attr_accessor :projectInfo
582
+ attr_accessor :projectLanguageDirections
583
+ attr_accessor :ticket
584
+ attr_accessor :workflowDefinitions
585
+
586
+ def initialize(announcements = [], contentMonitorPluginInfo = nil, defaultTargetWorkflowDefinition = nil, defaultTargetWorkflowDefinitionTicket = nil, fileFormatProfiles = [], includeSubmissionNameInLocalizationKit = [], metadata = [], organizationName = nil, projectCustomFieldConfiguration = [], projectInfo = nil, projectLanguageDirections = [], ticket = nil, workflowDefinitions = [])
587
+ @announcements = announcements
588
+ @contentMonitorPluginInfo = contentMonitorPluginInfo
589
+ @defaultTargetWorkflowDefinition = defaultTargetWorkflowDefinition
590
+ @defaultTargetWorkflowDefinitionTicket = defaultTargetWorkflowDefinitionTicket
591
+ @fileFormatProfiles = fileFormatProfiles
592
+ @includeSubmissionNameInLocalizationKit = includeSubmissionNameInLocalizationKit
593
+ @metadata = metadata
594
+ @organizationName = organizationName
595
+ @projectCustomFieldConfiguration = projectCustomFieldConfiguration
596
+ @projectInfo = projectInfo
597
+ @projectLanguageDirections = projectLanguageDirections
598
+ @ticket = ticket
599
+ @workflowDefinitions = workflowDefinitions
600
+ end
601
+ end
602
+
603
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}ProjectInfo
604
+ # clientIdentifier - SOAP::SOAPString
605
+ # defaultJobWorkflowDefinitionTicket - SOAP::SOAPString
606
+ # defaultSubmissionWorkflowDefinitionTicket - SOAP::SOAPString
607
+ # defaultTargetWorkflowDefinitionTicket - SOAP::SOAPString
608
+ # enabled - SOAP::SOAPBoolean
609
+ # name - SOAP::SOAPString
610
+ # shortCode - SOAP::SOAPString
611
+ class ProjectInfo
612
+ attr_accessor :clientIdentifier
613
+ attr_accessor :defaultJobWorkflowDefinitionTicket
614
+ attr_accessor :defaultSubmissionWorkflowDefinitionTicket
615
+ attr_accessor :defaultTargetWorkflowDefinitionTicket
616
+ attr_accessor :enabled
617
+ attr_accessor :name
618
+ attr_accessor :shortCode
619
+
620
+ def initialize(clientIdentifier = nil, defaultJobWorkflowDefinitionTicket = nil, defaultSubmissionWorkflowDefinitionTicket = nil, defaultTargetWorkflowDefinitionTicket = nil, enabled = nil, name = nil, shortCode = nil)
621
+ @clientIdentifier = clientIdentifier
622
+ @defaultJobWorkflowDefinitionTicket = defaultJobWorkflowDefinitionTicket
623
+ @defaultSubmissionWorkflowDefinitionTicket = defaultSubmissionWorkflowDefinitionTicket
624
+ @defaultTargetWorkflowDefinitionTicket = defaultTargetWorkflowDefinitionTicket
625
+ @enabled = enabled
626
+ @name = name
627
+ @shortCode = shortCode
628
+ end
629
+ end
630
+
631
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}ProjectLanguage
632
+ # customLocaleCode - SOAP::SOAPString
633
+ # localeCode - SOAP::SOAPString
634
+ class ProjectLanguage
635
+ attr_accessor :customLocaleCode
636
+ attr_accessor :localeCode
637
+
638
+ def initialize(customLocaleCode = nil, localeCode = nil)
639
+ @customLocaleCode = customLocaleCode
640
+ @localeCode = localeCode
641
+ end
642
+ end
643
+
644
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}ProjectLanguageDirection
645
+ # sourceLanguage - Language
646
+ # targetLanguage - Language
647
+ # default - SOAP::SOAPBoolean
648
+ # frequent - SOAP::SOAPBoolean
649
+ class ProjectLanguageDirection
650
+ attr_accessor :sourceLanguage
651
+ attr_accessor :targetLanguage
652
+ attr_accessor :default
653
+ attr_accessor :frequent
654
+
655
+ def initialize(sourceLanguage = nil, targetLanguage = nil, default = nil, frequent = nil)
656
+ @sourceLanguage = sourceLanguage
657
+ @targetLanguage = targetLanguage
658
+ @default = default
659
+ @frequent = frequent
660
+ end
661
+ end
662
+
663
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}ProjectAClient
664
+ # enabled - SOAP::SOAPBoolean
665
+ # name - SOAP::SOAPString
666
+ # parentOrganization - Organization
667
+ # ticket - SOAP::SOAPString
668
+ class ProjectAClient
669
+ attr_accessor :enabled
670
+ attr_accessor :name
671
+ attr_accessor :parentOrganization
672
+ attr_accessor :ticket
673
+
674
+ def initialize(enabled = nil, name = nil, parentOrganization = nil, ticket = nil)
675
+ @enabled = enabled
676
+ @name = name
677
+ @parentOrganization = parentOrganization
678
+ @ticket = ticket
679
+ end
680
+ end
681
+
682
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}RepositoryItem
683
+ # data - Base64Binary
684
+ # resourceInfo - ResourceInfo
685
+ class RepositoryItem
686
+ attr_accessor :data
687
+ attr_accessor :resourceInfo
688
+
689
+ def initialize(data = nil, resourceInfo = nil)
690
+ @data = data
691
+ @resourceInfo = resourceInfo
692
+ end
693
+ end
694
+
695
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}ResourceInfo
696
+ # classifier - SOAP::SOAPString
697
+ # clientIdentifier - SOAP::SOAPString
698
+ # description - SOAP::SOAPString
699
+ # encoding - SOAP::SOAPString
700
+ # md5Checksum - SOAP::SOAPString
701
+ # mimeType - SOAP::SOAPString
702
+ # name - SOAP::SOAPString
703
+ # path - SOAP::SOAPString
704
+ # resourceInfoId - SOAP::SOAPLong
705
+ # size - SOAP::SOAPLong
706
+ # type - ResourceType
707
+ class ResourceInfo
708
+ attr_accessor :classifier
709
+ attr_accessor :clientIdentifier
710
+ attr_accessor :description
711
+ attr_accessor :encoding
712
+ attr_accessor :md5Checksum
713
+ attr_accessor :mimeType
714
+ attr_accessor :name
715
+ attr_accessor :path
716
+ attr_accessor :resourceInfoId
717
+ attr_accessor :size
718
+ attr_accessor :type
719
+
720
+ def initialize(classifier = nil, clientIdentifier = nil, description = nil, encoding = nil, md5Checksum = nil, mimeType = nil, name = nil, path = nil, resourceInfoId = nil, size = nil, type = nil)
721
+ @classifier = classifier
722
+ @clientIdentifier = clientIdentifier
723
+ @description = description
724
+ @encoding = encoding
725
+ @md5Checksum = md5Checksum
726
+ @mimeType = mimeType
727
+ @name = name
728
+ @path = path
729
+ @resourceInfoId = resourceInfoId
730
+ @size = size
731
+ @type = type
732
+ end
733
+ end
734
+
735
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}ResourceType
736
+ # value - SOAP::SOAPInt
737
+ class ResourceType
738
+ attr_accessor :value
739
+
740
+ def initialize(value = nil)
741
+ @value = value
742
+ end
743
+ end
744
+
745
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}Submission
746
+ # alerts - Notification
747
+ # availableTasks - SOAP::SOAPInt
748
+ # batches - Batch
749
+ # dateArchived - Date
750
+ # dateCompleted - Date
751
+ # dateCreated - Date
752
+ # dateEstimated - Date
753
+ # documents - Document
754
+ # dueDate - Date
755
+ # id - SOAP::SOAPString
756
+ # owner - SOAP::SOAPString
757
+ # project - Project
758
+ # status - ItemStatusEnum
759
+ # submissionId - SOAP::SOAPLong
760
+ # submissionInfo - SubmissionInfo
761
+ # submitterFullNames - SOAP::SOAPString
762
+ # ticket - SOAP::SOAPString
763
+ # workflowDefinition - WorkflowDefinition
764
+ class Submission
765
+ attr_accessor :alerts
766
+ attr_accessor :availableTasks
767
+ attr_accessor :batches
768
+ attr_accessor :dateArchived
769
+ attr_accessor :dateCompleted
770
+ attr_accessor :dateCreated
771
+ attr_accessor :dateEstimated
772
+ attr_accessor :documents
773
+ attr_accessor :dueDate
774
+ attr_accessor :id
775
+ attr_accessor :owner
776
+ attr_accessor :project
777
+ attr_accessor :status
778
+ attr_accessor :submissionId
779
+ attr_accessor :submissionInfo
780
+ attr_accessor :submitterFullNames
781
+ attr_accessor :ticket
782
+ attr_accessor :workflowDefinition
783
+
784
+ def initialize(alerts = [], availableTasks = nil, batches = [], dateArchived = nil, dateCompleted = nil, dateCreated = nil, dateEstimated = nil, documents = [], dueDate = nil, id = nil, owner = nil, project = nil, status = nil, submissionId = nil, submissionInfo = nil, submitterFullNames = [], ticket = nil, workflowDefinition = nil)
785
+ @alerts = alerts
786
+ @availableTasks = availableTasks
787
+ @batches = batches
788
+ @dateArchived = dateArchived
789
+ @dateCompleted = dateCompleted
790
+ @dateCreated = dateCreated
791
+ @dateEstimated = dateEstimated
792
+ @documents = documents
793
+ @dueDate = dueDate
794
+ @id = id
795
+ @owner = owner
796
+ @project = project
797
+ @status = status
798
+ @submissionId = submissionId
799
+ @submissionInfo = submissionInfo
800
+ @submitterFullNames = submitterFullNames
801
+ @ticket = ticket
802
+ @workflowDefinition = workflowDefinition
803
+ end
804
+ end
805
+
806
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}SubmissionInfo
807
+ # additionalCosts - SOAP::SOAPString
808
+ # autoStartChilds - SOAP::SOAPBoolean
809
+ # claimScope - ClaimScopeEnum
810
+ # clientIdentifier - SOAP::SOAPString
811
+ # dateRequested - Date
812
+ # internalNotes - SOAP::SOAPString
813
+ # metadata - Metadata
814
+ # name - SOAP::SOAPString
815
+ # officeName - SOAP::SOAPString
816
+ # paClientTicket - SOAP::SOAPString
817
+ # paJobNumber - SOAP::SOAPString
818
+ # priority - Priority
819
+ # projectTicket - SOAP::SOAPString
820
+ # revenue - SOAP::SOAPDouble
821
+ # submissionBackground - SOAP::SOAPString
822
+ # submissionCustomFields - SubmissionCustomFields
823
+ # submitters - SOAP::SOAPString
824
+ # workflowDefinitionTicket - SOAP::SOAPString
825
+ class SubmissionInfo
826
+ attr_accessor :additionalCosts
827
+ attr_accessor :autoStartChilds
828
+ attr_accessor :claimScope
829
+ attr_accessor :clientIdentifier
830
+ attr_accessor :dateRequested
831
+ attr_accessor :internalNotes
832
+ attr_accessor :metadata
833
+ attr_accessor :name
834
+ attr_accessor :officeName
835
+ attr_accessor :paClientTicket
836
+ attr_accessor :paJobNumber
837
+ attr_accessor :priority
838
+ attr_accessor :projectTicket
839
+ attr_accessor :revenue
840
+ attr_accessor :submissionBackground
841
+ attr_accessor :submissionCustomFields
842
+ attr_accessor :submitters
843
+ attr_accessor :workflowDefinitionTicket
844
+
845
+ def initialize(additionalCosts = nil, autoStartChilds = nil, claimScope = nil, clientIdentifier = nil, dateRequested = nil, internalNotes = nil, metadata = [], name = nil, officeName = nil, paClientTicket = nil, paJobNumber = nil, priority = nil, projectTicket = nil, revenue = nil, submissionBackground = nil, submissionCustomFields = [], submitters = [], workflowDefinitionTicket = nil)
846
+ @additionalCosts = additionalCosts
847
+ @autoStartChilds = autoStartChilds
848
+ @claimScope = claimScope
849
+ @clientIdentifier = clientIdentifier
850
+ @dateRequested = dateRequested
851
+ @internalNotes = internalNotes
852
+ @metadata = metadata
853
+ @name = name
854
+ @officeName = officeName
855
+ @paClientTicket = paClientTicket
856
+ @paJobNumber = paJobNumber
857
+ @priority = priority
858
+ @projectTicket = projectTicket
859
+ @revenue = revenue
860
+ @submissionBackground = submissionBackground
861
+ @submissionCustomFields = submissionCustomFields
862
+ @submitters = submitters
863
+ @workflowDefinitionTicket = workflowDefinitionTicket
864
+ end
865
+ end
866
+
867
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}SubmissionPagedList
868
+ # elements - Submission
869
+ # pagedListInfo - PagedListInfo
870
+ # tasks - Task
871
+ # totalCount - SOAP::SOAPLong
872
+ class SubmissionPagedList
873
+ attr_accessor :elements
874
+ attr_accessor :pagedListInfo
875
+ attr_accessor :tasks
876
+ attr_accessor :totalCount
877
+
878
+ def initialize(elements = [], pagedListInfo = nil, tasks = [], totalCount = nil)
879
+ @elements = elements
880
+ @pagedListInfo = pagedListInfo
881
+ @tasks = tasks
882
+ @totalCount = totalCount
883
+ end
884
+ end
885
+
886
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}SimpleSubmissionSearchModel
887
+ # alerts - Notification
888
+ # availableTasks - SOAP::SOAPLong
889
+ # budgetStatus - SOAP::SOAPInt
890
+ # claimScope - ClaimScopeEnum
891
+ # customFields - SOAP::SOAPString
892
+ # date - Date
893
+ # dateArchived - Date
894
+ # dateCompleted - Date
895
+ # dateStarted - Date
896
+ # dueDate - Date
897
+ # fileCount - SOAP::SOAPLong
898
+ # fileProgress - FileProgressData
899
+ # gate - SOAP::SOAPByte
900
+ # id - SOAP::SOAPString
901
+ # instructions - SOAP::SOAPString
902
+ # officeName - SOAP::SOAPString
903
+ # owner - UserData
904
+ # paClientName - SOAP::SOAPString
905
+ # parentSubmissionName - SOAP::SOAPString
906
+ # parentTicket - SOAP::SOAPString
907
+ # pmNotes - SOAP::SOAPString
908
+ # priority - SOAP::SOAPString
909
+ # projectName - SOAP::SOAPString
910
+ # projectTicket - SOAP::SOAPString
911
+ # quote - SOAP::SOAPByte
912
+ # reserved - SOAP::SOAPBoolean
913
+ # sourceLanguage - SOAP::SOAPString
914
+ # status - ItemStatusEnum
915
+ # submissionBackground - SOAP::SOAPString
916
+ # submissionName - SOAP::SOAPString
917
+ # submitterFullName - UserData
918
+ # ticket - SOAP::SOAPString
919
+ # wordCount - SOAP::SOAPLong
920
+ # workflowDueDate - Date
921
+ # workflowStatus - SOAP::SOAPString
922
+ class SimpleSubmissionSearchModel
923
+ attr_accessor :alerts
924
+ attr_accessor :availableTasks
925
+ attr_accessor :budgetStatus
926
+ attr_accessor :claimScope
927
+ attr_accessor :customFields
928
+ attr_accessor :date
929
+ attr_accessor :dateArchived
930
+ attr_accessor :dateCompleted
931
+ attr_accessor :dateStarted
932
+ attr_accessor :dueDate
933
+ attr_accessor :fileCount
934
+ attr_accessor :fileProgress
935
+ attr_accessor :gate
936
+ attr_accessor :id
937
+ attr_accessor :instructions
938
+ attr_accessor :officeName
939
+ attr_accessor :owner
940
+ attr_accessor :paClientName
941
+ attr_accessor :parentSubmissionName
942
+ attr_accessor :parentTicket
943
+ attr_accessor :pmNotes
944
+ attr_accessor :priority
945
+ attr_accessor :projectName
946
+ attr_accessor :projectTicket
947
+ attr_accessor :quote
948
+ attr_accessor :reserved
949
+ attr_accessor :sourceLanguage
950
+ attr_accessor :status
951
+ attr_accessor :submissionBackground
952
+ attr_accessor :submissionName
953
+ attr_accessor :submitterFullName
954
+ attr_accessor :ticket
955
+ attr_accessor :wordCount
956
+ attr_accessor :workflowDueDate
957
+ attr_accessor :workflowStatus
958
+
959
+ def initialize(alerts = [], availableTasks = nil, budgetStatus = nil, claimScope = nil, customFields = [], date = nil, dateArchived = nil, dateCompleted = nil, dateStarted = nil, dueDate = nil, fileCount = nil, fileProgress = nil, gate = nil, id = nil, instructions = nil, officeName = nil, owner = [], paClientName = nil, parentSubmissionName = nil, parentTicket = nil, pmNotes = nil, priority = nil, projectName = nil, projectTicket = nil, quote = nil, reserved = nil, sourceLanguage = nil, status = nil, submissionBackground = nil, submissionName = nil, submitterFullName = [], ticket = nil, wordCount = nil, workflowDueDate = nil, workflowStatus = nil)
960
+ @alerts = alerts
961
+ @availableTasks = availableTasks
962
+ @budgetStatus = budgetStatus
963
+ @claimScope = claimScope
964
+ @customFields = customFields
965
+ @date = date
966
+ @dateArchived = dateArchived
967
+ @dateCompleted = dateCompleted
968
+ @dateStarted = dateStarted
969
+ @dueDate = dueDate
970
+ @fileCount = fileCount
971
+ @fileProgress = fileProgress
972
+ @gate = gate
973
+ @id = id
974
+ @instructions = instructions
975
+ @officeName = officeName
976
+ @owner = owner
977
+ @paClientName = paClientName
978
+ @parentSubmissionName = parentSubmissionName
979
+ @parentTicket = parentTicket
980
+ @pmNotes = pmNotes
981
+ @priority = priority
982
+ @projectName = projectName
983
+ @projectTicket = projectTicket
984
+ @quote = quote
985
+ @reserved = reserved
986
+ @sourceLanguage = sourceLanguage
987
+ @status = status
988
+ @submissionBackground = submissionBackground
989
+ @submissionName = submissionName
990
+ @submitterFullName = submitterFullName
991
+ @ticket = ticket
992
+ @wordCount = wordCount
993
+ @workflowDueDate = workflowDueDate
994
+ @workflowStatus = workflowStatus
995
+ end
996
+ end
997
+
998
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}SubmissionSearchModelPagedList
999
+ # elements - SimpleSubmissionSearchModel
1000
+ # pagedListInfo - PagedListInfo
1001
+ # tasks - Task
1002
+ # totalCount - SOAP::SOAPLong
1003
+ class SubmissionSearchModelPagedList
1004
+ attr_accessor :elements
1005
+ attr_accessor :pagedListInfo
1006
+ attr_accessor :tasks
1007
+ attr_accessor :totalCount
1008
+
1009
+ def initialize(elements = [], pagedListInfo = nil, tasks = [], totalCount = nil)
1010
+ @elements = elements
1011
+ @pagedListInfo = pagedListInfo
1012
+ @tasks = tasks
1013
+ @totalCount = totalCount
1014
+ end
1015
+ end
1016
+
1017
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}SubmissionSearchRequest
1018
+ # folder - ItemFolderEnum
1019
+ # projectTickets - SOAP::SOAPString
1020
+ # submissionDate - Date
1021
+ # submissionDueDate - Date
1022
+ # submissionName - SOAP::SOAPString
1023
+ class SubmissionSearchRequest
1024
+ attr_accessor :folder
1025
+ attr_accessor :projectTickets
1026
+ attr_accessor :submissionDate
1027
+ attr_accessor :submissionDueDate
1028
+ attr_accessor :submissionName
1029
+
1030
+ def initialize(folder = nil, projectTickets = [], submissionDate = nil, submissionDueDate = nil, submissionName = nil)
1031
+ @folder = folder
1032
+ @projectTickets = projectTickets
1033
+ @submissionDate = submissionDate
1034
+ @submissionDueDate = submissionDueDate
1035
+ @submissionName = submissionName
1036
+ end
1037
+ end
1038
+
1039
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}Target
1040
+ # availableTasks - SOAP::SOAPLong
1041
+ # dateCompleted - Date
1042
+ # dateCreated - Date
1043
+ # dateEstimated - Date
1044
+ # document - Document
1045
+ # downloadThresholdTimeStamp - Date
1046
+ # dueDate - Date
1047
+ # fileName - SOAP::SOAPString
1048
+ # id - SOAP::SOAPString
1049
+ # phases - Phase
1050
+ # refPhase - Phase
1051
+ # sourceLanguage - Language
1052
+ # sourceWordCount - SOAP::SOAPInt
1053
+ # status - ItemStatusEnum
1054
+ # targetInfo - TargetInfo
1055
+ # targetLanguage - Language
1056
+ # targetWordCount - SOAP::SOAPInt
1057
+ # ticket - SOAP::SOAPString
1058
+ # tmStatistics - TmStatistics
1059
+ # workflowDefinition - WorkflowDefinition
1060
+ class Target
1061
+ attr_accessor :availableTasks
1062
+ attr_accessor :dateCompleted
1063
+ attr_accessor :dateCreated
1064
+ attr_accessor :dateEstimated
1065
+ attr_accessor :document
1066
+ attr_accessor :downloadThresholdTimeStamp
1067
+ attr_accessor :dueDate
1068
+ attr_accessor :fileName
1069
+ attr_accessor :id
1070
+ attr_accessor :phases
1071
+ attr_accessor :refPhase
1072
+ attr_accessor :sourceLanguage
1073
+ attr_accessor :sourceWordCount
1074
+ attr_accessor :status
1075
+ attr_accessor :targetInfo
1076
+ attr_accessor :targetLanguage
1077
+ attr_accessor :targetWordCount
1078
+ attr_accessor :ticket
1079
+ attr_accessor :tmStatistics
1080
+ attr_accessor :workflowDefinition
1081
+
1082
+ def initialize(availableTasks = nil, dateCompleted = nil, dateCreated = nil, dateEstimated = nil, document = nil, downloadThresholdTimeStamp = nil, dueDate = nil, fileName = nil, id = nil, phases = [], refPhase = nil, sourceLanguage = nil, sourceWordCount = nil, status = nil, targetInfo = nil, targetLanguage = nil, targetWordCount = nil, ticket = nil, tmStatistics = nil, workflowDefinition = nil)
1083
+ @availableTasks = availableTasks
1084
+ @dateCompleted = dateCompleted
1085
+ @dateCreated = dateCreated
1086
+ @dateEstimated = dateEstimated
1087
+ @document = document
1088
+ @downloadThresholdTimeStamp = downloadThresholdTimeStamp
1089
+ @dueDate = dueDate
1090
+ @fileName = fileName
1091
+ @id = id
1092
+ @phases = phases
1093
+ @refPhase = refPhase
1094
+ @sourceLanguage = sourceLanguage
1095
+ @sourceWordCount = sourceWordCount
1096
+ @status = status
1097
+ @targetInfo = targetInfo
1098
+ @targetLanguage = targetLanguage
1099
+ @targetWordCount = targetWordCount
1100
+ @ticket = ticket
1101
+ @tmStatistics = tmStatistics
1102
+ @workflowDefinition = workflowDefinition
1103
+ end
1104
+ end
1105
+
1106
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}TargetInfo
1107
+ # dateRequested - Date
1108
+ # encoding - SOAP::SOAPString
1109
+ # instructions - SOAP::SOAPString
1110
+ # metadata - Metadata
1111
+ # priority - Priority
1112
+ # requestedDueDate - SOAP::SOAPLong
1113
+ # targetLocale - SOAP::SOAPString
1114
+ # workflowDefinitionTicket - SOAP::SOAPString
1115
+ class TargetInfo
1116
+ attr_accessor :dateRequested
1117
+ attr_accessor :encoding
1118
+ attr_accessor :instructions
1119
+ attr_accessor :metadata
1120
+ attr_accessor :priority
1121
+ attr_accessor :requestedDueDate
1122
+ attr_accessor :targetLocale
1123
+ attr_accessor :workflowDefinitionTicket
1124
+
1125
+ def initialize(dateRequested = nil, encoding = nil, instructions = nil, metadata = [], priority = nil, requestedDueDate = nil, targetLocale = nil, workflowDefinitionTicket = nil)
1126
+ @dateRequested = dateRequested
1127
+ @encoding = encoding
1128
+ @instructions = instructions
1129
+ @metadata = metadata
1130
+ @priority = priority
1131
+ @requestedDueDate = requestedDueDate
1132
+ @targetLocale = targetLocale
1133
+ @workflowDefinitionTicket = workflowDefinitionTicket
1134
+ end
1135
+ end
1136
+
1137
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}TargetPagedList
1138
+ # elements - Target
1139
+ # pagedListInfo - PagedListInfo
1140
+ # tasks - Task
1141
+ # totalCount - SOAP::SOAPLong
1142
+ class TargetPagedList
1143
+ attr_accessor :elements
1144
+ attr_accessor :pagedListInfo
1145
+ attr_accessor :tasks
1146
+ attr_accessor :totalCount
1147
+
1148
+ def initialize(elements = [], pagedListInfo = nil, tasks = [], totalCount = nil)
1149
+ @elements = elements
1150
+ @pagedListInfo = pagedListInfo
1151
+ @tasks = tasks
1152
+ @totalCount = totalCount
1153
+ end
1154
+ end
1155
+
1156
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}TargetSearchRequest
1157
+ # dateCreated - Date
1158
+ # folder - ItemFolderEnum
1159
+ # projectTickets - SOAP::SOAPString
1160
+ # sourceLocaleId - SOAP::SOAPString
1161
+ # submissionTicket - SOAP::SOAPString
1162
+ # targetLocaleId - SOAP::SOAPString
1163
+ class TargetSearchRequest
1164
+ attr_accessor :dateCreated
1165
+ attr_accessor :folder
1166
+ attr_accessor :projectTickets
1167
+ attr_accessor :sourceLocaleId
1168
+ attr_accessor :submissionTicket
1169
+ attr_accessor :targetLocaleId
1170
+
1171
+ def initialize(dateCreated = nil, folder = nil, projectTickets = [], sourceLocaleId = nil, submissionTicket = nil, targetLocaleId = nil)
1172
+ @dateCreated = dateCreated
1173
+ @folder = folder
1174
+ @projectTickets = projectTickets
1175
+ @sourceLocaleId = sourceLocaleId
1176
+ @submissionTicket = submissionTicket
1177
+ @targetLocaleId = targetLocaleId
1178
+ end
1179
+ end
1180
+
1181
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}Task
1182
+ # groupName - SOAP::SOAPString
1183
+ # selectStyle - SOAP::SOAPInt
1184
+ # taskId - SOAP::SOAPInt
1185
+ # taskName - SOAP::SOAPString
1186
+ # weight - SOAP::SOAPInt
1187
+ class Task
1188
+ attr_accessor :groupName
1189
+ attr_accessor :selectStyle
1190
+ attr_accessor :taskId
1191
+ attr_accessor :taskName
1192
+ attr_accessor :weight
1193
+
1194
+ def initialize(groupName = nil, selectStyle = nil, taskId = nil, taskName = nil, weight = nil)
1195
+ @groupName = groupName
1196
+ @selectStyle = selectStyle
1197
+ @taskId = taskId
1198
+ @taskName = taskName
1199
+ @weight = weight
1200
+ end
1201
+ end
1202
+
1203
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}TmStatistics
1204
+ # fuzzyRepetitionsWordCount1 - FuzzyTmStatistics
1205
+ # fuzzyRepetitionsWordCount10 - FuzzyTmStatistics
1206
+ # fuzzyRepetitionsWordCount2 - FuzzyTmStatistics
1207
+ # fuzzyRepetitionsWordCount3 - FuzzyTmStatistics
1208
+ # fuzzyRepetitionsWordCount4 - FuzzyTmStatistics
1209
+ # fuzzyRepetitionsWordCount5 - FuzzyTmStatistics
1210
+ # fuzzyRepetitionsWordCount6 - FuzzyTmStatistics
1211
+ # fuzzyRepetitionsWordCount7 - FuzzyTmStatistics
1212
+ # fuzzyRepetitionsWordCount8 - FuzzyTmStatistics
1213
+ # fuzzyRepetitionsWordCount9 - FuzzyTmStatistics
1214
+ # fuzzyWordCount1 - FuzzyTmStatistics
1215
+ # fuzzyWordCount10 - FuzzyTmStatistics
1216
+ # fuzzyWordCount2 - FuzzyTmStatistics
1217
+ # fuzzyWordCount3 - FuzzyTmStatistics
1218
+ # fuzzyWordCount4 - FuzzyTmStatistics
1219
+ # fuzzyWordCount5 - FuzzyTmStatistics
1220
+ # fuzzyWordCount6 - FuzzyTmStatistics
1221
+ # fuzzyWordCount7 - FuzzyTmStatistics
1222
+ # fuzzyWordCount8 - FuzzyTmStatistics
1223
+ # fuzzyWordCount9 - FuzzyTmStatistics
1224
+ # inContextMatchWordCount - SOAP::SOAPInt
1225
+ # noMatchWordCount - SOAP::SOAPInt
1226
+ # oneHundredMatchWordCount - SOAP::SOAPInt
1227
+ # repetitionWordCount - SOAP::SOAPInt
1228
+ # totalWordCount - SOAP::SOAPInt
1229
+ class TmStatistics
1230
+ attr_accessor :fuzzyRepetitionsWordCount1
1231
+ attr_accessor :fuzzyRepetitionsWordCount10
1232
+ attr_accessor :fuzzyRepetitionsWordCount2
1233
+ attr_accessor :fuzzyRepetitionsWordCount3
1234
+ attr_accessor :fuzzyRepetitionsWordCount4
1235
+ attr_accessor :fuzzyRepetitionsWordCount5
1236
+ attr_accessor :fuzzyRepetitionsWordCount6
1237
+ attr_accessor :fuzzyRepetitionsWordCount7
1238
+ attr_accessor :fuzzyRepetitionsWordCount8
1239
+ attr_accessor :fuzzyRepetitionsWordCount9
1240
+ attr_accessor :fuzzyWordCount1
1241
+ attr_accessor :fuzzyWordCount10
1242
+ attr_accessor :fuzzyWordCount2
1243
+ attr_accessor :fuzzyWordCount3
1244
+ attr_accessor :fuzzyWordCount4
1245
+ attr_accessor :fuzzyWordCount5
1246
+ attr_accessor :fuzzyWordCount6
1247
+ attr_accessor :fuzzyWordCount7
1248
+ attr_accessor :fuzzyWordCount8
1249
+ attr_accessor :fuzzyWordCount9
1250
+ attr_accessor :inContextMatchWordCount
1251
+ attr_accessor :noMatchWordCount
1252
+ attr_accessor :oneHundredMatchWordCount
1253
+ attr_accessor :repetitionWordCount
1254
+ attr_accessor :totalWordCount
1255
+
1256
+ def initialize(fuzzyRepetitionsWordCount1 = nil, fuzzyRepetitionsWordCount10 = nil, fuzzyRepetitionsWordCount2 = nil, fuzzyRepetitionsWordCount3 = nil, fuzzyRepetitionsWordCount4 = nil, fuzzyRepetitionsWordCount5 = nil, fuzzyRepetitionsWordCount6 = nil, fuzzyRepetitionsWordCount7 = nil, fuzzyRepetitionsWordCount8 = nil, fuzzyRepetitionsWordCount9 = nil, fuzzyWordCount1 = nil, fuzzyWordCount10 = nil, fuzzyWordCount2 = nil, fuzzyWordCount3 = nil, fuzzyWordCount4 = nil, fuzzyWordCount5 = nil, fuzzyWordCount6 = nil, fuzzyWordCount7 = nil, fuzzyWordCount8 = nil, fuzzyWordCount9 = nil, inContextMatchWordCount = nil, noMatchWordCount = nil, oneHundredMatchWordCount = nil, repetitionWordCount = nil, totalWordCount = nil)
1257
+ @fuzzyRepetitionsWordCount1 = fuzzyRepetitionsWordCount1
1258
+ @fuzzyRepetitionsWordCount10 = fuzzyRepetitionsWordCount10
1259
+ @fuzzyRepetitionsWordCount2 = fuzzyRepetitionsWordCount2
1260
+ @fuzzyRepetitionsWordCount3 = fuzzyRepetitionsWordCount3
1261
+ @fuzzyRepetitionsWordCount4 = fuzzyRepetitionsWordCount4
1262
+ @fuzzyRepetitionsWordCount5 = fuzzyRepetitionsWordCount5
1263
+ @fuzzyRepetitionsWordCount6 = fuzzyRepetitionsWordCount6
1264
+ @fuzzyRepetitionsWordCount7 = fuzzyRepetitionsWordCount7
1265
+ @fuzzyRepetitionsWordCount8 = fuzzyRepetitionsWordCount8
1266
+ @fuzzyRepetitionsWordCount9 = fuzzyRepetitionsWordCount9
1267
+ @fuzzyWordCount1 = fuzzyWordCount1
1268
+ @fuzzyWordCount10 = fuzzyWordCount10
1269
+ @fuzzyWordCount2 = fuzzyWordCount2
1270
+ @fuzzyWordCount3 = fuzzyWordCount3
1271
+ @fuzzyWordCount4 = fuzzyWordCount4
1272
+ @fuzzyWordCount5 = fuzzyWordCount5
1273
+ @fuzzyWordCount6 = fuzzyWordCount6
1274
+ @fuzzyWordCount7 = fuzzyWordCount7
1275
+ @fuzzyWordCount8 = fuzzyWordCount8
1276
+ @fuzzyWordCount9 = fuzzyWordCount9
1277
+ @inContextMatchWordCount = inContextMatchWordCount
1278
+ @noMatchWordCount = noMatchWordCount
1279
+ @oneHundredMatchWordCount = oneHundredMatchWordCount
1280
+ @repetitionWordCount = repetitionWordCount
1281
+ @totalWordCount = totalWordCount
1282
+ end
1283
+ end
1284
+
1285
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}WorkflowDefinition
1286
+ # description - SOAP::SOAPString
1287
+ # name - SOAP::SOAPString
1288
+ # ticket - SOAP::SOAPString
1289
+ # type - EntityTypeEnum
1290
+ class WorkflowDefinition
1291
+ attr_accessor :description
1292
+ attr_accessor :name
1293
+ attr_accessor :ticket
1294
+ attr_accessor :type
1295
+
1296
+ def initialize(description = nil, name = nil, ticket = nil, type = nil)
1297
+ @description = description
1298
+ @name = name
1299
+ @ticket = ticket
1300
+ @type = type
1301
+ end
1302
+ end
1303
+
1304
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}UserData
1305
+ # email - SOAP::SOAPString
1306
+ # name - SOAP::SOAPString
1307
+ class UserData
1308
+ attr_accessor :email
1309
+ attr_accessor :name
1310
+
1311
+ def initialize(email = nil, name = nil)
1312
+ @email = email
1313
+ @name = name
1314
+ end
1315
+ end
1316
+
1317
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}UserInfo
1318
+ # accountLocked - SOAP::SOAPBoolean
1319
+ # accountNonExpired - SOAP::SOAPBoolean
1320
+ # address - SOAP::SOAPString
1321
+ # autoClaimMultipleTasks - SOAP::SOAPBoolean
1322
+ # claimMultipleJobTasks - SOAP::SOAPBoolean
1323
+ # credentialsNonExpired - SOAP::SOAPBoolean
1324
+ # dateLastLogin - SOAP::SOAPDateTime
1325
+ # department - SOAP::SOAPString
1326
+ # emailAddress - SOAP::SOAPString
1327
+ # emailNotification - SOAP::SOAPBoolean
1328
+ # enabled - SOAP::SOAPBoolean
1329
+ # fax - SOAP::SOAPString
1330
+ # firstName - SOAP::SOAPString
1331
+ # lastName - SOAP::SOAPString
1332
+ # password - SOAP::SOAPString
1333
+ # phone1 - SOAP::SOAPString
1334
+ # phone2 - SOAP::SOAPString
1335
+ # timeZone - SOAP::SOAPString
1336
+ # userName - SOAP::SOAPString
1337
+ # userType - SOAP::SOAPString
1338
+ class UserInfo
1339
+ attr_accessor :accountLocked
1340
+ attr_accessor :accountNonExpired
1341
+ attr_accessor :address
1342
+ attr_accessor :autoClaimMultipleTasks
1343
+ attr_accessor :claimMultipleJobTasks
1344
+ attr_accessor :credentialsNonExpired
1345
+ attr_accessor :dateLastLogin
1346
+ attr_accessor :department
1347
+ attr_accessor :emailAddress
1348
+ attr_accessor :emailNotification
1349
+ attr_accessor :enabled
1350
+ attr_accessor :fax
1351
+ attr_accessor :firstName
1352
+ attr_accessor :lastName
1353
+ attr_accessor :password
1354
+ attr_accessor :phone1
1355
+ attr_accessor :phone2
1356
+ attr_accessor :timeZone
1357
+ attr_accessor :userName
1358
+ attr_accessor :userType
1359
+
1360
+ def initialize(accountLocked = nil, accountNonExpired = nil, address = nil, autoClaimMultipleTasks = nil, claimMultipleJobTasks = nil, credentialsNonExpired = nil, dateLastLogin = nil, department = nil, emailAddress = nil, emailNotification = nil, enabled = nil, fax = nil, firstName = nil, lastName = nil, password = nil, phone1 = nil, phone2 = nil, timeZone = nil, userName = nil, userType = nil)
1361
+ @accountLocked = accountLocked
1362
+ @accountNonExpired = accountNonExpired
1363
+ @address = address
1364
+ @autoClaimMultipleTasks = autoClaimMultipleTasks
1365
+ @claimMultipleJobTasks = claimMultipleJobTasks
1366
+ @credentialsNonExpired = credentialsNonExpired
1367
+ @dateLastLogin = dateLastLogin
1368
+ @department = department
1369
+ @emailAddress = emailAddress
1370
+ @emailNotification = emailNotification
1371
+ @enabled = enabled
1372
+ @fax = fax
1373
+ @firstName = firstName
1374
+ @lastName = lastName
1375
+ @password = password
1376
+ @phone1 = phone1
1377
+ @phone2 = phone2
1378
+ @timeZone = timeZone
1379
+ @userName = userName
1380
+ @userType = userType
1381
+ end
1382
+ end
1383
+
1384
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}TiUserInfo
1385
+ # languageDirections - LanguageDirection
1386
+ # organizationId - SOAP::SOAPLong
1387
+ # projectRoles - SOAP::SOAPString
1388
+ # projectTicket - SOAP::SOAPString
1389
+ # systemRoles - SOAP::SOAPString
1390
+ # vendorId - SOAP::SOAPLong
1391
+ class TiUserInfo
1392
+ attr_accessor :languageDirections
1393
+ attr_accessor :organizationId
1394
+ attr_accessor :projectRoles
1395
+ attr_accessor :projectTicket
1396
+ attr_accessor :systemRoles
1397
+ attr_accessor :vendorId
1398
+
1399
+ def initialize(languageDirections = [], organizationId = nil, projectRoles = [], projectTicket = [], systemRoles = [], vendorId = nil)
1400
+ @languageDirections = languageDirections
1401
+ @organizationId = organizationId
1402
+ @projectRoles = projectRoles
1403
+ @projectTicket = projectTicket
1404
+ @systemRoles = systemRoles
1405
+ @vendorId = vendorId
1406
+ end
1407
+ end
1408
+
1409
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}ClaimScopeEnum
1410
+ # name - SOAP::SOAPString
1411
+ # value - SOAP::SOAPInt
1412
+ class ClaimScopeEnum
1413
+ attr_accessor :name
1414
+ attr_accessor :value
1415
+
1416
+ def initialize(name = nil, value = nil)
1417
+ @name = name
1418
+ @value = value
1419
+ end
1420
+ end
1421
+
1422
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}ProjectCustomFieldConfiguration
1423
+ # description - SOAP::SOAPString
1424
+ # mandatory - SOAP::SOAPBoolean
1425
+ # name - SOAP::SOAPString
1426
+ # type - SOAP::SOAPString
1427
+ # values - SOAP::SOAPString
1428
+ class ProjectCustomFieldConfiguration
1429
+ attr_accessor :description
1430
+ attr_accessor :mandatory
1431
+ attr_accessor :name
1432
+ attr_accessor :type
1433
+ attr_accessor :values
1434
+
1435
+ def initialize(description = nil, mandatory = nil, name = nil, type = nil, values = nil)
1436
+ @description = description
1437
+ @mandatory = mandatory
1438
+ @name = name
1439
+ @type = type
1440
+ @values = values
1441
+ end
1442
+ end
1443
+
1444
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}SubmissionCustomFields
1445
+ # fieldName - SOAP::SOAPString
1446
+ # fieldValue - SOAP::SOAPString
1447
+ class SubmissionCustomFields
1448
+ attr_accessor :fieldName
1449
+ attr_accessor :fieldValue
1450
+
1451
+ def initialize(fieldName = nil, fieldValue = nil)
1452
+ @fieldName = fieldName
1453
+ @fieldValue = fieldValue
1454
+ end
1455
+ end
1456
+
1457
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}UserProfile
1458
+ # availableTasks - SOAP::SOAPInt
1459
+ # organizationName - SOAP::SOAPString
1460
+ # systemRoles - Role
1461
+ # tasks - Task
1462
+ # ticket - SOAP::SOAPString
1463
+ # userInfo - UserInfo
1464
+ # vendorName - SOAP::SOAPString
1465
+ class UserProfile
1466
+ attr_accessor :availableTasks
1467
+ attr_accessor :organizationName
1468
+ attr_accessor :systemRoles
1469
+ attr_accessor :tasks
1470
+ attr_accessor :ticket
1471
+ attr_accessor :userInfo
1472
+ attr_accessor :vendorName
1473
+
1474
+ def initialize(availableTasks = nil, organizationName = nil, systemRoles = [], tasks = [], ticket = nil, userInfo = nil, vendorName = nil)
1475
+ @availableTasks = availableTasks
1476
+ @organizationName = organizationName
1477
+ @systemRoles = systemRoles
1478
+ @tasks = tasks
1479
+ @ticket = ticket
1480
+ @userInfo = userInfo
1481
+ @vendorName = vendorName
1482
+ end
1483
+ end
1484
+
1485
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}Role
1486
+ # policies - Policy
1487
+ # roleId - SOAP::SOAPString
1488
+ # roleType - RoleTypeEnum
1489
+ # tasks - Task
1490
+ # ticket - SOAP::SOAPString
1491
+ class Role
1492
+ attr_accessor :policies
1493
+ attr_accessor :roleId
1494
+ attr_accessor :roleType
1495
+ attr_accessor :tasks
1496
+ attr_accessor :ticket
1497
+
1498
+ def initialize(policies = [], roleId = nil, roleType = nil, tasks = [], ticket = nil)
1499
+ @policies = policies
1500
+ @roleId = roleId
1501
+ @roleType = roleType
1502
+ @tasks = tasks
1503
+ @ticket = ticket
1504
+ end
1505
+ end
1506
+
1507
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}RoleTypeEnum
1508
+ # value - SOAP::SOAPInt
1509
+ class RoleTypeEnum
1510
+ attr_accessor :value
1511
+
1512
+ def initialize(value = nil)
1513
+ @value = value
1514
+ end
1515
+ end
1516
+
1517
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}Policy
1518
+ # category - SOAP::SOAPString
1519
+ # policyId - SOAP::SOAPString
1520
+ # policyType - RoleTypeEnum
1521
+ class Policy
1522
+ attr_accessor :category
1523
+ attr_accessor :policyId
1524
+ attr_accessor :policyType
1525
+
1526
+ def initialize(category = nil, policyId = nil, policyType = nil)
1527
+ @category = category
1528
+ @policyId = policyId
1529
+ @policyType = policyType
1530
+ end
1531
+ end
1532
+
1533
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}LanguageWorkflowInfo
1534
+ # sourceLanguage - Language
1535
+ # targetLanguage - Language
1536
+ class LanguageWorkflowInfo
1537
+ attr_accessor :sourceLanguage
1538
+ attr_accessor :targetLanguage
1539
+
1540
+ def initialize(sourceLanguage = nil, targetLanguage = nil)
1541
+ @sourceLanguage = sourceLanguage
1542
+ @targetLanguage = targetLanguage
1543
+ end
1544
+ end
1545
+
1546
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}BatchWorkflowInfo
1547
+ # batchName - SOAP::SOAPString
1548
+ # languageWorkflowInfo - LanguageWorkflowInfo
1549
+ class BatchWorkflowInfo
1550
+ attr_accessor :batchName
1551
+ attr_accessor :languageWorkflowInfo
1552
+
1553
+ def initialize(batchName = nil, languageWorkflowInfo = nil)
1554
+ @batchName = batchName
1555
+ @languageWorkflowInfo = languageWorkflowInfo
1556
+ end
1557
+ end
1558
+
1559
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}TargetWorkflowInfo
1560
+ # batchName - SOAP::SOAPString
1561
+ # documentName - SOAP::SOAPString
1562
+ # fileName - SOAP::SOAPString
1563
+ # sourceLanguage - Language
1564
+ # targetLanguage - Language
1565
+ # targetTicket - SOAP::SOAPString
1566
+ class TargetWorkflowInfo
1567
+ attr_accessor :batchName
1568
+ attr_accessor :documentName
1569
+ attr_accessor :fileName
1570
+ attr_accessor :sourceLanguage
1571
+ attr_accessor :targetLanguage
1572
+ attr_accessor :targetTicket
1573
+
1574
+ def initialize(batchName = nil, documentName = nil, fileName = nil, sourceLanguage = nil, targetLanguage = nil, targetTicket = nil)
1575
+ @batchName = batchName
1576
+ @documentName = documentName
1577
+ @fileName = fileName
1578
+ @sourceLanguage = sourceLanguage
1579
+ @targetLanguage = targetLanguage
1580
+ @targetTicket = targetTicket
1581
+ end
1582
+ end
1583
+
1584
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}SubmissionWorkflowInfo
1585
+ # batchWorkflowInfos - BatchWorkflowInfo
1586
+ # languageWorkflowInfos - LanguageWorkflowInfo
1587
+ # phaseName - SOAP::SOAPString
1588
+ # submissionId - SOAP::SOAPLong
1589
+ # submissionName - SOAP::SOAPString
1590
+ # submissionTicket - SOAP::SOAPString
1591
+ # targetWorkflowInfos - TargetWorkflowInfo
1592
+ class SubmissionWorkflowInfo
1593
+ attr_accessor :batchWorkflowInfos
1594
+ attr_accessor :languageWorkflowInfos
1595
+ attr_accessor :phaseName
1596
+ attr_accessor :submissionId
1597
+ attr_accessor :submissionName
1598
+ attr_accessor :submissionTicket
1599
+ attr_accessor :targetWorkflowInfos
1600
+
1601
+ def initialize(batchWorkflowInfos = [], languageWorkflowInfos = [], phaseName = nil, submissionId = nil, submissionName = nil, submissionTicket = nil, targetWorkflowInfos = [])
1602
+ @batchWorkflowInfos = batchWorkflowInfos
1603
+ @languageWorkflowInfos = languageWorkflowInfos
1604
+ @phaseName = phaseName
1605
+ @submissionId = submissionId
1606
+ @submissionName = submissionName
1607
+ @submissionTicket = submissionTicket
1608
+ @targetWorkflowInfos = targetWorkflowInfos
1609
+ end
1610
+ end
1611
+
1612
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}WorkflowRequest
1613
+ # batchWorkflowInfos - BatchWorkflowInfo
1614
+ # languageWorkflowInfos - LanguageWorkflowInfo
1615
+ # phaseName - SOAP::SOAPString
1616
+ # submissionTicket - SOAP::SOAPString
1617
+ # targetWorkflowInfos - TargetWorkflowInfo
1618
+ class WorkflowRequest
1619
+ attr_accessor :batchWorkflowInfos
1620
+ attr_accessor :languageWorkflowInfos
1621
+ attr_accessor :phaseName
1622
+ attr_accessor :submissionTicket
1623
+ attr_accessor :targetWorkflowInfos
1624
+
1625
+ def initialize(batchWorkflowInfos = [], languageWorkflowInfos = [], phaseName = nil, submissionTicket = nil, targetWorkflowInfos = [])
1626
+ @batchWorkflowInfos = batchWorkflowInfos
1627
+ @languageWorkflowInfos = languageWorkflowInfos
1628
+ @phaseName = phaseName
1629
+ @submissionTicket = submissionTicket
1630
+ @targetWorkflowInfos = targetWorkflowInfos
1631
+ end
1632
+ end
1633
+
1634
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}WorkflowRequestTicket
1635
+ # message - SOAP::SOAPString
1636
+ # processTicket - SOAP::SOAPString
1637
+ # submissionTicket - SOAP::SOAPString
1638
+ class WorkflowRequestTicket
1639
+ attr_accessor :message
1640
+ attr_accessor :processTicket
1641
+ attr_accessor :submissionTicket
1642
+
1643
+ def initialize(message = nil, processTicket = nil, submissionTicket = nil)
1644
+ @message = message
1645
+ @processTicket = processTicket
1646
+ @submissionTicket = submissionTicket
1647
+ end
1648
+ end
1649
+
1650
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}DownloadActionResult
1651
+ # message - SOAP::SOAPString
1652
+ # processingFinished - SOAP::SOAPBoolean
1653
+ # repositoryItem - RepositoryItem
1654
+ class DownloadActionResult
1655
+ attr_accessor :message
1656
+ attr_accessor :processingFinished
1657
+ attr_accessor :repositoryItem
1658
+
1659
+ def initialize(message = nil, processingFinished = nil, repositoryItem = nil)
1660
+ @message = message
1661
+ @processingFinished = processingFinished
1662
+ @repositoryItem = repositoryItem
1663
+ end
1664
+ end
1665
+
1666
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}UploadActionResult
1667
+ # messages - SOAP::SOAPString
1668
+ # processingFinished - SOAP::SOAPBoolean
1669
+ class UploadActionResult
1670
+ attr_accessor :messages
1671
+ attr_accessor :processingFinished
1672
+
1673
+ def initialize(messages = [], processingFinished = nil)
1674
+ @messages = messages
1675
+ @processingFinished = processingFinished
1676
+ end
1677
+ end
1678
+
1679
+ # {http://dto.model.projectdirector.gs4tr.org/xsd}DownloadCollateralResult
1680
+ # errorMessages - SOAP::SOAPString
1681
+ # processingFinished - SOAP::SOAPBoolean
1682
+ # repositoryItem - RepositoryItem
1683
+ class DownloadCollateralResult
1684
+ attr_accessor :errorMessages
1685
+ attr_accessor :processingFinished
1686
+ attr_accessor :repositoryItem
1687
+
1688
+ def initialize(errorMessages = [], processingFinished = nil, repositoryItem = nil)
1689
+ @errorMessages = errorMessages
1690
+ @processingFinished = processingFinished
1691
+ @repositoryItem = repositoryItem
1692
+ end
1693
+ end
1694
+
1695
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}cancelTargetByDocumentId
1696
+ # documentId - DocumentTicket
1697
+ # targetLocale - SOAP::SOAPString
1698
+ class CancelTargetByDocumentId
1699
+ attr_accessor :documentId
1700
+ attr_accessor :targetLocale
1701
+
1702
+ def initialize(documentId = nil, targetLocale = nil)
1703
+ @documentId = documentId
1704
+ @targetLocale = targetLocale
1705
+ end
1706
+ end
1707
+
1708
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}cancelTargetByDocumentIdResponse
1709
+ # m_return - SOAP::SOAPString
1710
+ class CancelTargetByDocumentIdResponse
1711
+ def m_return
1712
+ @v_return
1713
+ end
1714
+
1715
+ def m_return=(value)
1716
+ @v_return = value
1717
+ end
1718
+
1719
+ def initialize(v_return = nil)
1720
+ @v_return = v_return
1721
+ end
1722
+ end
1723
+
1724
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}cancelTarget
1725
+ # targetId - SOAP::SOAPString
1726
+ class CancelTarget
1727
+ attr_accessor :targetId
1728
+
1729
+ def initialize(targetId = nil)
1730
+ @targetId = targetId
1731
+ end
1732
+ end
1733
+
1734
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}cancelTargetResponse
1735
+ # m_return - SOAP::SOAPString
1736
+ class CancelTargetResponse
1737
+ def m_return
1738
+ @v_return
1739
+ end
1740
+
1741
+ def m_return=(value)
1742
+ @v_return = value
1743
+ end
1744
+
1745
+ def initialize(v_return = nil)
1746
+ @v_return = v_return
1747
+ end
1748
+ end
1749
+
1750
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}downloadTargetResource
1751
+ # targetId - SOAP::SOAPString
1752
+ class DownloadTargetResource
1753
+ attr_accessor :targetId
1754
+
1755
+ def initialize(targetId = nil)
1756
+ @targetId = targetId
1757
+ end
1758
+ end
1759
+
1760
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}downloadTargetResourceResponse
1761
+ # m_return - RepositoryItem
1762
+ class DownloadTargetResourceResponse
1763
+ def m_return
1764
+ @v_return
1765
+ end
1766
+
1767
+ def m_return=(value)
1768
+ @v_return = value
1769
+ end
1770
+
1771
+ def initialize(v_return = nil)
1772
+ @v_return = v_return
1773
+ end
1774
+ end
1775
+
1776
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}downloadTranslationPreview
1777
+ # uuid - SOAP::SOAPString
1778
+ class DownloadTranslationPreview
1779
+ attr_accessor :uuid
1780
+
1781
+ def initialize(uuid = nil)
1782
+ @uuid = uuid
1783
+ end
1784
+ end
1785
+
1786
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}downloadTranslationPreviewResponse
1787
+ # m_return - PreviewResult
1788
+ class DownloadTranslationPreviewResponse
1789
+ def m_return
1790
+ @v_return
1791
+ end
1792
+
1793
+ def m_return=(value)
1794
+ @v_return = value
1795
+ end
1796
+
1797
+ def initialize(v_return = nil)
1798
+ @v_return = v_return
1799
+ end
1800
+ end
1801
+
1802
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}findByTicket
1803
+ # ticket - SOAP::SOAPString
1804
+ class FindByTicket
1805
+ attr_accessor :ticket
1806
+
1807
+ def initialize(ticket = nil)
1808
+ @ticket = ticket
1809
+ end
1810
+ end
1811
+
1812
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}findByTicketResponse
1813
+ # m_return - Target
1814
+ class FindByTicketResponse
1815
+ def m_return
1816
+ @v_return
1817
+ end
1818
+
1819
+ def m_return=(value)
1820
+ @v_return = value
1821
+ end
1822
+
1823
+ def initialize(v_return = nil)
1824
+ @v_return = v_return
1825
+ end
1826
+ end
1827
+
1828
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}getCompletedTargetsByDocuments
1829
+ # documentTickets - SOAP::SOAPString
1830
+ # maxResults - SOAP::SOAPInt
1831
+ class GetCompletedTargetsByDocuments
1832
+ attr_accessor :documentTickets
1833
+ attr_accessor :maxResults
1834
+
1835
+ def initialize(documentTickets = [], maxResults = nil)
1836
+ @documentTickets = documentTickets
1837
+ @maxResults = maxResults
1838
+ end
1839
+ end
1840
+
1841
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}getCompletedTargetsByDocumentsResponse
1842
+ class GetCompletedTargetsByDocumentsResponse < ::Array
1843
+ end
1844
+
1845
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}getCompletedTargetsByProjects
1846
+ # projectTickets - SOAP::SOAPString
1847
+ # maxResults - SOAP::SOAPInt
1848
+ class GetCompletedTargetsByProjects
1849
+ attr_accessor :projectTickets
1850
+ attr_accessor :maxResults
1851
+
1852
+ def initialize(projectTickets = [], maxResults = nil)
1853
+ @projectTickets = projectTickets
1854
+ @maxResults = maxResults
1855
+ end
1856
+ end
1857
+
1858
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}getCompletedTargetsByProjectsResponse
1859
+ class GetCompletedTargetsByProjectsResponse < ::Array
1860
+ end
1861
+
1862
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}getCompletedTargetsBySubmissions
1863
+ # submissionTickets - SOAP::SOAPString
1864
+ # maxResults - SOAP::SOAPInt
1865
+ class GetCompletedTargetsBySubmissions
1866
+ attr_accessor :submissionTickets
1867
+ attr_accessor :maxResults
1868
+
1869
+ def initialize(submissionTickets = [], maxResults = nil)
1870
+ @submissionTickets = submissionTickets
1871
+ @maxResults = maxResults
1872
+ end
1873
+ end
1874
+
1875
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}getCompletedTargetsBySubmissionsResponse
1876
+ class GetCompletedTargetsBySubmissionsResponse < ::Array
1877
+ end
1878
+
1879
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}getLanguagePhaseInfo
1880
+ # submissionTicket - SOAP::SOAPString
1881
+ # batchName - SOAP::SOAPString
1882
+ # targetLanguage - SOAP::SOAPString
1883
+ # phaseName - SOAP::SOAPString
1884
+ class GetLanguagePhaseInfo
1885
+ attr_accessor :submissionTicket
1886
+ attr_accessor :batchName
1887
+ attr_accessor :targetLanguage
1888
+ attr_accessor :phaseName
1889
+
1890
+ def initialize(submissionTicket = nil, batchName = nil, targetLanguage = nil, phaseName = nil)
1891
+ @submissionTicket = submissionTicket
1892
+ @batchName = batchName
1893
+ @targetLanguage = targetLanguage
1894
+ @phaseName = phaseName
1895
+ end
1896
+ end
1897
+
1898
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}getLanguagePhaseInfoResponse
1899
+ # m_return - LanguagePhaseInfo
1900
+ class GetLanguagePhaseInfoResponse
1901
+ def m_return
1902
+ @v_return
1903
+ end
1904
+
1905
+ def m_return=(value)
1906
+ @v_return = value
1907
+ end
1908
+
1909
+ def initialize(v_return = nil)
1910
+ @v_return = v_return
1911
+ end
1912
+ end
1913
+
1914
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}getPagedCompletedTargetsByProjects
1915
+ # projectTickets - SOAP::SOAPString
1916
+ # info - PagedListInfo
1917
+ class GetPagedCompletedTargetsByProjects
1918
+ attr_accessor :projectTickets
1919
+ attr_accessor :info
1920
+
1921
+ def initialize(projectTickets = [], info = nil)
1922
+ @projectTickets = projectTickets
1923
+ @info = info
1924
+ end
1925
+ end
1926
+
1927
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}getPagedCompletedTargetsByProjectsResponse
1928
+ # m_return - TargetPagedList
1929
+ class GetPagedCompletedTargetsByProjectsResponse
1930
+ def m_return
1931
+ @v_return
1932
+ end
1933
+
1934
+ def m_return=(value)
1935
+ @v_return = value
1936
+ end
1937
+
1938
+ def initialize(v_return = nil)
1939
+ @v_return = v_return
1940
+ end
1941
+ end
1942
+
1943
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}getPagedCompletedTargetsBySubmissions
1944
+ # submissionTickets - SOAP::SOAPString
1945
+ # info - PagedListInfo
1946
+ class GetPagedCompletedTargetsBySubmissions
1947
+ attr_accessor :submissionTickets
1948
+ attr_accessor :info
1949
+
1950
+ def initialize(submissionTickets = [], info = nil)
1951
+ @submissionTickets = submissionTickets
1952
+ @info = info
1953
+ end
1954
+ end
1955
+
1956
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}getPagedCompletedTargetsBySubmissionsResponse
1957
+ # m_return - TargetPagedList
1958
+ class GetPagedCompletedTargetsBySubmissionsResponse
1959
+ def m_return
1960
+ @v_return
1961
+ end
1962
+
1963
+ def m_return=(value)
1964
+ @v_return = value
1965
+ end
1966
+
1967
+ def initialize(v_return = nil)
1968
+ @v_return = v_return
1969
+ end
1970
+ end
1971
+
1972
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}requestTranslationPreview
1973
+ class RequestTranslationPreview < ::Array
1974
+ end
1975
+
1976
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}requestTranslationPreviewResponse
1977
+ # m_return - SOAP::SOAPString
1978
+ class RequestTranslationPreviewResponse
1979
+ def m_return
1980
+ @v_return
1981
+ end
1982
+
1983
+ def m_return=(value)
1984
+ @v_return = value
1985
+ end
1986
+
1987
+ def initialize(v_return = nil)
1988
+ @v_return = v_return
1989
+ end
1990
+ end
1991
+
1992
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}search
1993
+ # command - TargetSearchRequest
1994
+ # info - PagedListInfo
1995
+ class Search
1996
+ attr_accessor :command
1997
+ attr_accessor :info
1998
+
1999
+ def initialize(command = nil, info = nil)
2000
+ @command = command
2001
+ @info = info
2002
+ end
2003
+ end
2004
+
2005
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}searchResponse
2006
+ # m_return - TargetPagedList
2007
+ class SearchResponse
2008
+ def m_return
2009
+ @v_return
2010
+ end
2011
+
2012
+ def m_return=(value)
2013
+ @v_return = value
2014
+ end
2015
+
2016
+ def initialize(v_return = nil)
2017
+ @v_return = v_return
2018
+ end
2019
+ end
2020
+
2021
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}browseTargetsByDocuments
2022
+ # documentTickets - SOAP::SOAPString
2023
+ # info - PagedListInfo
2024
+ class BrowseTargetsByDocuments
2025
+ attr_accessor :documentTickets
2026
+ attr_accessor :info
2027
+
2028
+ def initialize(documentTickets = [], info = nil)
2029
+ @documentTickets = documentTickets
2030
+ @info = info
2031
+ end
2032
+ end
2033
+
2034
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}browseTargetsByDocumentsResponse
2035
+ class BrowseTargetsByDocumentsResponse < ::Array
2036
+ end
2037
+
2038
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}sendDownloadConfirmation
2039
+ # targetId - SOAP::SOAPString
2040
+ class SendDownloadConfirmation
2041
+ attr_accessor :targetId
2042
+
2043
+ def initialize(targetId = nil)
2044
+ @targetId = targetId
2045
+ end
2046
+ end
2047
+
2048
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}sendDownloadConfirmationResponse
2049
+ # m_return - SOAP::SOAPString
2050
+ class SendDownloadConfirmationResponse
2051
+ def m_return
2052
+ @v_return
2053
+ end
2054
+
2055
+ def m_return=(value)
2056
+ @v_return = value
2057
+ end
2058
+
2059
+ def initialize(v_return = nil)
2060
+ @v_return = v_return
2061
+ end
2062
+ end
2063
+
2064
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}getCanceledTargetsByDocuments
2065
+ # documentTickets - SOAP::SOAPString
2066
+ # maxResults - SOAP::SOAPInt
2067
+ class GetCanceledTargetsByDocuments
2068
+ attr_accessor :documentTickets
2069
+ attr_accessor :maxResults
2070
+
2071
+ def initialize(documentTickets = [], maxResults = nil)
2072
+ @documentTickets = documentTickets
2073
+ @maxResults = maxResults
2074
+ end
2075
+ end
2076
+
2077
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}getCanceledTargetsByDocumentsResponse
2078
+ class GetCanceledTargetsByDocumentsResponse < ::Array
2079
+ end
2080
+
2081
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}getCanceledTargetsByProjects
2082
+ # projectTickets - SOAP::SOAPString
2083
+ # maxResults - SOAP::SOAPInt
2084
+ class GetCanceledTargetsByProjects
2085
+ attr_accessor :projectTickets
2086
+ attr_accessor :maxResults
2087
+
2088
+ def initialize(projectTickets = [], maxResults = nil)
2089
+ @projectTickets = projectTickets
2090
+ @maxResults = maxResults
2091
+ end
2092
+ end
2093
+
2094
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}getCanceledTargetsByProjectsResponse
2095
+ class GetCanceledTargetsByProjectsResponse < ::Array
2096
+ end
2097
+
2098
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}getCanceledTargetsBySubmissions
2099
+ # submissionTickets - SOAP::SOAPString
2100
+ # maxResults - SOAP::SOAPInt
2101
+ class GetCanceledTargetsBySubmissions
2102
+ attr_accessor :submissionTickets
2103
+ attr_accessor :maxResults
2104
+
2105
+ def initialize(submissionTickets = [], maxResults = nil)
2106
+ @submissionTickets = submissionTickets
2107
+ @maxResults = maxResults
2108
+ end
2109
+ end
2110
+
2111
+ # {http://impl.services.service.ws.projectdirector.gs4tr.org}getCanceledTargetsBySubmissionsResponse
2112
+ class GetCanceledTargetsBySubmissionsResponse < ::Array
2113
+ end
2114
+ end
2115
+ end