glexchange 2.0.1

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