adcenter-client 7.0.2 → 7.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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 'CustomerBillingServiceMappingRegistry.rb'
|
3
3
|
require 'soap/rpc/driver'
|
4
4
|
|
5
|
+
module AdCenterWrapper
|
6
|
+
|
5
7
|
class ICustomerBillingService < ::SOAP::RPC::Driver
|
6
8
|
DefaultEndpointUrl = "https://sharedservices.adcenterapi.microsoft.com/Api/Billing/v7/CustomerBillingService.svc"
|
7
9
|
|
@@ -12,7 +14,7 @@ class ICustomerBillingService < ::SOAP::RPC::Driver
|
|
12
14
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customerbilling", "GetInvoicesInfoResponse"]] ],
|
13
15
|
{ :request_style => :document, :request_use => :literal,
|
14
16
|
:response_style => :document, :response_use => :literal,
|
15
|
-
:faults => {"
|
17
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customerbilling"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customerbilling"}, "AdCenterWrapper::ApiBatchFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiBatchFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customerbilling"}} }
|
16
18
|
],
|
17
19
|
[ "GetInvoices",
|
18
20
|
"getInvoices",
|
@@ -20,7 +22,7 @@ class ICustomerBillingService < ::SOAP::RPC::Driver
|
|
20
22
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customerbilling", "GetInvoicesResponse"]] ],
|
21
23
|
{ :request_style => :document, :request_use => :literal,
|
22
24
|
:response_style => :document, :response_use => :literal,
|
23
|
-
:faults => {"
|
25
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customerbilling"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customerbilling"}, "AdCenterWrapper::ApiBatchFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiBatchFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customerbilling"}} }
|
24
26
|
],
|
25
27
|
[ "GetDisplayInvoices",
|
26
28
|
"getDisplayInvoices",
|
@@ -28,7 +30,7 @@ class ICustomerBillingService < ::SOAP::RPC::Driver
|
|
28
30
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customerbilling", "GetDisplayInvoicesResponse"]] ],
|
29
31
|
{ :request_style => :document, :request_use => :literal,
|
30
32
|
:response_style => :document, :response_use => :literal,
|
31
|
-
:faults => {"
|
33
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customerbilling"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customerbilling"}, "AdCenterWrapper::ApiBatchFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiBatchFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customerbilling"}} }
|
32
34
|
],
|
33
35
|
[ "AddInsertionOrder",
|
34
36
|
"addInsertionOrder",
|
@@ -36,7 +38,7 @@ class ICustomerBillingService < ::SOAP::RPC::Driver
|
|
36
38
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customerbilling", "AddInsertionOrderResponse"]] ],
|
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/customerbilling"}, "AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customerbilling"}} }
|
41
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customerbilling"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customerbilling"}} }
|
40
42
|
],
|
41
43
|
[ "UpdateInsertionOrder",
|
42
44
|
"updateInsertionOrder",
|
@@ -44,7 +46,7 @@ class ICustomerBillingService < ::SOAP::RPC::Driver
|
|
44
46
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customerbilling", "UpdateInsertionOrderResponse"]] ],
|
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/customerbilling"}, "AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customerbilling"}} }
|
49
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customerbilling"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customerbilling"}} }
|
48
50
|
],
|
49
51
|
[ "GetInsertionOrdersByAccount",
|
50
52
|
"getInsertionOrdersByAccount",
|
@@ -52,7 +54,7 @@ class ICustomerBillingService < ::SOAP::RPC::Driver
|
|
52
54
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customerbilling", "GetInsertionOrdersByAccountResponse"]] ],
|
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/customerbilling"}, "AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customerbilling"}} }
|
57
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customerbilling"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customerbilling"}} }
|
56
58
|
],
|
57
59
|
[ "GetKOHIOInvoices",
|
58
60
|
"getKOHIOInvoices",
|
@@ -60,7 +62,7 @@ class ICustomerBillingService < ::SOAP::RPC::Driver
|
|
60
62
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customerbilling", "GetKOHIOInvoicesResponse"]] ],
|
61
63
|
{ :request_style => :document, :request_use => :literal,
|
62
64
|
:response_style => :document, :response_use => :literal,
|
63
|
-
:faults => {"
|
65
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customerbilling"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"AdApiFaultDetailFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customerbilling"}, "AdCenterWrapper::ApiBatchFaultFault"=>{:namespace=>nil, :encodingstyle=>"document", :name=>"ApiBatchFaultFault", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customerbilling"}} }
|
64
66
|
]
|
65
67
|
]
|
66
68
|
|
@@ -93,3 +95,5 @@ private
|
|
93
95
|
end
|
94
96
|
end
|
95
97
|
|
98
|
+
|
99
|
+
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 CustomerBillingServiceMappingRegistry
|
5
7
|
EncodedRegistry = ::SOAP::Mapping::EncodedRegistry.new
|
6
8
|
LiteralRegistry = ::SOAP::Mapping::LiteralRegistry.new
|
@@ -11,7 +13,7 @@ module CustomerBillingServiceMappingRegistry
|
|
11
13
|
NsEntities = "https://adcenter.microsoft.com/api/customermanagement/Entities"
|
12
14
|
|
13
15
|
EncodedRegistry.register(
|
14
|
-
:class => ArrayOflong,
|
16
|
+
:class => AdCenterWrapper::ArrayOflong,
|
15
17
|
:schema_type => XSD::QName.new(NsArrays, "ArrayOflong"),
|
16
18
|
:schema_element => [
|
17
19
|
["long", "SOAP::SOAPLong[]", [0, nil]]
|
@@ -19,7 +21,7 @@ module CustomerBillingServiceMappingRegistry
|
|
19
21
|
)
|
20
22
|
|
21
23
|
EncodedRegistry.register(
|
22
|
-
:class => ArrayOfstring,
|
24
|
+
:class => AdCenterWrapper::ArrayOfstring,
|
23
25
|
:schema_type => XSD::QName.new(NsArrays, "ArrayOfstring"),
|
24
26
|
:schema_element => [
|
25
27
|
["string", "SOAP::SOAPString[]", [0, nil]]
|
@@ -27,15 +29,15 @@ module CustomerBillingServiceMappingRegistry
|
|
27
29
|
)
|
28
30
|
|
29
31
|
EncodedRegistry.register(
|
30
|
-
:class => ArrayOfInvoiceInfo,
|
32
|
+
:class => AdCenterWrapper::ArrayOfInvoiceInfo,
|
31
33
|
:schema_type => XSD::QName.new(NsEntities, "ArrayOfInvoiceInfo"),
|
32
34
|
:schema_element => [
|
33
|
-
["invoiceInfo", ["InvoiceInfo[]", XSD::QName.new(NsEntities, "InvoiceInfo")], [0, nil]]
|
35
|
+
["invoiceInfo", ["AdCenterWrapper::InvoiceInfo[]", XSD::QName.new(NsEntities, "InvoiceInfo")], [0, nil]]
|
34
36
|
]
|
35
37
|
)
|
36
38
|
|
37
39
|
EncodedRegistry.register(
|
38
|
-
:class => InvoiceInfo,
|
40
|
+
:class => AdCenterWrapper::InvoiceInfo,
|
39
41
|
:schema_type => XSD::QName.new(NsEntities, "InvoiceInfo"),
|
40
42
|
:schema_element => [
|
41
43
|
["accountId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "AccountId")], [0, 1]],
|
@@ -49,25 +51,25 @@ module CustomerBillingServiceMappingRegistry
|
|
49
51
|
)
|
50
52
|
|
51
53
|
EncodedRegistry.register(
|
52
|
-
:class => ArrayOfInvoice,
|
54
|
+
:class => AdCenterWrapper::ArrayOfInvoice,
|
53
55
|
:schema_type => XSD::QName.new(NsEntities, "ArrayOfInvoice"),
|
54
56
|
:schema_element => [
|
55
|
-
["invoice", ["Invoice[]", XSD::QName.new(NsEntities, "Invoice")], [0, nil]]
|
57
|
+
["invoice", ["AdCenterWrapper::Invoice[]", XSD::QName.new(NsEntities, "Invoice")], [0, nil]]
|
56
58
|
]
|
57
59
|
)
|
58
60
|
|
59
61
|
EncodedRegistry.register(
|
60
|
-
:class => Invoice,
|
62
|
+
:class => AdCenterWrapper::Invoice,
|
61
63
|
:schema_type => XSD::QName.new(NsEntities, "Invoice"),
|
62
64
|
:schema_element => [
|
63
65
|
["data", ["SOAP::SOAPBase64", XSD::QName.new(NsEntities, "Data")], [0, 1]],
|
64
66
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
65
|
-
["type", ["DataType", XSD::QName.new(NsEntities, "Type")], [0, 1]]
|
67
|
+
["type", ["AdCenterWrapper::DataType", XSD::QName.new(NsEntities, "Type")], [0, 1]]
|
66
68
|
]
|
67
69
|
)
|
68
70
|
|
69
71
|
EncodedRegistry.register(
|
70
|
-
:class => InsertionOrder,
|
72
|
+
:class => AdCenterWrapper::InsertionOrder,
|
71
73
|
:schema_type => XSD::QName.new(NsEntities, "InsertionOrder"),
|
72
74
|
:schema_element => [
|
73
75
|
["accountId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "AccountId")], [0, 1]],
|
@@ -86,33 +88,33 @@ module CustomerBillingServiceMappingRegistry
|
|
86
88
|
)
|
87
89
|
|
88
90
|
EncodedRegistry.register(
|
89
|
-
:class => ArrayOfInsertionOrder,
|
91
|
+
:class => AdCenterWrapper::ArrayOfInsertionOrder,
|
90
92
|
:schema_type => XSD::QName.new(NsEntities, "ArrayOfInsertionOrder"),
|
91
93
|
:schema_element => [
|
92
|
-
["insertionOrder", ["InsertionOrder[]", XSD::QName.new(NsEntities, "InsertionOrder")], [0, nil]]
|
94
|
+
["insertionOrder", ["AdCenterWrapper::InsertionOrder[]", XSD::QName.new(NsEntities, "InsertionOrder")], [0, nil]]
|
93
95
|
]
|
94
96
|
)
|
95
97
|
|
96
98
|
EncodedRegistry.register(
|
97
|
-
:class => ApiFault,
|
99
|
+
:class => AdCenterWrapper::ApiFault,
|
98
100
|
:schema_type => XSD::QName.new(NsC_Exception, "ApiFault"),
|
99
101
|
:schema_basetype => XSD::QName.new(NsAdapiMicrosoftCom, "ApplicationFault"),
|
100
102
|
:schema_element => [
|
101
103
|
["trackingId", ["SOAP::SOAPString", XSD::QName.new(NsAdapiMicrosoftCom, "TrackingId")], [0, 1]],
|
102
|
-
["operationErrors", ["ArrayOfOperationError", XSD::QName.new(NsC_Exception, "OperationErrors")], [0, 1]]
|
104
|
+
["operationErrors", ["AdCenterWrapper::ArrayOfOperationError", XSD::QName.new(NsC_Exception, "OperationErrors")], [0, 1]]
|
103
105
|
]
|
104
106
|
)
|
105
107
|
|
106
108
|
EncodedRegistry.register(
|
107
|
-
:class => ArrayOfOperationError,
|
109
|
+
:class => AdCenterWrapper::ArrayOfOperationError,
|
108
110
|
:schema_type => XSD::QName.new(NsC_Exception, "ArrayOfOperationError"),
|
109
111
|
:schema_element => [
|
110
|
-
["operationError", ["OperationError[]", XSD::QName.new(NsC_Exception, "OperationError")], [0, nil]]
|
112
|
+
["operationError", ["AdCenterWrapper::OperationError[]", XSD::QName.new(NsC_Exception, "OperationError")], [0, nil]]
|
111
113
|
]
|
112
114
|
)
|
113
115
|
|
114
116
|
EncodedRegistry.register(
|
115
|
-
:class => OperationError,
|
117
|
+
:class => AdCenterWrapper::OperationError,
|
116
118
|
:schema_type => XSD::QName.new(NsC_Exception, "OperationError"),
|
117
119
|
:schema_element => [
|
118
120
|
["code", ["SOAP::SOAPInt", XSD::QName.new(NsC_Exception, "Code")], [0, 1]],
|
@@ -122,26 +124,26 @@ module CustomerBillingServiceMappingRegistry
|
|
122
124
|
)
|
123
125
|
|
124
126
|
EncodedRegistry.register(
|
125
|
-
:class => ApiBatchFault,
|
127
|
+
:class => AdCenterWrapper::ApiBatchFault,
|
126
128
|
:schema_type => XSD::QName.new(NsC_Exception, "ApiBatchFault"),
|
127
129
|
:schema_basetype => XSD::QName.new(NsC_Exception, "ApiFault"),
|
128
130
|
:schema_element => [
|
129
131
|
["trackingId", ["SOAP::SOAPString", XSD::QName.new(NsAdapiMicrosoftCom, "TrackingId")], [0, 1]],
|
130
|
-
["operationErrors", ["ArrayOfOperationError", XSD::QName.new(NsC_Exception, "OperationErrors")], [0, 1]],
|
131
|
-
["batchErrors", ["ArrayOfBatchError", XSD::QName.new(NsC_Exception, "BatchErrors")], [0, 1]]
|
132
|
+
["operationErrors", ["AdCenterWrapper::ArrayOfOperationError", XSD::QName.new(NsC_Exception, "OperationErrors")], [0, 1]],
|
133
|
+
["batchErrors", ["AdCenterWrapper::ArrayOfBatchError", XSD::QName.new(NsC_Exception, "BatchErrors")], [0, 1]]
|
132
134
|
]
|
133
135
|
)
|
134
136
|
|
135
137
|
EncodedRegistry.register(
|
136
|
-
:class => ArrayOfBatchError,
|
138
|
+
:class => AdCenterWrapper::ArrayOfBatchError,
|
137
139
|
:schema_type => XSD::QName.new(NsC_Exception, "ArrayOfBatchError"),
|
138
140
|
:schema_element => [
|
139
|
-
["batchError", ["BatchError[]", XSD::QName.new(NsC_Exception, "BatchError")], [0, nil]]
|
141
|
+
["batchError", ["AdCenterWrapper::BatchError[]", XSD::QName.new(NsC_Exception, "BatchError")], [0, nil]]
|
140
142
|
]
|
141
143
|
)
|
142
144
|
|
143
145
|
EncodedRegistry.register(
|
144
|
-
:class => BatchError,
|
146
|
+
:class => AdCenterWrapper::BatchError,
|
145
147
|
:schema_type => XSD::QName.new(NsC_Exception, "BatchError"),
|
146
148
|
:schema_element => [
|
147
149
|
["code", ["SOAP::SOAPInt", XSD::QName.new(NsC_Exception, "Code")], [0, 1]],
|
@@ -152,7 +154,7 @@ module CustomerBillingServiceMappingRegistry
|
|
152
154
|
)
|
153
155
|
|
154
156
|
EncodedRegistry.register(
|
155
|
-
:class => ApplicationFault,
|
157
|
+
:class => AdCenterWrapper::ApplicationFault,
|
156
158
|
:schema_type => XSD::QName.new(NsAdapiMicrosoftCom, "ApplicationFault"),
|
157
159
|
:schema_element => [
|
158
160
|
["trackingId", ["SOAP::SOAPString", XSD::QName.new(NsAdapiMicrosoftCom, "TrackingId")], [0, 1]]
|
@@ -160,25 +162,25 @@ module CustomerBillingServiceMappingRegistry
|
|
160
162
|
)
|
161
163
|
|
162
164
|
EncodedRegistry.register(
|
163
|
-
:class => AdApiFaultDetail,
|
165
|
+
:class => AdCenterWrapper::AdApiFaultDetail,
|
164
166
|
:schema_type => XSD::QName.new(NsAdapiMicrosoftCom, "AdApiFaultDetail"),
|
165
167
|
:schema_basetype => XSD::QName.new(NsAdapiMicrosoftCom, "ApplicationFault"),
|
166
168
|
:schema_element => [
|
167
169
|
["trackingId", ["SOAP::SOAPString", XSD::QName.new(NsAdapiMicrosoftCom, "TrackingId")], [0, 1]],
|
168
|
-
["errors", ["ArrayOfAdApiError", XSD::QName.new(NsAdapiMicrosoftCom, "Errors")], [0, 1]]
|
170
|
+
["errors", ["AdCenterWrapper::ArrayOfAdApiError", XSD::QName.new(NsAdapiMicrosoftCom, "Errors")], [0, 1]]
|
169
171
|
]
|
170
172
|
)
|
171
173
|
|
172
174
|
EncodedRegistry.register(
|
173
|
-
:class => ArrayOfAdApiError,
|
175
|
+
:class => AdCenterWrapper::ArrayOfAdApiError,
|
174
176
|
:schema_type => XSD::QName.new(NsAdapiMicrosoftCom, "ArrayOfAdApiError"),
|
175
177
|
:schema_element => [
|
176
|
-
["adApiError", ["AdApiError[]", XSD::QName.new(NsAdapiMicrosoftCom, "AdApiError")], [0, nil]]
|
178
|
+
["adApiError", ["AdCenterWrapper::AdApiError[]", XSD::QName.new(NsAdapiMicrosoftCom, "AdApiError")], [0, nil]]
|
177
179
|
]
|
178
180
|
)
|
179
181
|
|
180
182
|
EncodedRegistry.register(
|
181
|
-
:class => AdApiError,
|
183
|
+
:class => AdCenterWrapper::AdApiError,
|
182
184
|
:schema_type => XSD::QName.new(NsAdapiMicrosoftCom, "AdApiError"),
|
183
185
|
:schema_element => [
|
184
186
|
["code", ["SOAP::SOAPInt", XSD::QName.new(NsAdapiMicrosoftCom, "Code")], [0, 1]],
|
@@ -189,12 +191,12 @@ module CustomerBillingServiceMappingRegistry
|
|
189
191
|
)
|
190
192
|
|
191
193
|
EncodedRegistry.register(
|
192
|
-
:class => DataType,
|
194
|
+
:class => AdCenterWrapper::DataType,
|
193
195
|
:schema_type => XSD::QName.new(NsEntities, "DataType")
|
194
196
|
)
|
195
197
|
|
196
198
|
LiteralRegistry.register(
|
197
|
-
:class => ArrayOflong,
|
199
|
+
:class => AdCenterWrapper::ArrayOflong,
|
198
200
|
:schema_type => XSD::QName.new(NsArrays, "ArrayOflong"),
|
199
201
|
:schema_element => [
|
200
202
|
["long", "SOAP::SOAPLong[]", [0, nil]]
|
@@ -202,7 +204,7 @@ module CustomerBillingServiceMappingRegistry
|
|
202
204
|
)
|
203
205
|
|
204
206
|
LiteralRegistry.register(
|
205
|
-
:class => ArrayOfstring,
|
207
|
+
:class => AdCenterWrapper::ArrayOfstring,
|
206
208
|
:schema_type => XSD::QName.new(NsArrays, "ArrayOfstring"),
|
207
209
|
:schema_element => [
|
208
210
|
["string", "SOAP::SOAPString[]", [0, nil]]
|
@@ -210,15 +212,15 @@ module CustomerBillingServiceMappingRegistry
|
|
210
212
|
)
|
211
213
|
|
212
214
|
LiteralRegistry.register(
|
213
|
-
:class => ArrayOfInvoiceInfo,
|
215
|
+
:class => AdCenterWrapper::ArrayOfInvoiceInfo,
|
214
216
|
:schema_type => XSD::QName.new(NsEntities, "ArrayOfInvoiceInfo"),
|
215
217
|
:schema_element => [
|
216
|
-
["invoiceInfo", ["InvoiceInfo[]", XSD::QName.new(NsEntities, "InvoiceInfo")], [0, nil]]
|
218
|
+
["invoiceInfo", ["AdCenterWrapper::InvoiceInfo[]", XSD::QName.new(NsEntities, "InvoiceInfo")], [0, nil]]
|
217
219
|
]
|
218
220
|
)
|
219
221
|
|
220
222
|
LiteralRegistry.register(
|
221
|
-
:class => InvoiceInfo,
|
223
|
+
:class => AdCenterWrapper::InvoiceInfo,
|
222
224
|
:schema_type => XSD::QName.new(NsEntities, "InvoiceInfo"),
|
223
225
|
:schema_element => [
|
224
226
|
["accountId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "AccountId")], [0, 1]],
|
@@ -232,25 +234,25 @@ module CustomerBillingServiceMappingRegistry
|
|
232
234
|
)
|
233
235
|
|
234
236
|
LiteralRegistry.register(
|
235
|
-
:class => ArrayOfInvoice,
|
237
|
+
:class => AdCenterWrapper::ArrayOfInvoice,
|
236
238
|
:schema_type => XSD::QName.new(NsEntities, "ArrayOfInvoice"),
|
237
239
|
:schema_element => [
|
238
|
-
["invoice", ["Invoice[]", XSD::QName.new(NsEntities, "Invoice")], [0, nil]]
|
240
|
+
["invoice", ["AdCenterWrapper::Invoice[]", XSD::QName.new(NsEntities, "Invoice")], [0, nil]]
|
239
241
|
]
|
240
242
|
)
|
241
243
|
|
242
244
|
LiteralRegistry.register(
|
243
|
-
:class => Invoice,
|
245
|
+
:class => AdCenterWrapper::Invoice,
|
244
246
|
:schema_type => XSD::QName.new(NsEntities, "Invoice"),
|
245
247
|
:schema_element => [
|
246
248
|
["data", ["SOAP::SOAPBase64", XSD::QName.new(NsEntities, "Data")], [0, 1]],
|
247
249
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
248
|
-
["type", ["DataType", XSD::QName.new(NsEntities, "Type")], [0, 1]]
|
250
|
+
["type", ["AdCenterWrapper::DataType", XSD::QName.new(NsEntities, "Type")], [0, 1]]
|
249
251
|
]
|
250
252
|
)
|
251
253
|
|
252
254
|
LiteralRegistry.register(
|
253
|
-
:class => InsertionOrder,
|
255
|
+
:class => AdCenterWrapper::InsertionOrder,
|
254
256
|
:schema_type => XSD::QName.new(NsEntities, "InsertionOrder"),
|
255
257
|
:schema_element => [
|
256
258
|
["accountId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "AccountId")], [0, 1]],
|
@@ -269,33 +271,33 @@ module CustomerBillingServiceMappingRegistry
|
|
269
271
|
)
|
270
272
|
|
271
273
|
LiteralRegistry.register(
|
272
|
-
:class => ArrayOfInsertionOrder,
|
274
|
+
:class => AdCenterWrapper::ArrayOfInsertionOrder,
|
273
275
|
:schema_type => XSD::QName.new(NsEntities, "ArrayOfInsertionOrder"),
|
274
276
|
:schema_element => [
|
275
|
-
["insertionOrder", ["InsertionOrder[]", XSD::QName.new(NsEntities, "InsertionOrder")], [0, nil]]
|
277
|
+
["insertionOrder", ["AdCenterWrapper::InsertionOrder[]", XSD::QName.new(NsEntities, "InsertionOrder")], [0, nil]]
|
276
278
|
]
|
277
279
|
)
|
278
280
|
|
279
281
|
LiteralRegistry.register(
|
280
|
-
:class => ApiFault,
|
282
|
+
:class => AdCenterWrapper::ApiFault,
|
281
283
|
:schema_type => XSD::QName.new(NsC_Exception, "ApiFault"),
|
282
284
|
:schema_basetype => XSD::QName.new(NsAdapiMicrosoftCom, "ApplicationFault"),
|
283
285
|
:schema_element => [
|
284
286
|
["trackingId", ["SOAP::SOAPString", XSD::QName.new(NsAdapiMicrosoftCom, "TrackingId")], [0, 1]],
|
285
|
-
["operationErrors", ["ArrayOfOperationError", XSD::QName.new(NsC_Exception, "OperationErrors")], [0, 1]]
|
287
|
+
["operationErrors", ["AdCenterWrapper::ArrayOfOperationError", XSD::QName.new(NsC_Exception, "OperationErrors")], [0, 1]]
|
286
288
|
]
|
287
289
|
)
|
288
290
|
|
289
291
|
LiteralRegistry.register(
|
290
|
-
:class => ArrayOfOperationError,
|
292
|
+
:class => AdCenterWrapper::ArrayOfOperationError,
|
291
293
|
:schema_type => XSD::QName.new(NsC_Exception, "ArrayOfOperationError"),
|
292
294
|
:schema_element => [
|
293
|
-
["operationError", ["OperationError[]", XSD::QName.new(NsC_Exception, "OperationError")], [0, nil]]
|
295
|
+
["operationError", ["AdCenterWrapper::OperationError[]", XSD::QName.new(NsC_Exception, "OperationError")], [0, nil]]
|
294
296
|
]
|
295
297
|
)
|
296
298
|
|
297
299
|
LiteralRegistry.register(
|
298
|
-
:class => OperationError,
|
300
|
+
:class => AdCenterWrapper::OperationError,
|
299
301
|
:schema_type => XSD::QName.new(NsC_Exception, "OperationError"),
|
300
302
|
:schema_element => [
|
301
303
|
["code", ["SOAP::SOAPInt", XSD::QName.new(NsC_Exception, "Code")], [0, 1]],
|
@@ -305,26 +307,26 @@ module CustomerBillingServiceMappingRegistry
|
|
305
307
|
)
|
306
308
|
|
307
309
|
LiteralRegistry.register(
|
308
|
-
:class => ApiBatchFault,
|
310
|
+
:class => AdCenterWrapper::ApiBatchFault,
|
309
311
|
:schema_type => XSD::QName.new(NsC_Exception, "ApiBatchFault"),
|
310
312
|
:schema_basetype => XSD::QName.new(NsC_Exception, "ApiFault"),
|
311
313
|
:schema_element => [
|
312
314
|
["trackingId", ["SOAP::SOAPString", XSD::QName.new(NsAdapiMicrosoftCom, "TrackingId")], [0, 1]],
|
313
|
-
["operationErrors", ["ArrayOfOperationError", XSD::QName.new(NsC_Exception, "OperationErrors")], [0, 1]],
|
314
|
-
["batchErrors", ["ArrayOfBatchError", XSD::QName.new(NsC_Exception, "BatchErrors")], [0, 1]]
|
315
|
+
["operationErrors", ["AdCenterWrapper::ArrayOfOperationError", XSD::QName.new(NsC_Exception, "OperationErrors")], [0, 1]],
|
316
|
+
["batchErrors", ["AdCenterWrapper::ArrayOfBatchError", XSD::QName.new(NsC_Exception, "BatchErrors")], [0, 1]]
|
315
317
|
]
|
316
318
|
)
|
317
319
|
|
318
320
|
LiteralRegistry.register(
|
319
|
-
:class => ArrayOfBatchError,
|
321
|
+
:class => AdCenterWrapper::ArrayOfBatchError,
|
320
322
|
:schema_type => XSD::QName.new(NsC_Exception, "ArrayOfBatchError"),
|
321
323
|
:schema_element => [
|
322
|
-
["batchError", ["BatchError[]", XSD::QName.new(NsC_Exception, "BatchError")], [0, nil]]
|
324
|
+
["batchError", ["AdCenterWrapper::BatchError[]", XSD::QName.new(NsC_Exception, "BatchError")], [0, nil]]
|
323
325
|
]
|
324
326
|
)
|
325
327
|
|
326
328
|
LiteralRegistry.register(
|
327
|
-
:class => BatchError,
|
329
|
+
:class => AdCenterWrapper::BatchError,
|
328
330
|
:schema_type => XSD::QName.new(NsC_Exception, "BatchError"),
|
329
331
|
:schema_element => [
|
330
332
|
["code", ["SOAP::SOAPInt", XSD::QName.new(NsC_Exception, "Code")], [0, 1]],
|
@@ -335,7 +337,7 @@ module CustomerBillingServiceMappingRegistry
|
|
335
337
|
)
|
336
338
|
|
337
339
|
LiteralRegistry.register(
|
338
|
-
:class => ApplicationFault,
|
340
|
+
:class => AdCenterWrapper::ApplicationFault,
|
339
341
|
:schema_type => XSD::QName.new(NsAdapiMicrosoftCom, "ApplicationFault"),
|
340
342
|
:schema_element => [
|
341
343
|
["trackingId", ["SOAP::SOAPString", XSD::QName.new(NsAdapiMicrosoftCom, "TrackingId")], [0, 1]]
|
@@ -343,25 +345,25 @@ module CustomerBillingServiceMappingRegistry
|
|
343
345
|
)
|
344
346
|
|
345
347
|
LiteralRegistry.register(
|
346
|
-
:class => AdApiFaultDetail,
|
348
|
+
:class => AdCenterWrapper::AdApiFaultDetail,
|
347
349
|
:schema_type => XSD::QName.new(NsAdapiMicrosoftCom, "AdApiFaultDetail"),
|
348
350
|
:schema_basetype => XSD::QName.new(NsAdapiMicrosoftCom, "ApplicationFault"),
|
349
351
|
:schema_element => [
|
350
352
|
["trackingId", ["SOAP::SOAPString", XSD::QName.new(NsAdapiMicrosoftCom, "TrackingId")], [0, 1]],
|
351
|
-
["errors", ["ArrayOfAdApiError", XSD::QName.new(NsAdapiMicrosoftCom, "Errors")], [0, 1]]
|
353
|
+
["errors", ["AdCenterWrapper::ArrayOfAdApiError", XSD::QName.new(NsAdapiMicrosoftCom, "Errors")], [0, 1]]
|
352
354
|
]
|
353
355
|
)
|
354
356
|
|
355
357
|
LiteralRegistry.register(
|
356
|
-
:class => ArrayOfAdApiError,
|
358
|
+
:class => AdCenterWrapper::ArrayOfAdApiError,
|
357
359
|
:schema_type => XSD::QName.new(NsAdapiMicrosoftCom, "ArrayOfAdApiError"),
|
358
360
|
:schema_element => [
|
359
|
-
["adApiError", ["AdApiError[]", XSD::QName.new(NsAdapiMicrosoftCom, "AdApiError")], [0, nil]]
|
361
|
+
["adApiError", ["AdCenterWrapper::AdApiError[]", XSD::QName.new(NsAdapiMicrosoftCom, "AdApiError")], [0, nil]]
|
360
362
|
]
|
361
363
|
)
|
362
364
|
|
363
365
|
LiteralRegistry.register(
|
364
|
-
:class => AdApiError,
|
366
|
+
:class => AdCenterWrapper::AdApiError,
|
365
367
|
:schema_type => XSD::QName.new(NsAdapiMicrosoftCom, "AdApiError"),
|
366
368
|
:schema_element => [
|
367
369
|
["code", ["SOAP::SOAPInt", XSD::QName.new(NsAdapiMicrosoftCom, "Code")], [0, 1]],
|
@@ -372,72 +374,72 @@ module CustomerBillingServiceMappingRegistry
|
|
372
374
|
)
|
373
375
|
|
374
376
|
LiteralRegistry.register(
|
375
|
-
:class => DataType,
|
377
|
+
:class => AdCenterWrapper::DataType,
|
376
378
|
:schema_type => XSD::QName.new(NsEntities, "DataType")
|
377
379
|
)
|
378
380
|
|
379
381
|
LiteralRegistry.register(
|
380
|
-
:class => GetInvoicesInfoRequest,
|
382
|
+
:class => AdCenterWrapper::GetInvoicesInfoRequest,
|
381
383
|
:schema_name => XSD::QName.new(NsCustomerbilling, "GetInvoicesInfoRequest"),
|
382
384
|
:schema_element => [
|
383
|
-
["accountIds", ["ArrayOflong", XSD::QName.new(NsCustomerbilling, "AccountIds")], [0, 1]],
|
385
|
+
["accountIds", ["AdCenterWrapper::ArrayOflong", XSD::QName.new(NsCustomerbilling, "AccountIds")], [0, 1]],
|
384
386
|
["startDate", ["SOAP::SOAPDateTime", XSD::QName.new(NsCustomerbilling, "StartDate")], [0, 1]],
|
385
387
|
["endDate", ["SOAP::SOAPDateTime", XSD::QName.new(NsCustomerbilling, "EndDate")], [0, 1]]
|
386
388
|
]
|
387
389
|
)
|
388
390
|
|
389
391
|
LiteralRegistry.register(
|
390
|
-
:class => GetInvoicesInfoResponse,
|
392
|
+
:class => AdCenterWrapper::GetInvoicesInfoResponse,
|
391
393
|
:schema_name => XSD::QName.new(NsCustomerbilling, "GetInvoicesInfoResponse"),
|
392
394
|
:schema_element => [
|
393
|
-
["invoicesInfo", ["ArrayOfInvoiceInfo", XSD::QName.new(NsCustomerbilling, "InvoicesInfo")], [0, 1]]
|
395
|
+
["invoicesInfo", ["AdCenterWrapper::ArrayOfInvoiceInfo", XSD::QName.new(NsCustomerbilling, "InvoicesInfo")], [0, 1]]
|
394
396
|
]
|
395
397
|
)
|
396
398
|
|
397
399
|
LiteralRegistry.register(
|
398
|
-
:class => GetInvoicesRequest,
|
400
|
+
:class => AdCenterWrapper::GetInvoicesRequest,
|
399
401
|
:schema_name => XSD::QName.new(NsCustomerbilling, "GetInvoicesRequest"),
|
400
402
|
:schema_element => [
|
401
|
-
["invoiceIds", ["ArrayOflong", XSD::QName.new(NsCustomerbilling, "InvoiceIds")], [0, 1]],
|
402
|
-
["type", ["DataType", XSD::QName.new(NsCustomerbilling, "Type")], [0, 1]]
|
403
|
+
["invoiceIds", ["AdCenterWrapper::ArrayOflong", XSD::QName.new(NsCustomerbilling, "InvoiceIds")], [0, 1]],
|
404
|
+
["type", ["AdCenterWrapper::DataType", XSD::QName.new(NsCustomerbilling, "Type")], [0, 1]]
|
403
405
|
]
|
404
406
|
)
|
405
407
|
|
406
408
|
LiteralRegistry.register(
|
407
|
-
:class => GetInvoicesResponse,
|
409
|
+
:class => AdCenterWrapper::GetInvoicesResponse,
|
408
410
|
:schema_name => XSD::QName.new(NsCustomerbilling, "GetInvoicesResponse"),
|
409
411
|
:schema_element => [
|
410
|
-
["invoices", ["ArrayOfInvoice", XSD::QName.new(NsCustomerbilling, "Invoices")], [0, 1]]
|
412
|
+
["invoices", ["AdCenterWrapper::ArrayOfInvoice", XSD::QName.new(NsCustomerbilling, "Invoices")], [0, 1]]
|
411
413
|
]
|
412
414
|
)
|
413
415
|
|
414
416
|
LiteralRegistry.register(
|
415
|
-
:class => GetDisplayInvoicesRequest,
|
417
|
+
:class => AdCenterWrapper::GetDisplayInvoicesRequest,
|
416
418
|
:schema_name => XSD::QName.new(NsCustomerbilling, "GetDisplayInvoicesRequest"),
|
417
419
|
:schema_element => [
|
418
|
-
["invoiceIds", ["ArrayOflong", XSD::QName.new(NsCustomerbilling, "InvoiceIds")], [0, 1]],
|
419
|
-
["type", ["DataType", XSD::QName.new(NsCustomerbilling, "Type")], [0, 1]]
|
420
|
+
["invoiceIds", ["AdCenterWrapper::ArrayOflong", XSD::QName.new(NsCustomerbilling, "InvoiceIds")], [0, 1]],
|
421
|
+
["type", ["AdCenterWrapper::DataType", XSD::QName.new(NsCustomerbilling, "Type")], [0, 1]]
|
420
422
|
]
|
421
423
|
)
|
422
424
|
|
423
425
|
LiteralRegistry.register(
|
424
|
-
:class => GetDisplayInvoicesResponse,
|
426
|
+
:class => AdCenterWrapper::GetDisplayInvoicesResponse,
|
425
427
|
:schema_name => XSD::QName.new(NsCustomerbilling, "GetDisplayInvoicesResponse"),
|
426
428
|
:schema_element => [
|
427
|
-
["invoices", ["ArrayOfInvoice", XSD::QName.new(NsCustomerbilling, "Invoices")], [0, 1]]
|
429
|
+
["invoices", ["AdCenterWrapper::ArrayOfInvoice", XSD::QName.new(NsCustomerbilling, "Invoices")], [0, 1]]
|
428
430
|
]
|
429
431
|
)
|
430
432
|
|
431
433
|
LiteralRegistry.register(
|
432
|
-
:class => AddInsertionOrderRequest,
|
434
|
+
:class => AdCenterWrapper::AddInsertionOrderRequest,
|
433
435
|
:schema_name => XSD::QName.new(NsCustomerbilling, "AddInsertionOrderRequest"),
|
434
436
|
:schema_element => [
|
435
|
-
["insertionOrder", ["InsertionOrder", XSD::QName.new(NsCustomerbilling, "InsertionOrder")], [0, 1]]
|
437
|
+
["insertionOrder", ["AdCenterWrapper::InsertionOrder", XSD::QName.new(NsCustomerbilling, "InsertionOrder")], [0, 1]]
|
436
438
|
]
|
437
439
|
)
|
438
440
|
|
439
441
|
LiteralRegistry.register(
|
440
|
-
:class => AddInsertionOrderResponse,
|
442
|
+
:class => AdCenterWrapper::AddInsertionOrderResponse,
|
441
443
|
:schema_name => XSD::QName.new(NsCustomerbilling, "AddInsertionOrderResponse"),
|
442
444
|
:schema_element => [
|
443
445
|
["insertionOrderId", ["SOAP::SOAPLong", XSD::QName.new(NsCustomerbilling, "InsertionOrderId")], [0, 1]],
|
@@ -446,15 +448,15 @@ module CustomerBillingServiceMappingRegistry
|
|
446
448
|
)
|
447
449
|
|
448
450
|
LiteralRegistry.register(
|
449
|
-
:class => UpdateInsertionOrderRequest,
|
451
|
+
:class => AdCenterWrapper::UpdateInsertionOrderRequest,
|
450
452
|
:schema_name => XSD::QName.new(NsCustomerbilling, "UpdateInsertionOrderRequest"),
|
451
453
|
:schema_element => [
|
452
|
-
["insertionOrder", ["InsertionOrder", XSD::QName.new(NsCustomerbilling, "InsertionOrder")], [0, 1]]
|
454
|
+
["insertionOrder", ["AdCenterWrapper::InsertionOrder", XSD::QName.new(NsCustomerbilling, "InsertionOrder")], [0, 1]]
|
453
455
|
]
|
454
456
|
)
|
455
457
|
|
456
458
|
LiteralRegistry.register(
|
457
|
-
:class => UpdateInsertionOrderResponse,
|
459
|
+
:class => AdCenterWrapper::UpdateInsertionOrderResponse,
|
458
460
|
:schema_name => XSD::QName.new(NsCustomerbilling, "UpdateInsertionOrderResponse"),
|
459
461
|
:schema_element => [
|
460
462
|
["lastModifiedTime", ["SOAP::SOAPDateTime", XSD::QName.new(NsCustomerbilling, "LastModifiedTime")], [0, 1]]
|
@@ -462,40 +464,40 @@ module CustomerBillingServiceMappingRegistry
|
|
462
464
|
)
|
463
465
|
|
464
466
|
LiteralRegistry.register(
|
465
|
-
:class => GetInsertionOrdersByAccountRequest,
|
467
|
+
:class => AdCenterWrapper::GetInsertionOrdersByAccountRequest,
|
466
468
|
:schema_name => XSD::QName.new(NsCustomerbilling, "GetInsertionOrdersByAccountRequest"),
|
467
469
|
:schema_element => [
|
468
470
|
["accountId", ["SOAP::SOAPLong", XSD::QName.new(NsCustomerbilling, "AccountId")], [0, 1]],
|
469
|
-
["insertionOrderIds", ["ArrayOflong", XSD::QName.new(NsCustomerbilling, "InsertionOrderIds")], [0, 1]]
|
471
|
+
["insertionOrderIds", ["AdCenterWrapper::ArrayOflong", XSD::QName.new(NsCustomerbilling, "InsertionOrderIds")], [0, 1]]
|
470
472
|
]
|
471
473
|
)
|
472
474
|
|
473
475
|
LiteralRegistry.register(
|
474
|
-
:class => GetInsertionOrdersByAccountResponse,
|
476
|
+
:class => AdCenterWrapper::GetInsertionOrdersByAccountResponse,
|
475
477
|
:schema_name => XSD::QName.new(NsCustomerbilling, "GetInsertionOrdersByAccountResponse"),
|
476
478
|
:schema_element => [
|
477
|
-
["insertionOrders", ["ArrayOfInsertionOrder", XSD::QName.new(NsCustomerbilling, "InsertionOrders")], [0, 1]]
|
479
|
+
["insertionOrders", ["AdCenterWrapper::ArrayOfInsertionOrder", XSD::QName.new(NsCustomerbilling, "InsertionOrders")], [0, 1]]
|
478
480
|
]
|
479
481
|
)
|
480
482
|
|
481
483
|
LiteralRegistry.register(
|
482
|
-
:class => GetKOHIOInvoicesRequest,
|
484
|
+
:class => AdCenterWrapper::GetKOHIOInvoicesRequest,
|
483
485
|
:schema_name => XSD::QName.new(NsCustomerbilling, "GetKOHIOInvoicesRequest"),
|
484
486
|
:schema_element => [
|
485
|
-
["invoiceIds", ["ArrayOfstring", XSD::QName.new(NsCustomerbilling, "InvoiceIds")], [0, 1]]
|
487
|
+
["invoiceIds", ["AdCenterWrapper::ArrayOfstring", XSD::QName.new(NsCustomerbilling, "InvoiceIds")], [0, 1]]
|
486
488
|
]
|
487
489
|
)
|
488
490
|
|
489
491
|
LiteralRegistry.register(
|
490
|
-
:class => GetKOHIOInvoicesResponse,
|
492
|
+
:class => AdCenterWrapper::GetKOHIOInvoicesResponse,
|
491
493
|
:schema_name => XSD::QName.new(NsCustomerbilling, "GetKOHIOInvoicesResponse"),
|
492
494
|
:schema_element => [
|
493
|
-
["invoices", ["ArrayOfInvoice", XSD::QName.new(NsCustomerbilling, "Invoices")], [0, 1]]
|
495
|
+
["invoices", ["AdCenterWrapper::ArrayOfInvoice", XSD::QName.new(NsCustomerbilling, "Invoices")], [0, 1]]
|
494
496
|
]
|
495
497
|
)
|
496
498
|
|
497
499
|
LiteralRegistry.register(
|
498
|
-
:class => ArrayOflong,
|
500
|
+
:class => AdCenterWrapper::ArrayOflong,
|
499
501
|
:schema_name => XSD::QName.new(NsArrays, "ArrayOflong"),
|
500
502
|
:schema_element => [
|
501
503
|
["long", "SOAP::SOAPLong[]", [0, nil]]
|
@@ -503,7 +505,7 @@ module CustomerBillingServiceMappingRegistry
|
|
503
505
|
)
|
504
506
|
|
505
507
|
LiteralRegistry.register(
|
506
|
-
:class => ArrayOfstring,
|
508
|
+
:class => AdCenterWrapper::ArrayOfstring,
|
507
509
|
:schema_name => XSD::QName.new(NsArrays, "ArrayOfstring"),
|
508
510
|
:schema_element => [
|
509
511
|
["string", "SOAP::SOAPString[]", [0, nil]]
|
@@ -511,15 +513,15 @@ module CustomerBillingServiceMappingRegistry
|
|
511
513
|
)
|
512
514
|
|
513
515
|
LiteralRegistry.register(
|
514
|
-
:class => ArrayOfInvoiceInfo,
|
516
|
+
:class => AdCenterWrapper::ArrayOfInvoiceInfo,
|
515
517
|
:schema_name => XSD::QName.new(NsEntities, "ArrayOfInvoiceInfo"),
|
516
518
|
:schema_element => [
|
517
|
-
["invoiceInfo", ["InvoiceInfo[]", XSD::QName.new(NsEntities, "InvoiceInfo")], [0, nil]]
|
519
|
+
["invoiceInfo", ["AdCenterWrapper::InvoiceInfo[]", XSD::QName.new(NsEntities, "InvoiceInfo")], [0, nil]]
|
518
520
|
]
|
519
521
|
)
|
520
522
|
|
521
523
|
LiteralRegistry.register(
|
522
|
-
:class => InvoiceInfo,
|
524
|
+
:class => AdCenterWrapper::InvoiceInfo,
|
523
525
|
:schema_name => XSD::QName.new(NsEntities, "InvoiceInfo"),
|
524
526
|
:schema_element => [
|
525
527
|
["accountId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "AccountId")], [0, 1]],
|
@@ -533,30 +535,30 @@ module CustomerBillingServiceMappingRegistry
|
|
533
535
|
)
|
534
536
|
|
535
537
|
LiteralRegistry.register(
|
536
|
-
:class => DataType,
|
538
|
+
:class => AdCenterWrapper::DataType,
|
537
539
|
:schema_name => XSD::QName.new(NsEntities, "DataType")
|
538
540
|
)
|
539
541
|
|
540
542
|
LiteralRegistry.register(
|
541
|
-
:class => ArrayOfInvoice,
|
543
|
+
:class => AdCenterWrapper::ArrayOfInvoice,
|
542
544
|
:schema_name => XSD::QName.new(NsEntities, "ArrayOfInvoice"),
|
543
545
|
:schema_element => [
|
544
|
-
["invoice", ["Invoice[]", XSD::QName.new(NsEntities, "Invoice")], [0, nil]]
|
546
|
+
["invoice", ["AdCenterWrapper::Invoice[]", XSD::QName.new(NsEntities, "Invoice")], [0, nil]]
|
545
547
|
]
|
546
548
|
)
|
547
549
|
|
548
550
|
LiteralRegistry.register(
|
549
|
-
:class => Invoice,
|
551
|
+
:class => AdCenterWrapper::Invoice,
|
550
552
|
:schema_name => XSD::QName.new(NsEntities, "Invoice"),
|
551
553
|
:schema_element => [
|
552
554
|
["data", ["SOAP::SOAPBase64", XSD::QName.new(NsEntities, "Data")], [0, 1]],
|
553
555
|
["id", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "Id")], [0, 1]],
|
554
|
-
["type", ["DataType", XSD::QName.new(NsEntities, "Type")], [0, 1]]
|
556
|
+
["type", ["AdCenterWrapper::DataType", XSD::QName.new(NsEntities, "Type")], [0, 1]]
|
555
557
|
]
|
556
558
|
)
|
557
559
|
|
558
560
|
LiteralRegistry.register(
|
559
|
-
:class => InsertionOrder,
|
561
|
+
:class => AdCenterWrapper::InsertionOrder,
|
560
562
|
:schema_name => XSD::QName.new(NsEntities, "InsertionOrder"),
|
561
563
|
:schema_element => [
|
562
564
|
["accountId", ["SOAP::SOAPLong", XSD::QName.new(NsEntities, "AccountId")], [0, 1]],
|
@@ -575,32 +577,32 @@ module CustomerBillingServiceMappingRegistry
|
|
575
577
|
)
|
576
578
|
|
577
579
|
LiteralRegistry.register(
|
578
|
-
:class => ArrayOfInsertionOrder,
|
580
|
+
:class => AdCenterWrapper::ArrayOfInsertionOrder,
|
579
581
|
:schema_name => XSD::QName.new(NsEntities, "ArrayOfInsertionOrder"),
|
580
582
|
:schema_element => [
|
581
|
-
["insertionOrder", ["InsertionOrder[]", XSD::QName.new(NsEntities, "InsertionOrder")], [0, nil]]
|
583
|
+
["insertionOrder", ["AdCenterWrapper::InsertionOrder[]", XSD::QName.new(NsEntities, "InsertionOrder")], [0, nil]]
|
582
584
|
]
|
583
585
|
)
|
584
586
|
|
585
587
|
LiteralRegistry.register(
|
586
|
-
:class => ApiFault,
|
588
|
+
:class => AdCenterWrapper::ApiFault,
|
587
589
|
:schema_name => XSD::QName.new(NsC_Exception, "ApiFault"),
|
588
590
|
:schema_element => [
|
589
591
|
["trackingId", ["SOAP::SOAPString", XSD::QName.new(NsAdapiMicrosoftCom, "TrackingId")], [0, 1]],
|
590
|
-
["operationErrors", ["ArrayOfOperationError", XSD::QName.new(NsC_Exception, "OperationErrors")], [0, 1]]
|
592
|
+
["operationErrors", ["AdCenterWrapper::ArrayOfOperationError", XSD::QName.new(NsC_Exception, "OperationErrors")], [0, 1]]
|
591
593
|
]
|
592
594
|
)
|
593
595
|
|
594
596
|
LiteralRegistry.register(
|
595
|
-
:class => ArrayOfOperationError,
|
597
|
+
:class => AdCenterWrapper::ArrayOfOperationError,
|
596
598
|
:schema_name => XSD::QName.new(NsC_Exception, "ArrayOfOperationError"),
|
597
599
|
:schema_element => [
|
598
|
-
["operationError", ["OperationError[]", XSD::QName.new(NsC_Exception, "OperationError")], [0, nil]]
|
600
|
+
["operationError", ["AdCenterWrapper::OperationError[]", XSD::QName.new(NsC_Exception, "OperationError")], [0, nil]]
|
599
601
|
]
|
600
602
|
)
|
601
603
|
|
602
604
|
LiteralRegistry.register(
|
603
|
-
:class => OperationError,
|
605
|
+
:class => AdCenterWrapper::OperationError,
|
604
606
|
:schema_name => XSD::QName.new(NsC_Exception, "OperationError"),
|
605
607
|
:schema_element => [
|
606
608
|
["code", ["SOAP::SOAPInt", XSD::QName.new(NsC_Exception, "Code")], [0, 1]],
|
@@ -610,25 +612,25 @@ module CustomerBillingServiceMappingRegistry
|
|
610
612
|
)
|
611
613
|
|
612
614
|
LiteralRegistry.register(
|
613
|
-
:class => ApiBatchFault,
|
615
|
+
:class => AdCenterWrapper::ApiBatchFault,
|
614
616
|
:schema_name => XSD::QName.new(NsC_Exception, "ApiBatchFault"),
|
615
617
|
:schema_element => [
|
616
618
|
["trackingId", ["SOAP::SOAPString", XSD::QName.new(NsAdapiMicrosoftCom, "TrackingId")], [0, 1]],
|
617
|
-
["operationErrors", ["ArrayOfOperationError", XSD::QName.new(NsC_Exception, "OperationErrors")], [0, 1]],
|
618
|
-
["batchErrors", ["ArrayOfBatchError", XSD::QName.new(NsC_Exception, "BatchErrors")], [0, 1]]
|
619
|
+
["operationErrors", ["AdCenterWrapper::ArrayOfOperationError", XSD::QName.new(NsC_Exception, "OperationErrors")], [0, 1]],
|
620
|
+
["batchErrors", ["AdCenterWrapper::ArrayOfBatchError", XSD::QName.new(NsC_Exception, "BatchErrors")], [0, 1]]
|
619
621
|
]
|
620
622
|
)
|
621
623
|
|
622
624
|
LiteralRegistry.register(
|
623
|
-
:class => ArrayOfBatchError,
|
625
|
+
:class => AdCenterWrapper::ArrayOfBatchError,
|
624
626
|
:schema_name => XSD::QName.new(NsC_Exception, "ArrayOfBatchError"),
|
625
627
|
:schema_element => [
|
626
|
-
["batchError", ["BatchError[]", XSD::QName.new(NsC_Exception, "BatchError")], [0, nil]]
|
628
|
+
["batchError", ["AdCenterWrapper::BatchError[]", XSD::QName.new(NsC_Exception, "BatchError")], [0, nil]]
|
627
629
|
]
|
628
630
|
)
|
629
631
|
|
630
632
|
LiteralRegistry.register(
|
631
|
-
:class => BatchError,
|
633
|
+
:class => AdCenterWrapper::BatchError,
|
632
634
|
:schema_name => XSD::QName.new(NsC_Exception, "BatchError"),
|
633
635
|
:schema_element => [
|
634
636
|
["code", ["SOAP::SOAPInt", XSD::QName.new(NsC_Exception, "Code")], [0, 1]],
|
@@ -639,7 +641,7 @@ module CustomerBillingServiceMappingRegistry
|
|
639
641
|
)
|
640
642
|
|
641
643
|
LiteralRegistry.register(
|
642
|
-
:class => ApplicationFault,
|
644
|
+
:class => AdCenterWrapper::ApplicationFault,
|
643
645
|
:schema_name => XSD::QName.new(NsAdapiMicrosoftCom, "ApplicationFault"),
|
644
646
|
:schema_element => [
|
645
647
|
["trackingId", ["SOAP::SOAPString", XSD::QName.new(NsAdapiMicrosoftCom, "TrackingId")], [0, 1]]
|
@@ -647,24 +649,24 @@ module CustomerBillingServiceMappingRegistry
|
|
647
649
|
)
|
648
650
|
|
649
651
|
LiteralRegistry.register(
|
650
|
-
:class => AdApiFaultDetail,
|
652
|
+
:class => AdCenterWrapper::AdApiFaultDetail,
|
651
653
|
:schema_name => XSD::QName.new(NsAdapiMicrosoftCom, "AdApiFaultDetail"),
|
652
654
|
:schema_element => [
|
653
655
|
["trackingId", ["SOAP::SOAPString", XSD::QName.new(NsAdapiMicrosoftCom, "TrackingId")], [0, 1]],
|
654
|
-
["errors", ["ArrayOfAdApiError", XSD::QName.new(NsAdapiMicrosoftCom, "Errors")], [0, 1]]
|
656
|
+
["errors", ["AdCenterWrapper::ArrayOfAdApiError", XSD::QName.new(NsAdapiMicrosoftCom, "Errors")], [0, 1]]
|
655
657
|
]
|
656
658
|
)
|
657
659
|
|
658
660
|
LiteralRegistry.register(
|
659
|
-
:class => ArrayOfAdApiError,
|
661
|
+
:class => AdCenterWrapper::ArrayOfAdApiError,
|
660
662
|
:schema_name => XSD::QName.new(NsAdapiMicrosoftCom, "ArrayOfAdApiError"),
|
661
663
|
:schema_element => [
|
662
|
-
["adApiError", ["AdApiError[]", XSD::QName.new(NsAdapiMicrosoftCom, "AdApiError")], [0, nil]]
|
664
|
+
["adApiError", ["AdCenterWrapper::AdApiError[]", XSD::QName.new(NsAdapiMicrosoftCom, "AdApiError")], [0, nil]]
|
663
665
|
]
|
664
666
|
)
|
665
667
|
|
666
668
|
LiteralRegistry.register(
|
667
|
-
:class => AdApiError,
|
669
|
+
:class => AdCenterWrapper::AdApiError,
|
668
670
|
:schema_name => XSD::QName.new(NsAdapiMicrosoftCom, "AdApiError"),
|
669
671
|
:schema_element => [
|
670
672
|
["code", ["SOAP::SOAPInt", XSD::QName.new(NsAdapiMicrosoftCom, "Code")], [0, 1]],
|
@@ -674,3 +676,5 @@ module CustomerBillingServiceMappingRegistry
|
|
674
676
|
]
|
675
677
|
)
|
676
678
|
end
|
679
|
+
|
680
|
+
end
|