glexchange 2.0.1

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