svn-hook-tools 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,817 @@
1
+ require 'xsd/qname'
2
+
3
+ module Jira4R; module V2
4
+
5
+
6
+ # {http://beans.soap.rpc.jira.atlassian.com}RemoteComment
7
+ # author - SOAP::SOAPString
8
+ # body - SOAP::SOAPString
9
+ # created - SOAP::SOAPDateTime
10
+ # groupLevel - SOAP::SOAPString
11
+ # id - SOAP::SOAPString
12
+ # roleLevel - SOAP::SOAPString
13
+ # updateAuthor - SOAP::SOAPString
14
+ # updated - SOAP::SOAPDateTime
15
+ class RemoteComment
16
+ attr_accessor :author
17
+ attr_accessor :body
18
+ attr_accessor :created
19
+ attr_accessor :groupLevel
20
+ attr_accessor :id
21
+ attr_accessor :roleLevel
22
+ attr_accessor :updateAuthor
23
+ attr_accessor :updated
24
+
25
+ def initialize(author = nil, body = nil, created = nil, groupLevel = nil, id = nil, roleLevel = nil, updateAuthor = nil, updated = nil)
26
+ @author = author
27
+ @body = body
28
+ @created = created
29
+ @groupLevel = groupLevel
30
+ @id = id
31
+ @roleLevel = roleLevel
32
+ @updateAuthor = updateAuthor
33
+ @updated = updated
34
+ end
35
+ end
36
+
37
+ # {http://beans.soap.rpc.jira.atlassian.com}RemoteEntity
38
+ class RemoteEntity
39
+ def initialize
40
+ end
41
+ end
42
+
43
+ # {http://beans.soap.rpc.jira.atlassian.com}RemoteUser
44
+ # email - SOAP::SOAPString
45
+ # fullname - SOAP::SOAPString
46
+ # name - SOAP::SOAPString
47
+ class RemoteUser < RemoteEntity
48
+ attr_accessor :email
49
+ attr_accessor :fullname
50
+ attr_accessor :name
51
+
52
+ def initialize(email = nil, fullname = nil, name = nil)
53
+ @email = email
54
+ @fullname = fullname
55
+ @name = name
56
+ end
57
+ end
58
+
59
+ # {http://beans.soap.rpc.jira.atlassian.com}RemoteGroup
60
+ # name - SOAP::SOAPString
61
+ # users - Jira4R::V2::ArrayOf_tns1_RemoteUser
62
+ class RemoteGroup < RemoteEntity
63
+ attr_accessor :name
64
+ attr_accessor :users
65
+
66
+ def initialize(name = nil, users = nil)
67
+ @name = name
68
+ @users = users
69
+ end
70
+ end
71
+
72
+ # {http://beans.soap.rpc.jira.atlassian.com}RemoteServerInfo
73
+ # baseUrl - SOAP::SOAPString
74
+ # buildDate - SOAP::SOAPDateTime
75
+ # buildNumber - SOAP::SOAPString
76
+ # edition - SOAP::SOAPString
77
+ # version - SOAP::SOAPString
78
+ class RemoteServerInfo
79
+ attr_accessor :baseUrl
80
+ attr_accessor :buildDate
81
+ attr_accessor :buildNumber
82
+ attr_accessor :edition
83
+ attr_accessor :version
84
+
85
+ def initialize(baseUrl = nil, buildDate = nil, buildNumber = nil, edition = nil, version = nil)
86
+ @baseUrl = baseUrl
87
+ @buildDate = buildDate
88
+ @buildNumber = buildNumber
89
+ @edition = edition
90
+ @version = version
91
+ end
92
+ end
93
+
94
+ # {http://beans.soap.rpc.jira.atlassian.com}AbstractRemoteEntity
95
+ # abstract
96
+ # id - SOAP::SOAPString
97
+ class AbstractRemoteEntity
98
+ attr_accessor :id
99
+
100
+ def initialize(id = nil)
101
+ @id = id
102
+ end
103
+ end
104
+
105
+ # {http://beans.soap.rpc.jira.atlassian.com}AbstractNamedRemoteEntity
106
+ # abstract
107
+ # id - SOAP::SOAPString
108
+ # name - SOAP::SOAPString
109
+ class AbstractNamedRemoteEntity < AbstractRemoteEntity
110
+ attr_accessor :id
111
+ attr_accessor :name
112
+
113
+ def initialize(id = nil, name = nil)
114
+ @id = id
115
+ @name = name
116
+ end
117
+ end
118
+
119
+ # {http://beans.soap.rpc.jira.atlassian.com}RemoteVersion
120
+ # id - SOAP::SOAPString
121
+ # name - SOAP::SOAPString
122
+ # archived - SOAP::SOAPBoolean
123
+ # releaseDate - SOAP::SOAPDateTime
124
+ # released - SOAP::SOAPBoolean
125
+ # sequence - SOAP::SOAPLong
126
+ class RemoteVersion < AbstractNamedRemoteEntity
127
+ attr_accessor :id
128
+ attr_accessor :name
129
+ attr_accessor :archived
130
+ attr_accessor :releaseDate
131
+ attr_accessor :released
132
+ attr_accessor :sequence
133
+
134
+ def initialize(id = nil, name = nil, archived = nil, releaseDate = nil, released = nil, sequence = nil)
135
+ @id = id
136
+ @name = name
137
+ @archived = archived
138
+ @releaseDate = releaseDate
139
+ @released = released
140
+ @sequence = sequence
141
+ end
142
+ end
143
+
144
+ # {http://beans.soap.rpc.jira.atlassian.com}RemoteComponent
145
+ # id - SOAP::SOAPString
146
+ # name - SOAP::SOAPString
147
+ class RemoteComponent < AbstractNamedRemoteEntity
148
+ attr_accessor :id
149
+ attr_accessor :name
150
+
151
+ def initialize(id = nil, name = nil)
152
+ @id = id
153
+ @name = name
154
+ end
155
+ end
156
+
157
+ # {http://beans.soap.rpc.jira.atlassian.com}RemoteNamedObject
158
+ # id - SOAP::SOAPString
159
+ # name - SOAP::SOAPString
160
+ class RemoteNamedObject < AbstractNamedRemoteEntity
161
+ attr_accessor :id
162
+ attr_accessor :name
163
+
164
+ def initialize(id = nil, name = nil)
165
+ @id = id
166
+ @name = name
167
+ end
168
+ end
169
+
170
+ # {http://beans.soap.rpc.jira.atlassian.com}RemoteProject
171
+ # id - SOAP::SOAPString
172
+ # name - SOAP::SOAPString
173
+ # description - SOAP::SOAPString
174
+ # issueSecurityScheme - Jira4R::V2::RemoteScheme
175
+ # key - SOAP::SOAPString
176
+ # lead - SOAP::SOAPString
177
+ # notificationScheme - Jira4R::V2::RemoteScheme
178
+ # permissionScheme - Jira4R::V2::RemotePermissionScheme
179
+ # projectUrl - SOAP::SOAPString
180
+ # url - SOAP::SOAPString
181
+ class RemoteProject < AbstractNamedRemoteEntity
182
+ attr_accessor :id
183
+ attr_accessor :name
184
+ attr_accessor :description
185
+ attr_accessor :issueSecurityScheme
186
+ attr_accessor :key
187
+ attr_accessor :lead
188
+ attr_accessor :notificationScheme
189
+ attr_accessor :permissionScheme
190
+ attr_accessor :projectUrl
191
+ attr_accessor :url
192
+
193
+ def initialize(id = nil, name = nil, description = nil, issueSecurityScheme = nil, key = nil, lead = nil, notificationScheme = nil, permissionScheme = nil, projectUrl = nil, url = nil)
194
+ @id = id
195
+ @name = name
196
+ @description = description
197
+ @issueSecurityScheme = issueSecurityScheme
198
+ @key = key
199
+ @lead = lead
200
+ @notificationScheme = notificationScheme
201
+ @permissionScheme = permissionScheme
202
+ @projectUrl = projectUrl
203
+ @url = url
204
+ end
205
+ end
206
+
207
+ # {http://beans.soap.rpc.jira.atlassian.com}AbstractRemoteConstant
208
+ # abstract
209
+ # id - SOAP::SOAPString
210
+ # name - SOAP::SOAPString
211
+ # description - SOAP::SOAPString
212
+ # icon - SOAP::SOAPString
213
+ class AbstractRemoteConstant < AbstractNamedRemoteEntity
214
+ attr_accessor :id
215
+ attr_accessor :name
216
+ attr_accessor :description
217
+ attr_accessor :icon
218
+
219
+ def initialize(id = nil, name = nil, description = nil, icon = nil)
220
+ @id = id
221
+ @name = name
222
+ @description = description
223
+ @icon = icon
224
+ end
225
+ end
226
+
227
+ # {http://beans.soap.rpc.jira.atlassian.com}RemotePriority
228
+ # id - SOAP::SOAPString
229
+ # name - SOAP::SOAPString
230
+ # description - SOAP::SOAPString
231
+ # icon - SOAP::SOAPString
232
+ # color - SOAP::SOAPString
233
+ class RemotePriority < AbstractRemoteConstant
234
+ attr_accessor :id
235
+ attr_accessor :name
236
+ attr_accessor :description
237
+ attr_accessor :icon
238
+ attr_accessor :color
239
+
240
+ def initialize(id = nil, name = nil, description = nil, icon = nil, color = nil)
241
+ @id = id
242
+ @name = name
243
+ @description = description
244
+ @icon = icon
245
+ @color = color
246
+ end
247
+ end
248
+
249
+ # {http://beans.soap.rpc.jira.atlassian.com}RemoteResolution
250
+ # id - SOAP::SOAPString
251
+ # name - SOAP::SOAPString
252
+ # description - SOAP::SOAPString
253
+ # icon - SOAP::SOAPString
254
+ class RemoteResolution < AbstractRemoteConstant
255
+ attr_accessor :id
256
+ attr_accessor :name
257
+ attr_accessor :description
258
+ attr_accessor :icon
259
+
260
+ def initialize(id = nil, name = nil, description = nil, icon = nil)
261
+ @id = id
262
+ @name = name
263
+ @description = description
264
+ @icon = icon
265
+ end
266
+ end
267
+
268
+ # {http://beans.soap.rpc.jira.atlassian.com}RemoteIssueType
269
+ # id - SOAP::SOAPString
270
+ # name - SOAP::SOAPString
271
+ # description - SOAP::SOAPString
272
+ # icon - SOAP::SOAPString
273
+ # subTask - SOAP::SOAPBoolean
274
+ class RemoteIssueType < AbstractRemoteConstant
275
+ attr_accessor :id
276
+ attr_accessor :name
277
+ attr_accessor :description
278
+ attr_accessor :icon
279
+ attr_accessor :subTask
280
+
281
+ def initialize(id = nil, name = nil, description = nil, icon = nil, subTask = nil)
282
+ @id = id
283
+ @name = name
284
+ @description = description
285
+ @icon = icon
286
+ @subTask = subTask
287
+ end
288
+ end
289
+
290
+ # {http://beans.soap.rpc.jira.atlassian.com}RemoteStatus
291
+ # id - SOAP::SOAPString
292
+ # name - SOAP::SOAPString
293
+ # description - SOAP::SOAPString
294
+ # icon - SOAP::SOAPString
295
+ class RemoteStatus < AbstractRemoteConstant
296
+ attr_accessor :id
297
+ attr_accessor :name
298
+ attr_accessor :description
299
+ attr_accessor :icon
300
+
301
+ def initialize(id = nil, name = nil, description = nil, icon = nil)
302
+ @id = id
303
+ @name = name
304
+ @description = description
305
+ @icon = icon
306
+ end
307
+ end
308
+
309
+ # {http://beans.soap.rpc.jira.atlassian.com}RemoteField
310
+ # id - SOAP::SOAPString
311
+ # name - SOAP::SOAPString
312
+ class RemoteField < AbstractNamedRemoteEntity
313
+ attr_accessor :id
314
+ attr_accessor :name
315
+
316
+ def initialize(id = nil, name = nil)
317
+ @id = id
318
+ @name = name
319
+ end
320
+ end
321
+
322
+ # {http://beans.soap.rpc.jira.atlassian.com}RemoteFilter
323
+ # id - SOAP::SOAPString
324
+ # name - SOAP::SOAPString
325
+ # author - SOAP::SOAPString
326
+ # description - SOAP::SOAPString
327
+ # project - SOAP::SOAPString
328
+ # xml - SOAP::SOAPString
329
+ class RemoteFilter < AbstractNamedRemoteEntity
330
+ attr_accessor :id
331
+ attr_accessor :name
332
+ attr_accessor :author
333
+ attr_accessor :description
334
+ attr_accessor :project
335
+ attr_accessor :xml
336
+
337
+ def initialize(id = nil, name = nil, author = nil, description = nil, project = nil, xml = nil)
338
+ @id = id
339
+ @name = name
340
+ @author = author
341
+ @description = description
342
+ @project = project
343
+ @xml = xml
344
+ end
345
+ end
346
+
347
+ # {http://beans.soap.rpc.jira.atlassian.com}RemoteIssue
348
+ # id - SOAP::SOAPString
349
+ # affectsVersions - Jira4R::V2::ArrayOf_tns1_RemoteVersion
350
+ # assignee - SOAP::SOAPString
351
+ # attachmentNames - Jira4R::V2::ArrayOf_xsd_string
352
+ # components - Jira4R::V2::ArrayOf_tns1_RemoteComponent
353
+ # created - SOAP::SOAPDateTime
354
+ # customFieldValues - Jira4R::V2::ArrayOf_tns1_RemoteCustomFieldValue
355
+ # description - SOAP::SOAPString
356
+ # duedate - SOAP::SOAPDateTime
357
+ # environment - SOAP::SOAPString
358
+ # fixVersions - Jira4R::V2::ArrayOf_tns1_RemoteVersion
359
+ # key - SOAP::SOAPString
360
+ # priority - SOAP::SOAPString
361
+ # project - SOAP::SOAPString
362
+ # reporter - SOAP::SOAPString
363
+ # resolution - SOAP::SOAPString
364
+ # status - SOAP::SOAPString
365
+ # summary - SOAP::SOAPString
366
+ # type - SOAP::SOAPString
367
+ # updated - SOAP::SOAPDateTime
368
+ # votes - SOAP::SOAPLong
369
+ class RemoteIssue < AbstractRemoteEntity
370
+ attr_accessor :id
371
+ attr_accessor :affectsVersions
372
+ attr_accessor :assignee
373
+ attr_accessor :attachmentNames
374
+ attr_accessor :components
375
+ attr_accessor :created
376
+ attr_accessor :customFieldValues
377
+ attr_accessor :description
378
+ attr_accessor :duedate
379
+ attr_accessor :environment
380
+ attr_accessor :fixVersions
381
+ attr_accessor :key
382
+ attr_accessor :priority
383
+ attr_accessor :project
384
+ attr_accessor :reporter
385
+ attr_accessor :resolution
386
+ attr_accessor :status
387
+ attr_accessor :summary
388
+ attr_accessor :type
389
+ attr_accessor :updated
390
+ attr_accessor :votes
391
+
392
+ def initialize(id = nil, affectsVersions = nil, assignee = nil, attachmentNames = nil, components = nil, created = nil, customFieldValues = nil, description = nil, duedate = nil, environment = nil, fixVersions = nil, key = nil, priority = nil, project = nil, reporter = nil, resolution = nil, status = nil, summary = nil, type = nil, updated = nil, votes = nil)
393
+ @id = id
394
+ @affectsVersions = affectsVersions
395
+ @assignee = assignee
396
+ @attachmentNames = attachmentNames
397
+ @components = components
398
+ @created = created
399
+ @customFieldValues = customFieldValues
400
+ @description = description
401
+ @duedate = duedate
402
+ @environment = environment
403
+ @fixVersions = fixVersions
404
+ @key = key
405
+ @priority = priority
406
+ @project = project
407
+ @reporter = reporter
408
+ @resolution = resolution
409
+ @status = status
410
+ @summary = summary
411
+ @type = type
412
+ @updated = updated
413
+ @votes = votes
414
+ end
415
+ end
416
+
417
+ # {http://beans.soap.rpc.jira.atlassian.com}RemoteAttachment
418
+ # id - SOAP::SOAPString
419
+ # author - SOAP::SOAPString
420
+ # created - SOAP::SOAPDateTime
421
+ # filename - SOAP::SOAPString
422
+ # filesize - SOAP::SOAPLong
423
+ # mimetype - SOAP::SOAPString
424
+ class RemoteAttachment < AbstractRemoteEntity
425
+ attr_accessor :id
426
+ attr_accessor :author
427
+ attr_accessor :created
428
+ attr_accessor :filename
429
+ attr_accessor :filesize
430
+ attr_accessor :mimetype
431
+
432
+ def initialize(id = nil, author = nil, created = nil, filename = nil, filesize = nil, mimetype = nil)
433
+ @id = id
434
+ @author = author
435
+ @created = created
436
+ @filename = filename
437
+ @filesize = filesize
438
+ @mimetype = mimetype
439
+ end
440
+ end
441
+
442
+ # {http://beans.soap.rpc.jira.atlassian.com}RemoteCustomFieldValue
443
+ # customfieldId - SOAP::SOAPString
444
+ # key - SOAP::SOAPString
445
+ # values - Jira4R::V2::ArrayOf_xsd_string
446
+ class RemoteCustomFieldValue
447
+ attr_accessor :customfieldId
448
+ attr_accessor :key
449
+ attr_accessor :values
450
+
451
+ def initialize(customfieldId = nil, key = nil, values = nil)
452
+ @customfieldId = customfieldId
453
+ @key = key
454
+ @values = values
455
+ end
456
+ end
457
+
458
+ # {http://beans.soap.rpc.jira.atlassian.com}RemoteScheme
459
+ # description - SOAP::SOAPString
460
+ # id - SOAP::SOAPLong
461
+ # name - SOAP::SOAPString
462
+ # type - SOAP::SOAPString
463
+ class RemoteScheme
464
+ attr_accessor :description
465
+ attr_accessor :id
466
+ attr_accessor :name
467
+ attr_accessor :type
468
+
469
+ def initialize(description = nil, id = nil, name = nil, type = nil)
470
+ @description = description
471
+ @id = id
472
+ @name = name
473
+ @type = type
474
+ end
475
+ end
476
+
477
+ # {http://beans.soap.rpc.jira.atlassian.com}RemotePermissionScheme
478
+ # description - SOAP::SOAPString
479
+ # id - SOAP::SOAPLong
480
+ # name - SOAP::SOAPString
481
+ # type - SOAP::SOAPString
482
+ # permissionMappings - Jira4R::V2::ArrayOf_tns1_RemotePermissionMapping
483
+ class RemotePermissionScheme < RemoteScheme
484
+ attr_accessor :description
485
+ attr_accessor :id
486
+ attr_accessor :name
487
+ attr_accessor :type
488
+ attr_accessor :permissionMappings
489
+
490
+ def initialize(description = nil, id = nil, name = nil, type = nil, permissionMappings = nil)
491
+ @description = description
492
+ @id = id
493
+ @name = name
494
+ @type = type
495
+ @permissionMappings = permissionMappings
496
+ end
497
+ end
498
+
499
+ # {http://beans.soap.rpc.jira.atlassian.com}RemotePermission
500
+ # name - SOAP::SOAPString
501
+ # permission - SOAP::SOAPLong
502
+ class RemotePermission
503
+ attr_accessor :name
504
+ attr_accessor :permission
505
+
506
+ def initialize(name = nil, permission = nil)
507
+ @name = name
508
+ @permission = permission
509
+ end
510
+ end
511
+
512
+ # {http://beans.soap.rpc.jira.atlassian.com}RemotePermissionMapping
513
+ # permission - Jira4R::V2::RemotePermission
514
+ # remoteEntities - Jira4R::V2::ArrayOf_tns1_RemoteEntity
515
+ class RemotePermissionMapping
516
+ attr_accessor :permission
517
+ attr_accessor :remoteEntities
518
+
519
+ def initialize(permission = nil, remoteEntities = nil)
520
+ @permission = permission
521
+ @remoteEntities = remoteEntities
522
+ end
523
+ end
524
+
525
+ # {http://beans.soap.rpc.jira.atlassian.com}RemoteFieldValue
526
+ # id - SOAP::SOAPString
527
+ # values - Jira4R::V2::ArrayOf_xsd_string
528
+ class RemoteFieldValue
529
+ attr_accessor :id
530
+ attr_accessor :values
531
+
532
+ def initialize(id = nil, values = nil)
533
+ @id = id
534
+ @values = values
535
+ end
536
+ end
537
+
538
+ # {http://beans.soap.rpc.jira.atlassian.com}RemoteConfiguration
539
+ # allowAttachments - SOAP::SOAPBoolean
540
+ # allowExternalUserManagment - SOAP::SOAPBoolean
541
+ # allowIssueLinking - SOAP::SOAPBoolean
542
+ # allowSubTasks - SOAP::SOAPBoolean
543
+ # allowTimeTracking - SOAP::SOAPBoolean
544
+ # allowUnassignedIssues - SOAP::SOAPBoolean
545
+ # allowVoting - SOAP::SOAPBoolean
546
+ # allowWatching - SOAP::SOAPBoolean
547
+ # timeTrackingDaysPerWeek - SOAP::SOAPInt
548
+ # timeTrackingHoursPerDay - SOAP::SOAPInt
549
+ class RemoteConfiguration
550
+ attr_accessor :allowAttachments
551
+ attr_accessor :allowExternalUserManagment
552
+ attr_accessor :allowIssueLinking
553
+ attr_accessor :allowSubTasks
554
+ attr_accessor :allowTimeTracking
555
+ attr_accessor :allowUnassignedIssues
556
+ attr_accessor :allowVoting
557
+ attr_accessor :allowWatching
558
+ attr_accessor :timeTrackingDaysPerWeek
559
+ attr_accessor :timeTrackingHoursPerDay
560
+
561
+ def initialize(allowAttachments = nil, allowExternalUserManagment = nil, allowIssueLinking = nil, allowSubTasks = nil, allowTimeTracking = nil, allowUnassignedIssues = nil, allowVoting = nil, allowWatching = nil, timeTrackingDaysPerWeek = nil, timeTrackingHoursPerDay = nil)
562
+ @allowAttachments = allowAttachments
563
+ @allowExternalUserManagment = allowExternalUserManagment
564
+ @allowIssueLinking = allowIssueLinking
565
+ @allowSubTasks = allowSubTasks
566
+ @allowTimeTracking = allowTimeTracking
567
+ @allowUnassignedIssues = allowUnassignedIssues
568
+ @allowVoting = allowVoting
569
+ @allowWatching = allowWatching
570
+ @timeTrackingDaysPerWeek = timeTrackingDaysPerWeek
571
+ @timeTrackingHoursPerDay = timeTrackingHoursPerDay
572
+ end
573
+ end
574
+
575
+ # {http://beans.soap.rpc.jira.atlassian.com}RemoteProjectRole
576
+ # description - SOAP::SOAPString
577
+ # id - SOAP::SOAPLong
578
+ # name - SOAP::SOAPString
579
+ class RemoteProjectRole
580
+ attr_accessor :description
581
+ attr_accessor :id
582
+ attr_accessor :name
583
+
584
+ def initialize(description = nil, id = nil, name = nil)
585
+ @description = description
586
+ @id = id
587
+ @name = name
588
+ end
589
+ end
590
+
591
+ # {http://beans.soap.rpc.jira.atlassian.com}RemoteRoleActor
592
+ # descriptor - SOAP::SOAPString
593
+ # parameter - SOAP::SOAPString
594
+ # projectRole - Jira4R::V2::RemoteProjectRole
595
+ # type - SOAP::SOAPString
596
+ # users - Jira4R::V2::ArrayOf_tns1_RemoteUser
597
+ class RemoteRoleActor
598
+ attr_accessor :descriptor
599
+ attr_accessor :parameter
600
+ attr_accessor :projectRole
601
+ attr_accessor :type
602
+ attr_accessor :users
603
+
604
+ def initialize(descriptor = nil, parameter = nil, projectRole = nil, type = nil, users = nil)
605
+ @descriptor = descriptor
606
+ @parameter = parameter
607
+ @projectRole = projectRole
608
+ @type = type
609
+ @users = users
610
+ end
611
+ end
612
+
613
+ # {http://beans.soap.rpc.jira.atlassian.com}RemoteRoleActors
614
+ # projectRole - Jira4R::V2::RemoteProjectRole
615
+ # roleActors - Jira4R::V2::ArrayOf_tns1_RemoteRoleActor
616
+ # users - Jira4R::V2::ArrayOf_tns1_RemoteUser
617
+ class RemoteRoleActors
618
+ attr_accessor :projectRole
619
+ attr_accessor :roleActors
620
+ attr_accessor :users
621
+
622
+ def initialize(projectRole = nil, roleActors = nil, users = nil)
623
+ @projectRole = projectRole
624
+ @roleActors = roleActors
625
+ @users = users
626
+ end
627
+ end
628
+
629
+ # {http://beans.soap.rpc.jira.atlassian.com}RemoteProjectRoleActors
630
+ # projectRole - Jira4R::V2::RemoteProjectRole
631
+ # roleActors - Jira4R::V2::ArrayOf_tns1_RemoteRoleActor
632
+ # users - Jira4R::V2::ArrayOf_tns1_RemoteUser
633
+ # project - Jira4R::V2::RemoteProject
634
+ class RemoteProjectRoleActors < RemoteRoleActors
635
+ attr_accessor :projectRole
636
+ attr_accessor :roleActors
637
+ attr_accessor :users
638
+ attr_accessor :project
639
+
640
+ def initialize(projectRole = nil, roleActors = nil, users = nil, project = nil)
641
+ @projectRole = projectRole
642
+ @roleActors = roleActors
643
+ @users = users
644
+ @project = project
645
+ end
646
+ end
647
+
648
+ # {http://beans.soap.rpc.jira.atlassian.com}RemoteWorklog
649
+ # author - SOAP::SOAPString
650
+ # comment - SOAP::SOAPString
651
+ # created - SOAP::SOAPDateTime
652
+ # groupLevel - SOAP::SOAPString
653
+ # id - SOAP::SOAPString
654
+ # roleLevelId - SOAP::SOAPString
655
+ # startDate - SOAP::SOAPDateTime
656
+ # timeSpent - SOAP::SOAPString
657
+ # timeSpentInSeconds - SOAP::SOAPLong
658
+ # updateAuthor - SOAP::SOAPString
659
+ # updated - SOAP::SOAPDateTime
660
+ class RemoteWorklog
661
+ attr_accessor :author
662
+ attr_accessor :comment
663
+ attr_accessor :created
664
+ attr_accessor :groupLevel
665
+ attr_accessor :id
666
+ attr_accessor :roleLevelId
667
+ attr_accessor :startDate
668
+ attr_accessor :timeSpent
669
+ attr_accessor :timeSpentInSeconds
670
+ attr_accessor :updateAuthor
671
+ attr_accessor :updated
672
+
673
+ def initialize(author = nil, comment = nil, created = nil, groupLevel = nil, id = nil, roleLevelId = nil, startDate = nil, timeSpent = nil, timeSpentInSeconds = nil, updateAuthor = nil, updated = nil)
674
+ @author = author
675
+ @comment = comment
676
+ @created = created
677
+ @groupLevel = groupLevel
678
+ @id = id
679
+ @roleLevelId = roleLevelId
680
+ @startDate = startDate
681
+ @timeSpent = timeSpent
682
+ @timeSpentInSeconds = timeSpentInSeconds
683
+ @updateAuthor = updateAuthor
684
+ @updated = updated
685
+ end
686
+ end
687
+
688
+ # {http://exception.rpc.jira.atlassian.com}RemoteException
689
+ class RemoteException < ::StandardError
690
+ def initialize
691
+ end
692
+ end
693
+
694
+ # {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
695
+ class RemoteAuthenticationException < ::StandardError
696
+ def initialize
697
+ end
698
+ end
699
+
700
+ # {http://exception.rpc.jira.atlassian.com}RemoteValidationException
701
+ class RemoteValidationException < ::StandardError
702
+ def initialize
703
+ end
704
+ end
705
+
706
+ # {http://exception.rpc.jira.atlassian.com}RemotePermissionException
707
+ class RemotePermissionException < ::StandardError
708
+ def initialize
709
+ end
710
+ end
711
+
712
+ # {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteUser
713
+ class ArrayOf_tns1_RemoteUser < ::Array
714
+ end
715
+
716
+ # {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteVersion
717
+ class ArrayOf_tns1_RemoteVersion < ::Array
718
+ end
719
+
720
+ # {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_xsd_string
721
+ class ArrayOf_xsd_string < ::Array
722
+ end
723
+
724
+ # {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteComponent
725
+ class ArrayOf_tns1_RemoteComponent < ::Array
726
+ end
727
+
728
+ # {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteCustomFieldValue
729
+ class ArrayOf_tns1_RemoteCustomFieldValue < ::Array
730
+ end
731
+
732
+ # {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteNamedObject
733
+ class ArrayOf_tns1_RemoteNamedObject < ::Array
734
+ end
735
+
736
+ # {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteEntity
737
+ class ArrayOf_tns1_RemoteEntity < ::Array
738
+ end
739
+
740
+ # {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemotePermissionMapping
741
+ class ArrayOf_tns1_RemotePermissionMapping < ::Array
742
+ end
743
+
744
+ # {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteProject
745
+ class ArrayOf_tns1_RemoteProject < ::Array
746
+ end
747
+
748
+ # {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteFieldValue
749
+ class ArrayOf_tns1_RemoteFieldValue < ::Array
750
+ end
751
+
752
+ # {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemotePriority
753
+ class ArrayOf_tns1_RemotePriority < ::Array
754
+ end
755
+
756
+ # {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteResolution
757
+ class ArrayOf_tns1_RemoteResolution < ::Array
758
+ end
759
+
760
+ # {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteIssueType
761
+ class ArrayOf_tns1_RemoteIssueType < ::Array
762
+ end
763
+
764
+ # {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteStatus
765
+ class ArrayOf_tns1_RemoteStatus < ::Array
766
+ end
767
+
768
+ # {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteProjectRole
769
+ class ArrayOf_tns1_RemoteProjectRole < ::Array
770
+ end
771
+
772
+ # {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteRoleActor
773
+ class ArrayOf_tns1_RemoteRoleActor < ::Array
774
+ end
775
+
776
+ # {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteScheme
777
+ class ArrayOf_tns1_RemoteScheme < ::Array
778
+ end
779
+
780
+ # {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteField
781
+ class ArrayOf_tns1_RemoteField < ::Array
782
+ end
783
+
784
+ # {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteFilter
785
+ class ArrayOf_tns1_RemoteFilter < ::Array
786
+ end
787
+
788
+ # {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteComment
789
+ class ArrayOf_tns1_RemoteComment < ::Array
790
+ end
791
+
792
+ # {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_xsd_base64Binary
793
+ class ArrayOf_xsd_base64Binary < ::Array
794
+ end
795
+
796
+ # {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteAttachment
797
+ class ArrayOf_tns1_RemoteAttachment < ::Array
798
+ end
799
+
800
+ # {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteWorklog
801
+ class ArrayOf_tns1_RemoteWorklog < ::Array
802
+ end
803
+
804
+ # {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemotePermissionScheme
805
+ class ArrayOf_tns1_RemotePermissionScheme < ::Array
806
+ end
807
+
808
+ # {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemotePermission
809
+ class ArrayOf_tns1_RemotePermission < ::Array
810
+ end
811
+
812
+ # {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteIssue
813
+ class ArrayOf_tns1_RemoteIssue < ::Array
814
+ end
815
+
816
+
817
+ end; end