adcenter-client 7.0.2 → 7.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +6 -0
- data/Manifest.txt +5 -16
- data/README.txt +14 -10
- data/Rakefile.rb +2 -2
- data/VERSION +1 -0
- data/bin/get_adcenter_account_info.rb +45 -0
- data/{bin → devel}/gen_wsdl_drivers.rb +1 -1
- data/{bin → devel}/wsdl.yml +0 -0
- data/lib/AdministrationServiceDriver.rb +7 -3
- data/lib/AdministrationServiceMappingRegistry.rb +27 -23
- data/lib/CampaignManagementServiceDriver.rb +90 -86
- data/lib/CampaignManagementServiceMappingRegistry.rb +1213 -1209
- data/lib/CustomerBillingServiceDriver.rb +12 -8
- data/lib/CustomerBillingServiceMappingRegistry.rb +123 -119
- data/lib/CustomerManagementServiceDriver.rb +22 -18
- data/lib/CustomerManagementServiceMappingRegistry.rb +318 -314
- data/lib/ReportingServiceDriver.rb +7 -3
- data/lib/ReportingServiceMappingRegistry.rb +926 -922
- data/lib/SecureDataManagementServiceDriver.rb +6 -2
- data/lib/SecureDataManagementServiceMappingRegistry.rb +62 -58
- data/lib/adcenter_client.rb +6 -3
- data/lib/adcenter_service.rb +6 -2
- data/lib/adcenter_wrapper_entities.rb +8170 -0
- data/lib/administration_service.rb +3 -1
- data/lib/campaign_management_service.rb +1 -1
- data/lib/customer_billing_service.rb +1 -1
- data/lib/customer_management_service.rb +1 -1
- data/lib/defaultDriver.rb +5 -1
- data/lib/defaultMappingRegistry.rb +68 -64
- data/lib/notification_management.rb +1 -1
- data/lib/reporting_service.rb +1 -1
- data/lib/secure_data_management_service.rb +1 -1
- data/test/customer_management_service_test.rb +4 -4
- data/test/test_helper.rb +1 -0
- metadata +19 -27
- data/lib/AdministrationService.rb +0 -79
- data/lib/AdministrationServiceClient.rb +0 -40
- data/lib/CampaignManagementService.rb +0 -3458
- data/lib/CampaignManagementServiceClient.rb +0 -1370
- data/lib/CustomerBillingService.rb +0 -390
- data/lib/CustomerBillingServiceClient.rb +0 -126
- data/lib/CustomerManagementService.rb +0 -1284
- data/lib/CustomerManagementServiceClient.rb +0 -282
- data/lib/NotificationManagementClient.rb +0 -89
- data/lib/ReportingService.rb +0 -2121
- data/lib/ReportingServiceClient.rb +0 -42
- data/lib/SecureDataManagementService.rb +0 -203
- data/lib/SecureDataManagementServiceClient.rb +0 -26
- data/lib/default.rb +0 -636
@@ -1,7 +1,9 @@
|
|
1
|
-
require '
|
1
|
+
require 'adcenter_wrapper_entities'
|
2
2
|
require 'CustomerManagementServiceMappingRegistry.rb'
|
3
3
|
require 'soap/rpc/driver'
|
4
4
|
|
5
|
+
module AdCenterWrapper
|
6
|
+
|
5
7
|
class ICustomerManagementService < ::SOAP::RPC::Driver
|
6
8
|
DefaultEndpointUrl = "https://sharedservices.adcenterapi.microsoft.com/Api/CustomerManagement/v7/CustomerManagementService.svc"
|
7
9
|
|
@@ -12,7 +14,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
12
14
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "GetAccountsInfoResponse"]] ],
|
13
15
|
{ :request_style => :document, :request_use => :literal,
|
14
16
|
:response_style => :document, :response_use => :literal,
|
15
|
-
:faults => {"ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
17
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
16
18
|
],
|
17
19
|
[ "AddAccount",
|
18
20
|
"addAccount",
|
@@ -20,7 +22,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
20
22
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "AddAccountResponse"]] ],
|
21
23
|
{ :request_style => :document, :request_use => :literal,
|
22
24
|
:response_style => :document, :response_use => :literal,
|
23
|
-
:faults => {"ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
25
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
24
26
|
],
|
25
27
|
[ "UpdateAccount",
|
26
28
|
"updateAccount",
|
@@ -28,7 +30,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
28
30
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "UpdateAccountResponse"]] ],
|
29
31
|
{ :request_style => :document, :request_use => :literal,
|
30
32
|
:response_style => :document, :response_use => :literal,
|
31
|
-
:faults => {"ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
33
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
32
34
|
],
|
33
35
|
[ "GetCustomer",
|
34
36
|
"getCustomer",
|
@@ -36,7 +38,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
36
38
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "GetCustomerResponse"]] ],
|
37
39
|
{ :request_style => :document, :request_use => :literal,
|
38
40
|
:response_style => :document, :response_use => :literal,
|
39
|
-
:faults => {"ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
41
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
40
42
|
],
|
41
43
|
[ "UpdateCustomer",
|
42
44
|
"updateCustomer",
|
@@ -44,7 +46,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
44
46
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "UpdateCustomerResponse"]] ],
|
45
47
|
{ :request_style => :document, :request_use => :literal,
|
46
48
|
:response_style => :document, :response_use => :literal,
|
47
|
-
:faults => {"ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
49
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
48
50
|
],
|
49
51
|
[ "SignupCustomer",
|
50
52
|
"signupCustomer",
|
@@ -52,7 +54,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
52
54
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "SignupCustomerResponse"]] ],
|
53
55
|
{ :request_style => :document, :request_use => :literal,
|
54
56
|
:response_style => :document, :response_use => :literal,
|
55
|
-
:faults => {"ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
57
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
56
58
|
],
|
57
59
|
[ "GetAccount",
|
58
60
|
"getAccount",
|
@@ -60,7 +62,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
60
62
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "GetAccountResponse"]] ],
|
61
63
|
{ :request_style => :document, :request_use => :literal,
|
62
64
|
:response_style => :document, :response_use => :literal,
|
63
|
-
:faults => {"ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
65
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
64
66
|
],
|
65
67
|
[ "GetCustomersInfo",
|
66
68
|
"getCustomersInfo",
|
@@ -68,7 +70,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
68
70
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "GetCustomersInfoResponse"]] ],
|
69
71
|
{ :request_style => :document, :request_use => :literal,
|
70
72
|
:response_style => :document, :response_use => :literal,
|
71
|
-
:faults => {"ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
73
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
72
74
|
],
|
73
75
|
[ "AddUser",
|
74
76
|
"addUser",
|
@@ -76,7 +78,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
76
78
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "AddUserResponse"]] ],
|
77
79
|
{ :request_style => :document, :request_use => :literal,
|
78
80
|
:response_style => :document, :response_use => :literal,
|
79
|
-
:faults => {"ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
81
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
80
82
|
],
|
81
83
|
[ "DeleteAccount",
|
82
84
|
"deleteAccount",
|
@@ -84,7 +86,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
84
86
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "DeleteAccountResponse"]] ],
|
85
87
|
{ :request_style => :document, :request_use => :literal,
|
86
88
|
:response_style => :document, :response_use => :literal,
|
87
|
-
:faults => {"ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
89
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
88
90
|
],
|
89
91
|
[ "DeleteCustomer",
|
90
92
|
"deleteCustomer",
|
@@ -92,7 +94,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
92
94
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "DeleteCustomerResponse"]] ],
|
93
95
|
{ :request_style => :document, :request_use => :literal,
|
94
96
|
:response_style => :document, :response_use => :literal,
|
95
|
-
:faults => {"ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
97
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
96
98
|
],
|
97
99
|
[ "UpdateUser",
|
98
100
|
"updateUser",
|
@@ -100,7 +102,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
100
102
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "UpdateUserResponse"]] ],
|
101
103
|
{ :request_style => :document, :request_use => :literal,
|
102
104
|
:response_style => :document, :response_use => :literal,
|
103
|
-
:faults => {"ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
105
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
104
106
|
],
|
105
107
|
[ "UpdateUserRoles",
|
106
108
|
"updateUserRoles",
|
@@ -108,7 +110,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
108
110
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "UpdateUserRolesResponse"]] ],
|
109
111
|
{ :request_style => :document, :request_use => :literal,
|
110
112
|
:response_style => :document, :response_use => :literal,
|
111
|
-
:faults => {"ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
113
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
112
114
|
],
|
113
115
|
[ "GetUser",
|
114
116
|
"getUser",
|
@@ -116,7 +118,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
116
118
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "GetUserResponse"]] ],
|
117
119
|
{ :request_style => :document, :request_use => :literal,
|
118
120
|
:response_style => :document, :response_use => :literal,
|
119
|
-
:faults => {"ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
121
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
120
122
|
],
|
121
123
|
[ "DeleteUser",
|
122
124
|
"deleteUser",
|
@@ -124,7 +126,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
124
126
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "DeleteUserResponse"]] ],
|
125
127
|
{ :request_style => :document, :request_use => :literal,
|
126
128
|
:response_style => :document, :response_use => :literal,
|
127
|
-
:faults => {"ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
129
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
128
130
|
],
|
129
131
|
[ "GetUsersInfo",
|
130
132
|
"getUsersInfo",
|
@@ -132,7 +134,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
132
134
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "GetUsersInfoResponse"]] ],
|
133
135
|
{ :request_style => :document, :request_use => :literal,
|
134
136
|
:response_style => :document, :response_use => :literal,
|
135
|
-
:faults => {"ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
137
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
136
138
|
],
|
137
139
|
[ "GetCustomerPilotFeature",
|
138
140
|
"getCustomerPilotFeature",
|
@@ -140,7 +142,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
140
142
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "GetCustomerPilotFeatureResponse"]] ],
|
141
143
|
{ :request_style => :document, :request_use => :literal,
|
142
144
|
:response_style => :document, :response_use => :literal,
|
143
|
-
:faults => {"ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
145
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement"}} }
|
144
146
|
]
|
145
147
|
]
|
146
148
|
|
@@ -173,3 +175,5 @@ private
|
|
173
175
|
end
|
174
176
|
end
|
175
177
|
|
178
|
+
|
179
|
+
end
|
@@ -1,6 +1,8 @@
|
|
1
|
-
require '
|
1
|
+
require 'adcenter_wrapper_entities'
|
2
2
|
require 'soap/mapping'
|
3
3
|
|
4
|
+
module AdCenterWrapper
|
5
|
+
|
4
6
|
module CustomerManagementServiceMappingRegistry
|
5
7
|
EncodedRegistry = ::SOAP::Mapping::EncodedRegistry.new
|
6
8
|
LiteralRegistry = ::SOAP::Mapping::LiteralRegistry.new
|
@@ -11,98 +13,98 @@ module CustomerManagementServiceMappingRegistry
|
|
11
13
|
NsEntities = "https://adcenter.microsoft.com/api/customermanagement/Entities"
|
12
14
|
|
13
15
|
EncodedRegistry.register(
|
14
|
-
:class => ArrayOfAccountInfo,
|
16
|
+
:class => AdCenterWrapper::ArrayOfAccountInfo,
|
15
17
|
:schema_type => XSD::QName.new(NsEntities, "ArrayOfAccountInfo"),
|
16
18
|
:schema_element => [
|
17
|
-
["accountInfo", ["AccountInfo[]", XSD::QName.new(NsEntities, "AccountInfo")], [0, nil]]
|
19
|
+
["accountInfo", ["AdCenterWrapper::AccountInfo[]", XSD::QName.new(NsEntities, "AccountInfo")], [0, nil]]
|
18
20
|
]
|
19
21
|
)
|
20
22
|
|
21
23
|
EncodedRegistry.register(
|
22
|
-
:class => AccountInfo,
|
24
|
+
:class => AdCenterWrapper::AccountInfo,
|
23
25
|
:schema_type => XSD::QName.new(NsEntities, "AccountInfo"),
|
24
26
|
:schema_element => [
|
25
27
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
26
28
|
["name", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Name")], [0, 1]],
|
27
29
|
["number", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Number")], [0, 1]],
|
28
|
-
["status", ["AccountLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]]
|
30
|
+
["status", ["AdCenterWrapper::AccountLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]]
|
29
31
|
]
|
30
32
|
)
|
31
33
|
|
32
34
|
EncodedRegistry.register(
|
33
|
-
:class => Account,
|
35
|
+
:class => AdCenterWrapper::Account,
|
34
36
|
:schema_type => XSD::QName.new(NsEntities, "Account"),
|
35
37
|
:schema_element => [
|
36
|
-
["accountType", ["AccountType", XSD::QName.new(NsEntities, "AccountType")], [0, 1]],
|
38
|
+
["accountType", ["AdCenterWrapper::AccountType", XSD::QName.new(NsEntities, "AccountType")], [0, 1]],
|
37
39
|
["billToCustomerId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "BillToCustomerId")], [0, 1]],
|
38
40
|
["countryCode", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "CountryCode")], [0, 1]],
|
39
|
-
["currencyType", ["CurrencyType", XSD::QName.new(NsEntities, "CurrencyType")], [0, 1]],
|
40
|
-
["financialStatus", ["AccountFinancialStatus", XSD::QName.new(NsEntities, "FinancialStatus")], [0, 1]],
|
41
|
+
["currencyType", ["AdCenterWrapper::CurrencyType", XSD::QName.new(NsEntities, "CurrencyType")], [0, 1]],
|
42
|
+
["financialStatus", ["AdCenterWrapper::AccountFinancialStatus", XSD::QName.new(NsEntities, "FinancialStatus")], [0, 1]],
|
41
43
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
42
|
-
["language", ["LanguageType", XSD::QName.new(NsEntities, "Language")], [0, 1]],
|
44
|
+
["language", ["AdCenterWrapper::LanguageType", XSD::QName.new(NsEntities, "Language")], [0, 1]],
|
43
45
|
["lastModifiedByUserId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "LastModifiedByUserId")], [0, 1]],
|
44
46
|
["lastModifiedTime", ["SOAP::SOAPDateTime", XSD::QName.new(NsEntities, "LastModifiedTime")], [0, 1]],
|
45
47
|
["name", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Name")], [0, 1]],
|
46
48
|
["number", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Number")], [0, 1]],
|
47
49
|
["parentCustomerId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "ParentCustomerId")], [0, 1]],
|
48
50
|
["paymentMethodId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "PaymentMethodId")], [0, 1]],
|
49
|
-
["paymentMethodType", ["PaymentMethodType", XSD::QName.new(NsEntities, "PaymentMethodType")], [0, 1]],
|
51
|
+
["paymentMethodType", ["AdCenterWrapper::PaymentMethodType", XSD::QName.new(NsEntities, "PaymentMethodType")], [0, 1]],
|
50
52
|
["primaryUserId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "PrimaryUserId")], [0, 1]],
|
51
|
-
["status", ["AccountLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
53
|
+
["status", ["AdCenterWrapper::AccountLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
52
54
|
["timeStamp", ["SOAP::SOAPBase64", XSD::QName.new(NsEntities, "TimeStamp")], [0, 1]],
|
53
|
-
["timeZone", ["TimeZoneType", XSD::QName.new(NsEntities, "TimeZone")], [0, 1]]
|
55
|
+
["timeZone", ["AdCenterWrapper::TimeZoneType", XSD::QName.new(NsEntities, "TimeZone")], [0, 1]]
|
54
56
|
]
|
55
57
|
)
|
56
58
|
|
57
59
|
EncodedRegistry.register(
|
58
|
-
:class => PublisherAccount,
|
60
|
+
:class => AdCenterWrapper::PublisherAccount,
|
59
61
|
:schema_type => XSD::QName.new(NsEntities, "PublisherAccount"),
|
60
62
|
:schema_basetype => XSD::QName.new(NsEntities, "Account"),
|
61
63
|
:schema_element => [
|
62
|
-
["accountType", ["AccountType", XSD::QName.new(NsEntities, "AccountType")], [0, 1]],
|
64
|
+
["accountType", ["AdCenterWrapper::AccountType", XSD::QName.new(NsEntities, "AccountType")], [0, 1]],
|
63
65
|
["billToCustomerId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "BillToCustomerId")], [0, 1]],
|
64
66
|
["countryCode", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "CountryCode")], [0, 1]],
|
65
|
-
["currencyType", ["CurrencyType", XSD::QName.new(NsEntities, "CurrencyType")], [0, 1]],
|
66
|
-
["financialStatus", ["AccountFinancialStatus", XSD::QName.new(NsEntities, "FinancialStatus")], [0, 1]],
|
67
|
+
["currencyType", ["AdCenterWrapper::CurrencyType", XSD::QName.new(NsEntities, "CurrencyType")], [0, 1]],
|
68
|
+
["financialStatus", ["AdCenterWrapper::AccountFinancialStatus", XSD::QName.new(NsEntities, "FinancialStatus")], [0, 1]],
|
67
69
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
68
|
-
["language", ["LanguageType", XSD::QName.new(NsEntities, "Language")], [0, 1]],
|
70
|
+
["language", ["AdCenterWrapper::LanguageType", XSD::QName.new(NsEntities, "Language")], [0, 1]],
|
69
71
|
["lastModifiedByUserId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "LastModifiedByUserId")], [0, 1]],
|
70
72
|
["lastModifiedTime", ["SOAP::SOAPDateTime", XSD::QName.new(NsEntities, "LastModifiedTime")], [0, 1]],
|
71
73
|
["name", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Name")], [0, 1]],
|
72
74
|
["number", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Number")], [0, 1]],
|
73
75
|
["parentCustomerId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "ParentCustomerId")], [0, 1]],
|
74
76
|
["paymentMethodId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "PaymentMethodId")], [0, 1]],
|
75
|
-
["paymentMethodType", ["PaymentMethodType", XSD::QName.new(NsEntities, "PaymentMethodType")], [0, 1]],
|
77
|
+
["paymentMethodType", ["AdCenterWrapper::PaymentMethodType", XSD::QName.new(NsEntities, "PaymentMethodType")], [0, 1]],
|
76
78
|
["primaryUserId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "PrimaryUserId")], [0, 1]],
|
77
|
-
["status", ["AccountLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
79
|
+
["status", ["AdCenterWrapper::AccountLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
78
80
|
["timeStamp", ["SOAP::SOAPBase64", XSD::QName.new(NsEntities, "TimeStamp")], [0, 1]],
|
79
|
-
["timeZone", ["TimeZoneType", XSD::QName.new(NsEntities, "TimeZone")], [0, 1]]
|
81
|
+
["timeZone", ["AdCenterWrapper::TimeZoneType", XSD::QName.new(NsEntities, "TimeZone")], [0, 1]]
|
80
82
|
]
|
81
83
|
)
|
82
84
|
|
83
85
|
EncodedRegistry.register(
|
84
|
-
:class => AdvertiserAccount,
|
86
|
+
:class => AdCenterWrapper::AdvertiserAccount,
|
85
87
|
:schema_type => XSD::QName.new(NsEntities, "AdvertiserAccount"),
|
86
88
|
:schema_basetype => XSD::QName.new(NsEntities, "Account"),
|
87
89
|
:schema_element => [
|
88
|
-
["accountType", ["AccountType", XSD::QName.new(NsEntities, "AccountType")], [0, 1]],
|
90
|
+
["accountType", ["AdCenterWrapper::AccountType", XSD::QName.new(NsEntities, "AccountType")], [0, 1]],
|
89
91
|
["billToCustomerId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "BillToCustomerId")], [0, 1]],
|
90
92
|
["countryCode", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "CountryCode")], [0, 1]],
|
91
|
-
["currencyType", ["CurrencyType", XSD::QName.new(NsEntities, "CurrencyType")], [0, 1]],
|
92
|
-
["financialStatus", ["AccountFinancialStatus", XSD::QName.new(NsEntities, "FinancialStatus")], [0, 1]],
|
93
|
+
["currencyType", ["AdCenterWrapper::CurrencyType", XSD::QName.new(NsEntities, "CurrencyType")], [0, 1]],
|
94
|
+
["financialStatus", ["AdCenterWrapper::AccountFinancialStatus", XSD::QName.new(NsEntities, "FinancialStatus")], [0, 1]],
|
93
95
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
94
|
-
["language", ["LanguageType", XSD::QName.new(NsEntities, "Language")], [0, 1]],
|
96
|
+
["language", ["AdCenterWrapper::LanguageType", XSD::QName.new(NsEntities, "Language")], [0, 1]],
|
95
97
|
["lastModifiedByUserId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "LastModifiedByUserId")], [0, 1]],
|
96
98
|
["lastModifiedTime", ["SOAP::SOAPDateTime", XSD::QName.new(NsEntities, "LastModifiedTime")], [0, 1]],
|
97
99
|
["name", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Name")], [0, 1]],
|
98
100
|
["number", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Number")], [0, 1]],
|
99
101
|
["parentCustomerId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "ParentCustomerId")], [0, 1]],
|
100
102
|
["paymentMethodId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "PaymentMethodId")], [0, 1]],
|
101
|
-
["paymentMethodType", ["PaymentMethodType", XSD::QName.new(NsEntities, "PaymentMethodType")], [0, 1]],
|
103
|
+
["paymentMethodType", ["AdCenterWrapper::PaymentMethodType", XSD::QName.new(NsEntities, "PaymentMethodType")], [0, 1]],
|
102
104
|
["primaryUserId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "PrimaryUserId")], [0, 1]],
|
103
|
-
["status", ["AccountLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
105
|
+
["status", ["AdCenterWrapper::AccountLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
104
106
|
["timeStamp", ["SOAP::SOAPBase64", XSD::QName.new(NsEntities, "TimeStamp")], [0, 1]],
|
105
|
-
["timeZone", ["TimeZoneType", XSD::QName.new(NsEntities, "TimeZone")], [0, 1]],
|
107
|
+
["timeZone", ["AdCenterWrapper::TimeZoneType", XSD::QName.new(NsEntities, "TimeZone")], [0, 1]],
|
106
108
|
["agencyContactName", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "AgencyContactName")], [0, 1]],
|
107
109
|
["agencyCustomerId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "AgencyCustomerId")], [0, 1]],
|
108
110
|
["salesHouseCustomerId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "SalesHouseCustomerId")], [0, 1]]
|
@@ -110,25 +112,25 @@ module CustomerManagementServiceMappingRegistry
|
|
110
112
|
)
|
111
113
|
|
112
114
|
EncodedRegistry.register(
|
113
|
-
:class => Customer,
|
115
|
+
:class => AdCenterWrapper::Customer,
|
114
116
|
:schema_type => XSD::QName.new(NsEntities, "Customer"),
|
115
117
|
:schema_element => [
|
116
|
-
["customerAddress", ["Address", XSD::QName.new(NsEntities, "CustomerAddress")], [0, 1]],
|
117
|
-
["financialStatus", ["CustomerFinancialStatus", XSD::QName.new(NsEntities, "FinancialStatus")], [0, 1]],
|
118
|
+
["customerAddress", ["AdCenterWrapper::Address", XSD::QName.new(NsEntities, "CustomerAddress")], [0, 1]],
|
119
|
+
["financialStatus", ["AdCenterWrapper::CustomerFinancialStatus", XSD::QName.new(NsEntities, "FinancialStatus")], [0, 1]],
|
118
120
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
119
|
-
["industry", ["Industry", XSD::QName.new(NsEntities, "Industry")], [0, 1]],
|
121
|
+
["industry", ["AdCenterWrapper::Industry", XSD::QName.new(NsEntities, "Industry")], [0, 1]],
|
120
122
|
["lastModifiedByUserId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "LastModifiedByUserId")], [0, 1]],
|
121
123
|
["lastModifiedTime", ["SOAP::SOAPDateTime", XSD::QName.new(NsEntities, "LastModifiedTime")], [0, 1]],
|
122
|
-
["market", ["Market", XSD::QName.new(NsEntities, "Market")], [0, 1]],
|
124
|
+
["market", ["AdCenterWrapper::Market", XSD::QName.new(NsEntities, "Market")], [0, 1]],
|
123
125
|
["name", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Name")], [0, 1]],
|
124
|
-
["serviceLevel", ["ServiceLevel", XSD::QName.new(NsEntities, "ServiceLevel")], [0, 1]],
|
125
|
-
["status", ["CustomerLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
126
|
+
["serviceLevel", ["AdCenterWrapper::ServiceLevel", XSD::QName.new(NsEntities, "ServiceLevel")], [0, 1]],
|
127
|
+
["status", ["AdCenterWrapper::CustomerLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
126
128
|
["timeStamp", ["SOAP::SOAPBase64", XSD::QName.new(NsEntities, "TimeStamp")], [0, 1]]
|
127
129
|
]
|
128
130
|
)
|
129
131
|
|
130
132
|
EncodedRegistry.register(
|
131
|
-
:class => Address,
|
133
|
+
:class => AdCenterWrapper::Address,
|
132
134
|
:schema_type => XSD::QName.new(NsEntities, "Address"),
|
133
135
|
:schema_element => [
|
134
136
|
["city", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "City")], [0, 1]],
|
@@ -145,36 +147,36 @@ module CustomerManagementServiceMappingRegistry
|
|
145
147
|
)
|
146
148
|
|
147
149
|
EncodedRegistry.register(
|
148
|
-
:class => User,
|
150
|
+
:class => AdCenterWrapper::User,
|
149
151
|
:schema_type => XSD::QName.new(NsEntities, "User"),
|
150
152
|
:schema_element => [
|
151
|
-
["contactInfo", ["ContactInfo", XSD::QName.new(NsEntities, "ContactInfo")], [0, 1]],
|
152
|
-
["customerAppScope", ["ApplicationType", XSD::QName.new(NsEntities, "CustomerAppScope")], [0, 1]],
|
153
|
+
["contactInfo", ["AdCenterWrapper::ContactInfo", XSD::QName.new(NsEntities, "ContactInfo")], [0, 1]],
|
154
|
+
["customerAppScope", ["AdCenterWrapper::ApplicationType", XSD::QName.new(NsEntities, "CustomerAppScope")], [0, 1]],
|
153
155
|
["customerId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "CustomerId")], [0, 1]],
|
154
156
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
155
157
|
["jobTitle", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "JobTitle")], [0, 1]],
|
156
158
|
["lastModifiedByUserId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "LastModifiedByUserId")], [0, 1]],
|
157
159
|
["lastModifiedTime", ["SOAP::SOAPDateTime", XSD::QName.new(NsEntities, "LastModifiedTime")], [0, 1]],
|
158
|
-
["lcid", ["LCID", XSD::QName.new(NsEntities, "Lcid")], [0, 1]],
|
159
|
-
["name", ["PersonName", XSD::QName.new(NsEntities, "Name")], [0, 1]],
|
160
|
+
["lcid", ["AdCenterWrapper::LCID", XSD::QName.new(NsEntities, "Lcid")], [0, 1]],
|
161
|
+
["name", ["AdCenterWrapper::PersonName", XSD::QName.new(NsEntities, "Name")], [0, 1]],
|
160
162
|
["password", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Password")], [0, 1]],
|
161
163
|
["secretAnswer", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "SecretAnswer")], [0, 1]],
|
162
|
-
["secretQuestion", ["SecretQuestion", XSD::QName.new(NsEntities, "SecretQuestion")], [0, 1]],
|
163
|
-
["status", ["UserStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
164
|
+
["secretQuestion", ["AdCenterWrapper::SecretQuestion", XSD::QName.new(NsEntities, "SecretQuestion")], [0, 1]],
|
165
|
+
["status", ["AdCenterWrapper::UserStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
164
166
|
["timeStamp", ["SOAP::SOAPBase64", XSD::QName.new(NsEntities, "TimeStamp")], [0, 1]],
|
165
167
|
["userName", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "UserName")], [0, 1]]
|
166
168
|
]
|
167
169
|
)
|
168
170
|
|
169
171
|
EncodedRegistry.register(
|
170
|
-
:class => ContactInfo,
|
172
|
+
:class => AdCenterWrapper::ContactInfo,
|
171
173
|
:schema_type => XSD::QName.new(NsEntities, "ContactInfo"),
|
172
174
|
:schema_element => [
|
173
|
-
["address", ["Address", XSD::QName.new(NsEntities, "Address")], [0, 1]],
|
175
|
+
["address", ["AdCenterWrapper::Address", XSD::QName.new(NsEntities, "Address")], [0, 1]],
|
174
176
|
["contactByPhone", ["SOAP::SOAPBoolean", XSD::QName.new(NsEntities, "ContactByPhone")], [0, 1]],
|
175
177
|
["contactByPostalMail", ["SOAP::SOAPBoolean", XSD::QName.new(NsEntities, "ContactByPostalMail")], [0, 1]],
|
176
178
|
["email", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Email")], [0, 1]],
|
177
|
-
["emailFormat", ["EmailFormat", XSD::QName.new(NsEntities, "EmailFormat")], [0, 1]],
|
179
|
+
["emailFormat", ["AdCenterWrapper::EmailFormat", XSD::QName.new(NsEntities, "EmailFormat")], [0, 1]],
|
178
180
|
["fax", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Fax")], [0, 1]],
|
179
181
|
["homePhone", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "HomePhone")], [0, 1]],
|
180
182
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
@@ -185,7 +187,7 @@ module CustomerManagementServiceMappingRegistry
|
|
185
187
|
)
|
186
188
|
|
187
189
|
EncodedRegistry.register(
|
188
|
-
:class => PersonName,
|
190
|
+
:class => AdCenterWrapper::PersonName,
|
189
191
|
:schema_type => XSD::QName.new(NsEntities, "PersonName"),
|
190
192
|
:schema_element => [
|
191
193
|
["firstName", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "FirstName")], [0, 1]],
|
@@ -195,15 +197,15 @@ module CustomerManagementServiceMappingRegistry
|
|
195
197
|
)
|
196
198
|
|
197
199
|
EncodedRegistry.register(
|
198
|
-
:class => ArrayOfCustomerInfo,
|
200
|
+
:class => AdCenterWrapper::ArrayOfCustomerInfo,
|
199
201
|
:schema_type => XSD::QName.new(NsEntities, "ArrayOfCustomerInfo"),
|
200
202
|
:schema_element => [
|
201
|
-
["customerInfo", ["CustomerInfo[]", XSD::QName.new(NsEntities, "CustomerInfo")], [0, nil]]
|
203
|
+
["customerInfo", ["AdCenterWrapper::CustomerInfo[]", XSD::QName.new(NsEntities, "CustomerInfo")], [0, nil]]
|
202
204
|
]
|
203
205
|
)
|
204
206
|
|
205
207
|
EncodedRegistry.register(
|
206
|
-
:class => CustomerInfo,
|
208
|
+
:class => AdCenterWrapper::CustomerInfo,
|
207
209
|
:schema_type => XSD::QName.new(NsEntities, "CustomerInfo"),
|
208
210
|
:schema_element => [
|
209
211
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
@@ -212,15 +214,15 @@ module CustomerManagementServiceMappingRegistry
|
|
212
214
|
)
|
213
215
|
|
214
216
|
EncodedRegistry.register(
|
215
|
-
:class => ArrayOfUserInfo,
|
217
|
+
:class => AdCenterWrapper::ArrayOfUserInfo,
|
216
218
|
:schema_type => XSD::QName.new(NsEntities, "ArrayOfUserInfo"),
|
217
219
|
:schema_element => [
|
218
|
-
["userInfo", ["UserInfo[]", XSD::QName.new(NsEntities, "UserInfo")], [0, nil]]
|
220
|
+
["userInfo", ["AdCenterWrapper::UserInfo[]", XSD::QName.new(NsEntities, "UserInfo")], [0, nil]]
|
219
221
|
]
|
220
222
|
)
|
221
223
|
|
222
224
|
EncodedRegistry.register(
|
223
|
-
:class => UserInfo,
|
225
|
+
:class => AdCenterWrapper::UserInfo,
|
224
226
|
:schema_type => XSD::QName.new(NsEntities, "UserInfo"),
|
225
227
|
:schema_element => [
|
226
228
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
@@ -229,7 +231,7 @@ module CustomerManagementServiceMappingRegistry
|
|
229
231
|
)
|
230
232
|
|
231
233
|
EncodedRegistry.register(
|
232
|
-
:class => ArrayOflong,
|
234
|
+
:class => AdCenterWrapper::ArrayOflong,
|
233
235
|
:schema_type => XSD::QName.new(NsArrays, "ArrayOflong"),
|
234
236
|
:schema_element => [
|
235
237
|
["long", "SOAP::SOAPLong[]", [0, nil]]
|
@@ -237,7 +239,7 @@ module CustomerManagementServiceMappingRegistry
|
|
237
239
|
)
|
238
240
|
|
239
241
|
EncodedRegistry.register(
|
240
|
-
:class => ArrayOfint,
|
242
|
+
:class => AdCenterWrapper::ArrayOfint,
|
241
243
|
:schema_type => XSD::QName.new(NsArrays, "ArrayOfint"),
|
242
244
|
:schema_element => [
|
243
245
|
["int", "SOAP::SOAPInt[]", [0, nil]]
|
@@ -245,25 +247,25 @@ module CustomerManagementServiceMappingRegistry
|
|
245
247
|
)
|
246
248
|
|
247
249
|
EncodedRegistry.register(
|
248
|
-
:class => ApiFault,
|
250
|
+
:class => AdCenterWrapper::ApiFault,
|
249
251
|
:schema_type => XSD::QName.new(NsC_Exception, "ApiFault"),
|
250
252
|
:schema_basetype => XSD::QName.new(NsAdapiMicrosoftCom, "ApplicationFault"),
|
251
253
|
:schema_element => [
|
252
254
|
["trackingId", ["SOAP::SOAPString", XSD::QName.new(NsAdapiMicrosoftCom, "TrackingId")], [0, 1]],
|
253
|
-
["operationErrors", ["ArrayOfOperationError", XSD::QName.new(NsC_Exception, "OperationErrors")], [0, 1]]
|
255
|
+
["operationErrors", ["AdCenterWrapper::ArrayOfOperationError", XSD::QName.new(NsC_Exception, "OperationErrors")], [0, 1]]
|
254
256
|
]
|
255
257
|
)
|
256
258
|
|
257
259
|
EncodedRegistry.register(
|
258
|
-
:class => ArrayOfOperationError,
|
260
|
+
:class => AdCenterWrapper::ArrayOfOperationError,
|
259
261
|
:schema_type => XSD::QName.new(NsC_Exception, "ArrayOfOperationError"),
|
260
262
|
:schema_element => [
|
261
|
-
["operationError", ["OperationError[]", XSD::QName.new(NsC_Exception, "OperationError")], [0, nil]]
|
263
|
+
["operationError", ["AdCenterWrapper::OperationError[]", XSD::QName.new(NsC_Exception, "OperationError")], [0, nil]]
|
262
264
|
]
|
263
265
|
)
|
264
266
|
|
265
267
|
EncodedRegistry.register(
|
266
|
-
:class => OperationError,
|
268
|
+
:class => AdCenterWrapper::OperationError,
|
267
269
|
:schema_type => XSD::QName.new(NsC_Exception, "OperationError"),
|
268
270
|
:schema_element => [
|
269
271
|
["code", ["SOAP::SOAPInt", XSD::QName.new(NsC_Exception, "Code")], [0, 1]],
|
@@ -273,7 +275,7 @@ module CustomerManagementServiceMappingRegistry
|
|
273
275
|
)
|
274
276
|
|
275
277
|
EncodedRegistry.register(
|
276
|
-
:class => ApplicationFault,
|
278
|
+
:class => AdCenterWrapper::ApplicationFault,
|
277
279
|
:schema_type => XSD::QName.new(NsAdapiMicrosoftCom, "ApplicationFault"),
|
278
280
|
:schema_element => [
|
279
281
|
["trackingId", ["SOAP::SOAPString", XSD::QName.new(NsAdapiMicrosoftCom, "TrackingId")], [0, 1]]
|
@@ -281,25 +283,25 @@ module CustomerManagementServiceMappingRegistry
|
|
281
283
|
)
|
282
284
|
|
283
285
|
EncodedRegistry.register(
|
284
|
-
:class => AdApiFaultDetail,
|
286
|
+
:class => AdCenterWrapper::AdApiFaultDetail,
|
285
287
|
:schema_type => XSD::QName.new(NsAdapiMicrosoftCom, "AdApiFaultDetail"),
|
286
288
|
:schema_basetype => XSD::QName.new(NsAdapiMicrosoftCom, "ApplicationFault"),
|
287
289
|
:schema_element => [
|
288
290
|
["trackingId", ["SOAP::SOAPString", XSD::QName.new(NsAdapiMicrosoftCom, "TrackingId")], [0, 1]],
|
289
|
-
["errors", ["ArrayOfAdApiError", XSD::QName.new(NsAdapiMicrosoftCom, "Errors")], [0, 1]]
|
291
|
+
["errors", ["AdCenterWrapper::ArrayOfAdApiError", XSD::QName.new(NsAdapiMicrosoftCom, "Errors")], [0, 1]]
|
290
292
|
]
|
291
293
|
)
|
292
294
|
|
293
295
|
EncodedRegistry.register(
|
294
|
-
:class => ArrayOfAdApiError,
|
296
|
+
:class => AdCenterWrapper::ArrayOfAdApiError,
|
295
297
|
:schema_type => XSD::QName.new(NsAdapiMicrosoftCom, "ArrayOfAdApiError"),
|
296
298
|
:schema_element => [
|
297
|
-
["adApiError", ["AdApiError[]", XSD::QName.new(NsAdapiMicrosoftCom, "AdApiError")], [0, nil]]
|
299
|
+
["adApiError", ["AdCenterWrapper::AdApiError[]", XSD::QName.new(NsAdapiMicrosoftCom, "AdApiError")], [0, nil]]
|
298
300
|
]
|
299
301
|
)
|
300
302
|
|
301
303
|
EncodedRegistry.register(
|
302
|
-
:class => AdApiError,
|
304
|
+
:class => AdCenterWrapper::AdApiError,
|
303
305
|
:schema_type => XSD::QName.new(NsAdapiMicrosoftCom, "AdApiError"),
|
304
306
|
:schema_element => [
|
305
307
|
["code", ["SOAP::SOAPInt", XSD::QName.new(NsAdapiMicrosoftCom, "Code")], [0, 1]],
|
@@ -310,188 +312,188 @@ module CustomerManagementServiceMappingRegistry
|
|
310
312
|
)
|
311
313
|
|
312
314
|
EncodedRegistry.register(
|
313
|
-
:class => AccountLifeCycleStatus,
|
315
|
+
:class => AdCenterWrapper::AccountLifeCycleStatus,
|
314
316
|
:schema_type => XSD::QName.new(NsEntities, "AccountLifeCycleStatus")
|
315
317
|
)
|
316
318
|
|
317
319
|
EncodedRegistry.register(
|
318
|
-
:class => AccountType,
|
320
|
+
:class => AdCenterWrapper::AccountType,
|
319
321
|
:schema_type => XSD::QName.new(NsEntities, "AccountType")
|
320
322
|
)
|
321
323
|
|
322
324
|
EncodedRegistry.register(
|
323
|
-
:class => CurrencyType,
|
325
|
+
:class => AdCenterWrapper::CurrencyType,
|
324
326
|
:schema_type => XSD::QName.new(NsEntities, "CurrencyType")
|
325
327
|
)
|
326
328
|
|
327
329
|
EncodedRegistry.register(
|
328
|
-
:class => AccountFinancialStatus,
|
330
|
+
:class => AdCenterWrapper::AccountFinancialStatus,
|
329
331
|
:schema_type => XSD::QName.new(NsEntities, "AccountFinancialStatus")
|
330
332
|
)
|
331
333
|
|
332
334
|
EncodedRegistry.register(
|
333
|
-
:class => LanguageType,
|
335
|
+
:class => AdCenterWrapper::LanguageType,
|
334
336
|
:schema_type => XSD::QName.new(NsEntities, "LanguageType")
|
335
337
|
)
|
336
338
|
|
337
339
|
EncodedRegistry.register(
|
338
|
-
:class => PaymentMethodType,
|
340
|
+
:class => AdCenterWrapper::PaymentMethodType,
|
339
341
|
:schema_type => XSD::QName.new(NsEntities, "PaymentMethodType")
|
340
342
|
)
|
341
343
|
|
342
344
|
EncodedRegistry.register(
|
343
|
-
:class => TimeZoneType,
|
345
|
+
:class => AdCenterWrapper::TimeZoneType,
|
344
346
|
:schema_type => XSD::QName.new(NsEntities, "TimeZoneType")
|
345
347
|
)
|
346
348
|
|
347
349
|
EncodedRegistry.register(
|
348
|
-
:class => CustomerFinancialStatus,
|
350
|
+
:class => AdCenterWrapper::CustomerFinancialStatus,
|
349
351
|
:schema_type => XSD::QName.new(NsEntities, "CustomerFinancialStatus")
|
350
352
|
)
|
351
353
|
|
352
354
|
EncodedRegistry.register(
|
353
|
-
:class => Industry,
|
355
|
+
:class => AdCenterWrapper::Industry,
|
354
356
|
:schema_type => XSD::QName.new(NsEntities, "Industry")
|
355
357
|
)
|
356
358
|
|
357
359
|
EncodedRegistry.register(
|
358
|
-
:class => Market,
|
360
|
+
:class => AdCenterWrapper::Market,
|
359
361
|
:schema_type => XSD::QName.new(NsEntities, "Market")
|
360
362
|
)
|
361
363
|
|
362
364
|
EncodedRegistry.register(
|
363
|
-
:class => ServiceLevel,
|
365
|
+
:class => AdCenterWrapper::ServiceLevel,
|
364
366
|
:schema_type => XSD::QName.new(NsEntities, "ServiceLevel")
|
365
367
|
)
|
366
368
|
|
367
369
|
EncodedRegistry.register(
|
368
|
-
:class => CustomerLifeCycleStatus,
|
370
|
+
:class => AdCenterWrapper::CustomerLifeCycleStatus,
|
369
371
|
:schema_type => XSD::QName.new(NsEntities, "CustomerLifeCycleStatus")
|
370
372
|
)
|
371
373
|
|
372
374
|
EncodedRegistry.register(
|
373
|
-
:class => EmailFormat,
|
375
|
+
:class => AdCenterWrapper::EmailFormat,
|
374
376
|
:schema_type => XSD::QName.new(NsEntities, "EmailFormat")
|
375
377
|
)
|
376
378
|
|
377
379
|
EncodedRegistry.register(
|
378
|
-
:class => ApplicationType,
|
380
|
+
:class => AdCenterWrapper::ApplicationType,
|
379
381
|
:schema_type => XSD::QName.new(NsEntities, "ApplicationType")
|
380
382
|
)
|
381
383
|
|
382
384
|
EncodedRegistry.register(
|
383
|
-
:class => LCID,
|
385
|
+
:class => AdCenterWrapper::LCID,
|
384
386
|
:schema_type => XSD::QName.new(NsEntities, "LCID")
|
385
387
|
)
|
386
388
|
|
387
389
|
EncodedRegistry.register(
|
388
|
-
:class => SecretQuestion,
|
390
|
+
:class => AdCenterWrapper::SecretQuestion,
|
389
391
|
:schema_type => XSD::QName.new(NsEntities, "SecretQuestion")
|
390
392
|
)
|
391
393
|
|
392
394
|
EncodedRegistry.register(
|
393
|
-
:class => UserStatus,
|
395
|
+
:class => AdCenterWrapper::UserStatus,
|
394
396
|
:schema_type => XSD::QName.new(NsEntities, "UserStatus")
|
395
397
|
)
|
396
398
|
|
397
399
|
EncodedRegistry.register(
|
398
|
-
:class => UserRole,
|
400
|
+
:class => AdCenterWrapper::UserRole,
|
399
401
|
:schema_type => XSD::QName.new(NsEntities, "UserRole")
|
400
402
|
)
|
401
403
|
|
402
404
|
LiteralRegistry.register(
|
403
|
-
:class => ArrayOfAccountInfo,
|
405
|
+
:class => AdCenterWrapper::ArrayOfAccountInfo,
|
404
406
|
:schema_type => XSD::QName.new(NsEntities, "ArrayOfAccountInfo"),
|
405
407
|
:schema_element => [
|
406
|
-
["accountInfo", ["AccountInfo[]", XSD::QName.new(NsEntities, "AccountInfo")], [0, nil]]
|
408
|
+
["accountInfo", ["AdCenterWrapper::AccountInfo[]", XSD::QName.new(NsEntities, "AccountInfo")], [0, nil]]
|
407
409
|
]
|
408
410
|
)
|
409
411
|
|
410
412
|
LiteralRegistry.register(
|
411
|
-
:class => AccountInfo,
|
413
|
+
:class => AdCenterWrapper::AccountInfo,
|
412
414
|
:schema_type => XSD::QName.new(NsEntities, "AccountInfo"),
|
413
415
|
:schema_element => [
|
414
416
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
415
417
|
["name", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Name")], [0, 1]],
|
416
418
|
["number", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Number")], [0, 1]],
|
417
|
-
["status", ["AccountLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]]
|
419
|
+
["status", ["AdCenterWrapper::AccountLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]]
|
418
420
|
]
|
419
421
|
)
|
420
422
|
|
421
423
|
LiteralRegistry.register(
|
422
|
-
:class => Account,
|
424
|
+
:class => AdCenterWrapper::Account,
|
423
425
|
:schema_type => XSD::QName.new(NsEntities, "Account"),
|
424
426
|
:schema_element => [
|
425
|
-
["accountType", ["AccountType", XSD::QName.new(NsEntities, "AccountType")], [0, 1]],
|
427
|
+
["accountType", ["AdCenterWrapper::AccountType", XSD::QName.new(NsEntities, "AccountType")], [0, 1]],
|
426
428
|
["billToCustomerId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "BillToCustomerId")], [0, 1]],
|
427
429
|
["countryCode", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "CountryCode")], [0, 1]],
|
428
|
-
["currencyType", ["CurrencyType", XSD::QName.new(NsEntities, "CurrencyType")], [0, 1]],
|
429
|
-
["financialStatus", ["AccountFinancialStatus", XSD::QName.new(NsEntities, "FinancialStatus")], [0, 1]],
|
430
|
+
["currencyType", ["AdCenterWrapper::CurrencyType", XSD::QName.new(NsEntities, "CurrencyType")], [0, 1]],
|
431
|
+
["financialStatus", ["AdCenterWrapper::AccountFinancialStatus", XSD::QName.new(NsEntities, "FinancialStatus")], [0, 1]],
|
430
432
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
431
|
-
["language", ["LanguageType", XSD::QName.new(NsEntities, "Language")], [0, 1]],
|
433
|
+
["language", ["AdCenterWrapper::LanguageType", XSD::QName.new(NsEntities, "Language")], [0, 1]],
|
432
434
|
["lastModifiedByUserId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "LastModifiedByUserId")], [0, 1]],
|
433
435
|
["lastModifiedTime", ["SOAP::SOAPDateTime", XSD::QName.new(NsEntities, "LastModifiedTime")], [0, 1]],
|
434
436
|
["name", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Name")], [0, 1]],
|
435
437
|
["number", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Number")], [0, 1]],
|
436
438
|
["parentCustomerId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "ParentCustomerId")], [0, 1]],
|
437
439
|
["paymentMethodId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "PaymentMethodId")], [0, 1]],
|
438
|
-
["paymentMethodType", ["PaymentMethodType", XSD::QName.new(NsEntities, "PaymentMethodType")], [0, 1]],
|
440
|
+
["paymentMethodType", ["AdCenterWrapper::PaymentMethodType", XSD::QName.new(NsEntities, "PaymentMethodType")], [0, 1]],
|
439
441
|
["primaryUserId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "PrimaryUserId")], [0, 1]],
|
440
|
-
["status", ["AccountLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
442
|
+
["status", ["AdCenterWrapper::AccountLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
441
443
|
["timeStamp", ["SOAP::SOAPBase64", XSD::QName.new(NsEntities, "TimeStamp")], [0, 1]],
|
442
|
-
["timeZone", ["TimeZoneType", XSD::QName.new(NsEntities, "TimeZone")], [0, 1]]
|
444
|
+
["timeZone", ["AdCenterWrapper::TimeZoneType", XSD::QName.new(NsEntities, "TimeZone")], [0, 1]]
|
443
445
|
]
|
444
446
|
)
|
445
447
|
|
446
448
|
LiteralRegistry.register(
|
447
|
-
:class => PublisherAccount,
|
449
|
+
:class => AdCenterWrapper::PublisherAccount,
|
448
450
|
:schema_type => XSD::QName.new(NsEntities, "PublisherAccount"),
|
449
451
|
:schema_basetype => XSD::QName.new(NsEntities, "Account"),
|
450
452
|
:schema_element => [
|
451
|
-
["accountType", ["AccountType", XSD::QName.new(NsEntities, "AccountType")], [0, 1]],
|
453
|
+
["accountType", ["AdCenterWrapper::AccountType", XSD::QName.new(NsEntities, "AccountType")], [0, 1]],
|
452
454
|
["billToCustomerId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "BillToCustomerId")], [0, 1]],
|
453
455
|
["countryCode", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "CountryCode")], [0, 1]],
|
454
|
-
["currencyType", ["CurrencyType", XSD::QName.new(NsEntities, "CurrencyType")], [0, 1]],
|
455
|
-
["financialStatus", ["AccountFinancialStatus", XSD::QName.new(NsEntities, "FinancialStatus")], [0, 1]],
|
456
|
+
["currencyType", ["AdCenterWrapper::CurrencyType", XSD::QName.new(NsEntities, "CurrencyType")], [0, 1]],
|
457
|
+
["financialStatus", ["AdCenterWrapper::AccountFinancialStatus", XSD::QName.new(NsEntities, "FinancialStatus")], [0, 1]],
|
456
458
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
457
|
-
["language", ["LanguageType", XSD::QName.new(NsEntities, "Language")], [0, 1]],
|
459
|
+
["language", ["AdCenterWrapper::LanguageType", XSD::QName.new(NsEntities, "Language")], [0, 1]],
|
458
460
|
["lastModifiedByUserId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "LastModifiedByUserId")], [0, 1]],
|
459
461
|
["lastModifiedTime", ["SOAP::SOAPDateTime", XSD::QName.new(NsEntities, "LastModifiedTime")], [0, 1]],
|
460
462
|
["name", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Name")], [0, 1]],
|
461
463
|
["number", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Number")], [0, 1]],
|
462
464
|
["parentCustomerId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "ParentCustomerId")], [0, 1]],
|
463
465
|
["paymentMethodId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "PaymentMethodId")], [0, 1]],
|
464
|
-
["paymentMethodType", ["PaymentMethodType", XSD::QName.new(NsEntities, "PaymentMethodType")], [0, 1]],
|
466
|
+
["paymentMethodType", ["AdCenterWrapper::PaymentMethodType", XSD::QName.new(NsEntities, "PaymentMethodType")], [0, 1]],
|
465
467
|
["primaryUserId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "PrimaryUserId")], [0, 1]],
|
466
|
-
["status", ["AccountLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
468
|
+
["status", ["AdCenterWrapper::AccountLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
467
469
|
["timeStamp", ["SOAP::SOAPBase64", XSD::QName.new(NsEntities, "TimeStamp")], [0, 1]],
|
468
|
-
["timeZone", ["TimeZoneType", XSD::QName.new(NsEntities, "TimeZone")], [0, 1]]
|
470
|
+
["timeZone", ["AdCenterWrapper::TimeZoneType", XSD::QName.new(NsEntities, "TimeZone")], [0, 1]]
|
469
471
|
]
|
470
472
|
)
|
471
473
|
|
472
474
|
LiteralRegistry.register(
|
473
|
-
:class => AdvertiserAccount,
|
475
|
+
:class => AdCenterWrapper::AdvertiserAccount,
|
474
476
|
:schema_type => XSD::QName.new(NsEntities, "AdvertiserAccount"),
|
475
477
|
:schema_basetype => XSD::QName.new(NsEntities, "Account"),
|
476
478
|
:schema_element => [
|
477
|
-
["accountType", ["AccountType", XSD::QName.new(NsEntities, "AccountType")], [0, 1]],
|
479
|
+
["accountType", ["AdCenterWrapper::AccountType", XSD::QName.new(NsEntities, "AccountType")], [0, 1]],
|
478
480
|
["billToCustomerId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "BillToCustomerId")], [0, 1]],
|
479
481
|
["countryCode", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "CountryCode")], [0, 1]],
|
480
|
-
["currencyType", ["CurrencyType", XSD::QName.new(NsEntities, "CurrencyType")], [0, 1]],
|
481
|
-
["financialStatus", ["AccountFinancialStatus", XSD::QName.new(NsEntities, "FinancialStatus")], [0, 1]],
|
482
|
+
["currencyType", ["AdCenterWrapper::CurrencyType", XSD::QName.new(NsEntities, "CurrencyType")], [0, 1]],
|
483
|
+
["financialStatus", ["AdCenterWrapper::AccountFinancialStatus", XSD::QName.new(NsEntities, "FinancialStatus")], [0, 1]],
|
482
484
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
483
|
-
["language", ["LanguageType", XSD::QName.new(NsEntities, "Language")], [0, 1]],
|
485
|
+
["language", ["AdCenterWrapper::LanguageType", XSD::QName.new(NsEntities, "Language")], [0, 1]],
|
484
486
|
["lastModifiedByUserId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "LastModifiedByUserId")], [0, 1]],
|
485
487
|
["lastModifiedTime", ["SOAP::SOAPDateTime", XSD::QName.new(NsEntities, "LastModifiedTime")], [0, 1]],
|
486
488
|
["name", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Name")], [0, 1]],
|
487
489
|
["number", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Number")], [0, 1]],
|
488
490
|
["parentCustomerId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "ParentCustomerId")], [0, 1]],
|
489
491
|
["paymentMethodId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "PaymentMethodId")], [0, 1]],
|
490
|
-
["paymentMethodType", ["PaymentMethodType", XSD::QName.new(NsEntities, "PaymentMethodType")], [0, 1]],
|
492
|
+
["paymentMethodType", ["AdCenterWrapper::PaymentMethodType", XSD::QName.new(NsEntities, "PaymentMethodType")], [0, 1]],
|
491
493
|
["primaryUserId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "PrimaryUserId")], [0, 1]],
|
492
|
-
["status", ["AccountLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
494
|
+
["status", ["AdCenterWrapper::AccountLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
493
495
|
["timeStamp", ["SOAP::SOAPBase64", XSD::QName.new(NsEntities, "TimeStamp")], [0, 1]],
|
494
|
-
["timeZone", ["TimeZoneType", XSD::QName.new(NsEntities, "TimeZone")], [0, 1]],
|
496
|
+
["timeZone", ["AdCenterWrapper::TimeZoneType", XSD::QName.new(NsEntities, "TimeZone")], [0, 1]],
|
495
497
|
["agencyContactName", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "AgencyContactName")], [0, 1]],
|
496
498
|
["agencyCustomerId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "AgencyCustomerId")], [0, 1]],
|
497
499
|
["salesHouseCustomerId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "SalesHouseCustomerId")], [0, 1]]
|
@@ -499,25 +501,25 @@ module CustomerManagementServiceMappingRegistry
|
|
499
501
|
)
|
500
502
|
|
501
503
|
LiteralRegistry.register(
|
502
|
-
:class => Customer,
|
504
|
+
:class => AdCenterWrapper::Customer,
|
503
505
|
:schema_type => XSD::QName.new(NsEntities, "Customer"),
|
504
506
|
:schema_element => [
|
505
|
-
["customerAddress", ["Address", XSD::QName.new(NsEntities, "CustomerAddress")], [0, 1]],
|
506
|
-
["financialStatus", ["CustomerFinancialStatus", XSD::QName.new(NsEntities, "FinancialStatus")], [0, 1]],
|
507
|
+
["customerAddress", ["AdCenterWrapper::Address", XSD::QName.new(NsEntities, "CustomerAddress")], [0, 1]],
|
508
|
+
["financialStatus", ["AdCenterWrapper::CustomerFinancialStatus", XSD::QName.new(NsEntities, "FinancialStatus")], [0, 1]],
|
507
509
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
508
|
-
["industry", ["Industry", XSD::QName.new(NsEntities, "Industry")], [0, 1]],
|
510
|
+
["industry", ["AdCenterWrapper::Industry", XSD::QName.new(NsEntities, "Industry")], [0, 1]],
|
509
511
|
["lastModifiedByUserId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "LastModifiedByUserId")], [0, 1]],
|
510
512
|
["lastModifiedTime", ["SOAP::SOAPDateTime", XSD::QName.new(NsEntities, "LastModifiedTime")], [0, 1]],
|
511
|
-
["market", ["Market", XSD::QName.new(NsEntities, "Market")], [0, 1]],
|
513
|
+
["market", ["AdCenterWrapper::Market", XSD::QName.new(NsEntities, "Market")], [0, 1]],
|
512
514
|
["name", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Name")], [0, 1]],
|
513
|
-
["serviceLevel", ["ServiceLevel", XSD::QName.new(NsEntities, "ServiceLevel")], [0, 1]],
|
514
|
-
["status", ["CustomerLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
515
|
+
["serviceLevel", ["AdCenterWrapper::ServiceLevel", XSD::QName.new(NsEntities, "ServiceLevel")], [0, 1]],
|
516
|
+
["status", ["AdCenterWrapper::CustomerLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
515
517
|
["timeStamp", ["SOAP::SOAPBase64", XSD::QName.new(NsEntities, "TimeStamp")], [0, 1]]
|
516
518
|
]
|
517
519
|
)
|
518
520
|
|
519
521
|
LiteralRegistry.register(
|
520
|
-
:class => Address,
|
522
|
+
:class => AdCenterWrapper::Address,
|
521
523
|
:schema_type => XSD::QName.new(NsEntities, "Address"),
|
522
524
|
:schema_element => [
|
523
525
|
["city", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "City")], [0, 1]],
|
@@ -534,36 +536,36 @@ module CustomerManagementServiceMappingRegistry
|
|
534
536
|
)
|
535
537
|
|
536
538
|
LiteralRegistry.register(
|
537
|
-
:class => User,
|
539
|
+
:class => AdCenterWrapper::User,
|
538
540
|
:schema_type => XSD::QName.new(NsEntities, "User"),
|
539
541
|
:schema_element => [
|
540
|
-
["contactInfo", ["ContactInfo", XSD::QName.new(NsEntities, "ContactInfo")], [0, 1]],
|
541
|
-
["customerAppScope", ["ApplicationType", XSD::QName.new(NsEntities, "CustomerAppScope")], [0, 1]],
|
542
|
+
["contactInfo", ["AdCenterWrapper::ContactInfo", XSD::QName.new(NsEntities, "ContactInfo")], [0, 1]],
|
543
|
+
["customerAppScope", ["AdCenterWrapper::ApplicationType", XSD::QName.new(NsEntities, "CustomerAppScope")], [0, 1]],
|
542
544
|
["customerId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "CustomerId")], [0, 1]],
|
543
545
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
544
546
|
["jobTitle", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "JobTitle")], [0, 1]],
|
545
547
|
["lastModifiedByUserId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "LastModifiedByUserId")], [0, 1]],
|
546
548
|
["lastModifiedTime", ["SOAP::SOAPDateTime", XSD::QName.new(NsEntities, "LastModifiedTime")], [0, 1]],
|
547
|
-
["lcid", ["LCID", XSD::QName.new(NsEntities, "Lcid")], [0, 1]],
|
548
|
-
["name", ["PersonName", XSD::QName.new(NsEntities, "Name")], [0, 1]],
|
549
|
+
["lcid", ["AdCenterWrapper::LCID", XSD::QName.new(NsEntities, "Lcid")], [0, 1]],
|
550
|
+
["name", ["AdCenterWrapper::PersonName", XSD::QName.new(NsEntities, "Name")], [0, 1]],
|
549
551
|
["password", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Password")], [0, 1]],
|
550
552
|
["secretAnswer", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "SecretAnswer")], [0, 1]],
|
551
|
-
["secretQuestion", ["SecretQuestion", XSD::QName.new(NsEntities, "SecretQuestion")], [0, 1]],
|
552
|
-
["status", ["UserStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
553
|
+
["secretQuestion", ["AdCenterWrapper::SecretQuestion", XSD::QName.new(NsEntities, "SecretQuestion")], [0, 1]],
|
554
|
+
["status", ["AdCenterWrapper::UserStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
553
555
|
["timeStamp", ["SOAP::SOAPBase64", XSD::QName.new(NsEntities, "TimeStamp")], [0, 1]],
|
554
556
|
["userName", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "UserName")], [0, 1]]
|
555
557
|
]
|
556
558
|
)
|
557
559
|
|
558
560
|
LiteralRegistry.register(
|
559
|
-
:class => ContactInfo,
|
561
|
+
:class => AdCenterWrapper::ContactInfo,
|
560
562
|
:schema_type => XSD::QName.new(NsEntities, "ContactInfo"),
|
561
563
|
:schema_element => [
|
562
|
-
["address", ["Address", XSD::QName.new(NsEntities, "Address")], [0, 1]],
|
564
|
+
["address", ["AdCenterWrapper::Address", XSD::QName.new(NsEntities, "Address")], [0, 1]],
|
563
565
|
["contactByPhone", ["SOAP::SOAPBoolean", XSD::QName.new(NsEntities, "ContactByPhone")], [0, 1]],
|
564
566
|
["contactByPostalMail", ["SOAP::SOAPBoolean", XSD::QName.new(NsEntities, "ContactByPostalMail")], [0, 1]],
|
565
567
|
["email", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Email")], [0, 1]],
|
566
|
-
["emailFormat", ["EmailFormat", XSD::QName.new(NsEntities, "EmailFormat")], [0, 1]],
|
568
|
+
["emailFormat", ["AdCenterWrapper::EmailFormat", XSD::QName.new(NsEntities, "EmailFormat")], [0, 1]],
|
567
569
|
["fax", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Fax")], [0, 1]],
|
568
570
|
["homePhone", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "HomePhone")], [0, 1]],
|
569
571
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
@@ -574,7 +576,7 @@ module CustomerManagementServiceMappingRegistry
|
|
574
576
|
)
|
575
577
|
|
576
578
|
LiteralRegistry.register(
|
577
|
-
:class => PersonName,
|
579
|
+
:class => AdCenterWrapper::PersonName,
|
578
580
|
:schema_type => XSD::QName.new(NsEntities, "PersonName"),
|
579
581
|
:schema_element => [
|
580
582
|
["firstName", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "FirstName")], [0, 1]],
|
@@ -584,15 +586,15 @@ module CustomerManagementServiceMappingRegistry
|
|
584
586
|
)
|
585
587
|
|
586
588
|
LiteralRegistry.register(
|
587
|
-
:class => ArrayOfCustomerInfo,
|
589
|
+
:class => AdCenterWrapper::ArrayOfCustomerInfo,
|
588
590
|
:schema_type => XSD::QName.new(NsEntities, "ArrayOfCustomerInfo"),
|
589
591
|
:schema_element => [
|
590
|
-
["customerInfo", ["CustomerInfo[]", XSD::QName.new(NsEntities, "CustomerInfo")], [0, nil]]
|
592
|
+
["customerInfo", ["AdCenterWrapper::CustomerInfo[]", XSD::QName.new(NsEntities, "CustomerInfo")], [0, nil]]
|
591
593
|
]
|
592
594
|
)
|
593
595
|
|
594
596
|
LiteralRegistry.register(
|
595
|
-
:class => CustomerInfo,
|
597
|
+
:class => AdCenterWrapper::CustomerInfo,
|
596
598
|
:schema_type => XSD::QName.new(NsEntities, "CustomerInfo"),
|
597
599
|
:schema_element => [
|
598
600
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
@@ -601,15 +603,15 @@ module CustomerManagementServiceMappingRegistry
|
|
601
603
|
)
|
602
604
|
|
603
605
|
LiteralRegistry.register(
|
604
|
-
:class => ArrayOfUserInfo,
|
606
|
+
:class => AdCenterWrapper::ArrayOfUserInfo,
|
605
607
|
:schema_type => XSD::QName.new(NsEntities, "ArrayOfUserInfo"),
|
606
608
|
:schema_element => [
|
607
|
-
["userInfo", ["UserInfo[]", XSD::QName.new(NsEntities, "UserInfo")], [0, nil]]
|
609
|
+
["userInfo", ["AdCenterWrapper::UserInfo[]", XSD::QName.new(NsEntities, "UserInfo")], [0, nil]]
|
608
610
|
]
|
609
611
|
)
|
610
612
|
|
611
613
|
LiteralRegistry.register(
|
612
|
-
:class => UserInfo,
|
614
|
+
:class => AdCenterWrapper::UserInfo,
|
613
615
|
:schema_type => XSD::QName.new(NsEntities, "UserInfo"),
|
614
616
|
:schema_element => [
|
615
617
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
@@ -618,7 +620,7 @@ module CustomerManagementServiceMappingRegistry
|
|
618
620
|
)
|
619
621
|
|
620
622
|
LiteralRegistry.register(
|
621
|
-
:class => ArrayOflong,
|
623
|
+
:class => AdCenterWrapper::ArrayOflong,
|
622
624
|
:schema_type => XSD::QName.new(NsArrays, "ArrayOflong"),
|
623
625
|
:schema_element => [
|
624
626
|
["long", "SOAP::SOAPLong[]", [0, nil]]
|
@@ -626,7 +628,7 @@ module CustomerManagementServiceMappingRegistry
|
|
626
628
|
)
|
627
629
|
|
628
630
|
LiteralRegistry.register(
|
629
|
-
:class => ArrayOfint,
|
631
|
+
:class => AdCenterWrapper::ArrayOfint,
|
630
632
|
:schema_type => XSD::QName.new(NsArrays, "ArrayOfint"),
|
631
633
|
:schema_element => [
|
632
634
|
["int", "SOAP::SOAPInt[]", [0, nil]]
|
@@ -634,25 +636,25 @@ module CustomerManagementServiceMappingRegistry
|
|
634
636
|
)
|
635
637
|
|
636
638
|
LiteralRegistry.register(
|
637
|
-
:class => ApiFault,
|
639
|
+
:class => AdCenterWrapper::ApiFault,
|
638
640
|
:schema_type => XSD::QName.new(NsC_Exception, "ApiFault"),
|
639
641
|
:schema_basetype => XSD::QName.new(NsAdapiMicrosoftCom, "ApplicationFault"),
|
640
642
|
:schema_element => [
|
641
643
|
["trackingId", ["SOAP::SOAPString", XSD::QName.new(NsAdapiMicrosoftCom, "TrackingId")], [0, 1]],
|
642
|
-
["operationErrors", ["ArrayOfOperationError", XSD::QName.new(NsC_Exception, "OperationErrors")], [0, 1]]
|
644
|
+
["operationErrors", ["AdCenterWrapper::ArrayOfOperationError", XSD::QName.new(NsC_Exception, "OperationErrors")], [0, 1]]
|
643
645
|
]
|
644
646
|
)
|
645
647
|
|
646
648
|
LiteralRegistry.register(
|
647
|
-
:class => ArrayOfOperationError,
|
649
|
+
:class => AdCenterWrapper::ArrayOfOperationError,
|
648
650
|
:schema_type => XSD::QName.new(NsC_Exception, "ArrayOfOperationError"),
|
649
651
|
:schema_element => [
|
650
|
-
["operationError", ["OperationError[]", XSD::QName.new(NsC_Exception, "OperationError")], [0, nil]]
|
652
|
+
["operationError", ["AdCenterWrapper::OperationError[]", XSD::QName.new(NsC_Exception, "OperationError")], [0, nil]]
|
651
653
|
]
|
652
654
|
)
|
653
655
|
|
654
656
|
LiteralRegistry.register(
|
655
|
-
:class => OperationError,
|
657
|
+
:class => AdCenterWrapper::OperationError,
|
656
658
|
:schema_type => XSD::QName.new(NsC_Exception, "OperationError"),
|
657
659
|
:schema_element => [
|
658
660
|
["code", ["SOAP::SOAPInt", XSD::QName.new(NsC_Exception, "Code")], [0, 1]],
|
@@ -662,7 +664,7 @@ module CustomerManagementServiceMappingRegistry
|
|
662
664
|
)
|
663
665
|
|
664
666
|
LiteralRegistry.register(
|
665
|
-
:class => ApplicationFault,
|
667
|
+
:class => AdCenterWrapper::ApplicationFault,
|
666
668
|
:schema_type => XSD::QName.new(NsAdapiMicrosoftCom, "ApplicationFault"),
|
667
669
|
:schema_element => [
|
668
670
|
["trackingId", ["SOAP::SOAPString", XSD::QName.new(NsAdapiMicrosoftCom, "TrackingId")], [0, 1]]
|
@@ -670,25 +672,25 @@ module CustomerManagementServiceMappingRegistry
|
|
670
672
|
)
|
671
673
|
|
672
674
|
LiteralRegistry.register(
|
673
|
-
:class => AdApiFaultDetail,
|
675
|
+
:class => AdCenterWrapper::AdApiFaultDetail,
|
674
676
|
:schema_type => XSD::QName.new(NsAdapiMicrosoftCom, "AdApiFaultDetail"),
|
675
677
|
:schema_basetype => XSD::QName.new(NsAdapiMicrosoftCom, "ApplicationFault"),
|
676
678
|
:schema_element => [
|
677
679
|
["trackingId", ["SOAP::SOAPString", XSD::QName.new(NsAdapiMicrosoftCom, "TrackingId")], [0, 1]],
|
678
|
-
["errors", ["ArrayOfAdApiError", XSD::QName.new(NsAdapiMicrosoftCom, "Errors")], [0, 1]]
|
680
|
+
["errors", ["AdCenterWrapper::ArrayOfAdApiError", XSD::QName.new(NsAdapiMicrosoftCom, "Errors")], [0, 1]]
|
679
681
|
]
|
680
682
|
)
|
681
683
|
|
682
684
|
LiteralRegistry.register(
|
683
|
-
:class => ArrayOfAdApiError,
|
685
|
+
:class => AdCenterWrapper::ArrayOfAdApiError,
|
684
686
|
:schema_type => XSD::QName.new(NsAdapiMicrosoftCom, "ArrayOfAdApiError"),
|
685
687
|
:schema_element => [
|
686
|
-
["adApiError", ["AdApiError[]", XSD::QName.new(NsAdapiMicrosoftCom, "AdApiError")], [0, nil]]
|
688
|
+
["adApiError", ["AdCenterWrapper::AdApiError[]", XSD::QName.new(NsAdapiMicrosoftCom, "AdApiError")], [0, nil]]
|
687
689
|
]
|
688
690
|
)
|
689
691
|
|
690
692
|
LiteralRegistry.register(
|
691
|
-
:class => AdApiError,
|
693
|
+
:class => AdCenterWrapper::AdApiError,
|
692
694
|
:schema_type => XSD::QName.new(NsAdapiMicrosoftCom, "AdApiError"),
|
693
695
|
:schema_element => [
|
694
696
|
["code", ["SOAP::SOAPInt", XSD::QName.new(NsAdapiMicrosoftCom, "Code")], [0, 1]],
|
@@ -699,97 +701,97 @@ module CustomerManagementServiceMappingRegistry
|
|
699
701
|
)
|
700
702
|
|
701
703
|
LiteralRegistry.register(
|
702
|
-
:class => AccountLifeCycleStatus,
|
704
|
+
:class => AdCenterWrapper::AccountLifeCycleStatus,
|
703
705
|
:schema_type => XSD::QName.new(NsEntities, "AccountLifeCycleStatus")
|
704
706
|
)
|
705
707
|
|
706
708
|
LiteralRegistry.register(
|
707
|
-
:class => AccountType,
|
709
|
+
:class => AdCenterWrapper::AccountType,
|
708
710
|
:schema_type => XSD::QName.new(NsEntities, "AccountType")
|
709
711
|
)
|
710
712
|
|
711
713
|
LiteralRegistry.register(
|
712
|
-
:class => CurrencyType,
|
714
|
+
:class => AdCenterWrapper::CurrencyType,
|
713
715
|
:schema_type => XSD::QName.new(NsEntities, "CurrencyType")
|
714
716
|
)
|
715
717
|
|
716
718
|
LiteralRegistry.register(
|
717
|
-
:class => AccountFinancialStatus,
|
719
|
+
:class => AdCenterWrapper::AccountFinancialStatus,
|
718
720
|
:schema_type => XSD::QName.new(NsEntities, "AccountFinancialStatus")
|
719
721
|
)
|
720
722
|
|
721
723
|
LiteralRegistry.register(
|
722
|
-
:class => LanguageType,
|
724
|
+
:class => AdCenterWrapper::LanguageType,
|
723
725
|
:schema_type => XSD::QName.new(NsEntities, "LanguageType")
|
724
726
|
)
|
725
727
|
|
726
728
|
LiteralRegistry.register(
|
727
|
-
:class => PaymentMethodType,
|
729
|
+
:class => AdCenterWrapper::PaymentMethodType,
|
728
730
|
:schema_type => XSD::QName.new(NsEntities, "PaymentMethodType")
|
729
731
|
)
|
730
732
|
|
731
733
|
LiteralRegistry.register(
|
732
|
-
:class => TimeZoneType,
|
734
|
+
:class => AdCenterWrapper::TimeZoneType,
|
733
735
|
:schema_type => XSD::QName.new(NsEntities, "TimeZoneType")
|
734
736
|
)
|
735
737
|
|
736
738
|
LiteralRegistry.register(
|
737
|
-
:class => CustomerFinancialStatus,
|
739
|
+
:class => AdCenterWrapper::CustomerFinancialStatus,
|
738
740
|
:schema_type => XSD::QName.new(NsEntities, "CustomerFinancialStatus")
|
739
741
|
)
|
740
742
|
|
741
743
|
LiteralRegistry.register(
|
742
|
-
:class => Industry,
|
744
|
+
:class => AdCenterWrapper::Industry,
|
743
745
|
:schema_type => XSD::QName.new(NsEntities, "Industry")
|
744
746
|
)
|
745
747
|
|
746
748
|
LiteralRegistry.register(
|
747
|
-
:class => Market,
|
749
|
+
:class => AdCenterWrapper::Market,
|
748
750
|
:schema_type => XSD::QName.new(NsEntities, "Market")
|
749
751
|
)
|
750
752
|
|
751
753
|
LiteralRegistry.register(
|
752
|
-
:class => ServiceLevel,
|
754
|
+
:class => AdCenterWrapper::ServiceLevel,
|
753
755
|
:schema_type => XSD::QName.new(NsEntities, "ServiceLevel")
|
754
756
|
)
|
755
757
|
|
756
758
|
LiteralRegistry.register(
|
757
|
-
:class => CustomerLifeCycleStatus,
|
759
|
+
:class => AdCenterWrapper::CustomerLifeCycleStatus,
|
758
760
|
:schema_type => XSD::QName.new(NsEntities, "CustomerLifeCycleStatus")
|
759
761
|
)
|
760
762
|
|
761
763
|
LiteralRegistry.register(
|
762
|
-
:class => EmailFormat,
|
764
|
+
:class => AdCenterWrapper::EmailFormat,
|
763
765
|
:schema_type => XSD::QName.new(NsEntities, "EmailFormat")
|
764
766
|
)
|
765
767
|
|
766
768
|
LiteralRegistry.register(
|
767
|
-
:class => ApplicationType,
|
769
|
+
:class => AdCenterWrapper::ApplicationType,
|
768
770
|
:schema_type => XSD::QName.new(NsEntities, "ApplicationType")
|
769
771
|
)
|
770
772
|
|
771
773
|
LiteralRegistry.register(
|
772
|
-
:class => LCID,
|
774
|
+
:class => AdCenterWrapper::LCID,
|
773
775
|
:schema_type => XSD::QName.new(NsEntities, "LCID")
|
774
776
|
)
|
775
777
|
|
776
778
|
LiteralRegistry.register(
|
777
|
-
:class => SecretQuestion,
|
779
|
+
:class => AdCenterWrapper::SecretQuestion,
|
778
780
|
:schema_type => XSD::QName.new(NsEntities, "SecretQuestion")
|
779
781
|
)
|
780
782
|
|
781
783
|
LiteralRegistry.register(
|
782
|
-
:class => UserStatus,
|
784
|
+
:class => AdCenterWrapper::UserStatus,
|
783
785
|
:schema_type => XSD::QName.new(NsEntities, "UserStatus")
|
784
786
|
)
|
785
787
|
|
786
788
|
LiteralRegistry.register(
|
787
|
-
:class => UserRole,
|
789
|
+
:class => AdCenterWrapper::UserRole,
|
788
790
|
:schema_type => XSD::QName.new(NsEntities, "UserRole")
|
789
791
|
)
|
790
792
|
|
791
793
|
LiteralRegistry.register(
|
792
|
-
:class => GetAccountsInfoRequest,
|
794
|
+
:class => AdCenterWrapper::GetAccountsInfoRequest,
|
793
795
|
:schema_name => XSD::QName.new(NsCustomermanagement, "GetAccountsInfoRequest"),
|
794
796
|
:schema_element => [
|
795
797
|
["customerId", ["SOAP::SOAPLong", XSD::QName.new(NsCustomermanagement, "CustomerId")], [0, 1]]
|
@@ -797,23 +799,23 @@ module CustomerManagementServiceMappingRegistry
|
|
797
799
|
)
|
798
800
|
|
799
801
|
LiteralRegistry.register(
|
800
|
-
:class => GetAccountsInfoResponse,
|
802
|
+
:class => AdCenterWrapper::GetAccountsInfoResponse,
|
801
803
|
:schema_name => XSD::QName.new(NsCustomermanagement, "GetAccountsInfoResponse"),
|
802
804
|
:schema_element => [
|
803
|
-
["accountsInfo", ["ArrayOfAccountInfo", XSD::QName.new(NsCustomermanagement, "AccountsInfo")], [0, 1]]
|
805
|
+
["accountsInfo", ["AdCenterWrapper::ArrayOfAccountInfo", XSD::QName.new(NsCustomermanagement, "AccountsInfo")], [0, 1]]
|
804
806
|
]
|
805
807
|
)
|
806
808
|
|
807
809
|
LiteralRegistry.register(
|
808
|
-
:class => AddAccountRequest,
|
810
|
+
:class => AdCenterWrapper::AddAccountRequest,
|
809
811
|
:schema_name => XSD::QName.new(NsCustomermanagement, "AddAccountRequest"),
|
810
812
|
:schema_element => [
|
811
|
-
["account", ["Account", XSD::QName.new(NsCustomermanagement, "Account")], [0, 1]]
|
813
|
+
["account", ["AdCenterWrapper::Account", XSD::QName.new(NsCustomermanagement, "Account")], [0, 1]]
|
812
814
|
]
|
813
815
|
)
|
814
816
|
|
815
817
|
LiteralRegistry.register(
|
816
|
-
:class => AddAccountResponse,
|
818
|
+
:class => AdCenterWrapper::AddAccountResponse,
|
817
819
|
:schema_name => XSD::QName.new(NsCustomermanagement, "AddAccountResponse"),
|
818
820
|
:schema_element => [
|
819
821
|
["accountId", ["SOAP::SOAPLong", XSD::QName.new(NsCustomermanagement, "AccountId")], [0, 1]],
|
@@ -823,15 +825,15 @@ module CustomerManagementServiceMappingRegistry
|
|
823
825
|
)
|
824
826
|
|
825
827
|
LiteralRegistry.register(
|
826
|
-
:class => UpdateAccountRequest,
|
828
|
+
:class => AdCenterWrapper::UpdateAccountRequest,
|
827
829
|
:schema_name => XSD::QName.new(NsCustomermanagement, "UpdateAccountRequest"),
|
828
830
|
:schema_element => [
|
829
|
-
["account", ["Account", XSD::QName.new(NsCustomermanagement, "Account")], [0, 1]]
|
831
|
+
["account", ["AdCenterWrapper::Account", XSD::QName.new(NsCustomermanagement, "Account")], [0, 1]]
|
830
832
|
]
|
831
833
|
)
|
832
834
|
|
833
835
|
LiteralRegistry.register(
|
834
|
-
:class => UpdateAccountResponse,
|
836
|
+
:class => AdCenterWrapper::UpdateAccountResponse,
|
835
837
|
:schema_name => XSD::QName.new(NsCustomermanagement, "UpdateAccountResponse"),
|
836
838
|
:schema_element => [
|
837
839
|
["lastModifiedTime", ["SOAP::SOAPDateTime", XSD::QName.new(NsCustomermanagement, "LastModifiedTime")], [0, 1]]
|
@@ -839,7 +841,7 @@ module CustomerManagementServiceMappingRegistry
|
|
839
841
|
)
|
840
842
|
|
841
843
|
LiteralRegistry.register(
|
842
|
-
:class => GetCustomerRequest,
|
844
|
+
:class => AdCenterWrapper::GetCustomerRequest,
|
843
845
|
:schema_name => XSD::QName.new(NsCustomermanagement, "GetCustomerRequest"),
|
844
846
|
:schema_element => [
|
845
847
|
["customerId", ["SOAP::SOAPLong", XSD::QName.new(NsCustomermanagement, "CustomerId")], [0, 1]]
|
@@ -847,23 +849,23 @@ module CustomerManagementServiceMappingRegistry
|
|
847
849
|
)
|
848
850
|
|
849
851
|
LiteralRegistry.register(
|
850
|
-
:class => GetCustomerResponse,
|
852
|
+
:class => AdCenterWrapper::GetCustomerResponse,
|
851
853
|
:schema_name => XSD::QName.new(NsCustomermanagement, "GetCustomerResponse"),
|
852
854
|
:schema_element => [
|
853
|
-
["customer", ["Customer", XSD::QName.new(NsCustomermanagement, "Customer")], [0, 1]]
|
855
|
+
["customer", ["AdCenterWrapper::Customer", XSD::QName.new(NsCustomermanagement, "Customer")], [0, 1]]
|
854
856
|
]
|
855
857
|
)
|
856
858
|
|
857
859
|
LiteralRegistry.register(
|
858
|
-
:class => UpdateCustomerRequest,
|
860
|
+
:class => AdCenterWrapper::UpdateCustomerRequest,
|
859
861
|
:schema_name => XSD::QName.new(NsCustomermanagement, "UpdateCustomerRequest"),
|
860
862
|
:schema_element => [
|
861
|
-
["customer", ["Customer", XSD::QName.new(NsCustomermanagement, "Customer")], [0, 1]]
|
863
|
+
["customer", ["AdCenterWrapper::Customer", XSD::QName.new(NsCustomermanagement, "Customer")], [0, 1]]
|
862
864
|
]
|
863
865
|
)
|
864
866
|
|
865
867
|
LiteralRegistry.register(
|
866
|
-
:class => UpdateCustomerResponse,
|
868
|
+
:class => AdCenterWrapper::UpdateCustomerResponse,
|
867
869
|
:schema_name => XSD::QName.new(NsCustomermanagement, "UpdateCustomerResponse"),
|
868
870
|
:schema_element => [
|
869
871
|
["lastModifiedTime", ["SOAP::SOAPDateTime", XSD::QName.new(NsCustomermanagement, "LastModifiedTime")], [0, 1]]
|
@@ -871,19 +873,19 @@ module CustomerManagementServiceMappingRegistry
|
|
871
873
|
)
|
872
874
|
|
873
875
|
LiteralRegistry.register(
|
874
|
-
:class => SignupCustomerRequest,
|
876
|
+
:class => AdCenterWrapper::SignupCustomerRequest,
|
875
877
|
:schema_name => XSD::QName.new(NsCustomermanagement, "SignupCustomerRequest"),
|
876
878
|
:schema_element => [
|
877
|
-
["customer", ["Customer", XSD::QName.new(NsCustomermanagement, "Customer")], [0, 1]],
|
878
|
-
["user", ["User", XSD::QName.new(NsCustomermanagement, "User")], [0, 1]],
|
879
|
-
["account", ["Account", XSD::QName.new(NsCustomermanagement, "Account")], [0, 1]],
|
879
|
+
["customer", ["AdCenterWrapper::Customer", XSD::QName.new(NsCustomermanagement, "Customer")], [0, 1]],
|
880
|
+
["user", ["AdCenterWrapper::User", XSD::QName.new(NsCustomermanagement, "User")], [0, 1]],
|
881
|
+
["account", ["AdCenterWrapper::Account", XSD::QName.new(NsCustomermanagement, "Account")], [0, 1]],
|
880
882
|
["parentCustomerId", ["SOAP::SOAPLong", XSD::QName.new(NsCustomermanagement, "ParentCustomerId")], [0, 1]],
|
881
|
-
["applicationScope", ["ApplicationType", XSD::QName.new(NsCustomermanagement, "ApplicationScope")], [0, 1]]
|
883
|
+
["applicationScope", ["AdCenterWrapper::ApplicationType", XSD::QName.new(NsCustomermanagement, "ApplicationScope")], [0, 1]]
|
882
884
|
]
|
883
885
|
)
|
884
886
|
|
885
887
|
LiteralRegistry.register(
|
886
|
-
:class => SignupCustomerResponse,
|
888
|
+
:class => AdCenterWrapper::SignupCustomerResponse,
|
887
889
|
:schema_name => XSD::QName.new(NsCustomermanagement, "SignupCustomerResponse"),
|
888
890
|
:schema_element => [
|
889
891
|
["customerId", ["SOAP::SOAPLong", XSD::QName.new(NsCustomermanagement, "CustomerId")], [0, 1]],
|
@@ -896,7 +898,7 @@ module CustomerManagementServiceMappingRegistry
|
|
896
898
|
)
|
897
899
|
|
898
900
|
LiteralRegistry.register(
|
899
|
-
:class => GetAccountRequest,
|
901
|
+
:class => AdCenterWrapper::GetAccountRequest,
|
900
902
|
:schema_name => XSD::QName.new(NsCustomermanagement, "GetAccountRequest"),
|
901
903
|
:schema_element => [
|
902
904
|
["accountId", ["SOAP::SOAPLong", XSD::QName.new(NsCustomermanagement, "AccountId")], [0, 1]]
|
@@ -904,43 +906,43 @@ module CustomerManagementServiceMappingRegistry
|
|
904
906
|
)
|
905
907
|
|
906
908
|
LiteralRegistry.register(
|
907
|
-
:class => GetAccountResponse,
|
909
|
+
:class => AdCenterWrapper::GetAccountResponse,
|
908
910
|
:schema_name => XSD::QName.new(NsCustomermanagement, "GetAccountResponse"),
|
909
911
|
:schema_element => [
|
910
|
-
["account", ["Account", XSD::QName.new(NsCustomermanagement, "Account")], [0, 1]]
|
912
|
+
["account", ["AdCenterWrapper::Account", XSD::QName.new(NsCustomermanagement, "Account")], [0, 1]]
|
911
913
|
]
|
912
914
|
)
|
913
915
|
|
914
916
|
LiteralRegistry.register(
|
915
|
-
:class => GetCustomersInfoRequest,
|
917
|
+
:class => AdCenterWrapper::GetCustomersInfoRequest,
|
916
918
|
:schema_name => XSD::QName.new(NsCustomermanagement, "GetCustomersInfoRequest"),
|
917
919
|
:schema_element => [
|
918
920
|
["customerNameFilter", ["SOAP::SOAPString", XSD::QName.new(NsCustomermanagement, "CustomerNameFilter")], [0, 1]],
|
919
921
|
["topN", ["SOAP::SOAPInt", XSD::QName.new(NsCustomermanagement, "TopN")], [0, 1]],
|
920
|
-
["applicationScope", ["ApplicationType", XSD::QName.new(NsCustomermanagement, "ApplicationScope")], [0, 1]]
|
922
|
+
["applicationScope", ["AdCenterWrapper::ApplicationType", XSD::QName.new(NsCustomermanagement, "ApplicationScope")], [0, 1]]
|
921
923
|
]
|
922
924
|
)
|
923
925
|
|
924
926
|
LiteralRegistry.register(
|
925
|
-
:class => GetCustomersInfoResponse,
|
927
|
+
:class => AdCenterWrapper::GetCustomersInfoResponse,
|
926
928
|
:schema_name => XSD::QName.new(NsCustomermanagement, "GetCustomersInfoResponse"),
|
927
929
|
:schema_element => [
|
928
|
-
["customersInfo", ["ArrayOfCustomerInfo", XSD::QName.new(NsCustomermanagement, "CustomersInfo")], [0, 1]]
|
930
|
+
["customersInfo", ["AdCenterWrapper::ArrayOfCustomerInfo", XSD::QName.new(NsCustomermanagement, "CustomersInfo")], [0, 1]]
|
929
931
|
]
|
930
932
|
)
|
931
933
|
|
932
934
|
LiteralRegistry.register(
|
933
|
-
:class => AddUserRequest,
|
935
|
+
:class => AdCenterWrapper::AddUserRequest,
|
934
936
|
:schema_name => XSD::QName.new(NsCustomermanagement, "AddUserRequest"),
|
935
937
|
:schema_element => [
|
936
|
-
["user", ["User", XSD::QName.new(NsCustomermanagement, "User")], [0, 1]],
|
937
|
-
["role", ["UserRole", XSD::QName.new(NsCustomermanagement, "Role")], [0, 1]],
|
938
|
-
["accountIds", ["ArrayOflong", XSD::QName.new(NsCustomermanagement, "AccountIds")], [0, 1]]
|
938
|
+
["user", ["AdCenterWrapper::User", XSD::QName.new(NsCustomermanagement, "User")], [0, 1]],
|
939
|
+
["role", ["AdCenterWrapper::UserRole", XSD::QName.new(NsCustomermanagement, "Role")], [0, 1]],
|
940
|
+
["accountIds", ["AdCenterWrapper::ArrayOflong", XSD::QName.new(NsCustomermanagement, "AccountIds")], [0, 1]]
|
939
941
|
]
|
940
942
|
)
|
941
943
|
|
942
944
|
LiteralRegistry.register(
|
943
|
-
:class => AddUserResponse,
|
945
|
+
:class => AdCenterWrapper::AddUserResponse,
|
944
946
|
:schema_name => XSD::QName.new(NsCustomermanagement, "AddUserResponse"),
|
945
947
|
:schema_element => [
|
946
948
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsCustomermanagement, "Id")], [0, 1]],
|
@@ -949,7 +951,7 @@ module CustomerManagementServiceMappingRegistry
|
|
949
951
|
)
|
950
952
|
|
951
953
|
LiteralRegistry.register(
|
952
|
-
:class => DeleteAccountRequest,
|
954
|
+
:class => AdCenterWrapper::DeleteAccountRequest,
|
953
955
|
:schema_name => XSD::QName.new(NsCustomermanagement, "DeleteAccountRequest"),
|
954
956
|
:schema_element => [
|
955
957
|
["accountId", ["SOAP::SOAPLong", XSD::QName.new(NsCustomermanagement, "AccountId")], [0, 1]],
|
@@ -958,13 +960,13 @@ module CustomerManagementServiceMappingRegistry
|
|
958
960
|
)
|
959
961
|
|
960
962
|
LiteralRegistry.register(
|
961
|
-
:class => DeleteAccountResponse,
|
963
|
+
:class => AdCenterWrapper::DeleteAccountResponse,
|
962
964
|
:schema_name => XSD::QName.new(NsCustomermanagement, "DeleteAccountResponse"),
|
963
965
|
:schema_element => []
|
964
966
|
)
|
965
967
|
|
966
968
|
LiteralRegistry.register(
|
967
|
-
:class => DeleteCustomerRequest,
|
969
|
+
:class => AdCenterWrapper::DeleteCustomerRequest,
|
968
970
|
:schema_name => XSD::QName.new(NsCustomermanagement, "DeleteCustomerRequest"),
|
969
971
|
:schema_element => [
|
970
972
|
["customerId", ["SOAP::SOAPLong", XSD::QName.new(NsCustomermanagement, "CustomerId")], [0, 1]],
|
@@ -973,21 +975,21 @@ module CustomerManagementServiceMappingRegistry
|
|
973
975
|
)
|
974
976
|
|
975
977
|
LiteralRegistry.register(
|
976
|
-
:class => DeleteCustomerResponse,
|
978
|
+
:class => AdCenterWrapper::DeleteCustomerResponse,
|
977
979
|
:schema_name => XSD::QName.new(NsCustomermanagement, "DeleteCustomerResponse"),
|
978
980
|
:schema_element => []
|
979
981
|
)
|
980
982
|
|
981
983
|
LiteralRegistry.register(
|
982
|
-
:class => UpdateUserRequest,
|
984
|
+
:class => AdCenterWrapper::UpdateUserRequest,
|
983
985
|
:schema_name => XSD::QName.new(NsCustomermanagement, "UpdateUserRequest"),
|
984
986
|
:schema_element => [
|
985
|
-
["user", ["User", XSD::QName.new(NsCustomermanagement, "User")], [0, 1]]
|
987
|
+
["user", ["AdCenterWrapper::User", XSD::QName.new(NsCustomermanagement, "User")], [0, 1]]
|
986
988
|
]
|
987
989
|
)
|
988
990
|
|
989
991
|
LiteralRegistry.register(
|
990
|
-
:class => UpdateUserResponse,
|
992
|
+
:class => AdCenterWrapper::UpdateUserResponse,
|
991
993
|
:schema_name => XSD::QName.new(NsCustomermanagement, "UpdateUserResponse"),
|
992
994
|
:schema_element => [
|
993
995
|
["lastModifiedTime", ["SOAP::SOAPDateTime", XSD::QName.new(NsCustomermanagement, "LastModifiedTime")], [0, 1]]
|
@@ -995,22 +997,22 @@ module CustomerManagementServiceMappingRegistry
|
|
995
997
|
)
|
996
998
|
|
997
999
|
LiteralRegistry.register(
|
998
|
-
:class => UpdateUserRolesRequest,
|
1000
|
+
:class => AdCenterWrapper::UpdateUserRolesRequest,
|
999
1001
|
:schema_name => XSD::QName.new(NsCustomermanagement, "UpdateUserRolesRequest"),
|
1000
1002
|
:schema_element => [
|
1001
1003
|
["customerId", ["SOAP::SOAPLong", XSD::QName.new(NsCustomermanagement, "CustomerId")], [0, 1]],
|
1002
1004
|
["userId", ["SOAP::SOAPLong", XSD::QName.new(NsCustomermanagement, "UserId")], [0, 1]],
|
1003
1005
|
["newRoleId", ["SOAP::SOAPInt", XSD::QName.new(NsCustomermanagement, "NewRoleId")], [0, 1]],
|
1004
|
-
["newAccountIds", ["ArrayOflong", XSD::QName.new(NsCustomermanagement, "NewAccountIds")], [0, 1]],
|
1005
|
-
["newCustomerIds", ["ArrayOflong", XSD::QName.new(NsCustomermanagement, "NewCustomerIds")], [0, 1]],
|
1006
|
+
["newAccountIds", ["AdCenterWrapper::ArrayOflong", XSD::QName.new(NsCustomermanagement, "NewAccountIds")], [0, 1]],
|
1007
|
+
["newCustomerIds", ["AdCenterWrapper::ArrayOflong", XSD::QName.new(NsCustomermanagement, "NewCustomerIds")], [0, 1]],
|
1006
1008
|
["deleteRoleId", ["SOAP::SOAPInt", XSD::QName.new(NsCustomermanagement, "DeleteRoleId")], [0, 1]],
|
1007
|
-
["deleteAccountIds", ["ArrayOflong", XSD::QName.new(NsCustomermanagement, "DeleteAccountIds")], [0, 1]],
|
1008
|
-
["deleteCustomerIds", ["ArrayOflong", XSD::QName.new(NsCustomermanagement, "DeleteCustomerIds")], [0, 1]]
|
1009
|
+
["deleteAccountIds", ["AdCenterWrapper::ArrayOflong", XSD::QName.new(NsCustomermanagement, "DeleteAccountIds")], [0, 1]],
|
1010
|
+
["deleteCustomerIds", ["AdCenterWrapper::ArrayOflong", XSD::QName.new(NsCustomermanagement, "DeleteCustomerIds")], [0, 1]]
|
1009
1011
|
]
|
1010
1012
|
)
|
1011
1013
|
|
1012
1014
|
LiteralRegistry.register(
|
1013
|
-
:class => UpdateUserRolesResponse,
|
1015
|
+
:class => AdCenterWrapper::UpdateUserRolesResponse,
|
1014
1016
|
:schema_name => XSD::QName.new(NsCustomermanagement, "UpdateUserRolesResponse"),
|
1015
1017
|
:schema_element => [
|
1016
1018
|
["lastModifiedTime", ["SOAP::SOAPDateTime", XSD::QName.new(NsCustomermanagement, "LastModifiedTime")], [0, 1]]
|
@@ -1018,7 +1020,7 @@ module CustomerManagementServiceMappingRegistry
|
|
1018
1020
|
)
|
1019
1021
|
|
1020
1022
|
LiteralRegistry.register(
|
1021
|
-
:class => GetUserRequest,
|
1023
|
+
:class => AdCenterWrapper::GetUserRequest,
|
1022
1024
|
:schema_name => XSD::QName.new(NsCustomermanagement, "GetUserRequest"),
|
1023
1025
|
:schema_element => [
|
1024
1026
|
["userId", ["SOAP::SOAPLong", XSD::QName.new(NsCustomermanagement, "UserId")], [0, 1]]
|
@@ -1026,18 +1028,18 @@ module CustomerManagementServiceMappingRegistry
|
|
1026
1028
|
)
|
1027
1029
|
|
1028
1030
|
LiteralRegistry.register(
|
1029
|
-
:class => GetUserResponse,
|
1031
|
+
:class => AdCenterWrapper::GetUserResponse,
|
1030
1032
|
:schema_name => XSD::QName.new(NsCustomermanagement, "GetUserResponse"),
|
1031
1033
|
:schema_element => [
|
1032
|
-
["user", ["User", XSD::QName.new(NsCustomermanagement, "User")], [0, 1]],
|
1033
|
-
["roles", ["ArrayOfint", XSD::QName.new(NsCustomermanagement, "Roles")], [0, 1]],
|
1034
|
-
["accounts", ["ArrayOflong", XSD::QName.new(NsCustomermanagement, "Accounts")], [0, 1]],
|
1035
|
-
["customers", ["ArrayOflong", XSD::QName.new(NsCustomermanagement, "Customers")], [0, 1]]
|
1034
|
+
["user", ["AdCenterWrapper::User", XSD::QName.new(NsCustomermanagement, "User")], [0, 1]],
|
1035
|
+
["roles", ["AdCenterWrapper::ArrayOfint", XSD::QName.new(NsCustomermanagement, "Roles")], [0, 1]],
|
1036
|
+
["accounts", ["AdCenterWrapper::ArrayOflong", XSD::QName.new(NsCustomermanagement, "Accounts")], [0, 1]],
|
1037
|
+
["customers", ["AdCenterWrapper::ArrayOflong", XSD::QName.new(NsCustomermanagement, "Customers")], [0, 1]]
|
1036
1038
|
]
|
1037
1039
|
)
|
1038
1040
|
|
1039
1041
|
LiteralRegistry.register(
|
1040
|
-
:class => DeleteUserRequest,
|
1042
|
+
:class => AdCenterWrapper::DeleteUserRequest,
|
1041
1043
|
:schema_name => XSD::QName.new(NsCustomermanagement, "DeleteUserRequest"),
|
1042
1044
|
:schema_element => [
|
1043
1045
|
["userId", ["SOAP::SOAPLong", XSD::QName.new(NsCustomermanagement, "UserId")], [0, 1]],
|
@@ -1046,30 +1048,30 @@ module CustomerManagementServiceMappingRegistry
|
|
1046
1048
|
)
|
1047
1049
|
|
1048
1050
|
LiteralRegistry.register(
|
1049
|
-
:class => DeleteUserResponse,
|
1051
|
+
:class => AdCenterWrapper::DeleteUserResponse,
|
1050
1052
|
:schema_name => XSD::QName.new(NsCustomermanagement, "DeleteUserResponse"),
|
1051
1053
|
:schema_element => []
|
1052
1054
|
)
|
1053
1055
|
|
1054
1056
|
LiteralRegistry.register(
|
1055
|
-
:class => GetUsersInfoRequest,
|
1057
|
+
:class => AdCenterWrapper::GetUsersInfoRequest,
|
1056
1058
|
:schema_name => XSD::QName.new(NsCustomermanagement, "GetUsersInfoRequest"),
|
1057
1059
|
:schema_element => [
|
1058
1060
|
["customerId", ["SOAP::SOAPLong", XSD::QName.new(NsCustomermanagement, "CustomerId")], [0, 1]],
|
1059
|
-
["statusFilter", ["UserStatus", XSD::QName.new(NsCustomermanagement, "StatusFilter")], [0, 1]]
|
1061
|
+
["statusFilter", ["AdCenterWrapper::UserStatus", XSD::QName.new(NsCustomermanagement, "StatusFilter")], [0, 1]]
|
1060
1062
|
]
|
1061
1063
|
)
|
1062
1064
|
|
1063
1065
|
LiteralRegistry.register(
|
1064
|
-
:class => GetUsersInfoResponse,
|
1066
|
+
:class => AdCenterWrapper::GetUsersInfoResponse,
|
1065
1067
|
:schema_name => XSD::QName.new(NsCustomermanagement, "GetUsersInfoResponse"),
|
1066
1068
|
:schema_element => [
|
1067
|
-
["usersInfo", ["ArrayOfUserInfo", XSD::QName.new(NsCustomermanagement, "UsersInfo")], [0, 1]]
|
1069
|
+
["usersInfo", ["AdCenterWrapper::ArrayOfUserInfo", XSD::QName.new(NsCustomermanagement, "UsersInfo")], [0, 1]]
|
1068
1070
|
]
|
1069
1071
|
)
|
1070
1072
|
|
1071
1073
|
LiteralRegistry.register(
|
1072
|
-
:class => GetCustomerPilotFeatureRequest,
|
1074
|
+
:class => AdCenterWrapper::GetCustomerPilotFeatureRequest,
|
1073
1075
|
:schema_name => XSD::QName.new(NsCustomermanagement, "GetCustomerPilotFeatureRequest"),
|
1074
1076
|
:schema_element => [
|
1075
1077
|
["customerId", ["SOAP::SOAPLong", XSD::QName.new(NsCustomermanagement, "CustomerId")], [0, 1]]
|
@@ -1077,139 +1079,139 @@ module CustomerManagementServiceMappingRegistry
|
|
1077
1079
|
)
|
1078
1080
|
|
1079
1081
|
LiteralRegistry.register(
|
1080
|
-
:class => GetCustomerPilotFeatureResponse,
|
1082
|
+
:class => AdCenterWrapper::GetCustomerPilotFeatureResponse,
|
1081
1083
|
:schema_name => XSD::QName.new(NsCustomermanagement, "GetCustomerPilotFeatureResponse"),
|
1082
1084
|
:schema_element => [
|
1083
|
-
["featurePilotFlags", ["ArrayOfint", XSD::QName.new(NsCustomermanagement, "FeaturePilotFlags")], [0, 1]]
|
1085
|
+
["featurePilotFlags", ["AdCenterWrapper::ArrayOfint", XSD::QName.new(NsCustomermanagement, "FeaturePilotFlags")], [0, 1]]
|
1084
1086
|
]
|
1085
1087
|
)
|
1086
1088
|
|
1087
1089
|
LiteralRegistry.register(
|
1088
|
-
:class => ArrayOfAccountInfo,
|
1090
|
+
:class => AdCenterWrapper::ArrayOfAccountInfo,
|
1089
1091
|
:schema_name => XSD::QName.new(NsEntities, "ArrayOfAccountInfo"),
|
1090
1092
|
:schema_element => [
|
1091
|
-
["accountInfo", ["AccountInfo[]", XSD::QName.new(NsEntities, "AccountInfo")], [0, nil]]
|
1093
|
+
["accountInfo", ["AdCenterWrapper::AccountInfo[]", XSD::QName.new(NsEntities, "AccountInfo")], [0, nil]]
|
1092
1094
|
]
|
1093
1095
|
)
|
1094
1096
|
|
1095
1097
|
LiteralRegistry.register(
|
1096
|
-
:class => AccountInfo,
|
1098
|
+
:class => AdCenterWrapper::AccountInfo,
|
1097
1099
|
:schema_name => XSD::QName.new(NsEntities, "AccountInfo"),
|
1098
1100
|
:schema_element => [
|
1099
1101
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
1100
1102
|
["name", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Name")], [0, 1]],
|
1101
1103
|
["number", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Number")], [0, 1]],
|
1102
|
-
["status", ["AccountLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]]
|
1104
|
+
["status", ["AdCenterWrapper::AccountLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]]
|
1103
1105
|
]
|
1104
1106
|
)
|
1105
1107
|
|
1106
1108
|
LiteralRegistry.register(
|
1107
|
-
:class => AccountLifeCycleStatus,
|
1109
|
+
:class => AdCenterWrapper::AccountLifeCycleStatus,
|
1108
1110
|
:schema_name => XSD::QName.new(NsEntities, "AccountLifeCycleStatus")
|
1109
1111
|
)
|
1110
1112
|
|
1111
1113
|
LiteralRegistry.register(
|
1112
|
-
:class => Account,
|
1114
|
+
:class => AdCenterWrapper::Account,
|
1113
1115
|
:schema_name => XSD::QName.new(NsEntities, "Account"),
|
1114
1116
|
:schema_element => [
|
1115
|
-
["accountType", ["AccountType", XSD::QName.new(NsEntities, "AccountType")], [0, 1]],
|
1117
|
+
["accountType", ["AdCenterWrapper::AccountType", XSD::QName.new(NsEntities, "AccountType")], [0, 1]],
|
1116
1118
|
["billToCustomerId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "BillToCustomerId")], [0, 1]],
|
1117
1119
|
["countryCode", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "CountryCode")], [0, 1]],
|
1118
|
-
["currencyType", ["CurrencyType", XSD::QName.new(NsEntities, "CurrencyType")], [0, 1]],
|
1119
|
-
["financialStatus", ["AccountFinancialStatus", XSD::QName.new(NsEntities, "FinancialStatus")], [0, 1]],
|
1120
|
+
["currencyType", ["AdCenterWrapper::CurrencyType", XSD::QName.new(NsEntities, "CurrencyType")], [0, 1]],
|
1121
|
+
["financialStatus", ["AdCenterWrapper::AccountFinancialStatus", XSD::QName.new(NsEntities, "FinancialStatus")], [0, 1]],
|
1120
1122
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
1121
|
-
["language", ["LanguageType", XSD::QName.new(NsEntities, "Language")], [0, 1]],
|
1123
|
+
["language", ["AdCenterWrapper::LanguageType", XSD::QName.new(NsEntities, "Language")], [0, 1]],
|
1122
1124
|
["lastModifiedByUserId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "LastModifiedByUserId")], [0, 1]],
|
1123
1125
|
["lastModifiedTime", ["SOAP::SOAPDateTime", XSD::QName.new(NsEntities, "LastModifiedTime")], [0, 1]],
|
1124
1126
|
["name", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Name")], [0, 1]],
|
1125
1127
|
["number", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Number")], [0, 1]],
|
1126
1128
|
["parentCustomerId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "ParentCustomerId")], [0, 1]],
|
1127
1129
|
["paymentMethodId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "PaymentMethodId")], [0, 1]],
|
1128
|
-
["paymentMethodType", ["PaymentMethodType", XSD::QName.new(NsEntities, "PaymentMethodType")], [0, 1]],
|
1130
|
+
["paymentMethodType", ["AdCenterWrapper::PaymentMethodType", XSD::QName.new(NsEntities, "PaymentMethodType")], [0, 1]],
|
1129
1131
|
["primaryUserId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "PrimaryUserId")], [0, 1]],
|
1130
|
-
["status", ["AccountLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
1132
|
+
["status", ["AdCenterWrapper::AccountLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
1131
1133
|
["timeStamp", ["SOAP::SOAPBase64", XSD::QName.new(NsEntities, "TimeStamp")], [0, 1]],
|
1132
|
-
["timeZone", ["TimeZoneType", XSD::QName.new(NsEntities, "TimeZone")], [0, 1]]
|
1134
|
+
["timeZone", ["AdCenterWrapper::TimeZoneType", XSD::QName.new(NsEntities, "TimeZone")], [0, 1]]
|
1133
1135
|
]
|
1134
1136
|
)
|
1135
1137
|
|
1136
1138
|
LiteralRegistry.register(
|
1137
|
-
:class => AccountType,
|
1139
|
+
:class => AdCenterWrapper::AccountType,
|
1138
1140
|
:schema_name => XSD::QName.new(NsEntities, "AccountType")
|
1139
1141
|
)
|
1140
1142
|
|
1141
1143
|
LiteralRegistry.register(
|
1142
|
-
:class => CurrencyType,
|
1144
|
+
:class => AdCenterWrapper::CurrencyType,
|
1143
1145
|
:schema_name => XSD::QName.new(NsEntities, "CurrencyType")
|
1144
1146
|
)
|
1145
1147
|
|
1146
1148
|
LiteralRegistry.register(
|
1147
|
-
:class => AccountFinancialStatus,
|
1149
|
+
:class => AdCenterWrapper::AccountFinancialStatus,
|
1148
1150
|
:schema_name => XSD::QName.new(NsEntities, "AccountFinancialStatus")
|
1149
1151
|
)
|
1150
1152
|
|
1151
1153
|
LiteralRegistry.register(
|
1152
|
-
:class => LanguageType,
|
1154
|
+
:class => AdCenterWrapper::LanguageType,
|
1153
1155
|
:schema_name => XSD::QName.new(NsEntities, "LanguageType")
|
1154
1156
|
)
|
1155
1157
|
|
1156
1158
|
LiteralRegistry.register(
|
1157
|
-
:class => PaymentMethodType,
|
1159
|
+
:class => AdCenterWrapper::PaymentMethodType,
|
1158
1160
|
:schema_name => XSD::QName.new(NsEntities, "PaymentMethodType")
|
1159
1161
|
)
|
1160
1162
|
|
1161
1163
|
LiteralRegistry.register(
|
1162
|
-
:class => TimeZoneType,
|
1164
|
+
:class => AdCenterWrapper::TimeZoneType,
|
1163
1165
|
:schema_name => XSD::QName.new(NsEntities, "TimeZoneType")
|
1164
1166
|
)
|
1165
1167
|
|
1166
1168
|
LiteralRegistry.register(
|
1167
|
-
:class => PublisherAccount,
|
1169
|
+
:class => AdCenterWrapper::PublisherAccount,
|
1168
1170
|
:schema_name => XSD::QName.new(NsEntities, "PublisherAccount"),
|
1169
1171
|
:schema_element => [
|
1170
|
-
["accountType", ["AccountType", XSD::QName.new(NsEntities, "AccountType")], [0, 1]],
|
1172
|
+
["accountType", ["AdCenterWrapper::AccountType", XSD::QName.new(NsEntities, "AccountType")], [0, 1]],
|
1171
1173
|
["billToCustomerId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "BillToCustomerId")], [0, 1]],
|
1172
1174
|
["countryCode", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "CountryCode")], [0, 1]],
|
1173
|
-
["currencyType", ["CurrencyType", XSD::QName.new(NsEntities, "CurrencyType")], [0, 1]],
|
1174
|
-
["financialStatus", ["AccountFinancialStatus", XSD::QName.new(NsEntities, "FinancialStatus")], [0, 1]],
|
1175
|
+
["currencyType", ["AdCenterWrapper::CurrencyType", XSD::QName.new(NsEntities, "CurrencyType")], [0, 1]],
|
1176
|
+
["financialStatus", ["AdCenterWrapper::AccountFinancialStatus", XSD::QName.new(NsEntities, "FinancialStatus")], [0, 1]],
|
1175
1177
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
1176
|
-
["language", ["LanguageType", XSD::QName.new(NsEntities, "Language")], [0, 1]],
|
1178
|
+
["language", ["AdCenterWrapper::LanguageType", XSD::QName.new(NsEntities, "Language")], [0, 1]],
|
1177
1179
|
["lastModifiedByUserId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "LastModifiedByUserId")], [0, 1]],
|
1178
1180
|
["lastModifiedTime", ["SOAP::SOAPDateTime", XSD::QName.new(NsEntities, "LastModifiedTime")], [0, 1]],
|
1179
1181
|
["name", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Name")], [0, 1]],
|
1180
1182
|
["number", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Number")], [0, 1]],
|
1181
1183
|
["parentCustomerId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "ParentCustomerId")], [0, 1]],
|
1182
1184
|
["paymentMethodId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "PaymentMethodId")], [0, 1]],
|
1183
|
-
["paymentMethodType", ["PaymentMethodType", XSD::QName.new(NsEntities, "PaymentMethodType")], [0, 1]],
|
1185
|
+
["paymentMethodType", ["AdCenterWrapper::PaymentMethodType", XSD::QName.new(NsEntities, "PaymentMethodType")], [0, 1]],
|
1184
1186
|
["primaryUserId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "PrimaryUserId")], [0, 1]],
|
1185
|
-
["status", ["AccountLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
1187
|
+
["status", ["AdCenterWrapper::AccountLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
1186
1188
|
["timeStamp", ["SOAP::SOAPBase64", XSD::QName.new(NsEntities, "TimeStamp")], [0, 1]],
|
1187
|
-
["timeZone", ["TimeZoneType", XSD::QName.new(NsEntities, "TimeZone")], [0, 1]]
|
1189
|
+
["timeZone", ["AdCenterWrapper::TimeZoneType", XSD::QName.new(NsEntities, "TimeZone")], [0, 1]]
|
1188
1190
|
]
|
1189
1191
|
)
|
1190
1192
|
|
1191
1193
|
LiteralRegistry.register(
|
1192
|
-
:class => AdvertiserAccount,
|
1194
|
+
:class => AdCenterWrapper::AdvertiserAccount,
|
1193
1195
|
:schema_name => XSD::QName.new(NsEntities, "AdvertiserAccount"),
|
1194
1196
|
:schema_element => [
|
1195
|
-
["accountType", ["AccountType", XSD::QName.new(NsEntities, "AccountType")], [0, 1]],
|
1197
|
+
["accountType", ["AdCenterWrapper::AccountType", XSD::QName.new(NsEntities, "AccountType")], [0, 1]],
|
1196
1198
|
["billToCustomerId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "BillToCustomerId")], [0, 1]],
|
1197
1199
|
["countryCode", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "CountryCode")], [0, 1]],
|
1198
|
-
["currencyType", ["CurrencyType", XSD::QName.new(NsEntities, "CurrencyType")], [0, 1]],
|
1199
|
-
["financialStatus", ["AccountFinancialStatus", XSD::QName.new(NsEntities, "FinancialStatus")], [0, 1]],
|
1200
|
+
["currencyType", ["AdCenterWrapper::CurrencyType", XSD::QName.new(NsEntities, "CurrencyType")], [0, 1]],
|
1201
|
+
["financialStatus", ["AdCenterWrapper::AccountFinancialStatus", XSD::QName.new(NsEntities, "FinancialStatus")], [0, 1]],
|
1200
1202
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
1201
|
-
["language", ["LanguageType", XSD::QName.new(NsEntities, "Language")], [0, 1]],
|
1203
|
+
["language", ["AdCenterWrapper::LanguageType", XSD::QName.new(NsEntities, "Language")], [0, 1]],
|
1202
1204
|
["lastModifiedByUserId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "LastModifiedByUserId")], [0, 1]],
|
1203
1205
|
["lastModifiedTime", ["SOAP::SOAPDateTime", XSD::QName.new(NsEntities, "LastModifiedTime")], [0, 1]],
|
1204
1206
|
["name", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Name")], [0, 1]],
|
1205
1207
|
["number", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Number")], [0, 1]],
|
1206
1208
|
["parentCustomerId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "ParentCustomerId")], [0, 1]],
|
1207
1209
|
["paymentMethodId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "PaymentMethodId")], [0, 1]],
|
1208
|
-
["paymentMethodType", ["PaymentMethodType", XSD::QName.new(NsEntities, "PaymentMethodType")], [0, 1]],
|
1210
|
+
["paymentMethodType", ["AdCenterWrapper::PaymentMethodType", XSD::QName.new(NsEntities, "PaymentMethodType")], [0, 1]],
|
1209
1211
|
["primaryUserId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "PrimaryUserId")], [0, 1]],
|
1210
|
-
["status", ["AccountLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
1212
|
+
["status", ["AdCenterWrapper::AccountLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
1211
1213
|
["timeStamp", ["SOAP::SOAPBase64", XSD::QName.new(NsEntities, "TimeStamp")], [0, 1]],
|
1212
|
-
["timeZone", ["TimeZoneType", XSD::QName.new(NsEntities, "TimeZone")], [0, 1]],
|
1214
|
+
["timeZone", ["AdCenterWrapper::TimeZoneType", XSD::QName.new(NsEntities, "TimeZone")], [0, 1]],
|
1213
1215
|
["agencyContactName", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "AgencyContactName")], [0, 1]],
|
1214
1216
|
["agencyCustomerId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "AgencyCustomerId")], [0, 1]],
|
1215
1217
|
["salesHouseCustomerId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "SalesHouseCustomerId")], [0, 1]]
|
@@ -1217,25 +1219,25 @@ module CustomerManagementServiceMappingRegistry
|
|
1217
1219
|
)
|
1218
1220
|
|
1219
1221
|
LiteralRegistry.register(
|
1220
|
-
:class => Customer,
|
1222
|
+
:class => AdCenterWrapper::Customer,
|
1221
1223
|
:schema_name => XSD::QName.new(NsEntities, "Customer"),
|
1222
1224
|
:schema_element => [
|
1223
|
-
["customerAddress", ["Address", XSD::QName.new(NsEntities, "CustomerAddress")], [0, 1]],
|
1224
|
-
["financialStatus", ["CustomerFinancialStatus", XSD::QName.new(NsEntities, "FinancialStatus")], [0, 1]],
|
1225
|
+
["customerAddress", ["AdCenterWrapper::Address", XSD::QName.new(NsEntities, "CustomerAddress")], [0, 1]],
|
1226
|
+
["financialStatus", ["AdCenterWrapper::CustomerFinancialStatus", XSD::QName.new(NsEntities, "FinancialStatus")], [0, 1]],
|
1225
1227
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
1226
|
-
["industry", ["Industry", XSD::QName.new(NsEntities, "Industry")], [0, 1]],
|
1228
|
+
["industry", ["AdCenterWrapper::Industry", XSD::QName.new(NsEntities, "Industry")], [0, 1]],
|
1227
1229
|
["lastModifiedByUserId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "LastModifiedByUserId")], [0, 1]],
|
1228
1230
|
["lastModifiedTime", ["SOAP::SOAPDateTime", XSD::QName.new(NsEntities, "LastModifiedTime")], [0, 1]],
|
1229
|
-
["market", ["Market", XSD::QName.new(NsEntities, "Market")], [0, 1]],
|
1231
|
+
["market", ["AdCenterWrapper::Market", XSD::QName.new(NsEntities, "Market")], [0, 1]],
|
1230
1232
|
["name", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Name")], [0, 1]],
|
1231
|
-
["serviceLevel", ["ServiceLevel", XSD::QName.new(NsEntities, "ServiceLevel")], [0, 1]],
|
1232
|
-
["status", ["CustomerLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
1233
|
+
["serviceLevel", ["AdCenterWrapper::ServiceLevel", XSD::QName.new(NsEntities, "ServiceLevel")], [0, 1]],
|
1234
|
+
["status", ["AdCenterWrapper::CustomerLifeCycleStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
1233
1235
|
["timeStamp", ["SOAP::SOAPBase64", XSD::QName.new(NsEntities, "TimeStamp")], [0, 1]]
|
1234
1236
|
]
|
1235
1237
|
)
|
1236
1238
|
|
1237
1239
|
LiteralRegistry.register(
|
1238
|
-
:class => Address,
|
1240
|
+
:class => AdCenterWrapper::Address,
|
1239
1241
|
:schema_name => XSD::QName.new(NsEntities, "Address"),
|
1240
1242
|
:schema_element => [
|
1241
1243
|
["city", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "City")], [0, 1]],
|
@@ -1252,61 +1254,61 @@ module CustomerManagementServiceMappingRegistry
|
|
1252
1254
|
)
|
1253
1255
|
|
1254
1256
|
LiteralRegistry.register(
|
1255
|
-
:class => CustomerFinancialStatus,
|
1257
|
+
:class => AdCenterWrapper::CustomerFinancialStatus,
|
1256
1258
|
:schema_name => XSD::QName.new(NsEntities, "CustomerFinancialStatus")
|
1257
1259
|
)
|
1258
1260
|
|
1259
1261
|
LiteralRegistry.register(
|
1260
|
-
:class => Industry,
|
1262
|
+
:class => AdCenterWrapper::Industry,
|
1261
1263
|
:schema_name => XSD::QName.new(NsEntities, "Industry")
|
1262
1264
|
)
|
1263
1265
|
|
1264
1266
|
LiteralRegistry.register(
|
1265
|
-
:class => Market,
|
1267
|
+
:class => AdCenterWrapper::Market,
|
1266
1268
|
:schema_name => XSD::QName.new(NsEntities, "Market")
|
1267
1269
|
)
|
1268
1270
|
|
1269
1271
|
LiteralRegistry.register(
|
1270
|
-
:class => ServiceLevel,
|
1272
|
+
:class => AdCenterWrapper::ServiceLevel,
|
1271
1273
|
:schema_name => XSD::QName.new(NsEntities, "ServiceLevel")
|
1272
1274
|
)
|
1273
1275
|
|
1274
1276
|
LiteralRegistry.register(
|
1275
|
-
:class => CustomerLifeCycleStatus,
|
1277
|
+
:class => AdCenterWrapper::CustomerLifeCycleStatus,
|
1276
1278
|
:schema_name => XSD::QName.new(NsEntities, "CustomerLifeCycleStatus")
|
1277
1279
|
)
|
1278
1280
|
|
1279
1281
|
LiteralRegistry.register(
|
1280
|
-
:class => User,
|
1282
|
+
:class => AdCenterWrapper::User,
|
1281
1283
|
:schema_name => XSD::QName.new(NsEntities, "User"),
|
1282
1284
|
:schema_element => [
|
1283
|
-
["contactInfo", ["ContactInfo", XSD::QName.new(NsEntities, "ContactInfo")], [0, 1]],
|
1284
|
-
["customerAppScope", ["ApplicationType", XSD::QName.new(NsEntities, "CustomerAppScope")], [0, 1]],
|
1285
|
+
["contactInfo", ["AdCenterWrapper::ContactInfo", XSD::QName.new(NsEntities, "ContactInfo")], [0, 1]],
|
1286
|
+
["customerAppScope", ["AdCenterWrapper::ApplicationType", XSD::QName.new(NsEntities, "CustomerAppScope")], [0, 1]],
|
1285
1287
|
["customerId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "CustomerId")], [0, 1]],
|
1286
1288
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
1287
1289
|
["jobTitle", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "JobTitle")], [0, 1]],
|
1288
1290
|
["lastModifiedByUserId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "LastModifiedByUserId")], [0, 1]],
|
1289
1291
|
["lastModifiedTime", ["SOAP::SOAPDateTime", XSD::QName.new(NsEntities, "LastModifiedTime")], [0, 1]],
|
1290
|
-
["lcid", ["LCID", XSD::QName.new(NsEntities, "Lcid")], [0, 1]],
|
1291
|
-
["name", ["PersonName", XSD::QName.new(NsEntities, "Name")], [0, 1]],
|
1292
|
+
["lcid", ["AdCenterWrapper::LCID", XSD::QName.new(NsEntities, "Lcid")], [0, 1]],
|
1293
|
+
["name", ["AdCenterWrapper::PersonName", XSD::QName.new(NsEntities, "Name")], [0, 1]],
|
1292
1294
|
["password", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Password")], [0, 1]],
|
1293
1295
|
["secretAnswer", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "SecretAnswer")], [0, 1]],
|
1294
|
-
["secretQuestion", ["SecretQuestion", XSD::QName.new(NsEntities, "SecretQuestion")], [0, 1]],
|
1295
|
-
["status", ["UserStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
1296
|
+
["secretQuestion", ["AdCenterWrapper::SecretQuestion", XSD::QName.new(NsEntities, "SecretQuestion")], [0, 1]],
|
1297
|
+
["status", ["AdCenterWrapper::UserStatus", XSD::QName.new(NsEntities, "Status")], [0, 1]],
|
1296
1298
|
["timeStamp", ["SOAP::SOAPBase64", XSD::QName.new(NsEntities, "TimeStamp")], [0, 1]],
|
1297
1299
|
["userName", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "UserName")], [0, 1]]
|
1298
1300
|
]
|
1299
1301
|
)
|
1300
1302
|
|
1301
1303
|
LiteralRegistry.register(
|
1302
|
-
:class => ContactInfo,
|
1304
|
+
:class => AdCenterWrapper::ContactInfo,
|
1303
1305
|
:schema_name => XSD::QName.new(NsEntities, "ContactInfo"),
|
1304
1306
|
:schema_element => [
|
1305
|
-
["address", ["Address", XSD::QName.new(NsEntities, "Address")], [0, 1]],
|
1307
|
+
["address", ["AdCenterWrapper::Address", XSD::QName.new(NsEntities, "Address")], [0, 1]],
|
1306
1308
|
["contactByPhone", ["SOAP::SOAPBoolean", XSD::QName.new(NsEntities, "ContactByPhone")], [0, 1]],
|
1307
1309
|
["contactByPostalMail", ["SOAP::SOAPBoolean", XSD::QName.new(NsEntities, "ContactByPostalMail")], [0, 1]],
|
1308
1310
|
["email", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Email")], [0, 1]],
|
1309
|
-
["emailFormat", ["EmailFormat", XSD::QName.new(NsEntities, "EmailFormat")], [0, 1]],
|
1311
|
+
["emailFormat", ["AdCenterWrapper::EmailFormat", XSD::QName.new(NsEntities, "EmailFormat")], [0, 1]],
|
1310
1312
|
["fax", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "Fax")], [0, 1]],
|
1311
1313
|
["homePhone", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "HomePhone")], [0, 1]],
|
1312
1314
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
@@ -1317,22 +1319,22 @@ module CustomerManagementServiceMappingRegistry
|
|
1317
1319
|
)
|
1318
1320
|
|
1319
1321
|
LiteralRegistry.register(
|
1320
|
-
:class => EmailFormat,
|
1322
|
+
:class => AdCenterWrapper::EmailFormat,
|
1321
1323
|
:schema_name => XSD::QName.new(NsEntities, "EmailFormat")
|
1322
1324
|
)
|
1323
1325
|
|
1324
1326
|
LiteralRegistry.register(
|
1325
|
-
:class => ApplicationType,
|
1327
|
+
:class => AdCenterWrapper::ApplicationType,
|
1326
1328
|
:schema_name => XSD::QName.new(NsEntities, "ApplicationType")
|
1327
1329
|
)
|
1328
1330
|
|
1329
1331
|
LiteralRegistry.register(
|
1330
|
-
:class => LCID,
|
1332
|
+
:class => AdCenterWrapper::LCID,
|
1331
1333
|
:schema_name => XSD::QName.new(NsEntities, "LCID")
|
1332
1334
|
)
|
1333
1335
|
|
1334
1336
|
LiteralRegistry.register(
|
1335
|
-
:class => PersonName,
|
1337
|
+
:class => AdCenterWrapper::PersonName,
|
1336
1338
|
:schema_name => XSD::QName.new(NsEntities, "PersonName"),
|
1337
1339
|
:schema_element => [
|
1338
1340
|
["firstName", ["SOAP::SOAPString", XSD::QName.new(NsEntities, "FirstName")], [0, 1]],
|
@@ -1342,25 +1344,25 @@ module CustomerManagementServiceMappingRegistry
|
|
1342
1344
|
)
|
1343
1345
|
|
1344
1346
|
LiteralRegistry.register(
|
1345
|
-
:class => SecretQuestion,
|
1347
|
+
:class => AdCenterWrapper::SecretQuestion,
|
1346
1348
|
:schema_name => XSD::QName.new(NsEntities, "SecretQuestion")
|
1347
1349
|
)
|
1348
1350
|
|
1349
1351
|
LiteralRegistry.register(
|
1350
|
-
:class => UserStatus,
|
1352
|
+
:class => AdCenterWrapper::UserStatus,
|
1351
1353
|
:schema_name => XSD::QName.new(NsEntities, "UserStatus")
|
1352
1354
|
)
|
1353
1355
|
|
1354
1356
|
LiteralRegistry.register(
|
1355
|
-
:class => ArrayOfCustomerInfo,
|
1357
|
+
:class => AdCenterWrapper::ArrayOfCustomerInfo,
|
1356
1358
|
:schema_name => XSD::QName.new(NsEntities, "ArrayOfCustomerInfo"),
|
1357
1359
|
:schema_element => [
|
1358
|
-
["customerInfo", ["CustomerInfo[]", XSD::QName.new(NsEntities, "CustomerInfo")], [0, nil]]
|
1360
|
+
["customerInfo", ["AdCenterWrapper::CustomerInfo[]", XSD::QName.new(NsEntities, "CustomerInfo")], [0, nil]]
|
1359
1361
|
]
|
1360
1362
|
)
|
1361
1363
|
|
1362
1364
|
LiteralRegistry.register(
|
1363
|
-
:class => CustomerInfo,
|
1365
|
+
:class => AdCenterWrapper::CustomerInfo,
|
1364
1366
|
:schema_name => XSD::QName.new(NsEntities, "CustomerInfo"),
|
1365
1367
|
:schema_element => [
|
1366
1368
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
@@ -1369,20 +1371,20 @@ module CustomerManagementServiceMappingRegistry
|
|
1369
1371
|
)
|
1370
1372
|
|
1371
1373
|
LiteralRegistry.register(
|
1372
|
-
:class => UserRole,
|
1374
|
+
:class => AdCenterWrapper::UserRole,
|
1373
1375
|
:schema_name => XSD::QName.new(NsEntities, "UserRole")
|
1374
1376
|
)
|
1375
1377
|
|
1376
1378
|
LiteralRegistry.register(
|
1377
|
-
:class => ArrayOfUserInfo,
|
1379
|
+
:class => AdCenterWrapper::ArrayOfUserInfo,
|
1378
1380
|
:schema_name => XSD::QName.new(NsEntities, "ArrayOfUserInfo"),
|
1379
1381
|
:schema_element => [
|
1380
|
-
["userInfo", ["UserInfo[]", XSD::QName.new(NsEntities, "UserInfo")], [0, nil]]
|
1382
|
+
["userInfo", ["AdCenterWrapper::UserInfo[]", XSD::QName.new(NsEntities, "UserInfo")], [0, nil]]
|
1381
1383
|
]
|
1382
1384
|
)
|
1383
1385
|
|
1384
1386
|
LiteralRegistry.register(
|
1385
|
-
:class => UserInfo,
|
1387
|
+
:class => AdCenterWrapper::UserInfo,
|
1386
1388
|
:schema_name => XSD::QName.new(NsEntities, "UserInfo"),
|
1387
1389
|
:schema_element => [
|
1388
1390
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
@@ -1391,7 +1393,7 @@ module CustomerManagementServiceMappingRegistry
|
|
1391
1393
|
)
|
1392
1394
|
|
1393
1395
|
LiteralRegistry.register(
|
1394
|
-
:class => ArrayOflong,
|
1396
|
+
:class => AdCenterWrapper::ArrayOflong,
|
1395
1397
|
:schema_name => XSD::QName.new(NsArrays, "ArrayOflong"),
|
1396
1398
|
:schema_element => [
|
1397
1399
|
["long", "SOAP::SOAPLong[]", [0, nil]]
|
@@ -1399,7 +1401,7 @@ module CustomerManagementServiceMappingRegistry
|
|
1399
1401
|
)
|
1400
1402
|
|
1401
1403
|
LiteralRegistry.register(
|
1402
|
-
:class => ArrayOfint,
|
1404
|
+
:class => AdCenterWrapper::ArrayOfint,
|
1403
1405
|
:schema_name => XSD::QName.new(NsArrays, "ArrayOfint"),
|
1404
1406
|
:schema_element => [
|
1405
1407
|
["int", "SOAP::SOAPInt[]", [0, nil]]
|
@@ -1407,24 +1409,24 @@ module CustomerManagementServiceMappingRegistry
|
|
1407
1409
|
)
|
1408
1410
|
|
1409
1411
|
LiteralRegistry.register(
|
1410
|
-
:class => ApiFault,
|
1412
|
+
:class => AdCenterWrapper::ApiFault,
|
1411
1413
|
:schema_name => XSD::QName.new(NsC_Exception, "ApiFault"),
|
1412
1414
|
:schema_element => [
|
1413
1415
|
["trackingId", ["SOAP::SOAPString", XSD::QName.new(NsAdapiMicrosoftCom, "TrackingId")], [0, 1]],
|
1414
|
-
["operationErrors", ["ArrayOfOperationError", XSD::QName.new(NsC_Exception, "OperationErrors")], [0, 1]]
|
1416
|
+
["operationErrors", ["AdCenterWrapper::ArrayOfOperationError", XSD::QName.new(NsC_Exception, "OperationErrors")], [0, 1]]
|
1415
1417
|
]
|
1416
1418
|
)
|
1417
1419
|
|
1418
1420
|
LiteralRegistry.register(
|
1419
|
-
:class => ArrayOfOperationError,
|
1421
|
+
:class => AdCenterWrapper::ArrayOfOperationError,
|
1420
1422
|
:schema_name => XSD::QName.new(NsC_Exception, "ArrayOfOperationError"),
|
1421
1423
|
:schema_element => [
|
1422
|
-
["operationError", ["OperationError[]", XSD::QName.new(NsC_Exception, "OperationError")], [0, nil]]
|
1424
|
+
["operationError", ["AdCenterWrapper::OperationError[]", XSD::QName.new(NsC_Exception, "OperationError")], [0, nil]]
|
1423
1425
|
]
|
1424
1426
|
)
|
1425
1427
|
|
1426
1428
|
LiteralRegistry.register(
|
1427
|
-
:class => OperationError,
|
1429
|
+
:class => AdCenterWrapper::OperationError,
|
1428
1430
|
:schema_name => XSD::QName.new(NsC_Exception, "OperationError"),
|
1429
1431
|
:schema_element => [
|
1430
1432
|
["code", ["SOAP::SOAPInt", XSD::QName.new(NsC_Exception, "Code")], [0, 1]],
|
@@ -1434,7 +1436,7 @@ module CustomerManagementServiceMappingRegistry
|
|
1434
1436
|
)
|
1435
1437
|
|
1436
1438
|
LiteralRegistry.register(
|
1437
|
-
:class => ApplicationFault,
|
1439
|
+
:class => AdCenterWrapper::ApplicationFault,
|
1438
1440
|
:schema_name => XSD::QName.new(NsAdapiMicrosoftCom, "ApplicationFault"),
|
1439
1441
|
:schema_element => [
|
1440
1442
|
["trackingId", ["SOAP::SOAPString", XSD::QName.new(NsAdapiMicrosoftCom, "TrackingId")], [0, 1]]
|
@@ -1442,24 +1444,24 @@ module CustomerManagementServiceMappingRegistry
|
|
1442
1444
|
)
|
1443
1445
|
|
1444
1446
|
LiteralRegistry.register(
|
1445
|
-
:class => AdApiFaultDetail,
|
1447
|
+
:class => AdCenterWrapper::AdApiFaultDetail,
|
1446
1448
|
:schema_name => XSD::QName.new(NsAdapiMicrosoftCom, "AdApiFaultDetail"),
|
1447
1449
|
:schema_element => [
|
1448
1450
|
["trackingId", ["SOAP::SOAPString", XSD::QName.new(NsAdapiMicrosoftCom, "TrackingId")], [0, 1]],
|
1449
|
-
["errors", ["ArrayOfAdApiError", XSD::QName.new(NsAdapiMicrosoftCom, "Errors")], [0, 1]]
|
1451
|
+
["errors", ["AdCenterWrapper::ArrayOfAdApiError", XSD::QName.new(NsAdapiMicrosoftCom, "Errors")], [0, 1]]
|
1450
1452
|
]
|
1451
1453
|
)
|
1452
1454
|
|
1453
1455
|
LiteralRegistry.register(
|
1454
|
-
:class => ArrayOfAdApiError,
|
1456
|
+
:class => AdCenterWrapper::ArrayOfAdApiError,
|
1455
1457
|
:schema_name => XSD::QName.new(NsAdapiMicrosoftCom, "ArrayOfAdApiError"),
|
1456
1458
|
:schema_element => [
|
1457
|
-
["adApiError", ["AdApiError[]", XSD::QName.new(NsAdapiMicrosoftCom, "AdApiError")], [0, nil]]
|
1459
|
+
["adApiError", ["AdCenterWrapper::AdApiError[]", XSD::QName.new(NsAdapiMicrosoftCom, "AdApiError")], [0, nil]]
|
1458
1460
|
]
|
1459
1461
|
)
|
1460
1462
|
|
1461
1463
|
LiteralRegistry.register(
|
1462
|
-
:class => AdApiError,
|
1464
|
+
:class => AdCenterWrapper::AdApiError,
|
1463
1465
|
:schema_name => XSD::QName.new(NsAdapiMicrosoftCom, "AdApiError"),
|
1464
1466
|
:schema_element => [
|
1465
1467
|
["code", ["SOAP::SOAPInt", XSD::QName.new(NsAdapiMicrosoftCom, "Code")], [0, 1]],
|
@@ -1469,3 +1471,5 @@ module CustomerManagementServiceMappingRegistry
|
|
1469
1471
|
]
|
1470
1472
|
)
|
1471
1473
|
end
|
1474
|
+
|
1475
|
+
end
|