jira4r-jh 0.4.0

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