sysaid 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,118 @@
1
+ #!/usr/bin/env ruby
2
+ require 'SysaidApiServiceServiceDriver.rb'
3
+
4
+ endpoint_url = ARGV.shift
5
+ obj = SysaidApiService.new(endpoint_url)
6
+
7
+ # run ruby with -d to see SOAP wiredumps.
8
+ obj.wiredump_dev = STDERR if $DEBUG
9
+
10
+ # SYNOPSIS
11
+ # save(parameters)
12
+ #
13
+ # ARGS
14
+ # parameters Save - {http://api.ilient.com/}save
15
+ #
16
+ # RETURNS
17
+ # parameters SaveResponse - {http://api.ilient.com/}saveResponse
18
+ #
19
+ parameters = nil
20
+ puts obj.save(parameters)
21
+
22
+ # SYNOPSIS
23
+ # delete(parameters)
24
+ #
25
+ # ARGS
26
+ # parameters Delete - {http://api.ilient.com/}delete
27
+ #
28
+ # RETURNS
29
+ # parameters DeleteResponse - {http://api.ilient.com/}deleteResponse
30
+ #
31
+ parameters = nil
32
+ puts obj.delete(parameters)
33
+
34
+ # SYNOPSIS
35
+ # login(parameters)
36
+ #
37
+ # ARGS
38
+ # parameters Login - {http://api.ilient.com/}login
39
+ #
40
+ # RETURNS
41
+ # parameters LoginResponse - {http://api.ilient.com/}loginResponse
42
+ #
43
+ parameters = nil
44
+ puts obj.login(parameters)
45
+
46
+ # SYNOPSIS
47
+ # logout(parameters)
48
+ #
49
+ # ARGS
50
+ # parameters Logout - {http://api.ilient.com/}logout
51
+ #
52
+ # RETURNS
53
+ # parameters LogoutResponse - {http://api.ilient.com/}logoutResponse
54
+ #
55
+ parameters = nil
56
+ puts obj.logout(parameters)
57
+
58
+ # SYNOPSIS
59
+ # loadById(parameters)
60
+ #
61
+ # ARGS
62
+ # parameters LoadById - {http://api.ilient.com/}loadById
63
+ #
64
+ # RETURNS
65
+ # parameters LoadByIdResponse - {http://api.ilient.com/}loadByIdResponse
66
+ #
67
+ parameters = nil
68
+ puts obj.loadById(parameters)
69
+
70
+ # SYNOPSIS
71
+ # executeApiSysAidObjectAction(parameters)
72
+ #
73
+ # ARGS
74
+ # parameters ExecuteApiSysAidObjectAction - {http://api.ilient.com/}executeApiSysAidObjectAction
75
+ #
76
+ # RETURNS
77
+ # parameters ExecuteApiSysAidObjectActionResponse - {http://api.ilient.com/}executeApiSysAidObjectActionResponse
78
+ #
79
+ parameters = nil
80
+ puts obj.executeApiSysAidObjectAction(parameters)
81
+
82
+ # SYNOPSIS
83
+ # executeSelectQuery(parameters)
84
+ #
85
+ # ARGS
86
+ # parameters ExecuteSelectQuery - {http://api.ilient.com/}executeSelectQuery
87
+ #
88
+ # RETURNS
89
+ # parameters ExecuteSelectQueryResponse - {http://api.ilient.com/}executeSelectQueryResponse
90
+ #
91
+ parameters = nil
92
+ puts obj.executeSelectQuery(parameters)
93
+
94
+ # SYNOPSIS
95
+ # getApiSysAidObjectActions(parameters)
96
+ #
97
+ # ARGS
98
+ # parameters GetApiSysAidObjectActions - {http://api.ilient.com/}getApiSysAidObjectActions
99
+ #
100
+ # RETURNS
101
+ # parameters GetApiSysAidObjectActionsResponse - {http://api.ilient.com/}getApiSysAidObjectActionsResponse
102
+ #
103
+ parameters = nil
104
+ puts obj.getApiSysAidObjectActions(parameters)
105
+
106
+ # SYNOPSIS
107
+ # loadByStringId(parameters)
108
+ #
109
+ # ARGS
110
+ # parameters LoadByStringId - {http://api.ilient.com/}loadByStringId
111
+ #
112
+ # RETURNS
113
+ # parameters LoadByStringIdResponse - {http://api.ilient.com/}loadByStringIdResponse
114
+ #
115
+ parameters = nil
116
+ puts obj.loadByStringId(parameters)
117
+
118
+
@@ -0,0 +1,111 @@
1
+ load 'sysaid/driver/SysaidApiServiceService.rb'
2
+ load 'sysaid/driver/SysaidApiServiceServiceMappingRegistry.rb'
3
+ require 'soap/rpc/driver'
4
+
5
+ class SysaidApiService < ::SOAP::RPC::Driver
6
+ DefaultEndpointUrl = ""
7
+
8
+ Methods = [
9
+ [ "",
10
+ "save",
11
+ [ [:in, "parameters", ["::SOAP::SOAPElement", "http://api.ilient.com/", "save"]],
12
+ [:out, "parameters", ["::SOAP::SOAPElement", "http://api.ilient.com/", "saveResponse"]] ],
13
+ { :request_style => :document, :request_use => :literal,
14
+ :response_style => :document, :response_use => :literal,
15
+ :faults => {} }
16
+ ],
17
+ [ "",
18
+ "delete",
19
+ [ [:in, "parameters", ["::SOAP::SOAPElement", "http://api.ilient.com/", "delete"]],
20
+ [:out, "parameters", ["::SOAP::SOAPElement", "http://api.ilient.com/", "deleteResponse"]] ],
21
+ { :request_style => :document, :request_use => :literal,
22
+ :response_style => :document, :response_use => :literal,
23
+ :faults => {} }
24
+ ],
25
+ [ "",
26
+ "login",
27
+ [ [:in, "parameters", ["::SOAP::SOAPElement", "http://api.ilient.com/", "login"]],
28
+ [:out, "parameters", ["::SOAP::SOAPElement", "http://api.ilient.com/", "loginResponse"]] ],
29
+ { :request_style => :document, :request_use => :literal,
30
+ :response_style => :document, :response_use => :literal,
31
+ :faults => {} }
32
+ ],
33
+ [ "",
34
+ "logout",
35
+ [ [:in, "parameters", ["::SOAP::SOAPElement", "http://api.ilient.com/", "logout"]],
36
+ [:out, "parameters", ["::SOAP::SOAPElement", "http://api.ilient.com/", "logoutResponse"]] ],
37
+ { :request_style => :document, :request_use => :literal,
38
+ :response_style => :document, :response_use => :literal,
39
+ :faults => {} }
40
+ ],
41
+ [ "",
42
+ "loadById",
43
+ [ [:in, "parameters", ["::SOAP::SOAPElement", "http://api.ilient.com/", "loadById"]],
44
+ [:out, "parameters", ["::SOAP::SOAPElement", "http://api.ilient.com/", "loadByIdResponse"]] ],
45
+ { :request_style => :document, :request_use => :literal,
46
+ :response_style => :document, :response_use => :literal,
47
+ :faults => {} }
48
+ ],
49
+ [ "",
50
+ "executeApiSysAidObjectAction",
51
+ [ [:in, "parameters", ["::SOAP::SOAPElement", "http://api.ilient.com/", "executeApiSysAidObjectAction"]],
52
+ [:out, "parameters", ["::SOAP::SOAPElement", "http://api.ilient.com/", "executeApiSysAidObjectActionResponse"]] ],
53
+ { :request_style => :document, :request_use => :literal,
54
+ :response_style => :document, :response_use => :literal,
55
+ :faults => {} }
56
+ ],
57
+ [ "",
58
+ "executeSelectQuery",
59
+ [ [:in, "parameters", ["::SOAP::SOAPElement", "http://api.ilient.com/", "executeSelectQuery"]],
60
+ [:out, "parameters", ["::SOAP::SOAPElement", "http://api.ilient.com/", "executeSelectQueryResponse"]] ],
61
+ { :request_style => :document, :request_use => :literal,
62
+ :response_style => :document, :response_use => :literal,
63
+ :faults => {} }
64
+ ],
65
+ [ "",
66
+ "getApiSysAidObjectActions",
67
+ [ [:in, "parameters", ["::SOAP::SOAPElement", "http://api.ilient.com/", "getApiSysAidObjectActions"]],
68
+ [:out, "parameters", ["::SOAP::SOAPElement", "http://api.ilient.com/", "getApiSysAidObjectActionsResponse"]] ],
69
+ { :request_style => :document, :request_use => :literal,
70
+ :response_style => :document, :response_use => :literal,
71
+ :faults => {} }
72
+ ],
73
+ [ "",
74
+ "loadByStringId",
75
+ [ [:in, "parameters", ["::SOAP::SOAPElement", "http://api.ilient.com/", "loadByStringId"]],
76
+ [:out, "parameters", ["::SOAP::SOAPElement", "http://api.ilient.com/", "loadByStringIdResponse"]] ],
77
+ { :request_style => :document, :request_use => :literal,
78
+ :response_style => :document, :response_use => :literal,
79
+ :faults => {} }
80
+ ]
81
+ ]
82
+
83
+ def initialize(endpoint_url = nil)
84
+ endpoint_url ||= DefaultEndpointUrl
85
+ super(endpoint_url, nil)
86
+ self.mapping_registry = SysaidApiServiceServiceMappingRegistry::EncodedRegistry
87
+ self.literal_mapping_registry = SysaidApiServiceServiceMappingRegistry::LiteralRegistry
88
+ init_methods
89
+ end
90
+
91
+ private
92
+
93
+ def init_methods
94
+ Methods.each do |definitions|
95
+ opt = definitions.last
96
+ if opt[:request_style] == :document
97
+ add_document_operation(*definitions)
98
+ else
99
+ add_rpc_operation(*definitions)
100
+ qname = definitions[0]
101
+ name = definitions[2]
102
+ if qname.name != name and qname.name.capitalize == name.capitalize
103
+ ::SOAP::Mapping.define_singleton_method(self, qname.name) do |*arg|
104
+ __send__(name, *arg)
105
+ end
106
+ end
107
+ end
108
+ end
109
+ end
110
+ end
111
+
@@ -0,0 +1,2262 @@
1
+ load 'sysaid/driver/SysaidApiServiceService.rb'
2
+ require 'soap/mapping'
3
+
4
+ module SysaidApiServiceServiceMappingRegistry
5
+ EncodedRegistry = ::SOAP::Mapping::EncodedRegistry.new
6
+ LiteralRegistry = ::SOAP::Mapping::LiteralRegistry.new
7
+ NsApiIlientCom = "http://api.ilient.com/"
8
+
9
+ EncodedRegistry.register(
10
+ :class => ApiCatalogItem,
11
+ :schema_type => XSD::QName.new(NsApiIlientCom, "apiCatalogItem"),
12
+ :schema_basetype => XSD::QName.new(NsApiIlientCom, "apiSysaidObject"),
13
+ :schema_element => [
14
+ ["cIId", ["SOAP::SOAPInt", XSD::QName.new(nil, "CIId")]],
15
+ ["catalogNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "catalogNumber")], [0, 1]],
16
+ ["custDate1", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate1")], [0, 1]],
17
+ ["custDate2", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate2")], [0, 1]],
18
+ ["manufacturer", ["SOAP::SOAPString", XSD::QName.new(nil, "manufacturer")], [0, 1]],
19
+ ["model", ["SOAP::SOAPString", XSD::QName.new(nil, "model")], [0, 1]],
20
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")], [0, 1]],
21
+ ["notes", ["SOAP::SOAPString", XSD::QName.new(nil, "notes")], [0, 1]],
22
+ ["supplierID", ["SOAP::SOAPInt", XSD::QName.new(nil, "supplierID")]],
23
+ ["version", ["SOAP::SOAPInt", XSD::QName.new(nil, "version")]]
24
+ ]
25
+ )
26
+
27
+ EncodedRegistry.register(
28
+ :class => ApiCI,
29
+ :schema_type => XSD::QName.new(NsApiIlientCom, "apiCI"),
30
+ :schema_basetype => XSD::QName.new(NsApiIlientCom, "apiSysaidObject"),
31
+ :schema_element => [
32
+ ["acceptDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "acceptDate")], [0, 1]],
33
+ ["category", ["SOAP::SOAPString", XSD::QName.new(nil, "category")], [0, 1]],
34
+ ["ciName", ["SOAP::SOAPString", XSD::QName.new(nil, "ciName")], [0, 1]],
35
+ ["ciSubType", ["SOAP::SOAPInt", XSD::QName.new(nil, "ciSubType")]],
36
+ ["ciType", ["SOAP::SOAPInt", XSD::QName.new(nil, "ciType")]],
37
+ ["company", ["SOAP::SOAPInt", XSD::QName.new(nil, "company")]],
38
+ ["custDateField1", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField1")], [0, 1]],
39
+ ["custDateField10", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField10")], [0, 1]],
40
+ ["custDateField11", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField11")], [0, 1]],
41
+ ["custDateField12", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField12")], [0, 1]],
42
+ ["custDateField13", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField13")], [0, 1]],
43
+ ["custDateField14", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField14")], [0, 1]],
44
+ ["custDateField15", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField15")], [0, 1]],
45
+ ["custDateField16", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField16")], [0, 1]],
46
+ ["custDateField17", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField17")], [0, 1]],
47
+ ["custDateField18", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField18")], [0, 1]],
48
+ ["custDateField19", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField19")], [0, 1]],
49
+ ["custDateField2", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField2")], [0, 1]],
50
+ ["custDateField20", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField20")], [0, 1]],
51
+ ["custDateField21", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField21")], [0, 1]],
52
+ ["custDateField22", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField22")], [0, 1]],
53
+ ["custDateField23", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField23")], [0, 1]],
54
+ ["custDateField24", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField24")], [0, 1]],
55
+ ["custDateField25", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField25")], [0, 1]],
56
+ ["custDateField26", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField26")], [0, 1]],
57
+ ["custDateField27", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField27")], [0, 1]],
58
+ ["custDateField28", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField28")], [0, 1]],
59
+ ["custDateField29", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField29")], [0, 1]],
60
+ ["custDateField3", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField3")], [0, 1]],
61
+ ["custDateField30", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField30")], [0, 1]],
62
+ ["custDateField31", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField31")], [0, 1]],
63
+ ["custDateField32", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField32")], [0, 1]],
64
+ ["custDateField33", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField33")], [0, 1]],
65
+ ["custDateField34", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField34")], [0, 1]],
66
+ ["custDateField35", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField35")], [0, 1]],
67
+ ["custDateField36", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField36")], [0, 1]],
68
+ ["custDateField37", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField37")], [0, 1]],
69
+ ["custDateField38", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField38")], [0, 1]],
70
+ ["custDateField39", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField39")], [0, 1]],
71
+ ["custDateField4", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField4")], [0, 1]],
72
+ ["custDateField40", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField40")], [0, 1]],
73
+ ["custDateField41", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField41")], [0, 1]],
74
+ ["custDateField42", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField42")], [0, 1]],
75
+ ["custDateField43", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField43")], [0, 1]],
76
+ ["custDateField44", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField44")], [0, 1]],
77
+ ["custDateField45", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField45")], [0, 1]],
78
+ ["custDateField46", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField46")], [0, 1]],
79
+ ["custDateField47", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField47")], [0, 1]],
80
+ ["custDateField48", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField48")], [0, 1]],
81
+ ["custDateField49", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField49")], [0, 1]],
82
+ ["custDateField5", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField5")], [0, 1]],
83
+ ["custDateField50", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField50")], [0, 1]],
84
+ ["custDateField6", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField6")], [0, 1]],
85
+ ["custDateField7", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField7")], [0, 1]],
86
+ ["custDateField8", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField8")], [0, 1]],
87
+ ["custDateField9", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField9")], [0, 1]],
88
+ ["custIntField1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField1")]],
89
+ ["custIntField10", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField10")]],
90
+ ["custIntField11", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField11")]],
91
+ ["custIntField12", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField12")]],
92
+ ["custIntField13", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField13")]],
93
+ ["custIntField14", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField14")]],
94
+ ["custIntField15", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField15")]],
95
+ ["custIntField16", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField16")]],
96
+ ["custIntField17", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField17")]],
97
+ ["custIntField18", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField18")]],
98
+ ["custIntField19", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField19")]],
99
+ ["custIntField2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField2")]],
100
+ ["custIntField20", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField20")]],
101
+ ["custIntField21", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField21")]],
102
+ ["custIntField22", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField22")]],
103
+ ["custIntField23", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField23")]],
104
+ ["custIntField24", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField24")]],
105
+ ["custIntField25", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField25")]],
106
+ ["custIntField26", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField26")]],
107
+ ["custIntField27", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField27")]],
108
+ ["custIntField28", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField28")]],
109
+ ["custIntField29", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField29")]],
110
+ ["custIntField3", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField3")]],
111
+ ["custIntField30", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField30")]],
112
+ ["custIntField31", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField31")]],
113
+ ["custIntField32", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField32")]],
114
+ ["custIntField33", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField33")]],
115
+ ["custIntField34", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField34")]],
116
+ ["custIntField35", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField35")]],
117
+ ["custIntField36", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField36")]],
118
+ ["custIntField37", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField37")]],
119
+ ["custIntField38", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField38")]],
120
+ ["custIntField39", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField39")]],
121
+ ["custIntField4", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField4")]],
122
+ ["custIntField40", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField40")]],
123
+ ["custIntField41", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField41")]],
124
+ ["custIntField42", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField42")]],
125
+ ["custIntField43", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField43")]],
126
+ ["custIntField44", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField44")]],
127
+ ["custIntField45", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField45")]],
128
+ ["custIntField46", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField46")]],
129
+ ["custIntField47", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField47")]],
130
+ ["custIntField48", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField48")]],
131
+ ["custIntField49", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField49")]],
132
+ ["custIntField5", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField5")]],
133
+ ["custIntField50", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField50")]],
134
+ ["custIntField6", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField6")]],
135
+ ["custIntField7", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField7")]],
136
+ ["custIntField8", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField8")]],
137
+ ["custIntField9", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField9")]],
138
+ ["custListField1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField1")]],
139
+ ["custListField10", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField10")]],
140
+ ["custListField11", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField11")]],
141
+ ["custListField12", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField12")]],
142
+ ["custListField13", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField13")]],
143
+ ["custListField14", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField14")]],
144
+ ["custListField15", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField15")]],
145
+ ["custListField16", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField16")]],
146
+ ["custListField17", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField17")]],
147
+ ["custListField18", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField18")]],
148
+ ["custListField19", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField19")]],
149
+ ["custListField2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField2")]],
150
+ ["custListField20", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField20")]],
151
+ ["custListField21", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField21")]],
152
+ ["custListField22", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField22")]],
153
+ ["custListField23", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField23")]],
154
+ ["custListField24", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField24")]],
155
+ ["custListField25", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField25")]],
156
+ ["custListField26", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField26")]],
157
+ ["custListField27", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField27")]],
158
+ ["custListField28", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField28")]],
159
+ ["custListField29", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField29")]],
160
+ ["custListField3", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField3")]],
161
+ ["custListField30", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField30")]],
162
+ ["custListField31", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField31")]],
163
+ ["custListField32", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField32")]],
164
+ ["custListField33", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField33")]],
165
+ ["custListField34", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField34")]],
166
+ ["custListField35", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField35")]],
167
+ ["custListField36", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField36")]],
168
+ ["custListField37", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField37")]],
169
+ ["custListField38", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField38")]],
170
+ ["custListField39", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField39")]],
171
+ ["custListField4", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField4")]],
172
+ ["custListField40", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField40")]],
173
+ ["custListField41", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField41")]],
174
+ ["custListField42", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField42")]],
175
+ ["custListField43", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField43")]],
176
+ ["custListField44", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField44")]],
177
+ ["custListField45", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField45")]],
178
+ ["custListField46", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField46")]],
179
+ ["custListField47", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField47")]],
180
+ ["custListField48", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField48")]],
181
+ ["custListField49", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField49")]],
182
+ ["custListField5", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField5")]],
183
+ ["custListField50", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField50")]],
184
+ ["custListField6", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField6")]],
185
+ ["custListField7", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField7")]],
186
+ ["custListField8", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField8")]],
187
+ ["custListField9", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField9")]],
188
+ ["custLongTextField1", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField1")], [0, 1]],
189
+ ["custLongTextField10", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField10")], [0, 1]],
190
+ ["custLongTextField11", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField11")], [0, 1]],
191
+ ["custLongTextField12", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField12")], [0, 1]],
192
+ ["custLongTextField13", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField13")], [0, 1]],
193
+ ["custLongTextField14", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField14")], [0, 1]],
194
+ ["custLongTextField15", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField15")], [0, 1]],
195
+ ["custLongTextField16", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField16")], [0, 1]],
196
+ ["custLongTextField17", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField17")], [0, 1]],
197
+ ["custLongTextField18", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField18")], [0, 1]],
198
+ ["custLongTextField19", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField19")], [0, 1]],
199
+ ["custLongTextField2", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField2")], [0, 1]],
200
+ ["custLongTextField20", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField20")], [0, 1]],
201
+ ["custLongTextField21", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField21")], [0, 1]],
202
+ ["custLongTextField22", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField22")], [0, 1]],
203
+ ["custLongTextField23", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField23")], [0, 1]],
204
+ ["custLongTextField24", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField24")], [0, 1]],
205
+ ["custLongTextField25", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField25")], [0, 1]],
206
+ ["custLongTextField26", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField26")], [0, 1]],
207
+ ["custLongTextField27", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField27")], [0, 1]],
208
+ ["custLongTextField28", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField28")], [0, 1]],
209
+ ["custLongTextField29", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField29")], [0, 1]],
210
+ ["custLongTextField3", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField3")], [0, 1]],
211
+ ["custLongTextField30", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField30")], [0, 1]],
212
+ ["custLongTextField31", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField31")], [0, 1]],
213
+ ["custLongTextField32", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField32")], [0, 1]],
214
+ ["custLongTextField33", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField33")], [0, 1]],
215
+ ["custLongTextField34", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField34")], [0, 1]],
216
+ ["custLongTextField35", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField35")], [0, 1]],
217
+ ["custLongTextField36", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField36")], [0, 1]],
218
+ ["custLongTextField37", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField37")], [0, 1]],
219
+ ["custLongTextField38", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField38")], [0, 1]],
220
+ ["custLongTextField39", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField39")], [0, 1]],
221
+ ["custLongTextField4", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField4")], [0, 1]],
222
+ ["custLongTextField40", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField40")], [0, 1]],
223
+ ["custLongTextField41", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField41")], [0, 1]],
224
+ ["custLongTextField42", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField42")], [0, 1]],
225
+ ["custLongTextField43", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField43")], [0, 1]],
226
+ ["custLongTextField44", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField44")], [0, 1]],
227
+ ["custLongTextField45", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField45")], [0, 1]],
228
+ ["custLongTextField46", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField46")], [0, 1]],
229
+ ["custLongTextField47", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField47")], [0, 1]],
230
+ ["custLongTextField48", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField48")], [0, 1]],
231
+ ["custLongTextField49", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField49")], [0, 1]],
232
+ ["custLongTextField5", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField5")], [0, 1]],
233
+ ["custLongTextField50", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField50")], [0, 1]],
234
+ ["custLongTextField6", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField6")], [0, 1]],
235
+ ["custLongTextField7", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField7")], [0, 1]],
236
+ ["custLongTextField8", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField8")], [0, 1]],
237
+ ["custLongTextField9", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField9")], [0, 1]],
238
+ ["custTextField1", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField1")], [0, 1]],
239
+ ["custTextField10", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField10")], [0, 1]],
240
+ ["custTextField11", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField11")], [0, 1]],
241
+ ["custTextField12", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField12")], [0, 1]],
242
+ ["custTextField13", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField13")], [0, 1]],
243
+ ["custTextField14", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField14")], [0, 1]],
244
+ ["custTextField15", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField15")], [0, 1]],
245
+ ["custTextField16", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField16")], [0, 1]],
246
+ ["custTextField17", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField17")], [0, 1]],
247
+ ["custTextField18", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField18")], [0, 1]],
248
+ ["custTextField19", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField19")], [0, 1]],
249
+ ["custTextField2", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField2")], [0, 1]],
250
+ ["custTextField20", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField20")], [0, 1]],
251
+ ["custTextField21", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField21")], [0, 1]],
252
+ ["custTextField22", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField22")], [0, 1]],
253
+ ["custTextField23", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField23")], [0, 1]],
254
+ ["custTextField24", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField24")], [0, 1]],
255
+ ["custTextField25", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField25")], [0, 1]],
256
+ ["custTextField26", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField26")], [0, 1]],
257
+ ["custTextField27", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField27")], [0, 1]],
258
+ ["custTextField28", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField28")], [0, 1]],
259
+ ["custTextField29", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField29")], [0, 1]],
260
+ ["custTextField3", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField3")], [0, 1]],
261
+ ["custTextField30", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField30")], [0, 1]],
262
+ ["custTextField31", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField31")], [0, 1]],
263
+ ["custTextField32", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField32")], [0, 1]],
264
+ ["custTextField33", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField33")], [0, 1]],
265
+ ["custTextField34", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField34")], [0, 1]],
266
+ ["custTextField35", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField35")], [0, 1]],
267
+ ["custTextField36", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField36")], [0, 1]],
268
+ ["custTextField37", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField37")], [0, 1]],
269
+ ["custTextField38", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField38")], [0, 1]],
270
+ ["custTextField39", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField39")], [0, 1]],
271
+ ["custTextField4", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField4")], [0, 1]],
272
+ ["custTextField40", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField40")], [0, 1]],
273
+ ["custTextField41", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField41")], [0, 1]],
274
+ ["custTextField42", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField42")], [0, 1]],
275
+ ["custTextField43", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField43")], [0, 1]],
276
+ ["custTextField44", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField44")], [0, 1]],
277
+ ["custTextField45", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField45")], [0, 1]],
278
+ ["custTextField46", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField46")], [0, 1]],
279
+ ["custTextField47", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField47")], [0, 1]],
280
+ ["custTextField48", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField48")], [0, 1]],
281
+ ["custTextField49", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField49")], [0, 1]],
282
+ ["custTextField5", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField5")], [0, 1]],
283
+ ["custTextField50", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField50")], [0, 1]],
284
+ ["custTextField6", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField6")], [0, 1]],
285
+ ["custTextField7", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField7")], [0, 1]],
286
+ ["custTextField8", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField8")], [0, 1]],
287
+ ["custTextField9", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField9")], [0, 1]],
288
+ ["customDateFields", ["ApiCI::CustomDateFields", XSD::QName.new(nil, "customDateFields")]],
289
+ ["customFields", ["ApiCI::CustomFields", XSD::QName.new(nil, "customFields")]],
290
+ ["historyVersion", ["SOAP::SOAPInt", XSD::QName.new(nil, "historyVersion")]],
291
+ ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]],
292
+ ["location", ["SOAP::SOAPInt", XSD::QName.new(nil, "location")]],
293
+ ["notes", ["SOAP::SOAPString", XSD::QName.new(nil, "notes")], [0, 1]],
294
+ ["owner", ["SOAP::SOAPString", XSD::QName.new(nil, "owner")], [0, 1]],
295
+ ["ownerGroup", ["SOAP::SOAPString", XSD::QName.new(nil, "ownerGroup")], [0, 1]],
296
+ ["priority", ["SOAP::SOAPInt", XSD::QName.new(nil, "priority")]],
297
+ ["serialNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "serialNumber")], [0, 1]],
298
+ ["status", ["SOAP::SOAPInt", XSD::QName.new(nil, "status")]],
299
+ ["subCategory", ["SOAP::SOAPString", XSD::QName.new(nil, "subCategory")], [0, 1]],
300
+ ["supplier", ["SOAP::SOAPInt", XSD::QName.new(nil, "supplier")]],
301
+ ["supplyDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "supplyDate")], [0, 1]],
302
+ ["thirdLevelCategory", ["SOAP::SOAPString", XSD::QName.new(nil, "thirdLevelCategory")], [0, 1]],
303
+ ["users", ["SOAP::SOAPString", XSD::QName.new(nil, "users")], [0, 1]]
304
+ ]
305
+ )
306
+
307
+ EncodedRegistry.register(
308
+ :class => ApiCI::CustomDateFields::Entry,
309
+ :schema_name => XSD::QName.new(nil, "entry"),
310
+ :is_anonymous => true,
311
+ :schema_qualified => false,
312
+ :schema_element => [
313
+ ["key", nil, [0, 1]],
314
+ ["value", nil, [0, 1]]
315
+ ]
316
+ )
317
+
318
+ EncodedRegistry.register(
319
+ :class => ApiCI::CustomDateFields,
320
+ :schema_name => XSD::QName.new(nil, "customDateFields"),
321
+ :is_anonymous => true,
322
+ :schema_qualified => false,
323
+ :schema_element => [
324
+ ["entry", "ApiCI::CustomDateFields::Entry[]", [0, nil]]
325
+ ]
326
+ )
327
+
328
+ EncodedRegistry.register(
329
+ :class => ApiCI::CustomFields::Entry,
330
+ :schema_name => XSD::QName.new(nil, "entry"),
331
+ :is_anonymous => true,
332
+ :schema_qualified => false,
333
+ :schema_element => [
334
+ ["key", nil, [0, 1]],
335
+ ["value", nil, [0, 1]]
336
+ ]
337
+ )
338
+
339
+ EncodedRegistry.register(
340
+ :class => ApiCI::CustomFields,
341
+ :schema_name => XSD::QName.new(nil, "customFields"),
342
+ :is_anonymous => true,
343
+ :schema_qualified => false,
344
+ :schema_element => [
345
+ ["entry", "ApiCI::CustomFields::Entry[]", [0, nil]]
346
+ ]
347
+ )
348
+
349
+ EncodedRegistry.register(
350
+ :class => ApiServiceRequest,
351
+ :schema_type => XSD::QName.new(NsApiIlientCom, "apiServiceRequest"),
352
+ :schema_basetype => XSD::QName.new(NsApiIlientCom, "apiSysaidObject"),
353
+ :schema_element => [
354
+ ["agreement", ["SOAP::SOAPInt", XSD::QName.new(nil, "agreement")]],
355
+ ["assignCounter", ["SOAP::SOAPInt", XSD::QName.new(nil, "assignCounter")]],
356
+ ["assignedGroup", ["SOAP::SOAPString", XSD::QName.new(nil, "assignedGroup")], [0, 1]],
357
+ ["assignedTo", ["SOAP::SOAPString", XSD::QName.new(nil, "assignedTo")], [0, 1]],
358
+ ["cIId", ["SOAP::SOAPInt", XSD::QName.new(nil, "CIId")]],
359
+ ["category", ["SOAP::SOAPString", XSD::QName.new(nil, "category")], [0, 1]],
360
+ ["cc", ["SOAP::SOAPString", XSD::QName.new(nil, "cc")], [0, 1]],
361
+ ["closeTime", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "closeTime")], [0, 1]],
362
+ ["computerID", ["SOAP::SOAPString", XSD::QName.new(nil, "computerID")], [0, 1]],
363
+ ["currentSupportLevel", ["SOAP::SOAPInt", XSD::QName.new(nil, "currentSupportLevel")]],
364
+ ["custDate1", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate1")], [0, 1]],
365
+ ["custDate2", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate2")], [0, 1]],
366
+ ["custInt1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt1")]],
367
+ ["custInt2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt2")]],
368
+ ["custList1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList1")]],
369
+ ["custList2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList2")]],
370
+ ["custNotes", ["SOAP::SOAPString", XSD::QName.new(nil, "custNotes")], [0, 1]],
371
+ ["custText1", ["SOAP::SOAPString", XSD::QName.new(nil, "custText1")], [0, 1]],
372
+ ["custText2", ["SOAP::SOAPString", XSD::QName.new(nil, "custText2")], [0, 1]],
373
+ ["customDateFields", ["ApiServiceRequest::CustomDateFields", XSD::QName.new(nil, "customDateFields")]],
374
+ ["customFields", ["ApiServiceRequest::CustomFields", XSD::QName.new(nil, "customFields")]],
375
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")], [0, 1]],
376
+ ["dueDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "dueDate")], [0, 1]],
377
+ ["emailAccount", ["SOAP::SOAPString", XSD::QName.new(nil, "emailAccount")], [0, 1]],
378
+ ["escalation", ["SOAP::SOAPInt", XSD::QName.new(nil, "escalation")]],
379
+ ["followupActualDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "followupActualDate")], [0, 1]],
380
+ ["followupPlannedDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "followupPlannedDate")], [0, 1]],
381
+ ["followupText", ["SOAP::SOAPString", XSD::QName.new(nil, "followupText")], [0, 1]],
382
+ ["followupUser", ["SOAP::SOAPString", XSD::QName.new(nil, "followupUser")], [0, 1]],
383
+ ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]],
384
+ ["insertTime", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "insertTime")], [0, 1]],
385
+ ["location", ["SOAP::SOAPInt", XSD::QName.new(nil, "location")]],
386
+ ["maxSupportLevel", ["SOAP::SOAPInt", XSD::QName.new(nil, "maxSupportLevel")]],
387
+ ["notes", ["SOAP::SOAPString", XSD::QName.new(nil, "notes")], [0, 1]],
388
+ ["parentLink", ["SOAP::SOAPInt", XSD::QName.new(nil, "parentLink")]],
389
+ ["priority", ["SOAP::SOAPInt", XSD::QName.new(nil, "priority")]],
390
+ ["projectID", ["SOAP::SOAPInt", XSD::QName.new(nil, "projectID")]],
391
+ ["reopenCounter", ["SOAP::SOAPInt", XSD::QName.new(nil, "reopenCounter")]],
392
+ ["requestUser", ["SOAP::SOAPString", XSD::QName.new(nil, "requestUser")], [0, 1]],
393
+ ["resolution", ["SOAP::SOAPString", XSD::QName.new(nil, "resolution")], [0, 1]],
394
+ ["responsibleManager", ["SOAP::SOAPString", XSD::QName.new(nil, "responsibleManager")], [0, 1]],
395
+ ["solution", ["SOAP::SOAPString", XSD::QName.new(nil, "solution")], [0, 1]],
396
+ ["source", ["SOAP::SOAPInt", XSD::QName.new(nil, "source")]],
397
+ ["srSubType", ["SOAP::SOAPInt", XSD::QName.new(nil, "srSubType")]],
398
+ ["srType", ["SOAP::SOAPInt", XSD::QName.new(nil, "srType")]],
399
+ ["status", ["SOAP::SOAPInt", XSD::QName.new(nil, "status")]],
400
+ ["subCategory", ["SOAP::SOAPString", XSD::QName.new(nil, "subCategory")], [0, 1]],
401
+ ["submitUser", ["SOAP::SOAPString", XSD::QName.new(nil, "submitUser")], [0, 1]],
402
+ ["successRating", ["SOAP::SOAPInt", XSD::QName.new(nil, "successRating")]],
403
+ ["taskID", ["SOAP::SOAPInt", XSD::QName.new(nil, "taskID")]],
404
+ ["thirdLevelCategory", ["SOAP::SOAPString", XSD::QName.new(nil, "thirdLevelCategory")], [0, 1]],
405
+ ["title", ["SOAP::SOAPString", XSD::QName.new(nil, "title")], [0, 1]],
406
+ ["updateTime", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "updateTime")], [0, 1]],
407
+ ["updateUser", ["SOAP::SOAPString", XSD::QName.new(nil, "updateUser")], [0, 1]],
408
+ ["urgency", ["SOAP::SOAPInt", XSD::QName.new(nil, "urgency")]],
409
+ ["userManager", ["SOAP::SOAPString", XSD::QName.new(nil, "userManager")], [0, 1]],
410
+ ["version", ["SOAP::SOAPInt", XSD::QName.new(nil, "version")]]
411
+ ]
412
+ )
413
+
414
+ EncodedRegistry.register(
415
+ :class => ApiServiceRequest::CustomDateFields::Entry,
416
+ :schema_name => XSD::QName.new(nil, "entry"),
417
+ :is_anonymous => true,
418
+ :schema_qualified => false,
419
+ :schema_element => [
420
+ ["key", nil, [0, 1]],
421
+ ["value", nil, [0, 1]]
422
+ ]
423
+ )
424
+
425
+ EncodedRegistry.register(
426
+ :class => ApiServiceRequest::CustomDateFields,
427
+ :schema_name => XSD::QName.new(nil, "customDateFields"),
428
+ :is_anonymous => true,
429
+ :schema_qualified => false,
430
+ :schema_element => [
431
+ ["entry", "ApiServiceRequest::CustomDateFields::Entry[]", [0, nil]]
432
+ ]
433
+ )
434
+
435
+ EncodedRegistry.register(
436
+ :class => ApiServiceRequest::CustomFields::Entry,
437
+ :schema_name => XSD::QName.new(nil, "entry"),
438
+ :is_anonymous => true,
439
+ :schema_qualified => false,
440
+ :schema_element => [
441
+ ["key", nil, [0, 1]],
442
+ ["value", nil, [0, 1]]
443
+ ]
444
+ )
445
+
446
+ EncodedRegistry.register(
447
+ :class => ApiServiceRequest::CustomFields,
448
+ :schema_name => XSD::QName.new(nil, "customFields"),
449
+ :is_anonymous => true,
450
+ :schema_qualified => false,
451
+ :schema_element => [
452
+ ["entry", "ApiServiceRequest::CustomFields::Entry[]", [0, nil]]
453
+ ]
454
+ )
455
+
456
+ EncodedRegistry.register(
457
+ :class => ApiComputer,
458
+ :schema_type => XSD::QName.new(NsApiIlientCom, "apiComputer"),
459
+ :schema_basetype => XSD::QName.new(NsApiIlientCom, "apiSysaidObject"),
460
+ :schema_element => [
461
+ ["agentVersion", ["SOAP::SOAPString", XSD::QName.new(nil, "agentVersion")], [0, 1]],
462
+ ["biosType", ["SOAP::SOAPString", XSD::QName.new(nil, "biosType")], [0, 1]],
463
+ ["building", ["SOAP::SOAPString", XSD::QName.new(nil, "building")], [0, 1]],
464
+ ["cIId", ["SOAP::SOAPInt", XSD::QName.new(nil, "CIId")]],
465
+ ["catalogNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "catalogNumber")], [0, 1]],
466
+ ["collectionParams", ["SOAP::SOAPString", XSD::QName.new(nil, "collectionParams")], [0, 1]],
467
+ ["collectionType", ["SOAP::SOAPInt", XSD::QName.new(nil, "collectionType")]],
468
+ ["company", ["SOAP::SOAPInt", XSD::QName.new(nil, "company")]],
469
+ ["companySerial", ["SOAP::SOAPString", XSD::QName.new(nil, "companySerial")], [0, 1]],
470
+ ["computerID", ["SOAP::SOAPString", XSD::QName.new(nil, "computerID")], [0, 1]],
471
+ ["computerName", ["SOAP::SOAPString", XSD::QName.new(nil, "computerName")], [0, 1]],
472
+ ["cpuCount", ["SOAP::SOAPInt", XSD::QName.new(nil, "cpuCount")]],
473
+ ["cpuModel", ["SOAP::SOAPString", XSD::QName.new(nil, "cpuModel")], [0, 1]],
474
+ ["cpuSpeed", ["SOAP::SOAPInt", XSD::QName.new(nil, "cpuSpeed")]],
475
+ ["cpuVendor", ["SOAP::SOAPString", XSD::QName.new(nil, "cpuVendor")], [0, 1]],
476
+ ["cubic", ["SOAP::SOAPString", XSD::QName.new(nil, "cubic")], [0, 1]],
477
+ ["custDate1", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate1")], [0, 1]],
478
+ ["custDate2", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate2")], [0, 1]],
479
+ ["custInt1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt1")]],
480
+ ["custInt2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt2")]],
481
+ ["custList1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList1")]],
482
+ ["custList2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList2")]],
483
+ ["custNotes", ["SOAP::SOAPString", XSD::QName.new(nil, "custNotes")], [0, 1]],
484
+ ["custText1", ["SOAP::SOAPString", XSD::QName.new(nil, "custText1")], [0, 1]],
485
+ ["custText2", ["SOAP::SOAPString", XSD::QName.new(nil, "custText2")], [0, 1]],
486
+ ["customDateFields", ["ApiComputer::CustomDateFields", XSD::QName.new(nil, "customDateFields")]],
487
+ ["customFields", ["ApiComputer::CustomFields", XSD::QName.new(nil, "customFields")]],
488
+ ["department", ["SOAP::SOAPInt", XSD::QName.new(nil, "department")]],
489
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")], [0, 1]],
490
+ ["disable", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "disable")]],
491
+ ["disksCount", ["SOAP::SOAPInt", XSD::QName.new(nil, "disksCount")]],
492
+ ["disksSize", ["SOAP::SOAPInt", XSD::QName.new(nil, "disksSize")]],
493
+ ["displayAdapter", ["SOAP::SOAPString", XSD::QName.new(nil, "displayAdapter")], [0, 1]],
494
+ ["displayMemory", ["SOAP::SOAPInt", XSD::QName.new(nil, "displayMemory")]],
495
+ ["displayResolution", ["SOAP::SOAPString", XSD::QName.new(nil, "displayResolution")], [0, 1]],
496
+ ["externalSerial", ["SOAP::SOAPString", XSD::QName.new(nil, "externalSerial")], [0, 1]],
497
+ ["floor", ["SOAP::SOAPString", XSD::QName.new(nil, "floor")], [0, 1]],
498
+ ["freeMemBanks", ["SOAP::SOAPInt", XSD::QName.new(nil, "freeMemBanks")]],
499
+ ["groupName", ["SOAP::SOAPString", XSD::QName.new(nil, "groupName")], [0, 1]],
500
+ ["ipAddress", ["SOAP::SOAPString", XSD::QName.new(nil, "ipAddress")], [0, 1]],
501
+ ["lastMaintenanceDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "lastMaintenanceDate")], [0, 1]],
502
+ ["locationIdx", ["SOAP::SOAPInt", XSD::QName.new(nil, "locationIdx")]],
503
+ ["macAddress", ["SOAP::SOAPString", XSD::QName.new(nil, "macAddress")], [0, 1]],
504
+ ["maintenanceSupplierID", ["SOAP::SOAPInt", XSD::QName.new(nil, "maintenanceSupplierID")]],
505
+ ["memBanks", ["SOAP::SOAPInt", XSD::QName.new(nil, "memBanks")]],
506
+ ["memoryPhysical", ["SOAP::SOAPLong", XSD::QName.new(nil, "memoryPhysical")]],
507
+ ["monitor", ["SOAP::SOAPString", XSD::QName.new(nil, "monitor")], [0, 1]],
508
+ ["monitorSerial", ["SOAP::SOAPString", XSD::QName.new(nil, "monitorSerial")], [0, 1]],
509
+ ["oSName", ["SOAP::SOAPString", XSD::QName.new(nil, "OSName")], [0, 1]],
510
+ ["oSPlatform", ["SOAP::SOAPString", XSD::QName.new(nil, "OSPlatform")], [0, 1]],
511
+ ["oSServicePack", ["SOAP::SOAPString", XSD::QName.new(nil, "OSServicePack")], [0, 1]],
512
+ ["oSVersion", ["SOAP::SOAPString", XSD::QName.new(nil, "OSVersion")], [0, 1]],
513
+ ["occupiedMemBanks", ["SOAP::SOAPInt", XSD::QName.new(nil, "occupiedMemBanks")]],
514
+ ["packetsIn", ["SOAP::SOAPFloat", XSD::QName.new(nil, "packetsIn")]],
515
+ ["packetsOut", ["SOAP::SOAPFloat", XSD::QName.new(nil, "packetsOut")]],
516
+ ["parentAsset", ["SOAP::SOAPString", XSD::QName.new(nil, "parentAsset")], [0, 1]],
517
+ ["purchaseDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "purchaseDate")], [0, 1]],
518
+ ["purchasePrice", ["SOAP::SOAPFloat", XSD::QName.new(nil, "purchasePrice")]],
519
+ ["serial", ["SOAP::SOAPString", XSD::QName.new(nil, "serial")], [0, 1]],
520
+ ["snmpCustText1", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText1")], [0, 1]],
521
+ ["snmpCustText10", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText10")], [0, 1]],
522
+ ["snmpCustText11", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText11")], [0, 1]],
523
+ ["snmpCustText12", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText12")], [0, 1]],
524
+ ["snmpCustText13", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText13")], [0, 1]],
525
+ ["snmpCustText14", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText14")], [0, 1]],
526
+ ["snmpCustText15", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText15")], [0, 1]],
527
+ ["snmpCustText16", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText16")], [0, 1]],
528
+ ["snmpCustText17", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText17")], [0, 1]],
529
+ ["snmpCustText18", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText18")], [0, 1]],
530
+ ["snmpCustText19", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText19")], [0, 1]],
531
+ ["snmpCustText2", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText2")], [0, 1]],
532
+ ["snmpCustText20", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText20")], [0, 1]],
533
+ ["snmpCustText3", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText3")], [0, 1]],
534
+ ["snmpCustText4", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText4")], [0, 1]],
535
+ ["snmpCustText5", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText5")], [0, 1]],
536
+ ["snmpCustText6", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText6")], [0, 1]],
537
+ ["snmpCustText7", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText7")], [0, 1]],
538
+ ["snmpCustText8", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText8")], [0, 1]],
539
+ ["snmpCustText9", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText9")], [0, 1]],
540
+ ["supplierID", ["SOAP::SOAPInt", XSD::QName.new(nil, "supplierID")]],
541
+ ["systemManufacturer", ["SOAP::SOAPString", XSD::QName.new(nil, "systemManufacturer")], [0, 1]],
542
+ ["systemModel", ["SOAP::SOAPString", XSD::QName.new(nil, "systemModel")], [0, 1]],
543
+ ["updateTime", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "updateTime")], [0, 1]],
544
+ ["userName", ["SOAP::SOAPString", XSD::QName.new(nil, "userName")], [0, 1]],
545
+ ["version", ["SOAP::SOAPInt", XSD::QName.new(nil, "version")]],
546
+ ["warrantyExpirationDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "warrantyExpirationDate")], [0, 1]]
547
+ ]
548
+ )
549
+
550
+ EncodedRegistry.register(
551
+ :class => ApiComputer::CustomDateFields::Entry,
552
+ :schema_name => XSD::QName.new(nil, "entry"),
553
+ :is_anonymous => true,
554
+ :schema_qualified => false,
555
+ :schema_element => [
556
+ ["key", nil, [0, 1]],
557
+ ["value", nil, [0, 1]]
558
+ ]
559
+ )
560
+
561
+ EncodedRegistry.register(
562
+ :class => ApiComputer::CustomDateFields,
563
+ :schema_name => XSD::QName.new(nil, "customDateFields"),
564
+ :is_anonymous => true,
565
+ :schema_qualified => false,
566
+ :schema_element => [
567
+ ["entry", "ApiComputer::CustomDateFields::Entry[]", [0, nil]]
568
+ ]
569
+ )
570
+
571
+ EncodedRegistry.register(
572
+ :class => ApiComputer::CustomFields::Entry,
573
+ :schema_name => XSD::QName.new(nil, "entry"),
574
+ :is_anonymous => true,
575
+ :schema_qualified => false,
576
+ :schema_element => [
577
+ ["key", nil, [0, 1]],
578
+ ["value", nil, [0, 1]]
579
+ ]
580
+ )
581
+
582
+ EncodedRegistry.register(
583
+ :class => ApiComputer::CustomFields,
584
+ :schema_name => XSD::QName.new(nil, "customFields"),
585
+ :is_anonymous => true,
586
+ :schema_qualified => false,
587
+ :schema_element => [
588
+ ["entry", "ApiComputer::CustomFields::Entry[]", [0, nil]]
589
+ ]
590
+ )
591
+
592
+ EncodedRegistry.register(
593
+ :class => ApiSoftware,
594
+ :schema_type => XSD::QName.new(NsApiIlientCom, "apiSoftware"),
595
+ :schema_basetype => XSD::QName.new(NsApiIlientCom, "apiSysaidObject"),
596
+ :schema_element => [
597
+ ["cIId", ["SOAP::SOAPInt", XSD::QName.new(nil, "CIId")]],
598
+ ["company", ["SOAP::SOAPInt", XSD::QName.new(nil, "company")]],
599
+ ["custDate1", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate1")], [0, 1]],
600
+ ["custDate2", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate2")], [0, 1]],
601
+ ["custInt1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt1")]],
602
+ ["custInt2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt2")]],
603
+ ["custList1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList1")]],
604
+ ["custList2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList2")]],
605
+ ["custNotes", ["SOAP::SOAPString", XSD::QName.new(nil, "custNotes")], [0, 1]],
606
+ ["custText1", ["SOAP::SOAPString", XSD::QName.new(nil, "custText1")], [0, 1]],
607
+ ["custText2", ["SOAP::SOAPString", XSD::QName.new(nil, "custText2")], [0, 1]],
608
+ ["freeware", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "freeware")]],
609
+ ["historyVersion", ["SOAP::SOAPInt", XSD::QName.new(nil, "historyVersion")]],
610
+ ["inst_names", ["[]", XSD::QName.new(nil, "inst_names")], [0, nil]],
611
+ ["licenses", ["SOAP::SOAPInt", XSD::QName.new(nil, "licenses")]],
612
+ ["notes", ["SOAP::SOAPString", XSD::QName.new(nil, "notes")], [0, 1]],
613
+ ["productName", ["SOAP::SOAPString", XSD::QName.new(nil, "productName")], [0, 1]],
614
+ ["purchaseDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "purchaseDate")], [0, 1]],
615
+ ["softwareID", ["SOAP::SOAPInt", XSD::QName.new(nil, "softwareID")]],
616
+ ["supplierID", ["SOAP::SOAPInt", XSD::QName.new(nil, "supplierID")]],
617
+ ["supportExpiration", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "supportExpiration")], [0, 1]],
618
+ ["vendor", ["SOAP::SOAPString", XSD::QName.new(nil, "vendor")], [0, 1]],
619
+ ["version", ["SOAP::SOAPString", XSD::QName.new(nil, "version")], [0, 1]]
620
+ ]
621
+ )
622
+
623
+ EncodedRegistry.register(
624
+ :class => ApiCompany,
625
+ :schema_type => XSD::QName.new(NsApiIlientCom, "apiCompany"),
626
+ :schema_basetype => XSD::QName.new(NsApiIlientCom, "apiSysaidObject"),
627
+ :schema_element => [
628
+ ["address", ["SOAP::SOAPString", XSD::QName.new(nil, "address")], [0, 1]],
629
+ ["address2", ["SOAP::SOAPString", XSD::QName.new(nil, "address2")], [0, 1]],
630
+ ["agreement", ["SOAP::SOAPInt", XSD::QName.new(nil, "agreement")]],
631
+ ["agreementEnd", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "agreementEnd")], [0, 1]],
632
+ ["agreementStart", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "agreementStart")], [0, 1]],
633
+ ["city", ["SOAP::SOAPString", XSD::QName.new(nil, "city")], [0, 1]],
634
+ ["country", ["SOAP::SOAPString", XSD::QName.new(nil, "country")], [0, 1]],
635
+ ["custDate1", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate1")], [0, 1]],
636
+ ["custDate2", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate2")], [0, 1]],
637
+ ["custInt1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt1")]],
638
+ ["custInt2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt2")]],
639
+ ["custList1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList1")]],
640
+ ["custList2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList2")]],
641
+ ["custNotes", ["SOAP::SOAPString", XSD::QName.new(nil, "custNotes")], [0, 1]],
642
+ ["custText1", ["SOAP::SOAPString", XSD::QName.new(nil, "custText1")], [0, 1]],
643
+ ["custText2", ["SOAP::SOAPString", XSD::QName.new(nil, "custText2")], [0, 1]],
644
+ ["expirationTime", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "expirationTime")], [0, 1]],
645
+ ["fax", ["SOAP::SOAPString", XSD::QName.new(nil, "fax")], [0, 1]],
646
+ ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]],
647
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")], [0, 1]],
648
+ ["notes", ["SOAP::SOAPString", XSD::QName.new(nil, "notes")], [0, 1]],
649
+ ["phone", ["SOAP::SOAPString", XSD::QName.new(nil, "phone")], [0, 1]],
650
+ ["state", ["SOAP::SOAPString", XSD::QName.new(nil, "state")], [0, 1]],
651
+ ["version", ["SOAP::SOAPInt", XSD::QName.new(nil, "version")]],
652
+ ["zip", ["SOAP::SOAPString", XSD::QName.new(nil, "zip")], [0, 1]]
653
+ ]
654
+ )
655
+
656
+ EncodedRegistry.register(
657
+ :class => ApiSupplier,
658
+ :schema_type => XSD::QName.new(NsApiIlientCom, "apiSupplier"),
659
+ :schema_basetype => XSD::QName.new(NsApiIlientCom, "apiSysaidObject"),
660
+ :schema_element => [
661
+ ["account", ["SOAP::SOAPString", XSD::QName.new(nil, "account")], [0, 1]],
662
+ ["address", ["SOAP::SOAPString", XSD::QName.new(nil, "address")], [0, 1]],
663
+ ["contact", ["SOAP::SOAPString", XSD::QName.new(nil, "contact")], [0, 1]],
664
+ ["custDate1", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate1")], [0, 1]],
665
+ ["custDate2", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate2")], [0, 1]],
666
+ ["custInt1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt1")]],
667
+ ["custInt2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt2")]],
668
+ ["custList1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList1")]],
669
+ ["custList2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList2")]],
670
+ ["custNotes", ["SOAP::SOAPString", XSD::QName.new(nil, "custNotes")], [0, 1]],
671
+ ["custText1", ["SOAP::SOAPString", XSD::QName.new(nil, "custText1")], [0, 1]],
672
+ ["custText2", ["SOAP::SOAPString", XSD::QName.new(nil, "custText2")], [0, 1]],
673
+ ["email", ["SOAP::SOAPString", XSD::QName.new(nil, "email")], [0, 1]],
674
+ ["fax", ["SOAP::SOAPString", XSD::QName.new(nil, "fax")], [0, 1]],
675
+ ["mobile", ["SOAP::SOAPString", XSD::QName.new(nil, "mobile")], [0, 1]],
676
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")], [0, 1]],
677
+ ["notes", ["SOAP::SOAPString", XSD::QName.new(nil, "notes")], [0, 1]],
678
+ ["phone", ["SOAP::SOAPString", XSD::QName.new(nil, "phone")], [0, 1]],
679
+ ["phone2", ["SOAP::SOAPString", XSD::QName.new(nil, "phone2")], [0, 1]],
680
+ ["supplierID", ["SOAP::SOAPInt", XSD::QName.new(nil, "supplierID")]],
681
+ ["version", ["SOAP::SOAPInt", XSD::QName.new(nil, "version")]]
682
+ ]
683
+ )
684
+
685
+ EncodedRegistry.register(
686
+ :class => ApiSysAidUser,
687
+ :schema_type => XSD::QName.new(NsApiIlientCom, "apiSysAidUser"),
688
+ :schema_basetype => XSD::QName.new(NsApiIlientCom, "apiSysaidObject"),
689
+ :schema_element => [
690
+ ["admin", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "admin")]],
691
+ ["agreement", ["SOAP::SOAPInt", XSD::QName.new(nil, "agreement")]],
692
+ ["building", ["SOAP::SOAPString", XSD::QName.new(nil, "building")], [0, 1]],
693
+ ["carNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "carNumber")], [0, 1]],
694
+ ["cellphone", ["SOAP::SOAPString", XSD::QName.new(nil, "cellphone")], [0, 1]],
695
+ ["company", ["SOAP::SOAPInt", XSD::QName.new(nil, "company")]],
696
+ ["cubic", ["SOAP::SOAPString", XSD::QName.new(nil, "cubic")], [0, 1]],
697
+ ["custDate1", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate1")], [0, 1]],
698
+ ["custDate2", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate2")], [0, 1]],
699
+ ["custInt1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt1")]],
700
+ ["custInt2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt2")]],
701
+ ["custList1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList1")]],
702
+ ["custList2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList2")]],
703
+ ["custNotes", ["SOAP::SOAPString", XSD::QName.new(nil, "custNotes")], [0, 1]],
704
+ ["custText1", ["SOAP::SOAPString", XSD::QName.new(nil, "custText1")], [0, 1]],
705
+ ["custText2", ["SOAP::SOAPString", XSD::QName.new(nil, "custText2")], [0, 1]],
706
+ ["department", ["SOAP::SOAPInt", XSD::QName.new(nil, "department")]],
707
+ ["disable", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "disable")]],
708
+ ["displayName", ["SOAP::SOAPString", XSD::QName.new(nil, "displayName")], [0, 1]],
709
+ ["email", ["SOAP::SOAPString", XSD::QName.new(nil, "email")], [0, 1]],
710
+ ["emailNotifications", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "emailNotifications")]],
711
+ ["enableLoginToEup", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "enableLoginToEup")]],
712
+ ["expirationTime", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "expirationTime")], [0, 1]],
713
+ ["firstName", ["SOAP::SOAPString", XSD::QName.new(nil, "firstName")], [0, 1]],
714
+ ["floor", ["SOAP::SOAPString", XSD::QName.new(nil, "floor")], [0, 1]],
715
+ ["lastName", ["SOAP::SOAPString", XSD::QName.new(nil, "lastName")], [0, 1]],
716
+ ["location", ["SOAP::SOAPInt", XSD::QName.new(nil, "location")]],
717
+ ["manager", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "manager")]],
718
+ ["notes", ["SOAP::SOAPString", XSD::QName.new(nil, "notes")], [0, 1]],
719
+ ["password", ["SOAP::SOAPString", XSD::QName.new(nil, "password")], [0, 1]],
720
+ ["phone", ["SOAP::SOAPString", XSD::QName.new(nil, "phone")], [0, 1]],
721
+ ["secondaryEmail", ["SOAP::SOAPString", XSD::QName.new(nil, "secondaryEmail")], [0, 1]],
722
+ ["sms", ["SOAP::SOAPString", XSD::QName.new(nil, "sms")], [0, 1]],
723
+ ["userManagerName", ["SOAP::SOAPString", XSD::QName.new(nil, "userManagerName")], [0, 1]],
724
+ ["userName", ["SOAP::SOAPString", XSD::QName.new(nil, "userName")], [0, 1]]
725
+ ]
726
+ )
727
+
728
+ EncodedRegistry.register(
729
+ :class => ApiProject,
730
+ :schema_type => XSD::QName.new(NsApiIlientCom, "apiProject"),
731
+ :schema_basetype => XSD::QName.new(NsApiIlientCom, "apiSysaidObject"),
732
+ :schema_element => [
733
+ ["assignedGroup", ["SOAP::SOAPString", XSD::QName.new(nil, "assignedGroup")], [0, 1]],
734
+ ["category", ["SOAP::SOAPInt", XSD::QName.new(nil, "category")]],
735
+ ["company", ["SOAP::SOAPInt", XSD::QName.new(nil, "company")]],
736
+ ["custDate1", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate1")], [0, 1]],
737
+ ["custDate2", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate2")], [0, 1]],
738
+ ["custInt1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt1")]],
739
+ ["custInt2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt2")]],
740
+ ["custList1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList1")]],
741
+ ["custList2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList2")]],
742
+ ["custNotes", ["SOAP::SOAPString", XSD::QName.new(nil, "custNotes")], [0, 1]],
743
+ ["custText1", ["SOAP::SOAPString", XSD::QName.new(nil, "custText1")], [0, 1]],
744
+ ["custText2", ["SOAP::SOAPString", XSD::QName.new(nil, "custText2")], [0, 1]],
745
+ ["customDateFields", ["ApiProject::CustomDateFields", XSD::QName.new(nil, "customDateFields")]],
746
+ ["customFields", ["ApiProject::CustomFields", XSD::QName.new(nil, "customFields")]],
747
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")], [0, 1]],
748
+ ["endTime", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "endTime")], [0, 1]],
749
+ ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]],
750
+ ["incidentTitle", ["SOAP::SOAPString", XSD::QName.new(nil, "incidentTitle")], [0, 1]],
751
+ ["manager", ["SOAP::SOAPString", XSD::QName.new(nil, "manager")], [0, 1]],
752
+ ["notes", ["SOAP::SOAPString", XSD::QName.new(nil, "notes")], [0, 1]],
753
+ ["progress", ["SOAP::SOAPInt", XSD::QName.new(nil, "progress")]],
754
+ ["rawEstimation", ["SOAP::SOAPInt", XSD::QName.new(nil, "rawEstimation")]],
755
+ ["requestGroup", ["SOAP::SOAPString", XSD::QName.new(nil, "requestGroup")], [0, 1]],
756
+ ["startTime", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "startTime")], [0, 1]],
757
+ ["status", ["SOAP::SOAPInt", XSD::QName.new(nil, "status")]],
758
+ ["title", ["SOAP::SOAPString", XSD::QName.new(nil, "title")], [0, 1]],
759
+ ["version", ["SOAP::SOAPInt", XSD::QName.new(nil, "version")]]
760
+ ]
761
+ )
762
+
763
+ EncodedRegistry.register(
764
+ :class => ApiProject::CustomDateFields::Entry,
765
+ :schema_name => XSD::QName.new(nil, "entry"),
766
+ :is_anonymous => true,
767
+ :schema_qualified => false,
768
+ :schema_element => [
769
+ ["key", nil, [0, 1]],
770
+ ["value", nil, [0, 1]]
771
+ ]
772
+ )
773
+
774
+ EncodedRegistry.register(
775
+ :class => ApiProject::CustomDateFields,
776
+ :schema_name => XSD::QName.new(nil, "customDateFields"),
777
+ :is_anonymous => true,
778
+ :schema_qualified => false,
779
+ :schema_element => [
780
+ ["entry", "ApiProject::CustomDateFields::Entry[]", [0, nil]]
781
+ ]
782
+ )
783
+
784
+ EncodedRegistry.register(
785
+ :class => ApiProject::CustomFields::Entry,
786
+ :schema_name => XSD::QName.new(nil, "entry"),
787
+ :is_anonymous => true,
788
+ :schema_qualified => false,
789
+ :schema_element => [
790
+ ["key", nil, [0, 1]],
791
+ ["value", nil, [0, 1]]
792
+ ]
793
+ )
794
+
795
+ EncodedRegistry.register(
796
+ :class => ApiProject::CustomFields,
797
+ :schema_name => XSD::QName.new(nil, "customFields"),
798
+ :is_anonymous => true,
799
+ :schema_qualified => false,
800
+ :schema_element => [
801
+ ["entry", "ApiProject::CustomFields::Entry[]", [0, nil]]
802
+ ]
803
+ )
804
+
805
+ EncodedRegistry.register(
806
+ :class => ApiTask,
807
+ :schema_type => XSD::QName.new(NsApiIlientCom, "apiTask"),
808
+ :schema_basetype => XSD::QName.new(NsApiIlientCom, "apiSysaidObject"),
809
+ :schema_element => [
810
+ ["category", ["SOAP::SOAPInt", XSD::QName.new(nil, "category")]],
811
+ ["ciId", ["SOAP::SOAPInt", XSD::QName.new(nil, "ciId")]],
812
+ ["custDate1", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate1")], [0, 1]],
813
+ ["custDate2", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate2")], [0, 1]],
814
+ ["custInt1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt1")]],
815
+ ["custInt2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt2")]],
816
+ ["custList1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList1")]],
817
+ ["custList2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList2")]],
818
+ ["custNotes", ["SOAP::SOAPString", XSD::QName.new(nil, "custNotes")], [0, 1]],
819
+ ["custText1", ["SOAP::SOAPString", XSD::QName.new(nil, "custText1")], [0, 1]],
820
+ ["custText2", ["SOAP::SOAPString", XSD::QName.new(nil, "custText2")], [0, 1]],
821
+ ["customDateFields", ["ApiTask::CustomDateFields", XSD::QName.new(nil, "customDateFields")]],
822
+ ["customFields", ["ApiTask::CustomFields", XSD::QName.new(nil, "customFields")]],
823
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")], [0, 1]],
824
+ ["endTime", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "endTime")], [0, 1]],
825
+ ["estimation", ["SOAP::SOAPInt", XSD::QName.new(nil, "estimation")]],
826
+ ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]],
827
+ ["notes", ["SOAP::SOAPString", XSD::QName.new(nil, "notes")], [0, 1]],
828
+ ["progress", ["SOAP::SOAPInt", XSD::QName.new(nil, "progress")]],
829
+ ["startTime", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "startTime")], [0, 1]],
830
+ ["status", ["SOAP::SOAPInt", XSD::QName.new(nil, "status")]],
831
+ ["taskDependency", ["SOAP::SOAPInt", XSD::QName.new(nil, "taskDependency")]],
832
+ ["taskDependencyType", ["SOAP::SOAPInt", XSD::QName.new(nil, "taskDependencyType")]],
833
+ ["title", ["SOAP::SOAPString", XSD::QName.new(nil, "title")], [0, 1]],
834
+ ["version", ["SOAP::SOAPInt", XSD::QName.new(nil, "version")]]
835
+ ]
836
+ )
837
+
838
+ EncodedRegistry.register(
839
+ :class => ApiTask::CustomDateFields::Entry,
840
+ :schema_name => XSD::QName.new(nil, "entry"),
841
+ :is_anonymous => true,
842
+ :schema_qualified => false,
843
+ :schema_element => [
844
+ ["key", nil, [0, 1]],
845
+ ["value", nil, [0, 1]]
846
+ ]
847
+ )
848
+
849
+ EncodedRegistry.register(
850
+ :class => ApiTask::CustomDateFields,
851
+ :schema_name => XSD::QName.new(nil, "customDateFields"),
852
+ :is_anonymous => true,
853
+ :schema_qualified => false,
854
+ :schema_element => [
855
+ ["entry", "ApiTask::CustomDateFields::Entry[]", [0, nil]]
856
+ ]
857
+ )
858
+
859
+ EncodedRegistry.register(
860
+ :class => ApiTask::CustomFields::Entry,
861
+ :schema_name => XSD::QName.new(nil, "entry"),
862
+ :is_anonymous => true,
863
+ :schema_qualified => false,
864
+ :schema_element => [
865
+ ["key", nil, [0, 1]],
866
+ ["value", nil, [0, 1]]
867
+ ]
868
+ )
869
+
870
+ EncodedRegistry.register(
871
+ :class => ApiTask::CustomFields,
872
+ :schema_name => XSD::QName.new(nil, "customFields"),
873
+ :is_anonymous => true,
874
+ :schema_qualified => false,
875
+ :schema_element => [
876
+ ["entry", "ApiTask::CustomFields::Entry[]", [0, nil]]
877
+ ]
878
+ )
879
+
880
+ EncodedRegistry.register(
881
+ :class => ApiComputerItem,
882
+ :schema_type => XSD::QName.new(NsApiIlientCom, "apiComputerItem"),
883
+ :schema_element => [
884
+ ["accountId", ["SOAP::SOAPString", XSD::QName.new(nil, "accountId")], [0, 1]],
885
+ ["computerId", ["SOAP::SOAPString", XSD::QName.new(nil, "computerId")], [0, 1]],
886
+ ["itemDisplay", ["SOAP::SOAPString", XSD::QName.new(nil, "itemDisplay")], [0, 1]],
887
+ ["itemType", ["SOAP::SOAPString", XSD::QName.new(nil, "itemType")], [0, 1]],
888
+ ["license", ["SOAP::SOAPString", XSD::QName.new(nil, "license")], [0, 1]],
889
+ ["value", ["SOAP::SOAPString", XSD::QName.new(nil, "value")], [0, 1]],
890
+ ["version", ["SOAP::SOAPString", XSD::QName.new(nil, "version")], [0, 1]]
891
+ ]
892
+ )
893
+
894
+ EncodedRegistry.register(
895
+ :class => ApiComputerItemList,
896
+ :schema_type => XSD::QName.new(NsApiIlientCom, "apiComputerItemList"),
897
+ :schema_basetype => XSD::QName.new(NsApiIlientCom, "apiSysaidObject"),
898
+ :schema_element => [
899
+ ["accountId", ["SOAP::SOAPString", XSD::QName.new(nil, "accountId")], [0, 1]],
900
+ ["computerId", ["SOAP::SOAPString", XSD::QName.new(nil, "computerId")], [0, 1]],
901
+ ["computerItems", ["[]", XSD::QName.new(nil, "computerItems")], [0, nil]]
902
+ ]
903
+ )
904
+
905
+ EncodedRegistry.register(
906
+ :class => Login,
907
+ :schema_type => XSD::QName.new(NsApiIlientCom, "login"),
908
+ :schema_element => [
909
+ ["accountId", ["SOAP::SOAPString", XSD::QName.new(nil, "accountId")], [0, 1]],
910
+ ["userName", ["SOAP::SOAPString", XSD::QName.new(nil, "userName")], [0, 1]],
911
+ ["password", ["SOAP::SOAPString", XSD::QName.new(nil, "password")], [0, 1]]
912
+ ]
913
+ )
914
+
915
+ EncodedRegistry.register(
916
+ :class => LoginResponse,
917
+ :schema_type => XSD::QName.new(NsApiIlientCom, "loginResponse"),
918
+ :schema_element => [
919
+ ["v_return", ["SOAP::SOAPLong", XSD::QName.new(nil, "return")]]
920
+ ]
921
+ )
922
+
923
+ EncodedRegistry.register(
924
+ :class => Delete,
925
+ :schema_type => XSD::QName.new(NsApiIlientCom, "delete"),
926
+ :schema_element => [
927
+ ["sessionId", ["SOAP::SOAPLong", XSD::QName.new(nil, "sessionId")]],
928
+ ["apiSysObj", ["ApiSysaidObject", XSD::QName.new(nil, "apiSysObj")], [0, 1]]
929
+ ]
930
+ )
931
+
932
+ EncodedRegistry.register(
933
+ :class => DeleteResponse,
934
+ :schema_type => XSD::QName.new(NsApiIlientCom, "deleteResponse"),
935
+ :schema_element => []
936
+ )
937
+
938
+ EncodedRegistry.register(
939
+ :class => ExecuteSelectQuery,
940
+ :schema_type => XSD::QName.new(NsApiIlientCom, "executeSelectQuery"),
941
+ :schema_element => [
942
+ ["sessionId", ["SOAP::SOAPLong", XSD::QName.new(nil, "sessionId")]],
943
+ ["apiSysObj", ["ApiSysaidObject", XSD::QName.new(nil, "apiSysObj")], [0, 1]],
944
+ ["condition", ["SOAP::SOAPString", XSD::QName.new(nil, "condition")], [0, 1]]
945
+ ]
946
+ )
947
+
948
+ EncodedRegistry.register(
949
+ :class => ExecuteSelectQueryResponse,
950
+ :schema_type => XSD::QName.new(NsApiIlientCom, "executeSelectQueryResponse"),
951
+ :schema_element => [
952
+ ["v_return", ["SOAP::SOAPString[]", XSD::QName.new(nil, "return")], [0, nil]]
953
+ ]
954
+ )
955
+
956
+ EncodedRegistry.register(
957
+ :class => LoadByStringId,
958
+ :schema_type => XSD::QName.new(NsApiIlientCom, "loadByStringId"),
959
+ :schema_element => [
960
+ ["sessionId", ["SOAP::SOAPLong", XSD::QName.new(nil, "sessionId")]],
961
+ ["apiSysObj", ["ApiSysaidObject", XSD::QName.new(nil, "apiSysObj")], [0, 1]],
962
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")], [0, 1]]
963
+ ]
964
+ )
965
+
966
+ EncodedRegistry.register(
967
+ :class => LoadByStringIdResponse,
968
+ :schema_type => XSD::QName.new(NsApiIlientCom, "loadByStringIdResponse"),
969
+ :schema_element => [
970
+ ["v_return", ["ApiSysaidObject", XSD::QName.new(nil, "return")], [0, 1]]
971
+ ]
972
+ )
973
+
974
+ EncodedRegistry.register(
975
+ :class => Logout,
976
+ :schema_type => XSD::QName.new(NsApiIlientCom, "logout"),
977
+ :schema_element => [
978
+ ["sessionId", ["SOAP::SOAPLong", XSD::QName.new(nil, "sessionId")]]
979
+ ]
980
+ )
981
+
982
+ EncodedRegistry.register(
983
+ :class => LogoutResponse,
984
+ :schema_type => XSD::QName.new(NsApiIlientCom, "logoutResponse"),
985
+ :schema_element => []
986
+ )
987
+
988
+ EncodedRegistry.register(
989
+ :class => ExecuteApiSysAidObjectAction,
990
+ :schema_type => XSD::QName.new(NsApiIlientCom, "executeApiSysAidObjectAction"),
991
+ :schema_element => [
992
+ ["sessionId", ["SOAP::SOAPLong", XSD::QName.new(nil, "sessionId")]],
993
+ ["apiSysObj", ["ApiSysaidObject", XSD::QName.new(nil, "apiSysObj")], [0, 1]],
994
+ ["actionName", ["SOAP::SOAPString", XSD::QName.new(nil, "actionName")], [0, 1]],
995
+ ["actionParams", ["[]", XSD::QName.new(nil, "actionParams")], [0, nil]]
996
+ ]
997
+ )
998
+
999
+ EncodedRegistry.register(
1000
+ :class => ExecuteApiSysAidObjectActionResponse,
1001
+ :schema_type => XSD::QName.new(NsApiIlientCom, "executeApiSysAidObjectActionResponse"),
1002
+ :schema_element => [
1003
+ ["v_return", ["SOAP::SOAPString", XSD::QName.new(nil, "return")], [0, 1]]
1004
+ ]
1005
+ )
1006
+
1007
+ EncodedRegistry.register(
1008
+ :class => LoadById,
1009
+ :schema_type => XSD::QName.new(NsApiIlientCom, "loadById"),
1010
+ :schema_element => [
1011
+ ["sessionId", ["SOAP::SOAPLong", XSD::QName.new(nil, "sessionId")]],
1012
+ ["apiSysObj", ["ApiSysaidObject", XSD::QName.new(nil, "apiSysObj")], [0, 1]],
1013
+ ["id", [nil, XSD::QName.new(nil, "id")], [0, 1]]
1014
+ ]
1015
+ )
1016
+
1017
+ EncodedRegistry.register(
1018
+ :class => LoadByIdResponse,
1019
+ :schema_type => XSD::QName.new(NsApiIlientCom, "loadByIdResponse"),
1020
+ :schema_element => [
1021
+ ["v_return", ["ApiSysaidObject", XSD::QName.new(nil, "return")], [0, 1]]
1022
+ ]
1023
+ )
1024
+
1025
+ EncodedRegistry.register(
1026
+ :class => Save,
1027
+ :schema_type => XSD::QName.new(NsApiIlientCom, "save"),
1028
+ :schema_element => [
1029
+ ["sessionId", ["SOAP::SOAPLong", XSD::QName.new(nil, "sessionId")]],
1030
+ ["apiSysObj", ["ApiSysaidObject", XSD::QName.new(nil, "apiSysObj")], [0, 1]]
1031
+ ]
1032
+ )
1033
+
1034
+ EncodedRegistry.register(
1035
+ :class => SaveResponse,
1036
+ :schema_type => XSD::QName.new(NsApiIlientCom, "saveResponse"),
1037
+ :schema_element => [
1038
+ ["v_return", [nil, XSD::QName.new(nil, "return")], [0, 1]]
1039
+ ]
1040
+ )
1041
+
1042
+ EncodedRegistry.register(
1043
+ :class => GetApiSysAidObjectActions,
1044
+ :schema_type => XSD::QName.new(NsApiIlientCom, "getApiSysAidObjectActions"),
1045
+ :schema_element => [
1046
+ ["sessionId", ["SOAP::SOAPLong", XSD::QName.new(nil, "sessionId")]],
1047
+ ["apiSysObj", ["ApiSysaidObject", XSD::QName.new(nil, "apiSysObj")], [0, 1]]
1048
+ ]
1049
+ )
1050
+
1051
+ EncodedRegistry.register(
1052
+ :class => GetApiSysAidObjectActionsResponse,
1053
+ :schema_type => XSD::QName.new(NsApiIlientCom, "getApiSysAidObjectActionsResponse"),
1054
+ :schema_element => [
1055
+ ["v_return", ["SOAP::SOAPString", XSD::QName.new(nil, "return")], [0, 1]]
1056
+ ]
1057
+ )
1058
+
1059
+ LiteralRegistry.register(
1060
+ :class => ApiCatalogItem,
1061
+ :schema_type => XSD::QName.new(NsApiIlientCom, "apiCatalogItem"),
1062
+ :schema_basetype => XSD::QName.new(NsApiIlientCom, "apiSysaidObject"),
1063
+ :schema_element => [
1064
+ ["cIId", ["SOAP::SOAPInt", XSD::QName.new(nil, "CIId")]],
1065
+ ["catalogNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "catalogNumber")], [0, 1]],
1066
+ ["custDate1", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate1")], [0, 1]],
1067
+ ["custDate2", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate2")], [0, 1]],
1068
+ ["manufacturer", ["SOAP::SOAPString", XSD::QName.new(nil, "manufacturer")], [0, 1]],
1069
+ ["model", ["SOAP::SOAPString", XSD::QName.new(nil, "model")], [0, 1]],
1070
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")], [0, 1]],
1071
+ ["notes", ["SOAP::SOAPString", XSD::QName.new(nil, "notes")], [0, 1]],
1072
+ ["supplierID", ["SOAP::SOAPInt", XSD::QName.new(nil, "supplierID")]],
1073
+ ["version", ["SOAP::SOAPInt", XSD::QName.new(nil, "version")]]
1074
+ ]
1075
+ )
1076
+
1077
+ LiteralRegistry.register(
1078
+ :class => ApiCI,
1079
+ :schema_type => XSD::QName.new(NsApiIlientCom, "apiCI"),
1080
+ :schema_basetype => XSD::QName.new(NsApiIlientCom, "apiSysaidObject"),
1081
+ :schema_element => [
1082
+ ["acceptDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "acceptDate")], [0, 1]],
1083
+ ["category", ["SOAP::SOAPString", XSD::QName.new(nil, "category")], [0, 1]],
1084
+ ["ciName", ["SOAP::SOAPString", XSD::QName.new(nil, "ciName")], [0, 1]],
1085
+ ["ciSubType", ["SOAP::SOAPInt", XSD::QName.new(nil, "ciSubType")]],
1086
+ ["ciType", ["SOAP::SOAPInt", XSD::QName.new(nil, "ciType")]],
1087
+ ["company", ["SOAP::SOAPInt", XSD::QName.new(nil, "company")]],
1088
+ ["custDateField1", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField1")], [0, 1]],
1089
+ ["custDateField10", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField10")], [0, 1]],
1090
+ ["custDateField11", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField11")], [0, 1]],
1091
+ ["custDateField12", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField12")], [0, 1]],
1092
+ ["custDateField13", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField13")], [0, 1]],
1093
+ ["custDateField14", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField14")], [0, 1]],
1094
+ ["custDateField15", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField15")], [0, 1]],
1095
+ ["custDateField16", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField16")], [0, 1]],
1096
+ ["custDateField17", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField17")], [0, 1]],
1097
+ ["custDateField18", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField18")], [0, 1]],
1098
+ ["custDateField19", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField19")], [0, 1]],
1099
+ ["custDateField2", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField2")], [0, 1]],
1100
+ ["custDateField20", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField20")], [0, 1]],
1101
+ ["custDateField21", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField21")], [0, 1]],
1102
+ ["custDateField22", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField22")], [0, 1]],
1103
+ ["custDateField23", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField23")], [0, 1]],
1104
+ ["custDateField24", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField24")], [0, 1]],
1105
+ ["custDateField25", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField25")], [0, 1]],
1106
+ ["custDateField26", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField26")], [0, 1]],
1107
+ ["custDateField27", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField27")], [0, 1]],
1108
+ ["custDateField28", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField28")], [0, 1]],
1109
+ ["custDateField29", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField29")], [0, 1]],
1110
+ ["custDateField3", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField3")], [0, 1]],
1111
+ ["custDateField30", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField30")], [0, 1]],
1112
+ ["custDateField31", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField31")], [0, 1]],
1113
+ ["custDateField32", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField32")], [0, 1]],
1114
+ ["custDateField33", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField33")], [0, 1]],
1115
+ ["custDateField34", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField34")], [0, 1]],
1116
+ ["custDateField35", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField35")], [0, 1]],
1117
+ ["custDateField36", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField36")], [0, 1]],
1118
+ ["custDateField37", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField37")], [0, 1]],
1119
+ ["custDateField38", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField38")], [0, 1]],
1120
+ ["custDateField39", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField39")], [0, 1]],
1121
+ ["custDateField4", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField4")], [0, 1]],
1122
+ ["custDateField40", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField40")], [0, 1]],
1123
+ ["custDateField41", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField41")], [0, 1]],
1124
+ ["custDateField42", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField42")], [0, 1]],
1125
+ ["custDateField43", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField43")], [0, 1]],
1126
+ ["custDateField44", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField44")], [0, 1]],
1127
+ ["custDateField45", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField45")], [0, 1]],
1128
+ ["custDateField46", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField46")], [0, 1]],
1129
+ ["custDateField47", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField47")], [0, 1]],
1130
+ ["custDateField48", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField48")], [0, 1]],
1131
+ ["custDateField49", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField49")], [0, 1]],
1132
+ ["custDateField5", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField5")], [0, 1]],
1133
+ ["custDateField50", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField50")], [0, 1]],
1134
+ ["custDateField6", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField6")], [0, 1]],
1135
+ ["custDateField7", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField7")], [0, 1]],
1136
+ ["custDateField8", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField8")], [0, 1]],
1137
+ ["custDateField9", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDateField9")], [0, 1]],
1138
+ ["custIntField1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField1")]],
1139
+ ["custIntField10", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField10")]],
1140
+ ["custIntField11", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField11")]],
1141
+ ["custIntField12", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField12")]],
1142
+ ["custIntField13", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField13")]],
1143
+ ["custIntField14", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField14")]],
1144
+ ["custIntField15", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField15")]],
1145
+ ["custIntField16", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField16")]],
1146
+ ["custIntField17", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField17")]],
1147
+ ["custIntField18", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField18")]],
1148
+ ["custIntField19", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField19")]],
1149
+ ["custIntField2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField2")]],
1150
+ ["custIntField20", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField20")]],
1151
+ ["custIntField21", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField21")]],
1152
+ ["custIntField22", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField22")]],
1153
+ ["custIntField23", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField23")]],
1154
+ ["custIntField24", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField24")]],
1155
+ ["custIntField25", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField25")]],
1156
+ ["custIntField26", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField26")]],
1157
+ ["custIntField27", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField27")]],
1158
+ ["custIntField28", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField28")]],
1159
+ ["custIntField29", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField29")]],
1160
+ ["custIntField3", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField3")]],
1161
+ ["custIntField30", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField30")]],
1162
+ ["custIntField31", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField31")]],
1163
+ ["custIntField32", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField32")]],
1164
+ ["custIntField33", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField33")]],
1165
+ ["custIntField34", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField34")]],
1166
+ ["custIntField35", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField35")]],
1167
+ ["custIntField36", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField36")]],
1168
+ ["custIntField37", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField37")]],
1169
+ ["custIntField38", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField38")]],
1170
+ ["custIntField39", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField39")]],
1171
+ ["custIntField4", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField4")]],
1172
+ ["custIntField40", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField40")]],
1173
+ ["custIntField41", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField41")]],
1174
+ ["custIntField42", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField42")]],
1175
+ ["custIntField43", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField43")]],
1176
+ ["custIntField44", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField44")]],
1177
+ ["custIntField45", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField45")]],
1178
+ ["custIntField46", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField46")]],
1179
+ ["custIntField47", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField47")]],
1180
+ ["custIntField48", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField48")]],
1181
+ ["custIntField49", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField49")]],
1182
+ ["custIntField5", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField5")]],
1183
+ ["custIntField50", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField50")]],
1184
+ ["custIntField6", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField6")]],
1185
+ ["custIntField7", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField7")]],
1186
+ ["custIntField8", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField8")]],
1187
+ ["custIntField9", ["SOAP::SOAPInt", XSD::QName.new(nil, "custIntField9")]],
1188
+ ["custListField1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField1")]],
1189
+ ["custListField10", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField10")]],
1190
+ ["custListField11", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField11")]],
1191
+ ["custListField12", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField12")]],
1192
+ ["custListField13", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField13")]],
1193
+ ["custListField14", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField14")]],
1194
+ ["custListField15", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField15")]],
1195
+ ["custListField16", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField16")]],
1196
+ ["custListField17", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField17")]],
1197
+ ["custListField18", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField18")]],
1198
+ ["custListField19", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField19")]],
1199
+ ["custListField2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField2")]],
1200
+ ["custListField20", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField20")]],
1201
+ ["custListField21", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField21")]],
1202
+ ["custListField22", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField22")]],
1203
+ ["custListField23", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField23")]],
1204
+ ["custListField24", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField24")]],
1205
+ ["custListField25", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField25")]],
1206
+ ["custListField26", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField26")]],
1207
+ ["custListField27", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField27")]],
1208
+ ["custListField28", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField28")]],
1209
+ ["custListField29", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField29")]],
1210
+ ["custListField3", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField3")]],
1211
+ ["custListField30", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField30")]],
1212
+ ["custListField31", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField31")]],
1213
+ ["custListField32", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField32")]],
1214
+ ["custListField33", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField33")]],
1215
+ ["custListField34", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField34")]],
1216
+ ["custListField35", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField35")]],
1217
+ ["custListField36", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField36")]],
1218
+ ["custListField37", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField37")]],
1219
+ ["custListField38", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField38")]],
1220
+ ["custListField39", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField39")]],
1221
+ ["custListField4", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField4")]],
1222
+ ["custListField40", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField40")]],
1223
+ ["custListField41", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField41")]],
1224
+ ["custListField42", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField42")]],
1225
+ ["custListField43", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField43")]],
1226
+ ["custListField44", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField44")]],
1227
+ ["custListField45", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField45")]],
1228
+ ["custListField46", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField46")]],
1229
+ ["custListField47", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField47")]],
1230
+ ["custListField48", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField48")]],
1231
+ ["custListField49", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField49")]],
1232
+ ["custListField5", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField5")]],
1233
+ ["custListField50", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField50")]],
1234
+ ["custListField6", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField6")]],
1235
+ ["custListField7", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField7")]],
1236
+ ["custListField8", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField8")]],
1237
+ ["custListField9", ["SOAP::SOAPInt", XSD::QName.new(nil, "custListField9")]],
1238
+ ["custLongTextField1", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField1")], [0, 1]],
1239
+ ["custLongTextField10", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField10")], [0, 1]],
1240
+ ["custLongTextField11", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField11")], [0, 1]],
1241
+ ["custLongTextField12", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField12")], [0, 1]],
1242
+ ["custLongTextField13", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField13")], [0, 1]],
1243
+ ["custLongTextField14", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField14")], [0, 1]],
1244
+ ["custLongTextField15", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField15")], [0, 1]],
1245
+ ["custLongTextField16", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField16")], [0, 1]],
1246
+ ["custLongTextField17", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField17")], [0, 1]],
1247
+ ["custLongTextField18", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField18")], [0, 1]],
1248
+ ["custLongTextField19", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField19")], [0, 1]],
1249
+ ["custLongTextField2", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField2")], [0, 1]],
1250
+ ["custLongTextField20", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField20")], [0, 1]],
1251
+ ["custLongTextField21", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField21")], [0, 1]],
1252
+ ["custLongTextField22", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField22")], [0, 1]],
1253
+ ["custLongTextField23", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField23")], [0, 1]],
1254
+ ["custLongTextField24", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField24")], [0, 1]],
1255
+ ["custLongTextField25", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField25")], [0, 1]],
1256
+ ["custLongTextField26", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField26")], [0, 1]],
1257
+ ["custLongTextField27", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField27")], [0, 1]],
1258
+ ["custLongTextField28", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField28")], [0, 1]],
1259
+ ["custLongTextField29", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField29")], [0, 1]],
1260
+ ["custLongTextField3", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField3")], [0, 1]],
1261
+ ["custLongTextField30", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField30")], [0, 1]],
1262
+ ["custLongTextField31", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField31")], [0, 1]],
1263
+ ["custLongTextField32", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField32")], [0, 1]],
1264
+ ["custLongTextField33", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField33")], [0, 1]],
1265
+ ["custLongTextField34", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField34")], [0, 1]],
1266
+ ["custLongTextField35", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField35")], [0, 1]],
1267
+ ["custLongTextField36", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField36")], [0, 1]],
1268
+ ["custLongTextField37", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField37")], [0, 1]],
1269
+ ["custLongTextField38", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField38")], [0, 1]],
1270
+ ["custLongTextField39", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField39")], [0, 1]],
1271
+ ["custLongTextField4", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField4")], [0, 1]],
1272
+ ["custLongTextField40", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField40")], [0, 1]],
1273
+ ["custLongTextField41", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField41")], [0, 1]],
1274
+ ["custLongTextField42", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField42")], [0, 1]],
1275
+ ["custLongTextField43", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField43")], [0, 1]],
1276
+ ["custLongTextField44", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField44")], [0, 1]],
1277
+ ["custLongTextField45", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField45")], [0, 1]],
1278
+ ["custLongTextField46", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField46")], [0, 1]],
1279
+ ["custLongTextField47", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField47")], [0, 1]],
1280
+ ["custLongTextField48", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField48")], [0, 1]],
1281
+ ["custLongTextField49", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField49")], [0, 1]],
1282
+ ["custLongTextField5", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField5")], [0, 1]],
1283
+ ["custLongTextField50", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField50")], [0, 1]],
1284
+ ["custLongTextField6", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField6")], [0, 1]],
1285
+ ["custLongTextField7", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField7")], [0, 1]],
1286
+ ["custLongTextField8", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField8")], [0, 1]],
1287
+ ["custLongTextField9", ["SOAP::SOAPString", XSD::QName.new(nil, "custLongTextField9")], [0, 1]],
1288
+ ["custTextField1", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField1")], [0, 1]],
1289
+ ["custTextField10", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField10")], [0, 1]],
1290
+ ["custTextField11", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField11")], [0, 1]],
1291
+ ["custTextField12", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField12")], [0, 1]],
1292
+ ["custTextField13", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField13")], [0, 1]],
1293
+ ["custTextField14", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField14")], [0, 1]],
1294
+ ["custTextField15", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField15")], [0, 1]],
1295
+ ["custTextField16", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField16")], [0, 1]],
1296
+ ["custTextField17", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField17")], [0, 1]],
1297
+ ["custTextField18", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField18")], [0, 1]],
1298
+ ["custTextField19", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField19")], [0, 1]],
1299
+ ["custTextField2", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField2")], [0, 1]],
1300
+ ["custTextField20", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField20")], [0, 1]],
1301
+ ["custTextField21", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField21")], [0, 1]],
1302
+ ["custTextField22", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField22")], [0, 1]],
1303
+ ["custTextField23", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField23")], [0, 1]],
1304
+ ["custTextField24", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField24")], [0, 1]],
1305
+ ["custTextField25", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField25")], [0, 1]],
1306
+ ["custTextField26", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField26")], [0, 1]],
1307
+ ["custTextField27", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField27")], [0, 1]],
1308
+ ["custTextField28", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField28")], [0, 1]],
1309
+ ["custTextField29", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField29")], [0, 1]],
1310
+ ["custTextField3", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField3")], [0, 1]],
1311
+ ["custTextField30", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField30")], [0, 1]],
1312
+ ["custTextField31", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField31")], [0, 1]],
1313
+ ["custTextField32", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField32")], [0, 1]],
1314
+ ["custTextField33", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField33")], [0, 1]],
1315
+ ["custTextField34", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField34")], [0, 1]],
1316
+ ["custTextField35", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField35")], [0, 1]],
1317
+ ["custTextField36", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField36")], [0, 1]],
1318
+ ["custTextField37", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField37")], [0, 1]],
1319
+ ["custTextField38", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField38")], [0, 1]],
1320
+ ["custTextField39", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField39")], [0, 1]],
1321
+ ["custTextField4", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField4")], [0, 1]],
1322
+ ["custTextField40", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField40")], [0, 1]],
1323
+ ["custTextField41", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField41")], [0, 1]],
1324
+ ["custTextField42", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField42")], [0, 1]],
1325
+ ["custTextField43", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField43")], [0, 1]],
1326
+ ["custTextField44", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField44")], [0, 1]],
1327
+ ["custTextField45", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField45")], [0, 1]],
1328
+ ["custTextField46", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField46")], [0, 1]],
1329
+ ["custTextField47", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField47")], [0, 1]],
1330
+ ["custTextField48", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField48")], [0, 1]],
1331
+ ["custTextField49", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField49")], [0, 1]],
1332
+ ["custTextField5", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField5")], [0, 1]],
1333
+ ["custTextField50", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField50")], [0, 1]],
1334
+ ["custTextField6", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField6")], [0, 1]],
1335
+ ["custTextField7", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField7")], [0, 1]],
1336
+ ["custTextField8", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField8")], [0, 1]],
1337
+ ["custTextField9", ["SOAP::SOAPString", XSD::QName.new(nil, "custTextField9")], [0, 1]],
1338
+ ["customDateFields", ["ApiCI::CustomDateFields", XSD::QName.new(nil, "customDateFields")]],
1339
+ ["customFields", ["ApiCI::CustomFields", XSD::QName.new(nil, "customFields")]],
1340
+ ["historyVersion", ["SOAP::SOAPInt", XSD::QName.new(nil, "historyVersion")]],
1341
+ ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]],
1342
+ ["location", ["SOAP::SOAPInt", XSD::QName.new(nil, "location")]],
1343
+ ["notes", ["SOAP::SOAPString", XSD::QName.new(nil, "notes")], [0, 1]],
1344
+ ["owner", ["SOAP::SOAPString", XSD::QName.new(nil, "owner")], [0, 1]],
1345
+ ["ownerGroup", ["SOAP::SOAPString", XSD::QName.new(nil, "ownerGroup")], [0, 1]],
1346
+ ["priority", ["SOAP::SOAPInt", XSD::QName.new(nil, "priority")]],
1347
+ ["serialNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "serialNumber")], [0, 1]],
1348
+ ["status", ["SOAP::SOAPInt", XSD::QName.new(nil, "status")]],
1349
+ ["subCategory", ["SOAP::SOAPString", XSD::QName.new(nil, "subCategory")], [0, 1]],
1350
+ ["supplier", ["SOAP::SOAPInt", XSD::QName.new(nil, "supplier")]],
1351
+ ["supplyDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "supplyDate")], [0, 1]],
1352
+ ["thirdLevelCategory", ["SOAP::SOAPString", XSD::QName.new(nil, "thirdLevelCategory")], [0, 1]],
1353
+ ["users", ["SOAP::SOAPString", XSD::QName.new(nil, "users")], [0, 1]]
1354
+ ]
1355
+ )
1356
+
1357
+ LiteralRegistry.register(
1358
+ :class => ApiCI::CustomDateFields::Entry,
1359
+ :schema_name => XSD::QName.new(nil, "entry"),
1360
+ :is_anonymous => true,
1361
+ :schema_qualified => false,
1362
+ :schema_element => [
1363
+ ["key", nil, [0, 1]],
1364
+ ["value", nil, [0, 1]]
1365
+ ]
1366
+ )
1367
+
1368
+ LiteralRegistry.register(
1369
+ :class => ApiCI::CustomDateFields,
1370
+ :schema_name => XSD::QName.new(nil, "customDateFields"),
1371
+ :is_anonymous => true,
1372
+ :schema_qualified => false,
1373
+ :schema_element => [
1374
+ ["entry", "ApiCI::CustomDateFields::Entry[]", [0, nil]]
1375
+ ]
1376
+ )
1377
+
1378
+ LiteralRegistry.register(
1379
+ :class => ApiCI::CustomFields::Entry,
1380
+ :schema_name => XSD::QName.new(nil, "entry"),
1381
+ :is_anonymous => true,
1382
+ :schema_qualified => false,
1383
+ :schema_element => [
1384
+ ["key", nil, [0, 1]],
1385
+ ["value", nil, [0, 1]]
1386
+ ]
1387
+ )
1388
+
1389
+ LiteralRegistry.register(
1390
+ :class => ApiCI::CustomFields,
1391
+ :schema_name => XSD::QName.new(nil, "customFields"),
1392
+ :is_anonymous => true,
1393
+ :schema_qualified => false,
1394
+ :schema_element => [
1395
+ ["entry", "ApiCI::CustomFields::Entry[]", [0, nil]]
1396
+ ]
1397
+ )
1398
+
1399
+ LiteralRegistry.register(
1400
+ :class => ApiServiceRequest,
1401
+ :schema_type => XSD::QName.new(NsApiIlientCom, "apiServiceRequest"),
1402
+ :schema_basetype => XSD::QName.new(NsApiIlientCom, "apiSysaidObject"),
1403
+ :schema_element => [
1404
+ ["agreement", ["SOAP::SOAPInt", XSD::QName.new(nil, "agreement")]],
1405
+ ["assignCounter", ["SOAP::SOAPInt", XSD::QName.new(nil, "assignCounter")]],
1406
+ ["assignedGroup", ["SOAP::SOAPString", XSD::QName.new(nil, "assignedGroup")], [0, 1]],
1407
+ ["assignedTo", ["SOAP::SOAPString", XSD::QName.new(nil, "assignedTo")], [0, 1]],
1408
+ ["cIId", ["SOAP::SOAPInt", XSD::QName.new(nil, "CIId")]],
1409
+ ["category", ["SOAP::SOAPString", XSD::QName.new(nil, "category")], [0, 1]],
1410
+ ["cc", ["SOAP::SOAPString", XSD::QName.new(nil, "cc")], [0, 1]],
1411
+ ["closeTime", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "closeTime")], [0, 1]],
1412
+ ["computerID", ["SOAP::SOAPString", XSD::QName.new(nil, "computerID")], [0, 1]],
1413
+ ["currentSupportLevel", ["SOAP::SOAPInt", XSD::QName.new(nil, "currentSupportLevel")]],
1414
+ ["custDate1", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate1")], [0, 1]],
1415
+ ["custDate2", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate2")], [0, 1]],
1416
+ ["custInt1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt1")]],
1417
+ ["custInt2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt2")]],
1418
+ ["custList1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList1")]],
1419
+ ["custList2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList2")]],
1420
+ ["custNotes", ["SOAP::SOAPString", XSD::QName.new(nil, "custNotes")], [0, 1]],
1421
+ ["custText1", ["SOAP::SOAPString", XSD::QName.new(nil, "custText1")], [0, 1]],
1422
+ ["custText2", ["SOAP::SOAPString", XSD::QName.new(nil, "custText2")], [0, 1]],
1423
+ ["customDateFields", ["ApiServiceRequest::CustomDateFields", XSD::QName.new(nil, "customDateFields")]],
1424
+ ["customFields", ["ApiServiceRequest::CustomFields", XSD::QName.new(nil, "customFields")]],
1425
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")], [0, 1]],
1426
+ ["dueDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "dueDate")], [0, 1]],
1427
+ ["emailAccount", ["SOAP::SOAPString", XSD::QName.new(nil, "emailAccount")], [0, 1]],
1428
+ ["escalation", ["SOAP::SOAPInt", XSD::QName.new(nil, "escalation")]],
1429
+ ["followupActualDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "followupActualDate")], [0, 1]],
1430
+ ["followupPlannedDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "followupPlannedDate")], [0, 1]],
1431
+ ["followupText", ["SOAP::SOAPString", XSD::QName.new(nil, "followupText")], [0, 1]],
1432
+ ["followupUser", ["SOAP::SOAPString", XSD::QName.new(nil, "followupUser")], [0, 1]],
1433
+ ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]],
1434
+ ["insertTime", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "insertTime")], [0, 1]],
1435
+ ["location", ["SOAP::SOAPInt", XSD::QName.new(nil, "location")]],
1436
+ ["maxSupportLevel", ["SOAP::SOAPInt", XSD::QName.new(nil, "maxSupportLevel")]],
1437
+ ["notes", ["SOAP::SOAPString", XSD::QName.new(nil, "notes")], [0, 1]],
1438
+ ["parentLink", ["SOAP::SOAPInt", XSD::QName.new(nil, "parentLink")]],
1439
+ ["priority", ["SOAP::SOAPInt", XSD::QName.new(nil, "priority")]],
1440
+ ["projectID", ["SOAP::SOAPInt", XSD::QName.new(nil, "projectID")]],
1441
+ ["reopenCounter", ["SOAP::SOAPInt", XSD::QName.new(nil, "reopenCounter")]],
1442
+ ["requestUser", ["SOAP::SOAPString", XSD::QName.new(nil, "requestUser")], [0, 1]],
1443
+ ["resolution", ["SOAP::SOAPString", XSD::QName.new(nil, "resolution")], [0, 1]],
1444
+ ["responsibleManager", ["SOAP::SOAPString", XSD::QName.new(nil, "responsibleManager")], [0, 1]],
1445
+ ["solution", ["SOAP::SOAPString", XSD::QName.new(nil, "solution")], [0, 1]],
1446
+ ["source", ["SOAP::SOAPInt", XSD::QName.new(nil, "source")]],
1447
+ ["srSubType", ["SOAP::SOAPInt", XSD::QName.new(nil, "srSubType")]],
1448
+ ["srType", ["SOAP::SOAPInt", XSD::QName.new(nil, "srType")]],
1449
+ ["status", ["SOAP::SOAPInt", XSD::QName.new(nil, "status")]],
1450
+ ["subCategory", ["SOAP::SOAPString", XSD::QName.new(nil, "subCategory")], [0, 1]],
1451
+ ["submitUser", ["SOAP::SOAPString", XSD::QName.new(nil, "submitUser")], [0, 1]],
1452
+ ["successRating", ["SOAP::SOAPInt", XSD::QName.new(nil, "successRating")]],
1453
+ ["taskID", ["SOAP::SOAPInt", XSD::QName.new(nil, "taskID")]],
1454
+ ["thirdLevelCategory", ["SOAP::SOAPString", XSD::QName.new(nil, "thirdLevelCategory")], [0, 1]],
1455
+ ["title", ["SOAP::SOAPString", XSD::QName.new(nil, "title")], [0, 1]],
1456
+ ["updateTime", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "updateTime")], [0, 1]],
1457
+ ["updateUser", ["SOAP::SOAPString", XSD::QName.new(nil, "updateUser")], [0, 1]],
1458
+ ["urgency", ["SOAP::SOAPInt", XSD::QName.new(nil, "urgency")]],
1459
+ ["userManager", ["SOAP::SOAPString", XSD::QName.new(nil, "userManager")], [0, 1]],
1460
+ ["version", ["SOAP::SOAPInt", XSD::QName.new(nil, "version")]]
1461
+ ]
1462
+ )
1463
+
1464
+ LiteralRegistry.register(
1465
+ :class => ApiServiceRequest::CustomDateFields::Entry,
1466
+ :schema_name => XSD::QName.new(nil, "entry"),
1467
+ :is_anonymous => true,
1468
+ :schema_qualified => false,
1469
+ :schema_element => [
1470
+ ["key", nil, [0, 1]],
1471
+ ["value", nil, [0, 1]]
1472
+ ]
1473
+ )
1474
+
1475
+ LiteralRegistry.register(
1476
+ :class => ApiServiceRequest::CustomDateFields,
1477
+ :schema_name => XSD::QName.new(nil, "customDateFields"),
1478
+ :is_anonymous => true,
1479
+ :schema_qualified => false,
1480
+ :schema_element => [
1481
+ ["entry", "ApiServiceRequest::CustomDateFields::Entry[]", [0, nil]]
1482
+ ]
1483
+ )
1484
+
1485
+ LiteralRegistry.register(
1486
+ :class => ApiServiceRequest::CustomFields::Entry,
1487
+ :schema_name => XSD::QName.new(nil, "entry"),
1488
+ :is_anonymous => true,
1489
+ :schema_qualified => false,
1490
+ :schema_element => [
1491
+ ["key", nil, [0, 1]],
1492
+ ["value", nil, [0, 1]]
1493
+ ]
1494
+ )
1495
+
1496
+ LiteralRegistry.register(
1497
+ :class => ApiServiceRequest::CustomFields,
1498
+ :schema_name => XSD::QName.new("http://www.w3.org/2001/XMLSchema", "customFields"),
1499
+ :is_anonymous => true,
1500
+ :schema_qualified => false,
1501
+ :schema_element => [
1502
+ ["entry", "ApiServiceRequest::CustomFields::Entry[]", [0, nil]]
1503
+ ]
1504
+ )
1505
+
1506
+ LiteralRegistry.register(
1507
+ :class => ApiComputer,
1508
+ :schema_type => XSD::QName.new(NsApiIlientCom, "apiComputer"),
1509
+ :schema_basetype => XSD::QName.new(NsApiIlientCom, "apiSysaidObject"),
1510
+ :schema_element => [
1511
+ ["agentVersion", ["SOAP::SOAPString", XSD::QName.new(nil, "agentVersion")], [0, 1]],
1512
+ ["biosType", ["SOAP::SOAPString", XSD::QName.new(nil, "biosType")], [0, 1]],
1513
+ ["building", ["SOAP::SOAPString", XSD::QName.new(nil, "building")], [0, 1]],
1514
+ ["cIId", ["SOAP::SOAPInt", XSD::QName.new(nil, "CIId")]],
1515
+ ["catalogNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "catalogNumber")], [0, 1]],
1516
+ ["collectionParams", ["SOAP::SOAPString", XSD::QName.new(nil, "collectionParams")], [0, 1]],
1517
+ ["collectionType", ["SOAP::SOAPInt", XSD::QName.new(nil, "collectionType")]],
1518
+ ["company", ["SOAP::SOAPInt", XSD::QName.new(nil, "company")]],
1519
+ ["companySerial", ["SOAP::SOAPString", XSD::QName.new(nil, "companySerial")], [0, 1]],
1520
+ ["computerID", ["SOAP::SOAPString", XSD::QName.new(nil, "computerID")], [0, 1]],
1521
+ ["computerName", ["SOAP::SOAPString", XSD::QName.new(nil, "computerName")], [0, 1]],
1522
+ ["cpuCount", ["SOAP::SOAPInt", XSD::QName.new(nil, "cpuCount")]],
1523
+ ["cpuModel", ["SOAP::SOAPString", XSD::QName.new(nil, "cpuModel")], [0, 1]],
1524
+ ["cpuSpeed", ["SOAP::SOAPInt", XSD::QName.new(nil, "cpuSpeed")]],
1525
+ ["cpuVendor", ["SOAP::SOAPString", XSD::QName.new(nil, "cpuVendor")], [0, 1]],
1526
+ ["cubic", ["SOAP::SOAPString", XSD::QName.new(nil, "cubic")], [0, 1]],
1527
+ ["custDate1", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate1")], [0, 1]],
1528
+ ["custDate2", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate2")], [0, 1]],
1529
+ ["custInt1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt1")]],
1530
+ ["custInt2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt2")]],
1531
+ ["custList1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList1")]],
1532
+ ["custList2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList2")]],
1533
+ ["custNotes", ["SOAP::SOAPString", XSD::QName.new(nil, "custNotes")], [0, 1]],
1534
+ ["custText1", ["SOAP::SOAPString", XSD::QName.new(nil, "custText1")], [0, 1]],
1535
+ ["custText2", ["SOAP::SOAPString", XSD::QName.new(nil, "custText2")], [0, 1]],
1536
+ ["customDateFields", ["ApiComputer::CustomDateFields", XSD::QName.new(nil, "customDateFields")]],
1537
+ ["customFields", ["ApiComputer::CustomFields", XSD::QName.new(nil, "customFields")]],
1538
+ ["department", ["SOAP::SOAPInt", XSD::QName.new(nil, "department")]],
1539
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")], [0, 1]],
1540
+ ["disable", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "disable")]],
1541
+ ["disksCount", ["SOAP::SOAPInt", XSD::QName.new(nil, "disksCount")]],
1542
+ ["disksSize", ["SOAP::SOAPInt", XSD::QName.new(nil, "disksSize")]],
1543
+ ["displayAdapter", ["SOAP::SOAPString", XSD::QName.new(nil, "displayAdapter")], [0, 1]],
1544
+ ["displayMemory", ["SOAP::SOAPInt", XSD::QName.new(nil, "displayMemory")]],
1545
+ ["displayResolution", ["SOAP::SOAPString", XSD::QName.new(nil, "displayResolution")], [0, 1]],
1546
+ ["externalSerial", ["SOAP::SOAPString", XSD::QName.new(nil, "externalSerial")], [0, 1]],
1547
+ ["floor", ["SOAP::SOAPString", XSD::QName.new(nil, "floor")], [0, 1]],
1548
+ ["freeMemBanks", ["SOAP::SOAPInt", XSD::QName.new(nil, "freeMemBanks")]],
1549
+ ["groupName", ["SOAP::SOAPString", XSD::QName.new(nil, "groupName")], [0, 1]],
1550
+ ["ipAddress", ["SOAP::SOAPString", XSD::QName.new(nil, "ipAddress")], [0, 1]],
1551
+ ["lastMaintenanceDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "lastMaintenanceDate")], [0, 1]],
1552
+ ["locationIdx", ["SOAP::SOAPInt", XSD::QName.new(nil, "locationIdx")]],
1553
+ ["macAddress", ["SOAP::SOAPString", XSD::QName.new(nil, "macAddress")], [0, 1]],
1554
+ ["maintenanceSupplierID", ["SOAP::SOAPInt", XSD::QName.new(nil, "maintenanceSupplierID")]],
1555
+ ["memBanks", ["SOAP::SOAPInt", XSD::QName.new(nil, "memBanks")]],
1556
+ ["memoryPhysical", ["SOAP::SOAPLong", XSD::QName.new(nil, "memoryPhysical")]],
1557
+ ["monitor", ["SOAP::SOAPString", XSD::QName.new(nil, "monitor")], [0, 1]],
1558
+ ["monitorSerial", ["SOAP::SOAPString", XSD::QName.new(nil, "monitorSerial")], [0, 1]],
1559
+ ["oSName", ["SOAP::SOAPString", XSD::QName.new(nil, "OSName")], [0, 1]],
1560
+ ["oSPlatform", ["SOAP::SOAPString", XSD::QName.new(nil, "OSPlatform")], [0, 1]],
1561
+ ["oSServicePack", ["SOAP::SOAPString", XSD::QName.new(nil, "OSServicePack")], [0, 1]],
1562
+ ["oSVersion", ["SOAP::SOAPString", XSD::QName.new(nil, "OSVersion")], [0, 1]],
1563
+ ["occupiedMemBanks", ["SOAP::SOAPInt", XSD::QName.new(nil, "occupiedMemBanks")]],
1564
+ ["packetsIn", ["SOAP::SOAPFloat", XSD::QName.new(nil, "packetsIn")]],
1565
+ ["packetsOut", ["SOAP::SOAPFloat", XSD::QName.new(nil, "packetsOut")]],
1566
+ ["parentAsset", ["SOAP::SOAPString", XSD::QName.new(nil, "parentAsset")], [0, 1]],
1567
+ ["purchaseDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "purchaseDate")], [0, 1]],
1568
+ ["purchasePrice", ["SOAP::SOAPFloat", XSD::QName.new(nil, "purchasePrice")]],
1569
+ ["serial", ["SOAP::SOAPString", XSD::QName.new(nil, "serial")], [0, 1]],
1570
+ ["snmpCustText1", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText1")], [0, 1]],
1571
+ ["snmpCustText10", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText10")], [0, 1]],
1572
+ ["snmpCustText11", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText11")], [0, 1]],
1573
+ ["snmpCustText12", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText12")], [0, 1]],
1574
+ ["snmpCustText13", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText13")], [0, 1]],
1575
+ ["snmpCustText14", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText14")], [0, 1]],
1576
+ ["snmpCustText15", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText15")], [0, 1]],
1577
+ ["snmpCustText16", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText16")], [0, 1]],
1578
+ ["snmpCustText17", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText17")], [0, 1]],
1579
+ ["snmpCustText18", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText18")], [0, 1]],
1580
+ ["snmpCustText19", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText19")], [0, 1]],
1581
+ ["snmpCustText2", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText2")], [0, 1]],
1582
+ ["snmpCustText20", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText20")], [0, 1]],
1583
+ ["snmpCustText3", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText3")], [0, 1]],
1584
+ ["snmpCustText4", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText4")], [0, 1]],
1585
+ ["snmpCustText5", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText5")], [0, 1]],
1586
+ ["snmpCustText6", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText6")], [0, 1]],
1587
+ ["snmpCustText7", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText7")], [0, 1]],
1588
+ ["snmpCustText8", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText8")], [0, 1]],
1589
+ ["snmpCustText9", ["SOAP::SOAPString", XSD::QName.new(nil, "snmpCustText9")], [0, 1]],
1590
+ ["supplierID", ["SOAP::SOAPInt", XSD::QName.new(nil, "supplierID")]],
1591
+ ["systemManufacturer", ["SOAP::SOAPString", XSD::QName.new(nil, "systemManufacturer")], [0, 1]],
1592
+ ["systemModel", ["SOAP::SOAPString", XSD::QName.new(nil, "systemModel")], [0, 1]],
1593
+ ["updateTime", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "updateTime")], [0, 1]],
1594
+ ["userName", ["SOAP::SOAPString", XSD::QName.new(nil, "userName")], [0, 1]],
1595
+ ["version", ["SOAP::SOAPInt", XSD::QName.new(nil, "version")]],
1596
+ ["warrantyExpirationDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "warrantyExpirationDate")], [0, 1]]
1597
+ ]
1598
+ )
1599
+
1600
+ LiteralRegistry.register(
1601
+ :class => ApiComputer::CustomDateFields::Entry,
1602
+ :schema_name => XSD::QName.new(nil, "entry"),
1603
+ :is_anonymous => true,
1604
+ :schema_qualified => false,
1605
+ :schema_element => [
1606
+ ["key", nil, [0, 1]],
1607
+ ["value", nil, [0, 1]]
1608
+ ]
1609
+ )
1610
+
1611
+ LiteralRegistry.register(
1612
+ :class => ApiComputer::CustomDateFields,
1613
+ :schema_name => XSD::QName.new(nil, "customDateFields"),
1614
+ :is_anonymous => true,
1615
+ :schema_qualified => false,
1616
+ :schema_element => [
1617
+ ["entry", "ApiComputer::CustomDateFields::Entry[]", [0, nil]]
1618
+ ]
1619
+ )
1620
+
1621
+ LiteralRegistry.register(
1622
+ :class => ApiComputer::CustomFields::Entry,
1623
+ :schema_name => XSD::QName.new(nil, "entry"),
1624
+ :is_anonymous => true,
1625
+ :schema_qualified => false,
1626
+ :schema_element => [
1627
+ ["key", nil, [0, 1]],
1628
+ ["value", nil, [0, 1]]
1629
+ ]
1630
+ )
1631
+
1632
+ LiteralRegistry.register(
1633
+ :class => ApiComputer::CustomFields,
1634
+ :schema_name => XSD::QName.new(nil, "customFields"),
1635
+ :is_anonymous => true,
1636
+ :schema_qualified => false,
1637
+ :schema_element => [
1638
+ ["entry", "ApiComputer::CustomFields::Entry[]", [0, nil]]
1639
+ ]
1640
+ )
1641
+
1642
+ LiteralRegistry.register(
1643
+ :class => ApiSoftware,
1644
+ :schema_type => XSD::QName.new(NsApiIlientCom, "apiSoftware"),
1645
+ :schema_basetype => XSD::QName.new(NsApiIlientCom, "apiSysaidObject"),
1646
+ :schema_element => [
1647
+ ["cIId", ["SOAP::SOAPInt", XSD::QName.new(nil, "CIId")]],
1648
+ ["company", ["SOAP::SOAPInt", XSD::QName.new(nil, "company")]],
1649
+ ["custDate1", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate1")], [0, 1]],
1650
+ ["custDate2", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate2")], [0, 1]],
1651
+ ["custInt1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt1")]],
1652
+ ["custInt2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt2")]],
1653
+ ["custList1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList1")]],
1654
+ ["custList2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList2")]],
1655
+ ["custNotes", ["SOAP::SOAPString", XSD::QName.new(nil, "custNotes")], [0, 1]],
1656
+ ["custText1", ["SOAP::SOAPString", XSD::QName.new(nil, "custText1")], [0, 1]],
1657
+ ["custText2", ["SOAP::SOAPString", XSD::QName.new(nil, "custText2")], [0, 1]],
1658
+ ["freeware", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "freeware")]],
1659
+ ["historyVersion", ["SOAP::SOAPInt", XSD::QName.new(nil, "historyVersion")]],
1660
+ ["inst_names", ["[]", XSD::QName.new(nil, "inst_names")], [0, nil]],
1661
+ ["licenses", ["SOAP::SOAPInt", XSD::QName.new(nil, "licenses")]],
1662
+ ["notes", ["SOAP::SOAPString", XSD::QName.new(nil, "notes")], [0, 1]],
1663
+ ["productName", ["SOAP::SOAPString", XSD::QName.new(nil, "productName")], [0, 1]],
1664
+ ["purchaseDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "purchaseDate")], [0, 1]],
1665
+ ["softwareID", ["SOAP::SOAPInt", XSD::QName.new(nil, "softwareID")]],
1666
+ ["supplierID", ["SOAP::SOAPInt", XSD::QName.new(nil, "supplierID")]],
1667
+ ["supportExpiration", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "supportExpiration")], [0, 1]],
1668
+ ["vendor", ["SOAP::SOAPString", XSD::QName.new(nil, "vendor")], [0, 1]],
1669
+ ["version", ["SOAP::SOAPString", XSD::QName.new(nil, "version")], [0, 1]]
1670
+ ]
1671
+ )
1672
+
1673
+ LiteralRegistry.register(
1674
+ :class => ApiCompany,
1675
+ :schema_type => XSD::QName.new(NsApiIlientCom, "apiCompany"),
1676
+ :schema_basetype => XSD::QName.new(NsApiIlientCom, "apiSysaidObject"),
1677
+ :schema_element => [
1678
+ ["address", ["SOAP::SOAPString", XSD::QName.new(nil, "address")], [0, 1]],
1679
+ ["address2", ["SOAP::SOAPString", XSD::QName.new(nil, "address2")], [0, 1]],
1680
+ ["agreement", ["SOAP::SOAPInt", XSD::QName.new(nil, "agreement")]],
1681
+ ["agreementEnd", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "agreementEnd")], [0, 1]],
1682
+ ["agreementStart", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "agreementStart")], [0, 1]],
1683
+ ["city", ["SOAP::SOAPString", XSD::QName.new(nil, "city")], [0, 1]],
1684
+ ["country", ["SOAP::SOAPString", XSD::QName.new(nil, "country")], [0, 1]],
1685
+ ["custDate1", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate1")], [0, 1]],
1686
+ ["custDate2", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate2")], [0, 1]],
1687
+ ["custInt1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt1")]],
1688
+ ["custInt2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt2")]],
1689
+ ["custList1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList1")]],
1690
+ ["custList2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList2")]],
1691
+ ["custNotes", ["SOAP::SOAPString", XSD::QName.new(nil, "custNotes")], [0, 1]],
1692
+ ["custText1", ["SOAP::SOAPString", XSD::QName.new(nil, "custText1")], [0, 1]],
1693
+ ["custText2", ["SOAP::SOAPString", XSD::QName.new(nil, "custText2")], [0, 1]],
1694
+ ["expirationTime", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "expirationTime")], [0, 1]],
1695
+ ["fax", ["SOAP::SOAPString", XSD::QName.new(nil, "fax")], [0, 1]],
1696
+ ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]],
1697
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")], [0, 1]],
1698
+ ["notes", ["SOAP::SOAPString", XSD::QName.new(nil, "notes")], [0, 1]],
1699
+ ["phone", ["SOAP::SOAPString", XSD::QName.new(nil, "phone")], [0, 1]],
1700
+ ["state", ["SOAP::SOAPString", XSD::QName.new(nil, "state")], [0, 1]],
1701
+ ["version", ["SOAP::SOAPInt", XSD::QName.new(nil, "version")]],
1702
+ ["zip", ["SOAP::SOAPString", XSD::QName.new(nil, "zip")], [0, 1]]
1703
+ ]
1704
+ )
1705
+
1706
+ LiteralRegistry.register(
1707
+ :class => ApiSupplier,
1708
+ :schema_type => XSD::QName.new(NsApiIlientCom, "apiSupplier"),
1709
+ :schema_basetype => XSD::QName.new(NsApiIlientCom, "apiSysaidObject"),
1710
+ :schema_element => [
1711
+ ["account", ["SOAP::SOAPString", XSD::QName.new(nil, "account")], [0, 1]],
1712
+ ["address", ["SOAP::SOAPString", XSD::QName.new(nil, "address")], [0, 1]],
1713
+ ["contact", ["SOAP::SOAPString", XSD::QName.new(nil, "contact")], [0, 1]],
1714
+ ["custDate1", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate1")], [0, 1]],
1715
+ ["custDate2", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate2")], [0, 1]],
1716
+ ["custInt1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt1")]],
1717
+ ["custInt2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt2")]],
1718
+ ["custList1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList1")]],
1719
+ ["custList2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList2")]],
1720
+ ["custNotes", ["SOAP::SOAPString", XSD::QName.new(nil, "custNotes")], [0, 1]],
1721
+ ["custText1", ["SOAP::SOAPString", XSD::QName.new(nil, "custText1")], [0, 1]],
1722
+ ["custText2", ["SOAP::SOAPString", XSD::QName.new(nil, "custText2")], [0, 1]],
1723
+ ["email", ["SOAP::SOAPString", XSD::QName.new(nil, "email")], [0, 1]],
1724
+ ["fax", ["SOAP::SOAPString", XSD::QName.new(nil, "fax")], [0, 1]],
1725
+ ["mobile", ["SOAP::SOAPString", XSD::QName.new(nil, "mobile")], [0, 1]],
1726
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")], [0, 1]],
1727
+ ["notes", ["SOAP::SOAPString", XSD::QName.new(nil, "notes")], [0, 1]],
1728
+ ["phone", ["SOAP::SOAPString", XSD::QName.new(nil, "phone")], [0, 1]],
1729
+ ["phone2", ["SOAP::SOAPString", XSD::QName.new(nil, "phone2")], [0, 1]],
1730
+ ["supplierID", ["SOAP::SOAPInt", XSD::QName.new(nil, "supplierID")]],
1731
+ ["version", ["SOAP::SOAPInt", XSD::QName.new(nil, "version")]]
1732
+ ]
1733
+ )
1734
+
1735
+ LiteralRegistry.register(
1736
+ :class => ApiSysAidUser,
1737
+ :schema_type => XSD::QName.new(NsApiIlientCom, "apiSysAidUser"),
1738
+ :schema_basetype => XSD::QName.new(NsApiIlientCom, "apiSysaidObject"),
1739
+ :schema_element => [
1740
+ ["admin", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "admin")]],
1741
+ ["agreement", ["SOAP::SOAPInt", XSD::QName.new(nil, "agreement")]],
1742
+ ["building", ["SOAP::SOAPString", XSD::QName.new(nil, "building")], [0, 1]],
1743
+ ["carNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "carNumber")], [0, 1]],
1744
+ ["cellphone", ["SOAP::SOAPString", XSD::QName.new(nil, "cellphone")], [0, 1]],
1745
+ ["company", ["SOAP::SOAPInt", XSD::QName.new(nil, "company")]],
1746
+ ["cubic", ["SOAP::SOAPString", XSD::QName.new(nil, "cubic")], [0, 1]],
1747
+ ["custDate1", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate1")], [0, 1]],
1748
+ ["custDate2", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate2")], [0, 1]],
1749
+ ["custInt1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt1")]],
1750
+ ["custInt2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt2")]],
1751
+ ["custList1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList1")]],
1752
+ ["custList2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList2")]],
1753
+ ["custNotes", ["SOAP::SOAPString", XSD::QName.new(nil, "custNotes")], [0, 1]],
1754
+ ["custText1", ["SOAP::SOAPString", XSD::QName.new(nil, "custText1")], [0, 1]],
1755
+ ["custText2", ["SOAP::SOAPString", XSD::QName.new(nil, "custText2")], [0, 1]],
1756
+ ["department", ["SOAP::SOAPInt", XSD::QName.new(nil, "department")]],
1757
+ ["disable", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "disable")]],
1758
+ ["displayName", ["SOAP::SOAPString", XSD::QName.new(nil, "displayName")], [0, 1]],
1759
+ ["email", ["SOAP::SOAPString", XSD::QName.new(nil, "email")], [0, 1]],
1760
+ ["emailNotifications", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "emailNotifications")]],
1761
+ ["enableLoginToEup", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "enableLoginToEup")]],
1762
+ ["expirationTime", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "expirationTime")], [0, 1]],
1763
+ ["firstName", ["SOAP::SOAPString", XSD::QName.new(nil, "firstName")], [0, 1]],
1764
+ ["floor", ["SOAP::SOAPString", XSD::QName.new(nil, "floor")], [0, 1]],
1765
+ ["lastName", ["SOAP::SOAPString", XSD::QName.new(nil, "lastName")], [0, 1]],
1766
+ ["location", ["SOAP::SOAPInt", XSD::QName.new(nil, "location")]],
1767
+ ["manager", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "manager")]],
1768
+ ["notes", ["SOAP::SOAPString", XSD::QName.new(nil, "notes")], [0, 1]],
1769
+ ["password", ["SOAP::SOAPString", XSD::QName.new(nil, "password")], [0, 1]],
1770
+ ["phone", ["SOAP::SOAPString", XSD::QName.new(nil, "phone")], [0, 1]],
1771
+ ["secondaryEmail", ["SOAP::SOAPString", XSD::QName.new(nil, "secondaryEmail")], [0, 1]],
1772
+ ["sms", ["SOAP::SOAPString", XSD::QName.new(nil, "sms")], [0, 1]],
1773
+ ["userManagerName", ["SOAP::SOAPString", XSD::QName.new(nil, "userManagerName")], [0, 1]],
1774
+ ["userName", ["SOAP::SOAPString", XSD::QName.new(nil, "userName")], [0, 1]]
1775
+ ]
1776
+ )
1777
+
1778
+ LiteralRegistry.register(
1779
+ :class => ApiProject,
1780
+ :schema_type => XSD::QName.new(NsApiIlientCom, "apiProject"),
1781
+ :schema_basetype => XSD::QName.new(NsApiIlientCom, "apiSysaidObject"),
1782
+ :schema_element => [
1783
+ ["assignedGroup", ["SOAP::SOAPString", XSD::QName.new(nil, "assignedGroup")], [0, 1]],
1784
+ ["category", ["SOAP::SOAPInt", XSD::QName.new(nil, "category")]],
1785
+ ["company", ["SOAP::SOAPInt", XSD::QName.new(nil, "company")]],
1786
+ ["custDate1", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate1")], [0, 1]],
1787
+ ["custDate2", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate2")], [0, 1]],
1788
+ ["custInt1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt1")]],
1789
+ ["custInt2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt2")]],
1790
+ ["custList1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList1")]],
1791
+ ["custList2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList2")]],
1792
+ ["custNotes", ["SOAP::SOAPString", XSD::QName.new(nil, "custNotes")], [0, 1]],
1793
+ ["custText1", ["SOAP::SOAPString", XSD::QName.new(nil, "custText1")], [0, 1]],
1794
+ ["custText2", ["SOAP::SOAPString", XSD::QName.new(nil, "custText2")], [0, 1]],
1795
+ ["customDateFields", ["ApiProject::CustomDateFields", XSD::QName.new(nil, "customDateFields")]],
1796
+ ["customFields", ["ApiProject::CustomFields", XSD::QName.new(nil, "customFields")]],
1797
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")], [0, 1]],
1798
+ ["endTime", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "endTime")], [0, 1]],
1799
+ ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]],
1800
+ ["incidentTitle", ["SOAP::SOAPString", XSD::QName.new(nil, "incidentTitle")], [0, 1]],
1801
+ ["manager", ["SOAP::SOAPString", XSD::QName.new(nil, "manager")], [0, 1]],
1802
+ ["notes", ["SOAP::SOAPString", XSD::QName.new(nil, "notes")], [0, 1]],
1803
+ ["progress", ["SOAP::SOAPInt", XSD::QName.new(nil, "progress")]],
1804
+ ["rawEstimation", ["SOAP::SOAPInt", XSD::QName.new(nil, "rawEstimation")]],
1805
+ ["requestGroup", ["SOAP::SOAPString", XSD::QName.new(nil, "requestGroup")], [0, 1]],
1806
+ ["startTime", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "startTime")], [0, 1]],
1807
+ ["status", ["SOAP::SOAPInt", XSD::QName.new(nil, "status")]],
1808
+ ["title", ["SOAP::SOAPString", XSD::QName.new(nil, "title")], [0, 1]],
1809
+ ["version", ["SOAP::SOAPInt", XSD::QName.new(nil, "version")]]
1810
+ ]
1811
+ )
1812
+
1813
+ LiteralRegistry.register(
1814
+ :class => ApiProject::CustomDateFields::Entry,
1815
+ :schema_name => XSD::QName.new(nil, "entry"),
1816
+ :is_anonymous => true,
1817
+ :schema_qualified => false,
1818
+ :schema_element => [
1819
+ ["key", nil, [0, 1]],
1820
+ ["value", nil, [0, 1]]
1821
+ ]
1822
+ )
1823
+
1824
+ LiteralRegistry.register(
1825
+ :class => ApiProject::CustomDateFields,
1826
+ :schema_name => XSD::QName.new(nil, "customDateFields"),
1827
+ :is_anonymous => true,
1828
+ :schema_qualified => false,
1829
+ :schema_element => [
1830
+ ["entry", "ApiProject::CustomDateFields::Entry[]", [0, nil]]
1831
+ ]
1832
+ )
1833
+
1834
+ LiteralRegistry.register(
1835
+ :class => ApiProject::CustomFields::Entry,
1836
+ :schema_name => XSD::QName.new(nil, "entry"),
1837
+ :is_anonymous => true,
1838
+ :schema_qualified => false,
1839
+ :schema_element => [
1840
+ ["key", nil, [0, 1]],
1841
+ ["value", nil, [0, 1]]
1842
+ ]
1843
+ )
1844
+
1845
+ LiteralRegistry.register(
1846
+ :class => ApiProject::CustomFields,
1847
+ :schema_name => XSD::QName.new(nil, "customFields"),
1848
+ :is_anonymous => true,
1849
+ :schema_qualified => false,
1850
+ :schema_element => [
1851
+ ["entry", "ApiProject::CustomFields::Entry[]", [0, nil]]
1852
+ ]
1853
+ )
1854
+
1855
+ LiteralRegistry.register(
1856
+ :class => ApiTask,
1857
+ :schema_type => XSD::QName.new(NsApiIlientCom, "apiTask"),
1858
+ :schema_basetype => XSD::QName.new(NsApiIlientCom, "apiSysaidObject"),
1859
+ :schema_element => [
1860
+ ["category", ["SOAP::SOAPInt", XSD::QName.new(nil, "category")]],
1861
+ ["ciId", ["SOAP::SOAPInt", XSD::QName.new(nil, "ciId")]],
1862
+ ["custDate1", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate1")], [0, 1]],
1863
+ ["custDate2", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "custDate2")], [0, 1]],
1864
+ ["custInt1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt1")]],
1865
+ ["custInt2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custInt2")]],
1866
+ ["custList1", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList1")]],
1867
+ ["custList2", ["SOAP::SOAPInt", XSD::QName.new(nil, "custList2")]],
1868
+ ["custNotes", ["SOAP::SOAPString", XSD::QName.new(nil, "custNotes")], [0, 1]],
1869
+ ["custText1", ["SOAP::SOAPString", XSD::QName.new(nil, "custText1")], [0, 1]],
1870
+ ["custText2", ["SOAP::SOAPString", XSD::QName.new(nil, "custText2")], [0, 1]],
1871
+ ["customDateFields", ["ApiTask::CustomDateFields", XSD::QName.new(nil, "customDateFields")]],
1872
+ ["customFields", ["ApiTask::CustomFields", XSD::QName.new(nil, "customFields")]],
1873
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")], [0, 1]],
1874
+ ["endTime", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "endTime")], [0, 1]],
1875
+ ["estimation", ["SOAP::SOAPInt", XSD::QName.new(nil, "estimation")]],
1876
+ ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]],
1877
+ ["notes", ["SOAP::SOAPString", XSD::QName.new(nil, "notes")], [0, 1]],
1878
+ ["progress", ["SOAP::SOAPInt", XSD::QName.new(nil, "progress")]],
1879
+ ["startTime", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "startTime")], [0, 1]],
1880
+ ["status", ["SOAP::SOAPInt", XSD::QName.new(nil, "status")]],
1881
+ ["taskDependency", ["SOAP::SOAPInt", XSD::QName.new(nil, "taskDependency")]],
1882
+ ["taskDependencyType", ["SOAP::SOAPInt", XSD::QName.new(nil, "taskDependencyType")]],
1883
+ ["title", ["SOAP::SOAPString", XSD::QName.new(nil, "title")], [0, 1]],
1884
+ ["version", ["SOAP::SOAPInt", XSD::QName.new(nil, "version")]]
1885
+ ]
1886
+ )
1887
+
1888
+ LiteralRegistry.register(
1889
+ :class => ApiTask::CustomDateFields::Entry,
1890
+ :schema_name => XSD::QName.new(nil, "entry"),
1891
+ :is_anonymous => true,
1892
+ :schema_qualified => false,
1893
+ :schema_element => [
1894
+ ["key", nil, [0, 1]],
1895
+ ["value", nil, [0, 1]]
1896
+ ]
1897
+ )
1898
+
1899
+ LiteralRegistry.register(
1900
+ :class => ApiTask::CustomDateFields,
1901
+ :schema_name => XSD::QName.new(nil, "customDateFields"),
1902
+ :is_anonymous => true,
1903
+ :schema_qualified => false,
1904
+ :schema_element => [
1905
+ ["entry", "ApiTask::CustomDateFields::Entry[]", [0, nil]]
1906
+ ]
1907
+ )
1908
+
1909
+ LiteralRegistry.register(
1910
+ :class => ApiTask::CustomFields::Entry,
1911
+ :schema_name => XSD::QName.new(nil, "entry"),
1912
+ :is_anonymous => true,
1913
+ :schema_qualified => false,
1914
+ :schema_element => [
1915
+ ["key", nil, [0, 1]],
1916
+ ["value", nil, [0, 1]]
1917
+ ]
1918
+ )
1919
+
1920
+ LiteralRegistry.register(
1921
+ :class => ApiTask::CustomFields,
1922
+ :schema_name => XSD::QName.new(nil, "customFields"),
1923
+ :is_anonymous => true,
1924
+ :schema_qualified => false,
1925
+ :schema_element => [
1926
+ ["entry", "ApiTask::CustomFields::Entry[]", [0, nil]]
1927
+ ]
1928
+ )
1929
+
1930
+ LiteralRegistry.register(
1931
+ :class => ApiComputerItem,
1932
+ :schema_type => XSD::QName.new(NsApiIlientCom, "apiComputerItem"),
1933
+ :schema_element => [
1934
+ ["accountId", ["SOAP::SOAPString", XSD::QName.new(nil, "accountId")], [0, 1]],
1935
+ ["computerId", ["SOAP::SOAPString", XSD::QName.new(nil, "computerId")], [0, 1]],
1936
+ ["itemDisplay", ["SOAP::SOAPString", XSD::QName.new(nil, "itemDisplay")], [0, 1]],
1937
+ ["itemType", ["SOAP::SOAPString", XSD::QName.new(nil, "itemType")], [0, 1]],
1938
+ ["license", ["SOAP::SOAPString", XSD::QName.new(nil, "license")], [0, 1]],
1939
+ ["value", ["SOAP::SOAPString", XSD::QName.new(nil, "value")], [0, 1]],
1940
+ ["version", ["SOAP::SOAPString", XSD::QName.new(nil, "version")], [0, 1]]
1941
+ ]
1942
+ )
1943
+
1944
+ LiteralRegistry.register(
1945
+ :class => ApiComputerItemList,
1946
+ :schema_type => XSD::QName.new(NsApiIlientCom, "apiComputerItemList"),
1947
+ :schema_basetype => XSD::QName.new(NsApiIlientCom, "apiSysaidObject"),
1948
+ :schema_element => [
1949
+ ["accountId", ["SOAP::SOAPString", XSD::QName.new(nil, "accountId")], [0, 1]],
1950
+ ["computerId", ["SOAP::SOAPString", XSD::QName.new(nil, "computerId")], [0, 1]],
1951
+ ["computerItems", ["[]", XSD::QName.new(nil, "computerItems")], [0, nil]]
1952
+ ]
1953
+ )
1954
+
1955
+ LiteralRegistry.register(
1956
+ :class => Login,
1957
+ :schema_type => XSD::QName.new(NsApiIlientCom, "login"),
1958
+ :schema_element => [
1959
+ ["accountId", ["SOAP::SOAPString", XSD::QName.new(nil, "accountId")], [0, 1]],
1960
+ ["userName", ["SOAP::SOAPString", XSD::QName.new(nil, "userName")], [0, 1]],
1961
+ ["password", ["SOAP::SOAPString", XSD::QName.new(nil, "password")], [0, 1]]
1962
+ ]
1963
+ )
1964
+
1965
+ LiteralRegistry.register(
1966
+ :class => LoginResponse,
1967
+ :schema_type => XSD::QName.new(NsApiIlientCom, "loginResponse"),
1968
+ :schema_element => [
1969
+ ["v_return", ["SOAP::SOAPLong", XSD::QName.new(nil, "return")]]
1970
+ ]
1971
+ )
1972
+
1973
+ LiteralRegistry.register(
1974
+ :class => Delete,
1975
+ :schema_type => XSD::QName.new(NsApiIlientCom, "delete"),
1976
+ :schema_element => [
1977
+ ["sessionId", ["SOAP::SOAPLong", XSD::QName.new(nil, "sessionId")]],
1978
+ ["apiSysObj", ["ApiSysaidObject", XSD::QName.new(nil, "apiSysObj")], [0, 1]]
1979
+ ]
1980
+ )
1981
+
1982
+ LiteralRegistry.register(
1983
+ :class => DeleteResponse,
1984
+ :schema_type => XSD::QName.new(NsApiIlientCom, "deleteResponse"),
1985
+ :schema_element => []
1986
+ )
1987
+
1988
+ LiteralRegistry.register(
1989
+ :class => ExecuteSelectQuery,
1990
+ :schema_type => XSD::QName.new(NsApiIlientCom, "executeSelectQuery"),
1991
+ :schema_element => [
1992
+ ["sessionId", ["SOAP::SOAPLong", XSD::QName.new(nil, "sessionId")]],
1993
+ ["apiSysObj", ["ApiSysaidObject", XSD::QName.new(nil, "apiSysObj")], [0, 1]],
1994
+ ["condition", ["SOAP::SOAPString", XSD::QName.new(nil, "condition")], [0, 1]]
1995
+ ]
1996
+ )
1997
+
1998
+ LiteralRegistry.register(
1999
+ :class => ExecuteSelectQueryResponse,
2000
+ :schema_type => XSD::QName.new(NsApiIlientCom, "executeSelectQueryResponse"),
2001
+ :schema_element => [
2002
+ ["v_return", ["SOAP::SOAPString[]", XSD::QName.new(nil, "return")], [0, nil]]
2003
+ ]
2004
+ )
2005
+
2006
+ LiteralRegistry.register(
2007
+ :class => LoadByStringId,
2008
+ :schema_type => XSD::QName.new(NsApiIlientCom, "loadByStringId"),
2009
+ :schema_element => [
2010
+ ["sessionId", ["SOAP::SOAPLong", XSD::QName.new(nil, "sessionId")]],
2011
+ ["apiSysObj", ["ApiSysaidObject", XSD::QName.new(nil, "apiSysObj")], [0, 1]],
2012
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")], [0, 1]]
2013
+ ]
2014
+ )
2015
+
2016
+ LiteralRegistry.register(
2017
+ :class => LoadByStringIdResponse,
2018
+ :schema_type => XSD::QName.new(NsApiIlientCom, "loadByStringIdResponse"),
2019
+ :schema_element => [
2020
+ ["v_return", ["ApiSysaidObject", XSD::QName.new(nil, "return")], [0, 1]]
2021
+ ]
2022
+ )
2023
+
2024
+ LiteralRegistry.register(
2025
+ :class => Logout,
2026
+ :schema_type => XSD::QName.new(NsApiIlientCom, "logout"),
2027
+ :schema_element => [
2028
+ ["sessionId", ["SOAP::SOAPLong", XSD::QName.new(nil, "sessionId")]]
2029
+ ]
2030
+ )
2031
+
2032
+ LiteralRegistry.register(
2033
+ :class => LogoutResponse,
2034
+ :schema_type => XSD::QName.new(NsApiIlientCom, "logoutResponse"),
2035
+ :schema_element => []
2036
+ )
2037
+
2038
+ LiteralRegistry.register(
2039
+ :class => ExecuteApiSysAidObjectAction,
2040
+ :schema_type => XSD::QName.new(NsApiIlientCom, "executeApiSysAidObjectAction"),
2041
+ :schema_element => [
2042
+ ["sessionId", ["SOAP::SOAPLong", XSD::QName.new(nil, "sessionId")]],
2043
+ ["apiSysObj", ["ApiSysaidObject", XSD::QName.new(nil, "apiSysObj")], [0, 1]],
2044
+ ["actionName", ["SOAP::SOAPString", XSD::QName.new(nil, "actionName")], [0, 1]],
2045
+ ["actionParams", ["[]", XSD::QName.new(nil, "actionParams")], [0, nil]]
2046
+ ]
2047
+ )
2048
+
2049
+ LiteralRegistry.register(
2050
+ :class => ExecuteApiSysAidObjectActionResponse,
2051
+ :schema_type => XSD::QName.new(NsApiIlientCom, "executeApiSysAidObjectActionResponse"),
2052
+ :schema_element => [
2053
+ ["v_return", ["SOAP::SOAPString", XSD::QName.new(nil, "return")], [0, 1]]
2054
+ ]
2055
+ )
2056
+
2057
+ LiteralRegistry.register(
2058
+ :class => LoadById,
2059
+ :schema_type => XSD::QName.new(NsApiIlientCom, "loadById"),
2060
+ :schema_element => [
2061
+ ["sessionId", ["SOAP::SOAPLong", XSD::QName.new(nil, "sessionId")]],
2062
+ ["apiSysObj", ["ApiSysaidObject", XSD::QName.new(nil, "apiSysObj")], [0, 1]],
2063
+ ["id", [nil, XSD::QName.new(nil, "id")], [0, 1]]
2064
+ ]
2065
+ )
2066
+
2067
+ LiteralRegistry.register(
2068
+ :class => LoadByIdResponse,
2069
+ :schema_type => XSD::QName.new(NsApiIlientCom, "loadByIdResponse"),
2070
+ :schema_element => [
2071
+ ["v_return", ["ApiSysaidObject", XSD::QName.new(nil, "return")], [0, 1]]
2072
+ ]
2073
+ )
2074
+
2075
+ LiteralRegistry.register(
2076
+ :class => Save,
2077
+ :schema_type => XSD::QName.new(NsApiIlientCom, "save"),
2078
+ :schema_element => [
2079
+ ["sessionId", ["SOAP::SOAPLong", XSD::QName.new(nil, "sessionId")]],
2080
+ ["apiSysObj", ["ApiSysaidObject", XSD::QName.new(nil, "apiSysObj")], [0, 1]]
2081
+ ]
2082
+ )
2083
+
2084
+ LiteralRegistry.register(
2085
+ :class => SaveResponse,
2086
+ :schema_type => XSD::QName.new(NsApiIlientCom, "saveResponse"),
2087
+ :schema_element => [
2088
+ ["v_return", [nil, XSD::QName.new(nil, "return")], [0, 1]]
2089
+ ]
2090
+ )
2091
+
2092
+ LiteralRegistry.register(
2093
+ :class => GetApiSysAidObjectActions,
2094
+ :schema_type => XSD::QName.new(NsApiIlientCom, "getApiSysAidObjectActions"),
2095
+ :schema_element => [
2096
+ ["sessionId", ["SOAP::SOAPLong", XSD::QName.new(nil, "sessionId")]],
2097
+ ["apiSysObj", ["ApiSysaidObject", XSD::QName.new(nil, "apiSysObj")], [0, 1]]
2098
+ ]
2099
+ )
2100
+
2101
+ LiteralRegistry.register(
2102
+ :class => GetApiSysAidObjectActionsResponse,
2103
+ :schema_type => XSD::QName.new(NsApiIlientCom, "getApiSysAidObjectActionsResponse"),
2104
+ :schema_element => [
2105
+ ["v_return", ["SOAP::SOAPString", XSD::QName.new(nil, "return")], [0, 1]]
2106
+ ]
2107
+ )
2108
+
2109
+ LiteralRegistry.register(
2110
+ :class => Delete,
2111
+ :schema_name => XSD::QName.new(NsApiIlientCom, "delete"),
2112
+ :schema_element => [
2113
+ ["sessionId", ["SOAP::SOAPLong", XSD::QName.new(nil, "sessionId")]],
2114
+ ["apiSysObj", ["ApiSysaidObject", XSD::QName.new(nil, "apiSysObj")], [0, 1]]
2115
+ ]
2116
+ )
2117
+
2118
+ LiteralRegistry.register(
2119
+ :class => DeleteResponse,
2120
+ :schema_name => XSD::QName.new(NsApiIlientCom, "deleteResponse"),
2121
+ :schema_element => []
2122
+ )
2123
+
2124
+ LiteralRegistry.register(
2125
+ :class => ExecuteApiSysAidObjectAction,
2126
+ :schema_name => XSD::QName.new(NsApiIlientCom, "executeApiSysAidObjectAction"),
2127
+ :schema_element => [
2128
+ ["sessionId", ["SOAP::SOAPLong", XSD::QName.new(nil, "sessionId")]],
2129
+ ["apiSysObj", ["ApiSysaidObject", XSD::QName.new(nil, "apiSysObj")], [0, 1]],
2130
+ ["actionName", ["SOAP::SOAPString", XSD::QName.new(nil, "actionName")], [0, 1]],
2131
+ ["actionParams", ["[]", XSD::QName.new(nil, "actionParams")], [0, nil]]
2132
+ ]
2133
+ )
2134
+
2135
+ LiteralRegistry.register(
2136
+ :class => ExecuteApiSysAidObjectActionResponse,
2137
+ :schema_name => XSD::QName.new(NsApiIlientCom, "executeApiSysAidObjectActionResponse"),
2138
+ :schema_element => [
2139
+ ["v_return", ["SOAP::SOAPString", XSD::QName.new(nil, "return")], [0, 1]]
2140
+ ]
2141
+ )
2142
+
2143
+ LiteralRegistry.register(
2144
+ :class => ExecuteSelectQuery,
2145
+ :schema_name => XSD::QName.new(NsApiIlientCom, "executeSelectQuery"),
2146
+ :schema_element => [
2147
+ ["sessionId", ["SOAP::SOAPLong", XSD::QName.new(nil, "sessionId")]],
2148
+ ["apiSysObj", ["ApiSysaidObject", XSD::QName.new(nil, "apiSysObj")], [0, 1]],
2149
+ ["condition", ["SOAP::SOAPString", XSD::QName.new(nil, "condition")], [0, 1]]
2150
+ ]
2151
+ )
2152
+
2153
+ LiteralRegistry.register(
2154
+ :class => ExecuteSelectQueryResponse,
2155
+ :schema_name => XSD::QName.new(NsApiIlientCom, "executeSelectQueryResponse"),
2156
+ :schema_element => [
2157
+ ["v_return", ["SOAP::SOAPString[]", XSD::QName.new(nil, "return")], [0, nil]]
2158
+ ]
2159
+ )
2160
+
2161
+ LiteralRegistry.register(
2162
+ :class => GetApiSysAidObjectActions,
2163
+ :schema_name => XSD::QName.new(NsApiIlientCom, "getApiSysAidObjectActions"),
2164
+ :schema_element => [
2165
+ ["sessionId", ["SOAP::SOAPLong", XSD::QName.new(nil, "sessionId")]],
2166
+ ["apiSysObj", ["ApiSysaidObject", XSD::QName.new(nil, "apiSysObj")], [0, 1]]
2167
+ ]
2168
+ )
2169
+
2170
+ LiteralRegistry.register(
2171
+ :class => GetApiSysAidObjectActionsResponse,
2172
+ :schema_name => XSD::QName.new(NsApiIlientCom, "getApiSysAidObjectActionsResponse"),
2173
+ :schema_element => [
2174
+ ["v_return", ["SOAP::SOAPString", XSD::QName.new(nil, "return")], [0, 1]]
2175
+ ]
2176
+ )
2177
+
2178
+ LiteralRegistry.register(
2179
+ :class => LoadById,
2180
+ :schema_name => XSD::QName.new(NsApiIlientCom, "loadById"),
2181
+ :schema_element => [
2182
+ ["sessionId", ["SOAP::SOAPLong", XSD::QName.new(nil, "sessionId")]],
2183
+ ["apiSysObj", ["ApiSysaidObject", XSD::QName.new(nil, "apiSysObj")], [0, 1]],
2184
+ ["id", [nil, XSD::QName.new(nil, "id")], [0, 1]]
2185
+ ]
2186
+ )
2187
+
2188
+ LiteralRegistry.register(
2189
+ :class => LoadByIdResponse,
2190
+ :schema_name => XSD::QName.new(NsApiIlientCom, "loadByIdResponse"),
2191
+ :schema_element => [
2192
+ ["v_return", ["ApiSysaidObject", XSD::QName.new(nil, "return")], [0, 1]]
2193
+ ]
2194
+ )
2195
+
2196
+ LiteralRegistry.register(
2197
+ :class => LoadByStringId,
2198
+ :schema_name => XSD::QName.new(NsApiIlientCom, "loadByStringId"),
2199
+ :schema_element => [
2200
+ ["sessionId", ["SOAP::SOAPLong", XSD::QName.new(nil, "sessionId")]],
2201
+ ["apiSysObj", ["ApiSysaidObject", XSD::QName.new(nil, "apiSysObj")], [0, 1]],
2202
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")], [0, 1]]
2203
+ ]
2204
+ )
2205
+
2206
+ LiteralRegistry.register(
2207
+ :class => LoadByStringIdResponse,
2208
+ :schema_name => XSD::QName.new(NsApiIlientCom, "loadByStringIdResponse"),
2209
+ :schema_element => [
2210
+ ["v_return", ["ApiSysaidObject", XSD::QName.new(nil, "return")], [0, 1]]
2211
+ ]
2212
+ )
2213
+
2214
+ LiteralRegistry.register(
2215
+ :class => Login,
2216
+ :schema_name => XSD::QName.new(NsApiIlientCom, "login"),
2217
+ :schema_element => [
2218
+ ["accountId", ["SOAP::SOAPString", XSD::QName.new(nil, "accountId")], [0, 1]],
2219
+ ["userName", ["SOAP::SOAPString", XSD::QName.new(nil, "userName")], [0, 1]],
2220
+ ["password", ["SOAP::SOAPString", XSD::QName.new(nil, "password")], [0, 1]]
2221
+ ]
2222
+ )
2223
+
2224
+ LiteralRegistry.register(
2225
+ :class => LoginResponse,
2226
+ :schema_name => XSD::QName.new(NsApiIlientCom, "loginResponse"),
2227
+ :schema_element => [
2228
+ ["v_return", ["SOAP::SOAPLong", XSD::QName.new(nil, "return")]]
2229
+ ]
2230
+ )
2231
+
2232
+ LiteralRegistry.register(
2233
+ :class => Logout,
2234
+ :schema_name => XSD::QName.new(NsApiIlientCom, "logout"),
2235
+ :schema_element => [
2236
+ ["sessionId", ["SOAP::SOAPLong", XSD::QName.new(nil, "sessionId")]]
2237
+ ]
2238
+ )
2239
+
2240
+ LiteralRegistry.register(
2241
+ :class => LogoutResponse,
2242
+ :schema_name => XSD::QName.new(NsApiIlientCom, "logoutResponse"),
2243
+ :schema_element => []
2244
+ )
2245
+
2246
+ LiteralRegistry.register(
2247
+ :class => Save,
2248
+ :schema_name => XSD::QName.new(NsApiIlientCom, "save"),
2249
+ :schema_element => [
2250
+ ["sessionId", ["SOAP::SOAPLong", XSD::QName.new(nil, "sessionId")]],
2251
+ ["apiSysObj", ["ApiSysaidObject", XSD::QName.new(nil, "apiSysObj")], [0, 1]]
2252
+ ]
2253
+ )
2254
+
2255
+ LiteralRegistry.register(
2256
+ :class => SaveResponse,
2257
+ :schema_name => XSD::QName.new(NsApiIlientCom, "saveResponse"),
2258
+ :schema_element => [
2259
+ ["v_return", [nil, XSD::QName.new(nil, "return")], [0, 1]]
2260
+ ]
2261
+ )
2262
+ end