ClassMap::get()   B
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 1756
Code Lines 1754

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1754
nc 1
nop 0
dl 0
loc 1756
rs 8
c 0
b 0
f 0

How to fix   Long Method   

Long Method

Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.

For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.

Commonly applied refactorings include:

1
<?php
2
3
namespace Ovh;
4
5
/**
6
 * Class which returns the class map definition
7
 * @package
8
 */
9
class ClassMap
10
{
11
    /**
12
     * Returns the mapping between the WSDL Structs and generated Structs' classes
13
     * This array is sent to the \SoapClient when calling the WS
14
     * @return string[]
15
     */
16
    final public static function get()
17
    {
18
        return array(
19
            'mailingListModeratorDel' => '\\Ovh\\StructType\\MailingListModeratorDel',
20
            'mailingListModeratorDelResponse' => '\\Ovh\\StructType\\MailingListModeratorDelResponse',
21
            'telephonyNumberInfo' => '\\Ovh\\StructType\\TelephonyNumberInfo',
22
            'telephonyNumberInfoResponse' => '\\Ovh\\StructType\\TelephonyNumberInfoResponse',
23
            'sqlpriveMysqlRestart' => '\\Ovh\\StructType\\SqlpriveMysqlRestart',
24
            'sqlpriveMysqlRestartResponse' => '\\Ovh\\StructType\\SqlpriveMysqlRestartResponse',
25
            'logout' => '\\Ovh\\StructType\\Logout',
26
            'logoutResponse' => '\\Ovh\\StructType\\LogoutResponse',
27
            'multiFtpChangeDirectory' => '\\Ovh\\StructType\\MultiFtpChangeDirectory',
28
            'multiFtpChangeDirectoryResponse' => '\\Ovh\\StructType\\MultiFtpChangeDirectoryResponse',
29
            'sqlpriveMysqlVersion' => '\\Ovh\\StructType\\SqlpriveMysqlVersion',
30
            'sqlpriveMysqlVersionResponse' => '\\Ovh\\StructType\\SqlpriveMysqlVersionResponse',
31
            'dedicatedReverseDel' => '\\Ovh\\StructType\\DedicatedReverseDel',
32
            'dedicatedReverseDelResponse' => '\\Ovh\\StructType\\DedicatedReverseDelResponse',
33
            'dedicatedDelServiceMonitoringAlert' => '\\Ovh\\StructType\\DedicatedDelServiceMonitoringAlert',
34
            'dedicatedDelServiceMonitoringAlertResponse' => '\\Ovh\\StructType\\DedicatedDelServiceMonitoringAlertResponse',
35
            'telephonyVoicemailOptionsList' => '\\Ovh\\StructType\\TelephonyVoicemailOptionsList',
36
            'telephonyVoicemailOptionsListResponse' => '\\Ovh\\StructType\\TelephonyVoicemailOptionsListResponse',
37
            'telephonyPhonebookSharePeerList' => '\\Ovh\\StructType\\TelephonyPhonebookSharePeerList',
38
            'telephonyPhonebookSharePeerListResponse' => '\\Ovh\\StructType\\TelephonyPhonebookSharePeerListResponse',
39
            'serviceGroupGetAllInfo' => '\\Ovh\\StructType\\ServiceGroupGetAllInfo',
40
            'serviceGroupGetAllInfoResponse' => '\\Ovh\\StructType\\ServiceGroupGetAllInfoResponse',
41
            'redirectedEmailAdd' => '\\Ovh\\StructType\\RedirectedEmailAdd',
42
            'redirectedEmailAddResponse' => '\\Ovh\\StructType\\RedirectedEmailAddResponse',
43
            'nicModifyInfos' => '\\Ovh\\StructType\\NicModifyInfos',
44
            'nicModifyInfosResponse' => '\\Ovh\\StructType\\NicModifyInfosResponse',
45
            'ripeGetRipeIds' => '\\Ovh\\StructType\\RipeGetRipeIds',
46
            'ripeGetRipeIdsResponse' => '\\Ovh\\StructType\\RipeGetRipeIdsResponse',
47
            'telephonyRedirectModify' => '\\Ovh\\StructType\\TelephonyRedirectModify',
48
            'telephonyRedirectModifyResponse' => '\\Ovh\\StructType\\TelephonyRedirectModifyResponse',
49
            'sqlpriveMysqlDatabaseImportFromFile' => '\\Ovh\\StructType\\SqlpriveMysqlDatabaseImportFromFile',
50
            'sqlpriveMysqlDatabaseImportFromFileResponse' => '\\Ovh\\StructType\\SqlpriveMysqlDatabaseImportFromFileResponse',
51
            'telephonyNumberModify' => '\\Ovh\\StructType\\TelephonyNumberModify',
52
            'telephonyNumberModifyResponse' => '\\Ovh\\StructType\\TelephonyNumberModifyResponse',
53
            'dedicatedAddServiceMonitoringAlertSMS' => '\\Ovh\\StructType\\DedicatedAddServiceMonitoringAlertSMS',
54
            'dedicatedAddServiceMonitoringAlertSMSResponse' => '\\Ovh\\StructType\\DedicatedAddServiceMonitoringAlertSMSResponse',
55
            'telephonyGetCitiesFromZip' => '\\Ovh\\StructType\\TelephonyGetCitiesFromZip',
56
            'telephonyGetCitiesFromZipResponse' => '\\Ovh\\StructType\\TelephonyGetCitiesFromZipResponse',
57
            'automatedMailGetVolumeHistory' => '\\Ovh\\StructType\\AutomatedMailGetVolumeHistory',
58
            'automatedMailGetVolumeHistoryResponse' => '\\Ovh\\StructType\\AutomatedMailGetVolumeHistoryResponse',
59
            'automatedMailGetTodo' => '\\Ovh\\StructType\\AutomatedMailGetTodo',
60
            'automatedMailGetTodoResponse' => '\\Ovh\\StructType\\AutomatedMailGetTodoResponse',
61
            'telephonySmsplusSendSmsMt' => '\\Ovh\\StructType\\TelephonySmsplusSendSmsMt',
62
            'telephonySmsplusSendSmsMtResponse' => '\\Ovh\\StructType\\TelephonySmsplusSendSmsMtResponse',
63
            'dedicatedIpLoadBalancingList' => '\\Ovh\\StructType\\DedicatedIpLoadBalancingList',
64
            'dedicatedIpLoadBalancingListResponse' => '\\Ovh\\StructType\\DedicatedIpLoadBalancingListResponse',
65
            'dedicatedBackupReinstallConfiguration' => '\\Ovh\\StructType\\DedicatedBackupReinstallConfiguration',
66
            'dedicatedBackupReinstallConfigurationResponse' => '\\Ovh\\StructType\\DedicatedBackupReinstallConfigurationResponse',
67
            'telephonySmsUserGetCsvAttachment' => '\\Ovh\\StructType\\TelephonySmsUserGetCsvAttachment',
68
            'telephonySmsUserGetCsvAttachmentResponse' => '\\Ovh\\StructType\\TelephonySmsUserGetCsvAttachmentResponse',
69
            'dedicatedBackupGetHisto' => '\\Ovh\\StructType\\DedicatedBackupGetHisto',
70
            'dedicatedBackupGetHistoResponse' => '\\Ovh\\StructType\\DedicatedBackupGetHistoResponse',
71
            'domainHostUpdate' => '\\Ovh\\StructType\\DomainHostUpdate',
72
            'domainHostUpdateResponse' => '\\Ovh\\StructType\\DomainHostUpdateResponse',
73
            'dedicatedBackupUpdate' => '\\Ovh\\StructType\\DedicatedBackupUpdate',
74
            'dedicatedBackupUpdateResponse' => '\\Ovh\\StructType\\DedicatedBackupUpdateResponse',
75
            'telephonyPhonebookOnSmsList' => '\\Ovh\\StructType\\TelephonyPhonebookOnSmsList',
76
            'telephonyPhonebookOnSmsListResponse' => '\\Ovh\\StructType\\TelephonyPhonebookOnSmsListResponse',
77
            'serviceGroupList' => '\\Ovh\\StructType\\ServiceGroupList',
78
            'serviceGroupListResponse' => '\\Ovh\\StructType\\ServiceGroupListResponse',
79
            'databaseChangePassword' => '\\Ovh\\StructType\\DatabaseChangePassword',
80
            'databaseChangePasswordResponse' => '\\Ovh\\StructType\\DatabaseChangePasswordResponse',
81
            'billingInvoiceList' => '\\Ovh\\StructType\\BillingInvoiceList',
82
            'billingInvoiceListResponse' => '\\Ovh\\StructType\\BillingInvoiceListResponse',
83
            'telephonySetClosureEvents' => '\\Ovh\\StructType\\TelephonySetClosureEvents',
84
            'telephonySetClosureEventsResponse' => '\\Ovh\\StructType\\TelephonySetClosureEventsResponse',
85
            'telephonyNicSetSipDomain' => '\\Ovh\\StructType\\TelephonyNicSetSipDomain',
86
            'telephonyNicSetSipDomainResponse' => '\\Ovh\\StructType\\TelephonyNicSetSipDomainResponse',
87
            'globalAccessByNic' => '\\Ovh\\StructType\\GlobalAccessByNic',
88
            'globalAccessByNicResponse' => '\\Ovh\\StructType\\GlobalAccessByNicResponse',
89
            'dedicatedNetbootGetRescueEmail' => '\\Ovh\\StructType\\DedicatedNetbootGetRescueEmail',
90
            'dedicatedNetbootGetRescueEmailResponse' => '\\Ovh\\StructType\\DedicatedNetbootGetRescueEmailResponse',
91
            'ticketListIncidentsByDomain' => '\\Ovh\\StructType\\TicketListIncidentsByDomain',
92
            'ticketListIncidentsByDomainResponse' => '\\Ovh\\StructType\\TicketListIncidentsByDomainResponse',
93
            'telephonySmsMultiSend' => '\\Ovh\\StructType\\TelephonySmsMultiSend',
94
            'telephonySmsMultiSendResponse' => '\\Ovh\\StructType\\TelephonySmsMultiSendResponse',
95
            'serviceListPaginated' => '\\Ovh\\StructType\\ServiceListPaginated',
96
            'serviceListPaginatedResponse' => '\\Ovh\\StructType\\ServiceListPaginatedResponse',
97
            'dedicatedRtmListBackdoor' => '\\Ovh\\StructType\\DedicatedRtmListBackdoor',
98
            'dedicatedRtmListBackdoorResponse' => '\\Ovh\\StructType\\DedicatedRtmListBackdoorResponse',
99
            'telephonySmsUserAddCsvAttachment' => '\\Ovh\\StructType\\TelephonySmsUserAddCsvAttachment',
100
            'telephonySmsUserAddCsvAttachmentResponse' => '\\Ovh\\StructType\\TelephonySmsUserAddCsvAttachmentResponse',
101
            'zoneEntryList' => '\\Ovh\\StructType\\ZoneEntryList',
102
            'zoneEntryListResponse' => '\\Ovh\\StructType\\ZoneEntryListResponse',
103
            'telephonySpareDel' => '\\Ovh\\StructType\\TelephonySpareDel',
104
            'telephonySpareDelResponse' => '\\Ovh\\StructType\\TelephonySpareDelResponse',
105
            'dnsDefaultInstallCustom' => '\\Ovh\\StructType\\DnsDefaultInstallCustom',
106
            'dnsDefaultInstallCustomResponse' => '\\Ovh\\StructType\\DnsDefaultInstallCustomResponse',
107
            'telephonyFaxHistory' => '\\Ovh\\StructType\\TelephonyFaxHistory',
108
            'telephonyFaxHistoryResponse' => '\\Ovh\\StructType\\TelephonyFaxHistoryResponse',
109
            'multiFtpChangePassword' => '\\Ovh\\StructType\\MultiFtpChangePassword',
110
            'multiFtpChangePasswordResponse' => '\\Ovh\\StructType\\MultiFtpChangePasswordResponse',
111
            'telephonyFreefaxToVoicefax' => '\\Ovh\\StructType\\TelephonyFreefaxToVoicefax',
112
            'telephonyFreefaxToVoicefaxResponse' => '\\Ovh\\StructType\\TelephonyFreefaxToVoicefaxResponse',
113
            'sqlpriveMysqlUserList' => '\\Ovh\\StructType\\SqlpriveMysqlUserList',
114
            'sqlpriveMysqlUserListResponse' => '\\Ovh\\StructType\\SqlpriveMysqlUserListResponse',
115
            'telephonyFaxSend' => '\\Ovh\\StructType\\TelephonyFaxSend',
116
            'telephonyFaxSendResponse' => '\\Ovh\\StructType\\TelephonyFaxSendResponse',
117
            'domainUnlock' => '\\Ovh\\StructType\\DomainUnlock',
118
            'domainUnlockResponse' => '\\Ovh\\StructType\\DomainUnlockResponse',
119
            'telephonyRestrictionList' => '\\Ovh\\StructType\\TelephonyRestrictionList',
120
            'telephonyRestrictionListResponse' => '\\Ovh\\StructType\\TelephonyRestrictionListResponse',
121
            'domainWhoisObfuscatorSetAll' => '\\Ovh\\StructType\\DomainWhoisObfuscatorSetAll',
122
            'domainWhoisObfuscatorSetAllResponse' => '\\Ovh\\StructType\\DomainWhoisObfuscatorSetAllResponse',
123
            'popDetachMasterNic' => '\\Ovh\\StructType\\PopDetachMasterNic',
124
            'popDetachMasterNicResponse' => '\\Ovh\\StructType\\PopDetachMasterNicResponse',
125
            'telephonyBillList' => '\\Ovh\\StructType\\TelephonyBillList',
126
            'telephonyBillListResponse' => '\\Ovh\\StructType\\TelephonyBillListResponse',
127
            'telephonyNumberCustomList' => '\\Ovh\\StructType\\TelephonyNumberCustomList',
128
            'telephonyNumberCustomListResponse' => '\\Ovh\\StructType\\TelephonyNumberCustomListResponse',
129
            'dedicatedMonitoringNotificationCreate' => '\\Ovh\\StructType\\DedicatedMonitoringNotificationCreate',
130
            'dedicatedMonitoringNotificationCreateResponse' => '\\Ovh\\StructType\\DedicatedMonitoringNotificationCreateResponse',
131
            'telephonyPlugAndPhoneSkinModify' => '\\Ovh\\StructType\\TelephonyPlugAndPhoneSkinModify',
132
            'telephonyPlugAndPhoneSkinModifyResponse' => '\\Ovh\\StructType\\TelephonyPlugAndPhoneSkinModifyResponse',
133
            'domainList' => '\\Ovh\\StructType\\DomainList',
134
            'domainListResponse' => '\\Ovh\\StructType\\DomainListResponse',
135
            'telephonyFaxOptionsModify' => '\\Ovh\\StructType\\TelephonyFaxOptionsModify',
136
            'telephonyFaxOptionsModifyResponse' => '\\Ovh\\StructType\\TelephonyFaxOptionsModifyResponse',
137
            'telephonyBillingAccountSummary' => '\\Ovh\\StructType\\TelephonyBillingAccountSummary',
138
            'telephonyBillingAccountSummaryResponse' => '\\Ovh\\StructType\\TelephonyBillingAccountSummaryResponse',
139
            'overquotaInfo' => '\\Ovh\\StructType\\OverquotaInfo',
140
            'overquotaInfoResponse' => '\\Ovh\\StructType\\OverquotaInfoResponse',
141
            'telephonyConferenceSetAnnounceFile' => '\\Ovh\\StructType\\TelephonyConferenceSetAnnounceFile',
142
            'telephonyConferenceSetAnnounceFileResponse' => '\\Ovh\\StructType\\TelephonyConferenceSetAnnounceFileResponse',
143
            'automatedMailGetErrors' => '\\Ovh\\StructType\\AutomatedMailGetErrors',
144
            'automatedMailGetErrorsResponse' => '\\Ovh\\StructType\\AutomatedMailGetErrorsResponse',
145
            'telephonyPhonebookOnSmsAdd' => '\\Ovh\\StructType\\TelephonyPhonebookOnSmsAdd',
146
            'telephonyPhonebookOnSmsAddResponse' => '\\Ovh\\StructType\\TelephonyPhonebookOnSmsAddResponse',
147
            'telephonyClick2CallUserDel' => '\\Ovh\\StructType\\TelephonyClick2CallUserDel',
148
            'telephonyClick2CallUserDelResponse' => '\\Ovh\\StructType\\TelephonyClick2CallUserDelResponse',
149
            'emailGetCapabilities' => '\\Ovh\\StructType\\EmailGetCapabilities',
150
            'emailGetCapabilitiesResponse' => '\\Ovh\\StructType\\EmailGetCapabilitiesResponse',
151
            'telephonySmsAccountList' => '\\Ovh\\StructType\\TelephonySmsAccountList',
152
            'telephonySmsAccountListResponse' => '\\Ovh\\StructType\\TelephonySmsAccountListResponse',
153
            'telephonyBillingAccountConsumptionCSVByMail' => '\\Ovh\\StructType\\TelephonyBillingAccountConsumptionCSVByMail',
154
            'telephonyBillingAccountConsumptionCSVByMailResponse' => '\\Ovh\\StructType\\TelephonyBillingAccountConsumptionCSVByMailResponse',
155
            'telephonyFMHuntingModificationVoicemail' => '\\Ovh\\StructType\\TelephonyFMHuntingModificationVoicemail',
156
            'telephonyFMHuntingModificationVoicemailResponse' => '\\Ovh\\StructType\\TelephonyFMHuntingModificationVoicemailResponse',
157
            'dedicatedBackupList' => '\\Ovh\\StructType\\DedicatedBackupList',
158
            'dedicatedBackupListResponse' => '\\Ovh\\StructType\\DedicatedBackupListResponse',
159
            'telephonyOrdersFollowingUp' => '\\Ovh\\StructType\\TelephonyOrdersFollowingUp',
160
            'telephonyOrdersFollowingUpResponse' => '\\Ovh\\StructType\\TelephonyOrdersFollowingUpResponse',
161
            'telephonyPhonebookOnGroupContactAdd' => '\\Ovh\\StructType\\TelephonyPhonebookOnGroupContactAdd',
162
            'telephonyPhonebookOnGroupContactAddResponse' => '\\Ovh\\StructType\\TelephonyPhonebookOnGroupContactAddResponse',
163
            'ortDomainDel' => '\\Ovh\\StructType\\OrtDomainDel',
164
            'ortDomainDelResponse' => '\\Ovh\\StructType\\OrtDomainDelResponse',
165
            'mailingListModeratorList' => '\\Ovh\\StructType\\MailingListModeratorList',
166
            'mailingListModeratorListResponse' => '\\Ovh\\StructType\\MailingListModeratorListResponse',
167
            'telephonyBillDetailsCSV' => '\\Ovh\\StructType\\TelephonyBillDetailsCSV',
168
            'telephonyBillDetailsCSVResponse' => '\\Ovh\\StructType\\TelephonyBillDetailsCSVResponse',
169
            'popList' => '\\Ovh\\StructType\\PopList',
170
            'popListResponse' => '\\Ovh\\StructType\\PopListResponse',
171
            'sqlpriveMysqlRamUsed' => '\\Ovh\\StructType\\SqlpriveMysqlRamUsed',
172
            'sqlpriveMysqlRamUsedResponse' => '\\Ovh\\StructType\\SqlpriveMysqlRamUsedResponse',
173
            'telephonySmsCreditLeft' => '\\Ovh\\StructType\\TelephonySmsCreditLeft',
174
            'telephonySmsCreditLeftResponse' => '\\Ovh\\StructType\\TelephonySmsCreditLeftResponse',
175
            'prepaidDomainCreate' => '\\Ovh\\StructType\\PrepaidDomainCreate',
176
            'prepaidDomainCreateResponse' => '\\Ovh\\StructType\\PrepaidDomainCreateResponse',
177
            'telephonyDirectoryPJCode' => '\\Ovh\\StructType\\TelephonyDirectoryPJCode',
178
            'telephonyDirectoryPJCodeResponse' => '\\Ovh\\StructType\\TelephonyDirectoryPJCodeResponse',
179
            'telephonyListSummationCallsFromBillingAccount' => '\\Ovh\\StructType\\TelephonyListSummationCallsFromBillingAccount',
180
            'telephonyListSummationCallsFromBillingAccountResponse' => '\\Ovh\\StructType\\TelephonyListSummationCallsFromBillingAccountResponse',
181
            'telephonyBillingAccountDescriptionModify' => '\\Ovh\\StructType\\TelephonyBillingAccountDescriptionModify',
182
            'telephonyBillingAccountDescriptionModifyResponse' => '\\Ovh\\StructType\\TelephonyBillingAccountDescriptionModifyResponse',
183
            'dedicatedNetbootGetAll' => '\\Ovh\\StructType\\DedicatedNetbootGetAll',
184
            'dedicatedNetbootGetAllResponse' => '\\Ovh\\StructType\\DedicatedNetbootGetAllResponse',
185
            'emailDomainListByMasterNic' => '\\Ovh\\StructType\\EmailDomainListByMasterNic',
186
            'emailDomainListByMasterNicResponse' => '\\Ovh\\StructType\\EmailDomainListByMasterNicResponse',
187
            'telephonyAbbreviatedNumberDel' => '\\Ovh\\StructType\\TelephonyAbbreviatedNumberDel',
188
            'telephonyAbbreviatedNumberDelResponse' => '\\Ovh\\StructType\\TelephonyAbbreviatedNumberDelResponse',
189
            'resellerDomainTransferIT' => '\\Ovh\\StructType\\ResellerDomainTransferIT',
190
            'resellerDomainTransferITResponse' => '\\Ovh\\StructType\\ResellerDomainTransferITResponse',
191
            'dedicatedVirtualMacIpAvailableGetList' => '\\Ovh\\StructType\\DedicatedVirtualMacIpAvailableGetList',
192
            'dedicatedVirtualMacIpAvailableGetListResponse' => '\\Ovh\\StructType\\DedicatedVirtualMacIpAvailableGetListResponse',
193
            'telephonyFaxOptionsList' => '\\Ovh\\StructType\\TelephonyFaxOptionsList',
194
            'telephonyFaxOptionsListResponse' => '\\Ovh\\StructType\\TelephonyFaxOptionsListResponse',
195
            'ticketListIncidents' => '\\Ovh\\StructType\\TicketListIncidents',
196
            'ticketListIncidentsResponse' => '\\Ovh\\StructType\\TicketListIncidentsResponse',
197
            'infrastructureReverseModify' => '\\Ovh\\StructType\\InfrastructureReverseModify',
198
            'infrastructureReverseModifyResponse' => '\\Ovh\\StructType\\InfrastructureReverseModifyResponse',
199
            'dedicatedMonitoringSMSCreate' => '\\Ovh\\StructType\\DedicatedMonitoringSMSCreate',
200
            'dedicatedMonitoringSMSCreateResponse' => '\\Ovh\\StructType\\DedicatedMonitoringSMSCreateResponse',
201
            'telephonyTrunkExternalDisplayedNumberAdd' => '\\Ovh\\StructType\\TelephonyTrunkExternalDisplayedNumberAdd',
202
            'telephonyTrunkExternalDisplayedNumberAddResponse' => '\\Ovh\\StructType\\TelephonyTrunkExternalDisplayedNumberAddResponse',
203
            'dedicatedRipeQuery' => '\\Ovh\\StructType\\DedicatedRipeQuery',
204
            'dedicatedRipeQueryResponse' => '\\Ovh\\StructType\\DedicatedRipeQueryResponse',
205
            'responderEmailList' => '\\Ovh\\StructType\\ResponderEmailList',
206
            'responderEmailListResponse' => '\\Ovh\\StructType\\ResponderEmailListResponse',
207
            'telephonyBillingAccountSet' => '\\Ovh\\StructType\\TelephonyBillingAccountSet',
208
            'telephonyBillingAccountSetResponse' => '\\Ovh\\StructType\\TelephonyBillingAccountSetResponse',
209
            'telephonyDepositMovementModify' => '\\Ovh\\StructType\\TelephonyDepositMovementModify',
210
            'telephonyDepositMovementModifyResponse' => '\\Ovh\\StructType\\TelephonyDepositMovementModifyResponse',
211
            'telephonyClick2CallDo' => '\\Ovh\\StructType\\TelephonyClick2CallDo',
212
            'telephonyClick2CallDoResponse' => '\\Ovh\\StructType\\TelephonyClick2CallDoResponse',
213
            'telephonySpecialNumberOrder' => '\\Ovh\\StructType\\TelephonySpecialNumberOrder',
214
            'telephonySpecialNumberOrderResponse' => '\\Ovh\\StructType\\TelephonySpecialNumberOrderResponse',
215
            'telephonyVoicemailOptionsModify' => '\\Ovh\\StructType\\TelephonyVoicemailOptionsModify',
216
            'telephonyVoicemailOptionsModifyResponse' => '\\Ovh\\StructType\\TelephonyVoicemailOptionsModifyResponse',
217
            'telephonyLineSwitchOldOffer' => '\\Ovh\\StructType\\TelephonyLineSwitchOldOffer',
218
            'telephonyLineSwitchOldOfferResponse' => '\\Ovh\\StructType\\TelephonyLineSwitchOldOfferResponse',
219
            'zoneEntryAddCustom' => '\\Ovh\\StructType\\ZoneEntryAddCustom',
220
            'zoneEntryAddCustomResponse' => '\\Ovh\\StructType\\ZoneEntryAddCustomResponse',
221
            'domainWhoisObfuscatorInfo' => '\\Ovh\\StructType\\DomainWhoisObfuscatorInfo',
222
            'domainWhoisObfuscatorInfoResponse' => '\\Ovh\\StructType\\DomainWhoisObfuscatorInfoResponse',
223
            'telephonyPhonebookOnGroupContactDel' => '\\Ovh\\StructType\\TelephonyPhonebookOnGroupContactDel',
224
            'telephonyPhonebookOnGroupContactDelResponse' => '\\Ovh\\StructType\\TelephonyPhonebookOnGroupContactDelResponse',
225
            'ticketReopen' => '\\Ovh\\StructType\\TicketReopen',
226
            'ticketReopenResponse' => '\\Ovh\\StructType\\TicketReopenResponse',
227
            'telephonySpareAdd' => '\\Ovh\\StructType\\TelephonySpareAdd',
228
            'telephonySpareAddResponse' => '\\Ovh\\StructType\\TelephonySpareAddResponse',
229
            'telephonySmsAddCsvAttachment' => '\\Ovh\\StructType\\TelephonySmsAddCsvAttachment',
230
            'telephonySmsAddCsvAttachmentResponse' => '\\Ovh\\StructType\\TelephonySmsAddCsvAttachmentResponse',
231
            'dedicatedBackupFtpPassword' => '\\Ovh\\StructType\\DedicatedBackupFtpPassword',
232
            'dedicatedBackupFtpPasswordResponse' => '\\Ovh\\StructType\\DedicatedBackupFtpPasswordResponse',
233
            'telephonyDefaultPrivateHolidaysEvents' => '\\Ovh\\StructType\\TelephonyDefaultPrivateHolidaysEvents',
234
            'telephonyDefaultPrivateHolidaysEventsResponse' => '\\Ovh\\StructType\\TelephonyDefaultPrivateHolidaysEventsResponse',
235
            'hostingAccessByNic' => '\\Ovh\\StructType\\HostingAccessByNic',
236
            'hostingAccessByNicResponse' => '\\Ovh\\StructType\\HostingAccessByNicResponse',
237
            'sqlpriveAlertInfo' => '\\Ovh\\StructType\\SqlpriveAlertInfo',
238
            'sqlpriveAlertInfoResponse' => '\\Ovh\\StructType\\SqlpriveAlertInfoResponse',
239
            'mailingListFullInfo' => '\\Ovh\\StructType\\MailingListFullInfo',
240
            'mailingListFullInfoResponse' => '\\Ovh\\StructType\\MailingListFullInfoResponse',
241
            'dedicatedRtmBackdoorUpdateAlert' => '\\Ovh\\StructType\\DedicatedRtmBackdoorUpdateAlert',
242
            'dedicatedRtmBackdoorUpdateAlertResponse' => '\\Ovh\\StructType\\DedicatedRtmBackdoorUpdateAlertResponse',
243
            'responderEmailInfo' => '\\Ovh\\StructType\\ResponderEmailInfo',
244
            'responderEmailInfoResponse' => '\\Ovh\\StructType\\ResponderEmailInfoResponse',
245
            'telephonyToneRemoteUpload' => '\\Ovh\\StructType\\TelephonyToneRemoteUpload',
246
            'telephonyToneRemoteUploadResponse' => '\\Ovh\\StructType\\TelephonyToneRemoteUploadResponse',
247
            'telephonyNumberGetFrWayNamesFromInsee' => '\\Ovh\\StructType\\TelephonyNumberGetFrWayNamesFromInsee',
248
            'telephonyNumberGetFrWayNamesFromInseeResponse' => '\\Ovh\\StructType\\TelephonyNumberGetFrWayNamesFromInseeResponse',
249
            'dedicatedSecondaryDNSAdd' => '\\Ovh\\StructType\\DedicatedSecondaryDNSAdd',
250
            'dedicatedSecondaryDNSAddResponse' => '\\Ovh\\StructType\\DedicatedSecondaryDNSAddResponse',
251
            'popUpgradeQuota' => '\\Ovh\\StructType\\PopUpgradeQuota',
252
            'popUpgradeQuotaResponse' => '\\Ovh\\StructType\\PopUpgradeQuotaResponse',
253
            'telephonyFMHuntingModificationMode' => '\\Ovh\\StructType\\TelephonyFMHuntingModificationMode',
254
            'telephonyFMHuntingModificationModeResponse' => '\\Ovh\\StructType\\TelephonyFMHuntingModificationModeResponse',
255
            'sqlpriveList' => '\\Ovh\\StructType\\SqlpriveList',
256
            'sqlpriveListResponse' => '\\Ovh\\StructType\\SqlpriveListResponse',
257
            'dnsInstall' => '\\Ovh\\StructType\\DnsInstall',
258
            'dnsInstallResponse' => '\\Ovh\\StructType\\DnsInstallResponse',
259
            'telephonyAliasToSipOffer' => '\\Ovh\\StructType\\TelephonyAliasToSipOffer',
260
            'telephonyAliasToSipOfferResponse' => '\\Ovh\\StructType\\TelephonyAliasToSipOfferResponse',
261
            'hostingSummary' => '\\Ovh\\StructType\\HostingSummary',
262
            'hostingSummaryResponse' => '\\Ovh\\StructType\\HostingSummaryResponse',
263
            'emailDomainSummary' => '\\Ovh\\StructType\\EmailDomainSummary',
264
            'emailDomainSummaryResponse' => '\\Ovh\\StructType\\EmailDomainSummaryResponse',
265
            'dedicatedRtmGetStatus' => '\\Ovh\\StructType\\DedicatedRtmGetStatus',
266
            'dedicatedRtmGetStatusResponse' => '\\Ovh\\StructType\\DedicatedRtmGetStatusResponse',
267
            'managedServicesPartitionQuotaUsed' => '\\Ovh\\StructType\\ManagedServicesPartitionQuotaUsed',
268
            'managedServicesPartitionQuotaUsedResponse' => '\\Ovh\\StructType\\ManagedServicesPartitionQuotaUsedResponse',
269
            'dedicatedNetbootGetAvailable' => '\\Ovh\\StructType\\DedicatedNetbootGetAvailable',
270
            'dedicatedNetbootGetAvailableResponse' => '\\Ovh\\StructType\\DedicatedNetbootGetAvailableResponse',
271
            'telephonySmsUserMultiSend' => '\\Ovh\\StructType\\TelephonySmsUserMultiSend',
272
            'telephonySmsUserMultiSendResponse' => '\\Ovh\\StructType\\TelephonySmsUserMultiSendResponse',
273
            'telephonySmsGetCsvAttachment' => '\\Ovh\\StructType\\TelephonySmsGetCsvAttachment',
274
            'telephonySmsGetCsvAttachmentResponse' => '\\Ovh\\StructType\\TelephonySmsGetCsvAttachmentResponse',
275
            'telephonySmsHistory' => '\\Ovh\\StructType\\TelephonySmsHistory',
276
            'telephonySmsHistoryResponse' => '\\Ovh\\StructType\\TelephonySmsHistoryResponse',
277
            'zoneEntryModify' => '\\Ovh\\StructType\\ZoneEntryModify',
278
            'zoneEntryModifyResponse' => '\\Ovh\\StructType\\ZoneEntryModifyResponse',
279
            'ticketListContact' => '\\Ovh\\StructType\\TicketListContact',
280
            'ticketListContactResponse' => '\\Ovh\\StructType\\TicketListContactResponse',
281
            'dedicatedMailinglistGetAllowed' => '\\Ovh\\StructType\\DedicatedMailinglistGetAllowed',
282
            'dedicatedMailinglistGetAllowedResponse' => '\\Ovh\\StructType\\DedicatedMailinglistGetAllowedResponse',
283
            'dedicatedBackupInfo' => '\\Ovh\\StructType\\DedicatedBackupInfo',
284
            'dedicatedBackupInfoResponse' => '\\Ovh\\StructType\\DedicatedBackupInfoResponse',
285
            'telephonyAbbreviatedNumberOnGroupModify' => '\\Ovh\\StructType\\TelephonyAbbreviatedNumberOnGroupModify',
286
            'telephonyAbbreviatedNumberOnGroupModifyResponse' => '\\Ovh\\StructType\\TelephonyAbbreviatedNumberOnGroupModifyResponse',
287
            'accountSummary' => '\\Ovh\\StructType\\AccountSummary',
288
            'accountSummaryResponse' => '\\Ovh\\StructType\\AccountSummaryResponse',
289
            'subDomainDel' => '\\Ovh\\StructType\\SubDomainDel',
290
            'subDomainDelResponse' => '\\Ovh\\StructType\\SubDomainDelResponse',
291
            'telephonyHuntingGenericScreenList' => '\\Ovh\\StructType\\TelephonyHuntingGenericScreenList',
292
            'telephonyHuntingGenericScreenListResponse' => '\\Ovh\\StructType\\TelephonyHuntingGenericScreenListResponse',
293
            'emailFilterAdd' => '\\Ovh\\StructType\\EmailFilterAdd',
294
            'emailFilterAddResponse' => '\\Ovh\\StructType\\EmailFilterAddResponse',
295
            'telephonyHuntingGenericScreenStatus' => '\\Ovh\\StructType\\TelephonyHuntingGenericScreenStatus',
296
            'telephonyHuntingGenericScreenStatusResponse' => '\\Ovh\\StructType\\TelephonyHuntingGenericScreenStatusResponse',
297
            'telephonyHuntingModificationMembers' => '\\Ovh\\StructType\\TelephonyHuntingModificationMembers',
298
            'telephonyHuntingModificationMembersResponse' => '\\Ovh\\StructType\\TelephonyHuntingModificationMembersResponse',
299
            'dnsReset' => '\\Ovh\\StructType\\DnsReset',
300
            'dnsResetResponse' => '\\Ovh\\StructType\\DnsResetResponse',
301
            'telephonyVoicemailMessagesDownload' => '\\Ovh\\StructType\\TelephonyVoicemailMessagesDownload',
302
            'telephonyVoicemailMessagesDownloadResponse' => '\\Ovh\\StructType\\TelephonyVoicemailMessagesDownloadResponse',
303
            'supportGetNicDomains' => '\\Ovh\\StructType\\SupportGetNicDomains',
304
            'supportGetNicDomainsResponse' => '\\Ovh\\StructType\\SupportGetNicDomainsResponse',
305
            'telephonyFaxCampaignCreation' => '\\Ovh\\StructType\\TelephonyFaxCampaignCreation',
306
            'telephonyFaxCampaignCreationResponse' => '\\Ovh\\StructType\\TelephonyFaxCampaignCreationResponse',
307
            'supportGetThreads' => '\\Ovh\\StructType\\SupportGetThreads',
308
            'supportGetThreadsResponse' => '\\Ovh\\StructType\\SupportGetThreadsResponse',
309
            'mailingListDel' => '\\Ovh\\StructType\\MailingListDel',
310
            'mailingListDelResponse' => '\\Ovh\\StructType\\MailingListDelResponse',
311
            'dedicatedFailoverRipeAdd' => '\\Ovh\\StructType\\DedicatedFailoverRipeAdd',
312
            'dedicatedFailoverRipeAddResponse' => '\\Ovh\\StructType\\DedicatedFailoverRipeAddResponse',
313
            'mailingListSubscriberAdd' => '\\Ovh\\StructType\\MailingListSubscriberAdd',
314
            'mailingListSubscriberAddResponse' => '\\Ovh\\StructType\\MailingListSubscriberAddResponse',
315
            'dedicatedFilterIrcClientRuleAdd' => '\\Ovh\\StructType\\DedicatedFilterIrcClientRuleAdd',
316
            'dedicatedFilterIrcClientRuleAddResponse' => '\\Ovh\\StructType\\DedicatedFilterIrcClientRuleAddResponse',
317
            'telephonyLineLogsNotificationOptions' => '\\Ovh\\StructType\\TelephonyLineLogsNotificationOptions',
318
            'telephonyLineLogsNotificationOptionsResponse' => '\\Ovh\\StructType\\TelephonyLineLogsNotificationOptionsResponse',
319
            'telephonyLineGetIpRestriction' => '\\Ovh\\StructType\\TelephonyLineGetIpRestriction',
320
            'telephonyLineGetIpRestrictionResponse' => '\\Ovh\\StructType\\TelephonyLineGetIpRestrictionResponse',
321
            'dedicatedInstallationTemplateList' => '\\Ovh\\StructType\\DedicatedInstallationTemplateList',
322
            'dedicatedInstallationTemplateListResponse' => '\\Ovh\\StructType\\DedicatedInstallationTemplateListResponse',
323
            'telephonyGetTimeZoneNumber' => '\\Ovh\\StructType\\TelephonyGetTimeZoneNumber',
324
            'telephonyGetTimeZoneNumberResponse' => '\\Ovh\\StructType\\TelephonyGetTimeZoneNumberResponse',
325
            'dedicatedBackupGetCalendar' => '\\Ovh\\StructType\\DedicatedBackupGetCalendar',
326
            'dedicatedBackupGetCalendarResponse' => '\\Ovh\\StructType\\DedicatedBackupGetCalendarResponse',
327
            'telephonyFMHuntingModificationMembers' => '\\Ovh\\StructType\\TelephonyFMHuntingModificationMembers',
328
            'telephonyFMHuntingModificationMembersResponse' => '\\Ovh\\StructType\\TelephonyFMHuntingModificationMembersResponse',
329
            'telephonyPhonebookAdd' => '\\Ovh\\StructType\\TelephonyPhonebookAdd',
330
            'telephonyPhonebookAddResponse' => '\\Ovh\\StructType\\TelephonyPhonebookAddResponse',
331
            'telephonyRestrictionModify' => '\\Ovh\\StructType\\TelephonyRestrictionModify',
332
            'telephonyRestrictionModifyResponse' => '\\Ovh\\StructType\\TelephonyRestrictionModifyResponse',
333
            'telephonyRatesList' => '\\Ovh\\StructType\\TelephonyRatesList',
334
            'telephonyRatesListResponse' => '\\Ovh\\StructType\\TelephonyRatesListResponse',
335
            'crontabDel' => '\\Ovh\\StructType\\CrontabDel',
336
            'crontabDelResponse' => '\\Ovh\\StructType\\CrontabDelResponse',
337
            'telephonyHuntingGenericScreenOptions' => '\\Ovh\\StructType\\TelephonyHuntingGenericScreenOptions',
338
            'telephonyHuntingGenericScreenOptionsResponse' => '\\Ovh\\StructType\\TelephonyHuntingGenericScreenOptionsResponse',
339
            'telephonyBillingAccountAdd' => '\\Ovh\\StructType\\TelephonyBillingAccountAdd',
340
            'telephonyBillingAccountAddResponse' => '\\Ovh\\StructType\\TelephonyBillingAccountAddResponse',
341
            'managedServicesIpAccessChange' => '\\Ovh\\StructType\\ManagedServicesIpAccessChange',
342
            'managedServicesIpAccessChangeResponse' => '\\Ovh\\StructType\\ManagedServicesIpAccessChangeResponse',
343
            'accountHistory' => '\\Ovh\\StructType\\AccountHistory',
344
            'accountHistoryResponse' => '\\Ovh\\StructType\\AccountHistoryResponse',
345
            'dedicatedIpLoadBalancingServerDel' => '\\Ovh\\StructType\\DedicatedIpLoadBalancingServerDel',
346
            'dedicatedIpLoadBalancingServerDelResponse' => '\\Ovh\\StructType\\DedicatedIpLoadBalancingServerDelResponse',
347
            'domainCheck' => '\\Ovh\\StructType\\DomainCheck',
348
            'domainCheckResponse' => '\\Ovh\\StructType\\DomainCheckResponse',
349
            'prepaidDomainTransfer' => '\\Ovh\\StructType\\PrepaidDomainTransfer',
350
            'prepaidDomainTransferResponse' => '\\Ovh\\StructType\\PrepaidDomainTransferResponse',
351
            'dedicatedEditServiceMonitoringItem' => '\\Ovh\\StructType\\DedicatedEditServiceMonitoringItem',
352
            'dedicatedEditServiceMonitoringItemResponse' => '\\Ovh\\StructType\\DedicatedEditServiceMonitoringItemResponse',
353
            'telephonySmsplusIsFreeKeyword' => '\\Ovh\\StructType\\TelephonySmsplusIsFreeKeyword',
354
            'telephonySmsplusIsFreeKeywordResponse' => '\\Ovh\\StructType\\TelephonySmsplusIsFreeKeywordResponse',
355
            'telephonyLineGetCodecs' => '\\Ovh\\StructType\\TelephonyLineGetCodecs',
356
            'telephonyLineGetCodecsResponse' => '\\Ovh\\StructType\\TelephonyLineGetCodecsResponse',
357
            'telephonySmsSenderValidate' => '\\Ovh\\StructType\\TelephonySmsSenderValidate',
358
            'telephonySmsSenderValidateResponse' => '\\Ovh\\StructType\\TelephonySmsSenderValidateResponse',
359
            'dedicatedIPForUDPServerList' => '\\Ovh\\StructType\\DedicatedIPForUDPServerList',
360
            'dedicatedIPForUDPServerListResponse' => '\\Ovh\\StructType\\DedicatedIPForUDPServerListResponse',
361
            'telephonyHuntingModificationSimultaneousCalls' => '\\Ovh\\StructType\\TelephonyHuntingModificationSimultaneousCalls',
362
            'telephonyHuntingModificationSimultaneousCallsResponse' => '\\Ovh\\StructType\\TelephonyHuntingModificationSimultaneousCallsResponse',
363
            'telephonyDirectoryInfoGetSameSiret' => '\\Ovh\\StructType\\TelephonyDirectoryInfoGetSameSiret',
364
            'telephonyDirectoryInfoGetSameSiretResponse' => '\\Ovh\\StructType\\TelephonyDirectoryInfoGetSameSiretResponse',
365
            'serviceGroupCreate' => '\\Ovh\\StructType\\ServiceGroupCreate',
366
            'serviceGroupCreateResponse' => '\\Ovh\\StructType\\ServiceGroupCreateResponse',
367
            'telephonyConferenceSetParams' => '\\Ovh\\StructType\\TelephonyConferenceSetParams',
368
            'telephonyConferenceSetParamsResponse' => '\\Ovh\\StructType\\TelephonyConferenceSetParamsResponse',
369
            'orderTelephonySmsCredit' => '\\Ovh\\StructType\\OrderTelephonySmsCredit',
370
            'orderTelephonySmsCreditResponse' => '\\Ovh\\StructType\\OrderTelephonySmsCreditResponse',
371
            'dedicatedBackupSet' => '\\Ovh\\StructType\\DedicatedBackupSet',
372
            'dedicatedBackupSetResponse' => '\\Ovh\\StructType\\DedicatedBackupSetResponse',
373
            'dedicatedVirtualMacIpDelete' => '\\Ovh\\StructType\\DedicatedVirtualMacIpDelete',
374
            'dedicatedVirtualMacIpDeleteResponse' => '\\Ovh\\StructType\\DedicatedVirtualMacIpDeleteResponse',
375
            'dedicatedFailoverRipeSplit' => '\\Ovh\\StructType\\DedicatedFailoverRipeSplit',
376
            'dedicatedFailoverRipeSplitResponse' => '\\Ovh\\StructType\\DedicatedFailoverRipeSplitResponse',
377
            'dedicatedReverseInfo' => '\\Ovh\\StructType\\DedicatedReverseInfo',
378
            'dedicatedReverseInfoResponse' => '\\Ovh\\StructType\\DedicatedReverseInfoResponse',
379
            'dedicatedCapabilitiesGetAll' => '\\Ovh\\StructType\\DedicatedCapabilitiesGetAll',
380
            'dedicatedCapabilitiesGetAllResponse' => '\\Ovh\\StructType\\DedicatedCapabilitiesGetAllResponse',
381
            'telephonySparePurchase' => '\\Ovh\\StructType\\TelephonySparePurchase',
382
            'telephonySparePurchaseResponse' => '\\Ovh\\StructType\\TelephonySparePurchaseResponse',
383
            'nic' => '\\Ovh\\StructType\\Nic',
384
            'nicResponse' => '\\Ovh\\StructType\\NicResponse',
385
            'telephonyFaxCampaignList' => '\\Ovh\\StructType\\TelephonyFaxCampaignList',
386
            'telephonyFaxCampaignListResponse' => '\\Ovh\\StructType\\TelephonyFaxCampaignListResponse',
387
            'dedicatedBackupIncludeAdd' => '\\Ovh\\StructType\\DedicatedBackupIncludeAdd',
388
            'dedicatedBackupIncludeAddResponse' => '\\Ovh\\StructType\\DedicatedBackupIncludeAddResponse',
389
            'ticketGet' => '\\Ovh\\StructType\\TicketGet',
390
            'ticketGetResponse' => '\\Ovh\\StructType\\TicketGetResponse',
391
            'supportSendMessage' => '\\Ovh\\StructType\\SupportSendMessage',
392
            'supportSendMessageResponse' => '\\Ovh\\StructType\\SupportSendMessageResponse',
393
            'dedicatedFailoverRipeList' => '\\Ovh\\StructType\\DedicatedFailoverRipeList',
394
            'dedicatedFailoverRipeListResponse' => '\\Ovh\\StructType\\DedicatedFailoverRipeListResponse',
395
            'telephonyNicGetMgcpIpRestriction' => '\\Ovh\\StructType\\TelephonyNicGetMgcpIpRestriction',
396
            'telephonyNicGetMgcpIpRestrictionResponse' => '\\Ovh\\StructType\\TelephonyNicGetMgcpIpRestrictionResponse',
397
            'telephonySmsGetUserQuotaForUser' => '\\Ovh\\StructType\\TelephonySmsGetUserQuotaForUser',
398
            'telephonySmsGetUserQuotaForUserResponse' => '\\Ovh\\StructType\\TelephonySmsGetUserQuotaForUserResponse',
399
            'telephonyDirectoryInfoGetSiret' => '\\Ovh\\StructType\\TelephonyDirectoryInfoGetSiret',
400
            'telephonyDirectoryInfoGetSiretResponse' => '\\Ovh\\StructType\\TelephonyDirectoryInfoGetSiretResponse',
401
            'dedicatedMonitoringServiceAdd' => '\\Ovh\\StructType\\DedicatedMonitoringServiceAdd',
402
            'dedicatedMonitoringServiceAddResponse' => '\\Ovh\\StructType\\DedicatedMonitoringServiceAddResponse',
403
            'dedicatedHardRebootDo' => '\\Ovh\\StructType\\DedicatedHardRebootDo',
404
            'dedicatedHardRebootDoResponse' => '\\Ovh\\StructType\\DedicatedHardRebootDoResponse',
405
            'dedicatedReverseList' => '\\Ovh\\StructType\\DedicatedReverseList',
406
            'dedicatedReverseListResponse' => '\\Ovh\\StructType\\DedicatedReverseListResponse',
407
            'domainWhoisObfuscatorSet' => '\\Ovh\\StructType\\DomainWhoisObfuscatorSet',
408
            'domainWhoisObfuscatorSetResponse' => '\\Ovh\\StructType\\DomainWhoisObfuscatorSetResponse',
409
            'telephonyFunctionKeyModify' => '\\Ovh\\StructType\\TelephonyFunctionKeyModify',
410
            'telephonyFunctionKeyModifyResponse' => '\\Ovh\\StructType\\TelephonyFunctionKeyModifyResponse',
411
            'nicTldEligibility' => '\\Ovh\\StructType\\NicTldEligibility',
412
            'nicTldEligibilityResponse' => '\\Ovh\\StructType\\NicTldEligibilityResponse',
413
            'automatedMailGetState' => '\\Ovh\\StructType\\AutomatedMailGetState',
414
            'automatedMailGetStateResponse' => '\\Ovh\\StructType\\AutomatedMailGetStateResponse',
415
            'telephonyAbbreviatedNumberList' => '\\Ovh\\StructType\\TelephonyAbbreviatedNumberList',
416
            'telephonyAbbreviatedNumberListResponse' => '\\Ovh\\StructType\\TelephonyAbbreviatedNumberListResponse',
417
            'sqlpriveMysqlLogs' => '\\Ovh\\StructType\\SqlpriveMysqlLogs',
418
            'sqlpriveMysqlLogsResponse' => '\\Ovh\\StructType\\SqlpriveMysqlLogsResponse',
419
            'telephonyFaxModifyPassword' => '\\Ovh\\StructType\\TelephonyFaxModifyPassword',
420
            'telephonyFaxModifyPasswordResponse' => '\\Ovh\\StructType\\TelephonyFaxModifyPasswordResponse',
421
            'dedicatedBackupFtpAdd' => '\\Ovh\\StructType\\DedicatedBackupFtpAdd',
422
            'dedicatedBackupFtpAddResponse' => '\\Ovh\\StructType\\DedicatedBackupFtpAddResponse',
423
            'databaseDump' => '\\Ovh\\StructType\\DatabaseDump',
424
            'databaseDumpResponse' => '\\Ovh\\StructType\\DatabaseDumpResponse',
425
            'telephonySmsDelete' => '\\Ovh\\StructType\\TelephonySmsDelete',
426
            'telephonySmsDeleteResponse' => '\\Ovh\\StructType\\TelephonySmsDeleteResponse',
427
            'telephonyDirectoryModifyPublication' => '\\Ovh\\StructType\\TelephonyDirectoryModifyPublication',
428
            'telephonyDirectoryModifyPublicationResponse' => '\\Ovh\\StructType\\TelephonyDirectoryModifyPublicationResponse',
429
            'domainResellerSet' => '\\Ovh\\StructType\\DomainResellerSet',
430
            'domainResellerSetResponse' => '\\Ovh\\StructType\\DomainResellerSetResponse',
431
            'crontabList' => '\\Ovh\\StructType\\CrontabList',
432
            'crontabListResponse' => '\\Ovh\\StructType\\CrontabListResponse',
433
            'telephonyPhonebookOnGroupAdd' => '\\Ovh\\StructType\\TelephonyPhonebookOnGroupAdd',
434
            'telephonyPhonebookOnGroupAddResponse' => '\\Ovh\\StructType\\TelephonyPhonebookOnGroupAddResponse',
435
            'dedicatedVirtualMacIpUsedGetList' => '\\Ovh\\StructType\\DedicatedVirtualMacIpUsedGetList',
436
            'dedicatedVirtualMacIpUsedGetListResponse' => '\\Ovh\\StructType\\DedicatedVirtualMacIpUsedGetListResponse',
437
            'telephonyLineSwitchOfferPossibility' => '\\Ovh\\StructType\\TelephonyLineSwitchOfferPossibility',
438
            'telephonyLineSwitchOfferPossibilityResponse' => '\\Ovh\\StructType\\TelephonyLineSwitchOfferPossibilityResponse',
439
            'telephonySmsSenderList' => '\\Ovh\\StructType\\TelephonySmsSenderList',
440
            'telephonySmsSenderListResponse' => '\\Ovh\\StructType\\TelephonySmsSenderListResponse',
441
            'resellerDomainRestore' => '\\Ovh\\StructType\\ResellerDomainRestore',
442
            'resellerDomainRestoreResponse' => '\\Ovh\\StructType\\ResellerDomainRestoreResponse',
443
            'ticketAnswer' => '\\Ovh\\StructType\\TicketAnswer',
444
            'ticketAnswerResponse' => '\\Ovh\\StructType\\TicketAnswerResponse',
445
            'sqlpriveCronSet' => '\\Ovh\\StructType\\SqlpriveCronSet',
446
            'sqlpriveCronSetResponse' => '\\Ovh\\StructType\\SqlpriveCronSetResponse',
447
            'telephonySipToAliasOffer' => '\\Ovh\\StructType\\TelephonySipToAliasOffer',
448
            'telephonySipToAliasOfferResponse' => '\\Ovh\\StructType\\TelephonySipToAliasOfferResponse',
449
            'telephonyFunctionKeyList' => '\\Ovh\\StructType\\TelephonyFunctionKeyList',
450
            'telephonyFunctionKeyListResponse' => '\\Ovh\\StructType\\TelephonyFunctionKeyListResponse',
451
            'dedicatedNetbootInfo' => '\\Ovh\\StructType\\DedicatedNetbootInfo',
452
            'dedicatedNetbootInfoResponse' => '\\Ovh\\StructType\\DedicatedNetbootInfoResponse',
453
            'telephonySmsGetCallBack' => '\\Ovh\\StructType\\TelephonySmsGetCallBack',
454
            'telephonySmsGetCallBackResponse' => '\\Ovh\\StructType\\TelephonySmsGetCallBackResponse',
455
            'telephonySviModify' => '\\Ovh\\StructType\\TelephonySviModify',
456
            'telephonySviModifyResponse' => '\\Ovh\\StructType\\TelephonySviModifyResponse',
457
            'telephonySmsplusServiceDelete' => '\\Ovh\\StructType\\TelephonySmsplusServiceDelete',
458
            'telephonySmsplusServiceDeleteResponse' => '\\Ovh\\StructType\\TelephonySmsplusServiceDeleteResponse',
459
            'domainOperationRelaunch' => '\\Ovh\\StructType\\DomainOperationRelaunch',
460
            'domainOperationRelaunchResponse' => '\\Ovh\\StructType\\DomainOperationRelaunchResponse',
461
            'telephonyLineSwitchOffer' => '\\Ovh\\StructType\\TelephonyLineSwitchOffer',
462
            'telephonyLineSwitchOfferResponse' => '\\Ovh\\StructType\\TelephonyLineSwitchOfferResponse',
463
            'telephonyTrunkExternalDisplayedNumberCheck' => '\\Ovh\\StructType\\TelephonyTrunkExternalDisplayedNumberCheck',
464
            'telephonyTrunkExternalDisplayedNumberCheckResponse' => '\\Ovh\\StructType\\TelephonyTrunkExternalDisplayedNumberCheckResponse',
465
            'telephonyDelClosureEvents' => '\\Ovh\\StructType\\TelephonyDelClosureEvents',
466
            'telephonyDelClosureEventsResponse' => '\\Ovh\\StructType\\TelephonyDelClosureEventsResponse',
467
            'telephonyFreefaxToVoicefaxCheckList' => '\\Ovh\\StructType\\TelephonyFreefaxToVoicefaxCheckList',
468
            'telephonyFreefaxToVoicefaxCheckListResponse' => '\\Ovh\\StructType\\TelephonyFreefaxToVoicefaxCheckListResponse',
469
            'telephonyVoicemailModifyPassword' => '\\Ovh\\StructType\\TelephonyVoicemailModifyPassword',
470
            'telephonyVoicemailModifyPasswordResponse' => '\\Ovh\\StructType\\TelephonyVoicemailModifyPasswordResponse',
471
            'telephonySpareCapabilities' => '\\Ovh\\StructType\\TelephonySpareCapabilities',
472
            'telephonySpareCapabilitiesResponse' => '\\Ovh\\StructType\\TelephonySpareCapabilitiesResponse',
473
            'dnsSoaModify' => '\\Ovh\\StructType\\DnsSoaModify',
474
            'dnsSoaModifyResponse' => '\\Ovh\\StructType\\DnsSoaModifyResponse',
475
            'telephonyPhonebookOnSmsDel' => '\\Ovh\\StructType\\TelephonyPhonebookOnSmsDel',
476
            'telephonyPhonebookOnSmsDelResponse' => '\\Ovh\\StructType\\TelephonyPhonebookOnSmsDelResponse',
477
            'telephonyPhonebookShare' => '\\Ovh\\StructType\\TelephonyPhonebookShare',
478
            'telephonyPhonebookShareResponse' => '\\Ovh\\StructType\\TelephonyPhonebookShareResponse',
479
            'telephonySmsSetUserQuota' => '\\Ovh\\StructType\\TelephonySmsSetUserQuota',
480
            'telephonySmsSetUserQuotaResponse' => '\\Ovh\\StructType\\TelephonySmsSetUserQuotaResponse',
481
            'cmsInstall' => '\\Ovh\\StructType\\CmsInstall',
482
            'cmsInstallResponse' => '\\Ovh\\StructType\\CmsInstallResponse',
483
            'dedicatedIpLoadBalancingAdd' => '\\Ovh\\StructType\\DedicatedIpLoadBalancingAdd',
484
            'dedicatedIpLoadBalancingAddResponse' => '\\Ovh\\StructType\\DedicatedIpLoadBalancingAddResponse',
485
            'supportGetAllVisibleCategories' => '\\Ovh\\StructType\\SupportGetAllVisibleCategories',
486
            'supportGetAllVisibleCategoriesResponse' => '\\Ovh\\StructType\\SupportGetAllVisibleCategoriesResponse',
487
            'telephonySmsHistoryCsv' => '\\Ovh\\StructType\\TelephonySmsHistoryCsv',
488
            'telephonySmsHistoryCsvResponse' => '\\Ovh\\StructType\\TelephonySmsHistoryCsvResponse',
489
            'telephonyAbbreviatedNumberOnGroupList' => '\\Ovh\\StructType\\TelephonyAbbreviatedNumberOnGroupList',
490
            'telephonyAbbreviatedNumberOnGroupListResponse' => '\\Ovh\\StructType\\TelephonyAbbreviatedNumberOnGroupListResponse',
491
            'dedicatedAvailableNotificationNicsGet' => '\\Ovh\\StructType\\DedicatedAvailableNotificationNicsGet',
492
            'dedicatedAvailableNotificationNicsGetResponse' => '\\Ovh\\StructType\\DedicatedAvailableNotificationNicsGetResponse',
493
            'telephonyLineLogs' => '\\Ovh\\StructType\\TelephonyLineLogs',
494
            'telephonyLineLogsResponse' => '\\Ovh\\StructType\\TelephonyLineLogsResponse',
495
            'multiFtpList' => '\\Ovh\\StructType\\MultiFtpList',
496
            'multiFtpListResponse' => '\\Ovh\\StructType\\MultiFtpListResponse',
497
            'telephonySpareReplace' => '\\Ovh\\StructType\\TelephonySpareReplace',
498
            'telephonySpareReplaceResponse' => '\\Ovh\\StructType\\TelephonySpareReplaceResponse',
499
            'multiFtpAdd' => '\\Ovh\\StructType\\MultiFtpAdd',
500
            'multiFtpAddResponse' => '\\Ovh\\StructType\\MultiFtpAddResponse',
501
            'sqlpriveMysqlDatabasePrivilegeList' => '\\Ovh\\StructType\\SqlpriveMysqlDatabasePrivilegeList',
502
            'sqlpriveMysqlDatabasePrivilegeListResponse' => '\\Ovh\\StructType\\SqlpriveMysqlDatabasePrivilegeListResponse',
503
            'emailAccessByNic' => '\\Ovh\\StructType\\EmailAccessByNic',
504
            'emailAccessByNicResponse' => '\\Ovh\\StructType\\EmailAccessByNicResponse',
505
            'telephonyClick2CallUserList' => '\\Ovh\\StructType\\TelephonyClick2CallUserList',
506
            'telephonyClick2CallUserListResponse' => '\\Ovh\\StructType\\TelephonyClick2CallUserListResponse',
507
            'zoneEntryDel' => '\\Ovh\\StructType\\ZoneEntryDel',
508
            'zoneEntryDelResponse' => '\\Ovh\\StructType\\ZoneEntryDelResponse',
509
            'prepaidSetThreshold' => '\\Ovh\\StructType\\PrepaidSetThreshold',
510
            'prepaidSetThresholdResponse' => '\\Ovh\\StructType\\PrepaidSetThresholdResponse',
511
            'telephonyVoicemailMailboxList' => '\\Ovh\\StructType\\TelephonyVoicemailMailboxList',
512
            'telephonyVoicemailMailboxListResponse' => '\\Ovh\\StructType\\TelephonyVoicemailMailboxListResponse',
513
            'resellerDomainRenew' => '\\Ovh\\StructType\\ResellerDomainRenew',
514
            'resellerDomainRenewResponse' => '\\Ovh\\StructType\\ResellerDomainRenewResponse',
515
            'popDel' => '\\Ovh\\StructType\\PopDel',
516
            'popDelResponse' => '\\Ovh\\StructType\\PopDelResponse',
517
            'telephonyFaxCampaignDetails' => '\\Ovh\\StructType\\TelephonyFaxCampaignDetails',
518
            'telephonyFaxCampaignDetailsResponse' => '\\Ovh\\StructType\\TelephonyFaxCampaignDetailsResponse',
519
            'emailFilterRuleDel' => '\\Ovh\\StructType\\EmailFilterRuleDel',
520
            'emailFilterRuleDelResponse' => '\\Ovh\\StructType\\EmailFilterRuleDelResponse',
521
            'telephonyPhonebookOnGroupDel' => '\\Ovh\\StructType\\TelephonyPhonebookOnGroupDel',
522
            'telephonyPhonebookOnGroupDelResponse' => '\\Ovh\\StructType\\TelephonyPhonebookOnGroupDelResponse',
523
            'telephonyPhonebookOnGroupList' => '\\Ovh\\StructType\\TelephonyPhonebookOnGroupList',
524
            'telephonyPhonebookOnGroupListResponse' => '\\Ovh\\StructType\\TelephonyPhonebookOnGroupListResponse',
525
            'telephonySpecialNumberCustomList' => '\\Ovh\\StructType\\TelephonySpecialNumberCustomList',
526
            'telephonySpecialNumberCustomListResponse' => '\\Ovh\\StructType\\TelephonySpecialNumberCustomListResponse',
527
            'dedicatedMonitoringServiceDel' => '\\Ovh\\StructType\\DedicatedMonitoringServiceDel',
528
            'dedicatedMonitoringServiceDelResponse' => '\\Ovh\\StructType\\DedicatedMonitoringServiceDelResponse',
529
            'telephonyFMHuntingModificationSimultaneousCalls' => '\\Ovh\\StructType\\TelephonyFMHuntingModificationSimultaneousCalls',
530
            'telephonyFMHuntingModificationSimultaneousCallsResponse' => '\\Ovh\\StructType\\TelephonyFMHuntingModificationSimultaneousCallsResponse',
531
            'emailFilterPriority' => '\\Ovh\\StructType\\EmailFilterPriority',
532
            'emailFilterPriorityResponse' => '\\Ovh\\StructType\\EmailFilterPriorityResponse',
533
            'accountAlertThresholdSet' => '\\Ovh\\StructType\\AccountAlertThresholdSet',
534
            'accountAlertThresholdSetResponse' => '\\Ovh\\StructType\\AccountAlertThresholdSetResponse',
535
            'emailFilterDel' => '\\Ovh\\StructType\\EmailFilterDel',
536
            'emailFilterDelResponse' => '\\Ovh\\StructType\\EmailFilterDelResponse',
537
            'resellerDomainCreate' => '\\Ovh\\StructType\\ResellerDomainCreate',
538
            'resellerDomainCreateResponse' => '\\Ovh\\StructType\\ResellerDomainCreateResponse',
539
            'managedServicesSnapshotUpdate' => '\\Ovh\\StructType\\ManagedServicesSnapshotUpdate',
540
            'managedServicesSnapshotUpdateResponse' => '\\Ovh\\StructType\\ManagedServicesSnapshotUpdateResponse',
541
            'supportGetThreadTree' => '\\Ovh\\StructType\\SupportGetThreadTree',
542
            'supportGetThreadTreeResponse' => '\\Ovh\\StructType\\SupportGetThreadTreeResponse',
543
            'emailSetDomainCatchAll' => '\\Ovh\\StructType\\EmailSetDomainCatchAll',
544
            'emailSetDomainCatchAllResponse' => '\\Ovh\\StructType\\EmailSetDomainCatchAllResponse',
545
            'domainCapabilities' => '\\Ovh\\StructType\\DomainCapabilities',
546
            'domainCapabilitiesResponse' => '\\Ovh\\StructType\\DomainCapabilitiesResponse',
547
            'dedicatedIpLoadBalancingServerStateModify' => '\\Ovh\\StructType\\DedicatedIpLoadBalancingServerStateModify',
548
            'dedicatedIpLoadBalancingServerStateModifyResponse' => '\\Ovh\\StructType\\DedicatedIpLoadBalancingServerStateModifyResponse',
549
            'telephonyVoicemailMailboxDownload' => '\\Ovh\\StructType\\TelephonyVoicemailMailboxDownload',
550
            'telephonyVoicemailMailboxDownloadResponse' => '\\Ovh\\StructType\\TelephonyVoicemailMailboxDownloadResponse',
551
            'dedicatedReverseModify' => '\\Ovh\\StructType\\DedicatedReverseModify',
552
            'dedicatedReverseModifyResponse' => '\\Ovh\\StructType\\DedicatedReverseModifyResponse',
553
            'telephonyNicGetIpRestriction' => '\\Ovh\\StructType\\TelephonyNicGetIpRestriction',
554
            'telephonyNicGetIpRestrictionResponse' => '\\Ovh\\StructType\\TelephonyNicGetIpRestrictionResponse',
555
            'telephonyGetClosureEventsAsArray' => '\\Ovh\\StructType\\TelephonyGetClosureEventsAsArray',
556
            'telephonyGetClosureEventsAsArrayResponse' => '\\Ovh\\ArrayType\\TelephonyGetClosureEventsAsArrayResponse',
557
            'telephonyPhonebookOnSmsContactDel' => '\\Ovh\\StructType\\TelephonyPhonebookOnSmsContactDel',
558
            'telephonyPhonebookOnSmsContactDelResponse' => '\\Ovh\\StructType\\TelephonyPhonebookOnSmsContactDelResponse',
559
            'telephonyReversmentsRefundIsPending' => '\\Ovh\\StructType\\TelephonyReversmentsRefundIsPending',
560
            'telephonyReversmentsRefundIsPendingResponse' => '\\Ovh\\StructType\\TelephonyReversmentsRefundIsPendingResponse',
561
            'serviceModifyContact' => '\\Ovh\\StructType\\ServiceModifyContact',
562
            'serviceModifyContactResponse' => '\\Ovh\\StructType\\ServiceModifyContactResponse',
563
            'telephonyScreenListInfoModify' => '\\Ovh\\StructType\\TelephonyScreenListInfoModify',
564
            'telephonyScreenListInfoModifyResponse' => '\\Ovh\\StructType\\TelephonyScreenListInfoModifyResponse',
565
            'dedicatedFailoverList' => '\\Ovh\\StructType\\DedicatedFailoverList',
566
            'dedicatedFailoverListResponse' => '\\Ovh\\StructType\\DedicatedFailoverListResponse',
567
            'domainDnsList' => '\\Ovh\\StructType\\DomainDnsList',
568
            'domainDnsListResponse' => '\\Ovh\\StructType\\DomainDnsListResponse',
569
            'emailDomainMxList' => '\\Ovh\\StructType\\EmailDomainMxList',
570
            'emailDomainMxListResponse' => '\\Ovh\\StructType\\EmailDomainMxListResponse',
571
            'managedServicesHostMasterIpGet' => '\\Ovh\\StructType\\ManagedServicesHostMasterIpGet',
572
            'managedServicesHostMasterIpGetResponse' => '\\Ovh\\StructType\\ManagedServicesHostMasterIpGetResponse',
573
            'dedicatedSecondaryDNSInfo' => '\\Ovh\\StructType\\DedicatedSecondaryDNSInfo',
574
            'dedicatedSecondaryDNSInfoResponse' => '\\Ovh\\StructType\\DedicatedSecondaryDNSInfoResponse',
575
            'telephonySmsplusServiceReversableTicketsList' => '\\Ovh\\StructType\\TelephonySmsplusServiceReversableTicketsList',
576
            'telephonySmsplusServiceReversableTicketsListResponse' => '\\Ovh\\StructType\\TelephonySmsplusServiceReversableTicketsListResponse',
577
            'dedicatedRipeUpdateInetnum' => '\\Ovh\\StructType\\DedicatedRipeUpdateInetnum',
578
            'dedicatedRipeUpdateInetnumResponse' => '\\Ovh\\StructType\\DedicatedRipeUpdateInetnumResponse',
579
            'ortDomainList' => '\\Ovh\\StructType\\OrtDomainList',
580
            'ortDomainListResponse' => '\\Ovh\\StructType\\OrtDomainListResponse',
581
            'telephonyHuntingGenericScreenStatusModify' => '\\Ovh\\StructType\\TelephonyHuntingGenericScreenStatusModify',
582
            'telephonyHuntingGenericScreenStatusModifyResponse' => '\\Ovh\\StructType\\TelephonyHuntingGenericScreenStatusModifyResponse',
583
            'telephonySmsBlacklistedSendersList' => '\\Ovh\\StructType\\TelephonySmsBlacklistedSendersList',
584
            'telephonySmsBlacklistedSendersListResponse' => '\\Ovh\\StructType\\TelephonySmsBlacklistedSendersListResponse',
585
            'telephonyPhonebookContactAdd' => '\\Ovh\\StructType\\TelephonyPhonebookContactAdd',
586
            'telephonyPhonebookContactAddResponse' => '\\Ovh\\StructType\\TelephonyPhonebookContactAddResponse',
587
            'domainOperationInfo' => '\\Ovh\\StructType\\DomainOperationInfo',
588
            'domainOperationInfoResponse' => '\\Ovh\\StructType\\DomainOperationInfoResponse',
589
            'dedicatedGetAvailableNetworkFromCountry' => '\\Ovh\\StructType\\DedicatedGetAvailableNetworkFromCountry',
590
            'dedicatedGetAvailableNetworkFromCountryResponse' => '\\Ovh\\StructType\\DedicatedGetAvailableNetworkFromCountryResponse',
591
            'telephonyPortabilityOrderSpecialNumber' => '\\Ovh\\StructType\\TelephonyPortabilityOrderSpecialNumber',
592
            'telephonyPortabilityOrderSpecialNumberResponse' => '\\Ovh\\StructType\\TelephonyPortabilityOrderSpecialNumberResponse',
593
            'billingGetReferencesToExpired' => '\\Ovh\\StructType\\BillingGetReferencesToExpired',
594
            'billingGetReferencesToExpiredResponse' => '\\Ovh\\StructType\\BillingGetReferencesToExpiredResponse',
595
            'dedicatedFailoverAdd' => '\\Ovh\\StructType\\DedicatedFailoverAdd',
596
            'dedicatedFailoverAddResponse' => '\\Ovh\\StructType\\DedicatedFailoverAddResponse',
597
            'telephonySmsUserSetCallBack' => '\\Ovh\\StructType\\TelephonySmsUserSetCallBack',
598
            'telephonySmsUserSetCallBackResponse' => '\\Ovh\\StructType\\TelephonySmsUserSetCallBackResponse',
599
            'prepaidGetSummary' => '\\Ovh\\StructType\\PrepaidGetSummary',
600
            'prepaidGetSummaryResponse' => '\\Ovh\\StructType\\PrepaidGetSummaryResponse',
601
            'domainDnsUpdate' => '\\Ovh\\StructType\\DomainDnsUpdate',
602
            'domainDnsUpdateResponse' => '\\Ovh\\StructType\\DomainDnsUpdateResponse',
603
            'emailFilterRuleAdd' => '\\Ovh\\StructType\\EmailFilterRuleAdd',
604
            'emailFilterRuleAddResponse' => '\\Ovh\\StructType\\EmailFilterRuleAddResponse',
605
            'ripeUpdateInetnum' => '\\Ovh\\StructType\\RipeUpdateInetnum',
606
            'ripeUpdateInetnumResponse' => '\\Ovh\\StructType\\RipeUpdateInetnumResponse',
607
            'domainResellerDel' => '\\Ovh\\StructType\\DomainResellerDel',
608
            'domainResellerDelResponse' => '\\Ovh\\StructType\\DomainResellerDelResponse',
609
            'telephonyPhonebookOnGroupModify' => '\\Ovh\\StructType\\TelephonyPhonebookOnGroupModify',
610
            'telephonyPhonebookOnGroupModifyResponse' => '\\Ovh\\StructType\\TelephonyPhonebookOnGroupModifyResponse',
611
            'telephonyLineSwitchOldOfferPossibility' => '\\Ovh\\StructType\\TelephonyLineSwitchOldOfferPossibility',
612
            'telephonyLineSwitchOldOfferPossibilityResponse' => '\\Ovh\\StructType\\TelephonyLineSwitchOldOfferPossibilityResponse',
613
            'resellerDomainCreateIT' => '\\Ovh\\StructType\\ResellerDomainCreateIT',
614
            'resellerDomainCreateITResponse' => '\\Ovh\\StructType\\ResellerDomainCreateITResponse',
615
            'telephonySmsplusServiceList' => '\\Ovh\\StructType\\TelephonySmsplusServiceList',
616
            'telephonySmsplusServiceListResponse' => '\\Ovh\\StructType\\TelephonySmsplusServiceListResponse',
617
            'telephonyHuntingModificationAnonymousCallRejection' => '\\Ovh\\StructType\\TelephonyHuntingModificationAnonymousCallRejection',
618
            'telephonyHuntingModificationAnonymousCallRejectionResponse' => '\\Ovh\\StructType\\TelephonyHuntingModificationAnonymousCallRejectionResponse',
619
            'dedicatedFilterIrcServerRuleList' => '\\Ovh\\StructType\\DedicatedFilterIrcServerRuleList',
620
            'dedicatedFilterIrcServerRuleListResponse' => '\\Ovh\\StructType\\DedicatedFilterIrcServerRuleListResponse',
621
            'telephonyNumberGetBillingAccount' => '\\Ovh\\StructType\\TelephonyNumberGetBillingAccount',
622
            'telephonyNumberGetBillingAccountResponse' => '\\Ovh\\StructType\\TelephonyNumberGetBillingAccountResponse',
623
            'managedServicesPartitionDelete' => '\\Ovh\\StructType\\ManagedServicesPartitionDelete',
624
            'managedServicesPartitionDeleteResponse' => '\\Ovh\\StructType\\ManagedServicesPartitionDeleteResponse',
625
            'telephonyTonesOptionsList' => '\\Ovh\\StructType\\TelephonyTonesOptionsList',
626
            'telephonyTonesOptionsListResponse' => '\\Ovh\\StructType\\TelephonyTonesOptionsListResponse',
627
            'telephonySpareList' => '\\Ovh\\StructType\\TelephonySpareList',
628
            'telephonySpareListResponse' => '\\Ovh\\StructType\\TelephonySpareListResponse',
629
            'supportReportAnswerProblem' => '\\Ovh\\StructType\\SupportReportAnswerProblem',
630
            'supportReportAnswerProblemResponse' => '\\Ovh\\StructType\\SupportReportAnswerProblemResponse',
631
            'multiDomainList' => '\\Ovh\\StructType\\MultiDomainList',
632
            'multiDomainListResponse' => '\\Ovh\\StructType\\MultiDomainListResponse',
633
            'ticketClose' => '\\Ovh\\StructType\\TicketClose',
634
            'ticketCloseResponse' => '\\Ovh\\StructType\\TicketCloseResponse',
635
            'dedicatedRipeCreateOrganisation' => '\\Ovh\\StructType\\DedicatedRipeCreateOrganisation',
636
            'dedicatedRipeCreateOrganisationResponse' => '\\Ovh\\StructType\\DedicatedRipeCreateOrganisationResponse',
637
            'telephonyListSummationCallsFromNumber' => '\\Ovh\\StructType\\TelephonyListSummationCallsFromNumber',
638
            'telephonyListSummationCallsFromNumberResponse' => '\\Ovh\\StructType\\TelephonyListSummationCallsFromNumberResponse',
639
            'telephonyConferenceGetParams' => '\\Ovh\\StructType\\TelephonyConferenceGetParams',
640
            'telephonyConferenceGetParamsResponse' => '\\Ovh\\StructType\\TelephonyConferenceGetParamsResponse',
641
            'telephonyPhonebookContactModify' => '\\Ovh\\StructType\\TelephonyPhonebookContactModify',
642
            'telephonyPhonebookContactModifyResponse' => '\\Ovh\\StructType\\TelephonyPhonebookContactModifyResponse',
643
            'domainDnsGetOvhDefault' => '\\Ovh\\StructType\\DomainDnsGetOvhDefault',
644
            'domainDnsGetOvhDefaultResponse' => '\\Ovh\\StructType\\DomainDnsGetOvhDefaultResponse',
645
            'telephonyLineList' => '\\Ovh\\StructType\\TelephonyLineList',
646
            'telephonyLineListResponse' => '\\Ovh\\StructType\\TelephonyLineListResponse',
647
            'databaseCreate' => '\\Ovh\\StructType\\DatabaseCreate',
648
            'databaseCreateResponse' => '\\Ovh\\StructType\\DatabaseCreateResponse',
649
            'billingGetAccessByNic' => '\\Ovh\\StructType\\BillingGetAccessByNic',
650
            'billingGetAccessByNicResponse' => '\\Ovh\\StructType\\BillingGetAccessByNicResponse',
651
            'dedicatedBackupExcludeAdd' => '\\Ovh\\StructType\\DedicatedBackupExcludeAdd',
652
            'dedicatedBackupExcludeAddResponse' => '\\Ovh\\StructType\\DedicatedBackupExcludeAddResponse',
653
            'serviceModifyOwner' => '\\Ovh\\StructType\\ServiceModifyOwner',
654
            'serviceModifyOwnerResponse' => '\\Ovh\\StructType\\ServiceModifyOwnerResponse',
655
            'telephonyLineOptionsModify' => '\\Ovh\\StructType\\TelephonyLineOptionsModify',
656
            'telephonyLineOptionsModifyResponse' => '\\Ovh\\StructType\\TelephonyLineOptionsModifyResponse',
657
            'telephonyHuntingGenericScreenSet' => '\\Ovh\\StructType\\TelephonyHuntingGenericScreenSet',
658
            'telephonyHuntingGenericScreenSetResponse' => '\\Ovh\\StructType\\TelephonyHuntingGenericScreenSetResponse',
659
            'sqlpriveCronDel' => '\\Ovh\\StructType\\SqlpriveCronDel',
660
            'sqlpriveCronDelResponse' => '\\Ovh\\StructType\\SqlpriveCronDelResponse',
661
            'telephonyFaxCampaignStartStop' => '\\Ovh\\StructType\\TelephonyFaxCampaignStartStop',
662
            'telephonyFaxCampaignStartStopResponse' => '\\Ovh\\StructType\\TelephonyFaxCampaignStartStopResponse',
663
            'dedicatedFilterIrcServerRuleDel' => '\\Ovh\\StructType\\DedicatedFilterIrcServerRuleDel',
664
            'dedicatedFilterIrcServerRuleDelResponse' => '\\Ovh\\StructType\\DedicatedFilterIrcServerRuleDelResponse',
665
            'hostingGetCapabilities' => '\\Ovh\\StructType\\HostingGetCapabilities',
666
            'hostingGetCapabilitiesResponse' => '\\Ovh\\StructType\\HostingGetCapabilitiesResponse',
667
            'domainWhoisObfuscatorUnset' => '\\Ovh\\StructType\\DomainWhoisObfuscatorUnset',
668
            'domainWhoisObfuscatorUnsetResponse' => '\\Ovh\\StructType\\DomainWhoisObfuscatorUnsetResponse',
669
            'domainHostDel' => '\\Ovh\\StructType\\DomainHostDel',
670
            'domainHostDelResponse' => '\\Ovh\\StructType\\DomainHostDelResponse',
671
            'dedicatedFailoverRipeModify' => '\\Ovh\\StructType\\DedicatedFailoverRipeModify',
672
            'dedicatedFailoverRipeModifyResponse' => '\\Ovh\\StructType\\DedicatedFailoverRipeModifyResponse',
673
            'responderEmailDel' => '\\Ovh\\StructType\\ResponderEmailDel',
674
            'responderEmailDelResponse' => '\\Ovh\\StructType\\ResponderEmailDelResponse',
675
            'dedicatedMonitoringList' => '\\Ovh\\StructType\\DedicatedMonitoringList',
676
            'dedicatedMonitoringListResponse' => '\\Ovh\\StructType\\DedicatedMonitoringListResponse',
677
            'telephonyDirectoryModifyAddress' => '\\Ovh\\StructType\\TelephonyDirectoryModifyAddress',
678
            'telephonyDirectoryModifyAddressResponse' => '\\Ovh\\StructType\\TelephonyDirectoryModifyAddressResponse',
679
            'managedServicesPartitionStatusCheck' => '\\Ovh\\StructType\\ManagedServicesPartitionStatusCheck',
680
            'managedServicesPartitionStatusCheckResponse' => '\\Ovh\\StructType\\ManagedServicesPartitionStatusCheckResponse',
681
            'cmsAvailableList' => '\\Ovh\\StructType\\CmsAvailableList',
682
            'cmsAvailableListResponse' => '\\Ovh\\StructType\\CmsAvailableListResponse',
683
            'telephonyNicSetMgcpIpRestriction' => '\\Ovh\\StructType\\TelephonyNicSetMgcpIpRestriction',
684
            'telephonyNicSetMgcpIpRestrictionResponse' => '\\Ovh\\StructType\\TelephonyNicSetMgcpIpRestrictionResponse',
685
            'telephonySecurityDepositCredit' => '\\Ovh\\StructType\\TelephonySecurityDepositCredit',
686
            'telephonySecurityDepositCreditResponse' => '\\Ovh\\StructType\\TelephonySecurityDepositCreditResponse',
687
            'nicModifyLanguage' => '\\Ovh\\StructType\\NicModifyLanguage',
688
            'nicModifyLanguageResponse' => '\\Ovh\\StructType\\NicModifyLanguageResponse',
689
            'telephonyLineOrder' => '\\Ovh\\StructType\\TelephonyLineOrder',
690
            'telephonyLineOrderResponse' => '\\Ovh\\StructType\\TelephonyLineOrderResponse',
691
            'telephonyConferenceAction' => '\\Ovh\\StructType\\TelephonyConferenceAction',
692
            'telephonyConferenceActionResponse' => '\\Ovh\\StructType\\TelephonyConferenceActionResponse',
693
            'dedicatedBackupExcludeDel' => '\\Ovh\\StructType\\DedicatedBackupExcludeDel',
694
            'dedicatedBackupExcludeDelResponse' => '\\Ovh\\StructType\\DedicatedBackupExcludeDelResponse',
695
            'automatedMailUnlock' => '\\Ovh\\StructType\\AutomatedMailUnlock',
696
            'automatedMailUnlockResponse' => '\\Ovh\\StructType\\AutomatedMailUnlockResponse',
697
            'ripeQuery' => '\\Ovh\\StructType\\RipeQuery',
698
            'ripeQueryResponse' => '\\Ovh\\StructType\\RipeQueryResponse',
699
            'login' => '\\Ovh\\StructType\\Login',
700
            'loginResponse' => '\\Ovh\\StructType\\LoginResponse',
701
            'telephonyFunctionKeyDel' => '\\Ovh\\StructType\\TelephonyFunctionKeyDel',
702
            'telephonyFunctionKeyDelResponse' => '\\Ovh\\StructType\\TelephonyFunctionKeyDelResponse',
703
            'popListByMasterNic' => '\\Ovh\\StructType\\PopListByMasterNic',
704
            'popListByMasterNicResponse' => '\\Ovh\\StructType\\PopListByMasterNicResponse',
705
            'serviceModifyOwnerInfos' => '\\Ovh\\StructType\\ServiceModifyOwnerInfos',
706
            'serviceModifyOwnerInfosResponse' => '\\Ovh\\StructType\\ServiceModifyOwnerInfosResponse',
707
            'dedicatedHardRebootStatus' => '\\Ovh\\StructType\\DedicatedHardRebootStatus',
708
            'dedicatedHardRebootStatusResponse' => '\\Ovh\\StructType\\DedicatedHardRebootStatusResponse',
709
            'domainInfo' => '\\Ovh\\StructType\\DomainInfo',
710
            'domainInfoResponse' => '\\Ovh\\StructType\\DomainInfoResponse',
711
            'dedicatedGetServiceMonitoringItem' => '\\Ovh\\StructType\\DedicatedGetServiceMonitoringItem',
712
            'dedicatedGetServiceMonitoringItemResponse' => '\\Ovh\\StructType\\DedicatedGetServiceMonitoringItemResponse',
713
            'telephonyNicGetSipDomain' => '\\Ovh\\StructType\\TelephonyNicGetSipDomain',
714
            'telephonyNicGetSipDomainResponse' => '\\Ovh\\StructType\\TelephonyNicGetSipDomainResponse',
715
            'telephonyGetClosureEventsAsICS' => '\\Ovh\\StructType\\TelephonyGetClosureEventsAsICS',
716
            'telephonyGetClosureEventsAsICSResponse' => '\\Ovh\\StructType\\TelephonyGetClosureEventsAsICSResponse',
717
            'telephonySmsUserCreditLeft' => '\\Ovh\\StructType\\TelephonySmsUserCreditLeft',
718
            'telephonySmsUserCreditLeftResponse' => '\\Ovh\\StructType\\TelephonySmsUserCreditLeftResponse',
719
            'telephonyPortabilityOrder' => '\\Ovh\\StructType\\TelephonyPortabilityOrder',
720
            'telephonyPortabilityOrderResponse' => '\\Ovh\\StructType\\TelephonyPortabilityOrderResponse',
721
            'passwordSoapi' => '\\Ovh\\StructType\\PasswordSoapi',
722
            'passwordSoapiResponse' => '\\Ovh\\StructType\\PasswordSoapiResponse',
723
            'nicCreate' => '\\Ovh\\StructType\\NicCreate',
724
            'nicCreateResponse' => '\\Ovh\\StructType\\NicCreateResponse',
725
            'cmsRemove' => '\\Ovh\\StructType\\CmsRemove',
726
            'cmsRemoveResponse' => '\\Ovh\\StructType\\CmsRemoveResponse',
727
            'telephonyVoicemailMailboxDelete' => '\\Ovh\\StructType\\TelephonyVoicemailMailboxDelete',
728
            'telephonyVoicemailMailboxDeleteResponse' => '\\Ovh\\StructType\\TelephonyVoicemailMailboxDeleteResponse',
729
            'sqlpriveMysqlDatabaseImportFromHost' => '\\Ovh\\StructType\\SqlpriveMysqlDatabaseImportFromHost',
730
            'sqlpriveMysqlDatabaseImportFromHostResponse' => '\\Ovh\\StructType\\SqlpriveMysqlDatabaseImportFromHostResponse',
731
            'billingInvoiceInfo' => '\\Ovh\\StructType\\BillingInvoiceInfo',
732
            'billingInvoiceInfoResponse' => '\\Ovh\\StructType\\BillingInvoiceInfoResponse',
733
            'telephonyBillingAccountDel' => '\\Ovh\\StructType\\TelephonyBillingAccountDel',
734
            'telephonyBillingAccountDelResponse' => '\\Ovh\\StructType\\TelephonyBillingAccountDelResponse',
735
            'version' => '\\Ovh\\StructType\\Version',
736
            'versionResponse' => '\\Ovh\\StructType\\VersionResponse',
737
            'orderAccountCredit' => '\\Ovh\\StructType\\OrderAccountCredit',
738
            'orderAccountCreditResponse' => '\\Ovh\\StructType\\OrderAccountCreditResponse',
739
            'telephonyNumberClean' => '\\Ovh\\StructType\\TelephonyNumberClean',
740
            'telephonyNumberCleanResponse' => '\\Ovh\\StructType\\TelephonyNumberCleanResponse',
741
            'dedicatedReverseAdd' => '\\Ovh\\StructType\\DedicatedReverseAdd',
742
            'dedicatedReverseAddResponse' => '\\Ovh\\StructType\\DedicatedReverseAddResponse',
743
            'dedicatedBackupGetFreePlanning' => '\\Ovh\\StructType\\DedicatedBackupGetFreePlanning',
744
            'dedicatedBackupGetFreePlanningResponse' => '\\Ovh\\StructType\\DedicatedBackupGetFreePlanningResponse',
745
            'dedicatedInstallAllowedDistributionGet' => '\\Ovh\\StructType\\DedicatedInstallAllowedDistributionGet',
746
            'dedicatedInstallAllowedDistributionGetResponse' => '\\Ovh\\StructType\\DedicatedInstallAllowedDistributionGetResponse',
747
            'subDomainModify' => '\\Ovh\\StructType\\SubDomainModify',
748
            'subDomainModifyResponse' => '\\Ovh\\StructType\\SubDomainModifyResponse',
749
            'telephonyPlugAndPhoneOperation' => '\\Ovh\\StructType\\TelephonyPlugAndPhoneOperation',
750
            'telephonyPlugAndPhoneOperationResponse' => '\\Ovh\\StructType\\TelephonyPlugAndPhoneOperationResponse',
751
            'nicInfo' => '\\Ovh\\StructType\\NicInfo',
752
            'nicInfoResponse' => '\\Ovh\\StructType\\NicInfoResponse',
753
            'anonymousFtpInfo' => '\\Ovh\\StructType\\AnonymousFtpInfo',
754
            'anonymousFtpInfoResponse' => '\\Ovh\\StructType\\AnonymousFtpInfoResponse',
755
            'dedicatedCapabilitiesGet' => '\\Ovh\\StructType\\DedicatedCapabilitiesGet',
756
            'dedicatedCapabilitiesGetResponse' => '\\Ovh\\StructType\\DedicatedCapabilitiesGetResponse',
757
            'telephonyPhonebookOnSmsContactModify' => '\\Ovh\\StructType\\TelephonyPhonebookOnSmsContactModify',
758
            'telephonyPhonebookOnSmsContactModifyResponse' => '\\Ovh\\StructType\\TelephonyPhonebookOnSmsContactModifyResponse',
759
            'telephonyPhonebookOnSmsModify' => '\\Ovh\\StructType\\TelephonyPhonebookOnSmsModify',
760
            'telephonyPhonebookOnSmsModifyResponse' => '\\Ovh\\StructType\\TelephonyPhonebookOnSmsModifyResponse',
761
            'cmsList' => '\\Ovh\\StructType\\CmsList',
762
            'cmsListResponse' => '\\Ovh\\StructType\\CmsListResponse',
763
            'telephonySmsSetQuotaNotification' => '\\Ovh\\StructType\\TelephonySmsSetQuotaNotification',
764
            'telephonySmsSetQuotaNotificationResponse' => '\\Ovh\\StructType\\TelephonySmsSetQuotaNotificationResponse',
765
            'dedicatedMonitoringSMSDel' => '\\Ovh\\StructType\\DedicatedMonitoringSMSDel',
766
            'dedicatedMonitoringSMSDelResponse' => '\\Ovh\\StructType\\DedicatedMonitoringSMSDelResponse',
767
            'telephonySmsUserList' => '\\Ovh\\StructType\\TelephonySmsUserList',
768
            'telephonySmsUserListResponse' => '\\Ovh\\StructType\\TelephonySmsUserListResponse',
769
            'ripeDeleteOrganisation' => '\\Ovh\\StructType\\RipeDeleteOrganisation',
770
            'ripeDeleteOrganisationResponse' => '\\Ovh\\StructType\\RipeDeleteOrganisationResponse',
771
            'logsAccessList' => '\\Ovh\\StructType\\LogsAccessList',
772
            'logsAccessListResponse' => '\\Ovh\\StructType\\LogsAccessListResponse',
773
            'telephonyHuntingInfo' => '\\Ovh\\StructType\\TelephonyHuntingInfo',
774
            'telephonyHuntingInfoResponse' => '\\Ovh\\StructType\\TelephonyHuntingInfoResponse',
775
            'dedicatedMonitoringAdd' => '\\Ovh\\StructType\\DedicatedMonitoringAdd',
776
            'dedicatedMonitoringAddResponse' => '\\Ovh\\StructType\\DedicatedMonitoringAddResponse',
777
            'telephonyPhonebookContactList' => '\\Ovh\\StructType\\TelephonyPhonebookContactList',
778
            'telephonyPhonebookContactListResponse' => '\\Ovh\\StructType\\TelephonyPhonebookContactListResponse',
779
            'resellerDomainTransferASIA' => '\\Ovh\\StructType\\ResellerDomainTransferASIA',
780
            'resellerDomainTransferASIAResponse' => '\\Ovh\\StructType\\ResellerDomainTransferASIAResponse',
781
            'telephonySmsUserPassword' => '\\Ovh\\StructType\\TelephonySmsUserPassword',
782
            'telephonySmsUserPasswordResponse' => '\\Ovh\\StructType\\TelephonySmsUserPasswordResponse',
783
            'domainHostList' => '\\Ovh\\StructType\\DomainHostList',
784
            'domainHostListResponse' => '\\Ovh\\StructType\\DomainHostListResponse',
785
            'hostingChangeMainDomain' => '\\Ovh\\StructType\\HostingChangeMainDomain',
786
            'hostingChangeMainDomainResponse' => '\\Ovh\\StructType\\HostingChangeMainDomainResponse',
787
            'telephonyLineGetOfferPrices' => '\\Ovh\\StructType\\TelephonyLineGetOfferPrices',
788
            'telephonyLineGetOfferPricesResponse' => '\\Ovh\\StructType\\TelephonyLineGetOfferPricesResponse',
789
            'telephonySmsGetQuotaNotification' => '\\Ovh\\StructType\\TelephonySmsGetQuotaNotification',
790
            'telephonySmsGetQuotaNotificationResponse' => '\\Ovh\\StructType\\TelephonySmsGetQuotaNotificationResponse',
791
            'telephonyHuntingModificationMode' => '\\Ovh\\StructType\\TelephonyHuntingModificationMode',
792
            'telephonyHuntingModificationModeResponse' => '\\Ovh\\StructType\\TelephonyHuntingModificationModeResponse',
793
            'telephonyScreenListBlackWhiteChoice' => '\\Ovh\\StructType\\TelephonyScreenListBlackWhiteChoice',
794
            'telephonyScreenListBlackWhiteChoiceResponse' => '\\Ovh\\StructType\\TelephonyScreenListBlackWhiteChoiceResponse',
795
            'telephonySmsDeleteCsvAttachment' => '\\Ovh\\StructType\\TelephonySmsDeleteCsvAttachment',
796
            'telephonySmsDeleteCsvAttachmentResponse' => '\\Ovh\\StructType\\TelephonySmsDeleteCsvAttachmentResponse',
797
            'telephonyNumberZoneAndPrefixList' => '\\Ovh\\StructType\\TelephonyNumberZoneAndPrefixList',
798
            'telephonyNumberZoneAndPrefixListResponse' => '\\Ovh\\StructType\\TelephonyNumberZoneAndPrefixListResponse',
799
            'serviceGroupDelete' => '\\Ovh\\StructType\\ServiceGroupDelete',
800
            'serviceGroupDeleteResponse' => '\\Ovh\\StructType\\ServiceGroupDeleteResponse',
801
            'dedicatedOperationList' => '\\Ovh\\StructType\\DedicatedOperationList',
802
            'dedicatedOperationListResponse' => '\\Ovh\\StructType\\DedicatedOperationListResponse',
803
            'telephonyLineSetSipDomain' => '\\Ovh\\StructType\\TelephonyLineSetSipDomain',
804
            'telephonyLineSetSipDomainResponse' => '\\Ovh\\StructType\\TelephonyLineSetSipDomainResponse',
805
            'telephonyTrunkExternalDisplayedNumberDel' => '\\Ovh\\StructType\\TelephonyTrunkExternalDisplayedNumberDel',
806
            'telephonyTrunkExternalDisplayedNumberDelResponse' => '\\Ovh\\StructType\\TelephonyTrunkExternalDisplayedNumberDelResponse',
807
            'mailingListModeratorAdd' => '\\Ovh\\StructType\\MailingListModeratorAdd',
808
            'mailingListModeratorAddResponse' => '\\Ovh\\StructType\\MailingListModeratorAddResponse',
809
            'telephonyPhonebookOnGroupContactList' => '\\Ovh\\StructType\\TelephonyPhonebookOnGroupContactList',
810
            'telephonyPhonebookOnGroupContactListResponse' => '\\Ovh\\StructType\\TelephonyPhonebookOnGroupContactListResponse',
811
            'telephonySmsplusServiceReversableTicketsSummary' => '\\Ovh\\StructType\\TelephonySmsplusServiceReversableTicketsSummary',
812
            'telephonySmsplusServiceReversableTicketsSummaryResponse' => '\\Ovh\\StructType\\TelephonySmsplusServiceReversableTicketsSummaryResponse',
813
            'anonymousFtpActivate' => '\\Ovh\\StructType\\AnonymousFtpActivate',
814
            'anonymousFtpActivateResponse' => '\\Ovh\\StructType\\AnonymousFtpActivateResponse',
815
            'telephonyDeleteLine' => '\\Ovh\\StructType\\TelephonyDeleteLine',
816
            'telephonyDeleteLineResponse' => '\\Ovh\\StructType\\TelephonyDeleteLineResponse',
817
            'nicModifyInfosIT' => '\\Ovh\\StructType\\NicModifyInfosIT',
818
            'nicModifyInfosITResponse' => '\\Ovh\\StructType\\NicModifyInfosITResponse',
819
            'telephonySetTimeZoneNumber' => '\\Ovh\\StructType\\TelephonySetTimeZoneNumber',
820
            'telephonySetTimeZoneNumberResponse' => '\\Ovh\\StructType\\TelephonySetTimeZoneNumberResponse',
821
            'ortDomainAdd' => '\\Ovh\\StructType\\OrtDomainAdd',
822
            'ortDomainAddResponse' => '\\Ovh\\StructType\\OrtDomainAddResponse',
823
            'nicPublicInfo' => '\\Ovh\\StructType\\NicPublicInfo',
824
            'nicPublicInfoResponse' => '\\Ovh\\StructType\\NicPublicInfoResponse',
825
            'sqlpriveAlertSet' => '\\Ovh\\StructType\\SqlpriveAlertSet',
826
            'sqlpriveAlertSetResponse' => '\\Ovh\\StructType\\SqlpriveAlertSetResponse',
827
            'telephonyNicSetIpRestriction' => '\\Ovh\\StructType\\TelephonyNicSetIpRestriction',
828
            'telephonyNicSetIpRestrictionResponse' => '\\Ovh\\StructType\\TelephonyNicSetIpRestrictionResponse',
829
            'dedicatedBackupIncludeDel' => '\\Ovh\\StructType\\DedicatedBackupIncludeDel',
830
            'dedicatedBackupIncludeDelResponse' => '\\Ovh\\StructType\\DedicatedBackupIncludeDelResponse',
831
            'dedicatedBandwidthSwitching' => '\\Ovh\\StructType\\DedicatedBandwidthSwitching',
832
            'dedicatedBandwidthSwitchingResponse' => '\\Ovh\\StructType\\DedicatedBandwidthSwitchingResponse',
833
            'dedicatedIpLoadBalancingDel' => '\\Ovh\\StructType\\DedicatedIpLoadBalancingDel',
834
            'dedicatedIpLoadBalancingDelResponse' => '\\Ovh\\StructType\\DedicatedIpLoadBalancingDelResponse',
835
            'sqlpriveMysqlOvhMyAdmin' => '\\Ovh\\StructType\\SqlpriveMysqlOvhMyAdmin',
836
            'sqlpriveMysqlOvhMyAdminResponse' => '\\Ovh\\StructType\\SqlpriveMysqlOvhMyAdminResponse',
837
            'ftpInfo' => '\\Ovh\\StructType\\FtpInfo',
838
            'ftpInfoResponse' => '\\Ovh\\StructType\\FtpInfoResponse',
839
            'telephonyPortabilityStatus' => '\\Ovh\\StructType\\TelephonyPortabilityStatus',
840
            'telephonyPortabilityStatusResponse' => '\\Ovh\\StructType\\TelephonyPortabilityStatusResponse',
841
            'hostingList' => '\\Ovh\\StructType\\HostingList',
842
            'hostingListResponse' => '\\Ovh\\StructType\\HostingListResponse',
843
            'orderEmailMxPlan' => '\\Ovh\\StructType\\OrderEmailMxPlan',
844
            'orderEmailMxPlanResponse' => '\\Ovh\\StructType\\OrderEmailMxPlanResponse',
845
            'dedicatedInstallationTemplateUse' => '\\Ovh\\StructType\\DedicatedInstallationTemplateUse',
846
            'dedicatedInstallationTemplateUseResponse' => '\\Ovh\\StructType\\DedicatedInstallationTemplateUseResponse',
847
            'mailingListSubscriberList' => '\\Ovh\\StructType\\MailingListSubscriberList',
848
            'mailingListSubscriberListResponse' => '\\Ovh\\StructType\\MailingListSubscriberListResponse',
849
            'mailingListSubscriberDel' => '\\Ovh\\StructType\\MailingListSubscriberDel',
850
            'mailingListSubscriberDelResponse' => '\\Ovh\\StructType\\MailingListSubscriberDelResponse',
851
            'domainLockStatus' => '\\Ovh\\StructType\\DomainLockStatus',
852
            'domainLockStatusResponse' => '\\Ovh\\StructType\\DomainLockStatusResponse',
853
            'prepaidDomainRenew' => '\\Ovh\\StructType\\PrepaidDomainRenew',
854
            'prepaidDomainRenewResponse' => '\\Ovh\\StructType\\PrepaidDomainRenewResponse',
855
            'orderEmailMxLarge' => '\\Ovh\\StructType\\OrderEmailMxLarge',
856
            'orderEmailMxLargeResponse' => '\\Ovh\\StructType\\OrderEmailMxLargeResponse',
857
            'emailFilterActive' => '\\Ovh\\StructType\\EmailFilterActive',
858
            'emailFilterActiveResponse' => '\\Ovh\\StructType\\EmailFilterActiveResponse',
859
            'telephonySecurityDepositInfo' => '\\Ovh\\StructType\\TelephonySecurityDepositInfo',
860
            'telephonySecurityDepositInfoResponse' => '\\Ovh\\StructType\\TelephonySecurityDepositInfoResponse',
861
            'databaseList' => '\\Ovh\\StructType\\DatabaseList',
862
            'databaseListResponse' => '\\Ovh\\StructType\\DatabaseListResponse',
863
            'dedicatedIpLoadBalancingServerAdd' => '\\Ovh\\StructType\\DedicatedIpLoadBalancingServerAdd',
864
            'dedicatedIpLoadBalancingServerAddResponse' => '\\Ovh\\StructType\\DedicatedIpLoadBalancingServerAddResponse',
865
            'resellerDomainCreateCAT' => '\\Ovh\\StructType\\ResellerDomainCreateCAT',
866
            'resellerDomainCreateCATResponse' => '\\Ovh\\StructType\\ResellerDomainCreateCATResponse',
867
            'telephonySmsListCsvAttachment' => '\\Ovh\\StructType\\TelephonySmsListCsvAttachment',
868
            'telephonySmsListCsvAttachmentResponse' => '\\Ovh\\StructType\\TelephonySmsListCsvAttachmentResponse',
869
            'ftpChangePassword' => '\\Ovh\\StructType\\FtpChangePassword',
870
            'ftpChangePasswordResponse' => '\\Ovh\\StructType\\FtpChangePasswordResponse',
871
            'orderDedicatedFailover' => '\\Ovh\\StructType\\OrderDedicatedFailover',
872
            'orderDedicatedFailoverResponse' => '\\Ovh\\StructType\\OrderDedicatedFailoverResponse',
873
            'dedicatedRipeUpdateOrganisation' => '\\Ovh\\StructType\\DedicatedRipeUpdateOrganisation',
874
            'dedicatedRipeUpdateOrganisationResponse' => '\\Ovh\\StructType\\DedicatedRipeUpdateOrganisationResponse',
875
            'cmsRenewAdminPassword' => '\\Ovh\\StructType\\CmsRenewAdminPassword',
876
            'cmsRenewAdminPasswordResponse' => '\\Ovh\\StructType\\CmsRenewAdminPasswordResponse',
877
            'dedicatedNetbootModifyById' => '\\Ovh\\StructType\\DedicatedNetbootModifyById',
878
            'dedicatedNetbootModifyByIdResponse' => '\\Ovh\\StructType\\DedicatedNetbootModifyByIdResponse',
879
            'telephonySmsCancelSending' => '\\Ovh\\StructType\\TelephonySmsCancelSending',
880
            'telephonySmsCancelSendingResponse' => '\\Ovh\\StructType\\TelephonySmsCancelSendingResponse',
881
            'telephonyScreenListInfo' => '\\Ovh\\StructType\\TelephonyScreenListInfo',
882
            'telephonyScreenListInfoResponse' => '\\Ovh\\StructType\\TelephonyScreenListInfoResponse',
883
            'telephonyLineLogsOnGroup' => '\\Ovh\\StructType\\TelephonyLineLogsOnGroup',
884
            'telephonyLineLogsOnGroupResponse' => '\\Ovh\\StructType\\TelephonyLineLogsOnGroupResponse',
885
            'telephonyLineGetMgcpIpRestriction' => '\\Ovh\\StructType\\TelephonyLineGetMgcpIpRestriction',
886
            'telephonyLineGetMgcpIpRestrictionResponse' => '\\Ovh\\StructType\\TelephonyLineGetMgcpIpRestrictionResponse',
887
            'databaseDelete' => '\\Ovh\\StructType\\DatabaseDelete',
888
            'databaseDeleteResponse' => '\\Ovh\\StructType\\DatabaseDeleteResponse',
889
            'resellerDomainCreateASIA' => '\\Ovh\\StructType\\ResellerDomainCreateASIA',
890
            'resellerDomainCreateASIAResponse' => '\\Ovh\\StructType\\ResellerDomainCreateASIAResponse',
891
            'telephonyLineDetails' => '\\Ovh\\StructType\\TelephonyLineDetails',
892
            'telephonyLineDetailsResponse' => '\\Ovh\\StructType\\TelephonyLineDetailsResponse',
893
            'telephonyPhonebookContactDel' => '\\Ovh\\StructType\\TelephonyPhonebookContactDel',
894
            'telephonyPhonebookContactDelResponse' => '\\Ovh\\StructType\\TelephonyPhonebookContactDelResponse',
895
            'ticketCreate' => '\\Ovh\\StructType\\TicketCreate',
896
            'ticketCreateResponse' => '\\Ovh\\StructType\\TicketCreateResponse',
897
            'subDomainAdd' => '\\Ovh\\StructType\\SubDomainAdd',
898
            'subDomainAddResponse' => '\\Ovh\\StructType\\SubDomainAddResponse',
899
            'dedicatedBackupGetDate' => '\\Ovh\\StructType\\DedicatedBackupGetDate',
900
            'dedicatedBackupGetDateResponse' => '\\Ovh\\StructType\\DedicatedBackupGetDateResponse',
901
            'dedicatedSecondaryDNSDel' => '\\Ovh\\StructType\\DedicatedSecondaryDNSDel',
902
            'dedicatedSecondaryDNSDelResponse' => '\\Ovh\\StructType\\DedicatedSecondaryDNSDelResponse',
903
            'domainLock' => '\\Ovh\\StructType\\DomainLock',
904
            'domainLockResponse' => '\\Ovh\\StructType\\DomainLockResponse',
905
            'telephonyRatesListCsv' => '\\Ovh\\StructType\\TelephonyRatesListCsv',
906
            'telephonyRatesListCsvResponse' => '\\Ovh\\StructType\\TelephonyRatesListCsvResponse',
907
            'emailFilterList' => '\\Ovh\\StructType\\EmailFilterList',
908
            'emailFilterListResponse' => '\\Ovh\\StructType\\EmailFilterListResponse',
909
            'zoneEntryAdd' => '\\Ovh\\StructType\\ZoneEntryAdd',
910
            'zoneEntryAddResponse' => '\\Ovh\\StructType\\ZoneEntryAddResponse',
911
            'telephonyConferenceGetInfos' => '\\Ovh\\StructType\\TelephonyConferenceGetInfos',
912
            'telephonyConferenceGetInfosResponse' => '\\Ovh\\StructType\\TelephonyConferenceGetInfosResponse',
913
            'dedicatedSecondaryDNSGetAll' => '\\Ovh\\StructType\\DedicatedSecondaryDNSGetAll',
914
            'dedicatedSecondaryDNSGetAllResponse' => '\\Ovh\\StructType\\DedicatedSecondaryDNSGetAllResponse',
915
            'infrastructureIpListGet' => '\\Ovh\\StructType\\InfrastructureIpListGet',
916
            'infrastructureIpListGetResponse' => '\\Ovh\\StructType\\InfrastructureIpListGetResponse',
917
            'mailingListInfo' => '\\Ovh\\StructType\\MailingListInfo',
918
            'mailingListInfoResponse' => '\\Ovh\\StructType\\MailingListInfoResponse',
919
            'serviceList' => '\\Ovh\\StructType\\ServiceList',
920
            'serviceListResponse' => '\\Ovh\\StructType\\ServiceListResponse',
921
            'serviceGroupSetComment' => '\\Ovh\\StructType\\ServiceGroupSetComment',
922
            'serviceGroupSetCommentResponse' => '\\Ovh\\StructType\\ServiceGroupSetCommentResponse',
923
            'telephonyPhonebookOnSmsContactList' => '\\Ovh\\StructType\\TelephonyPhonebookOnSmsContactList',
924
            'telephonyPhonebookOnSmsContactListResponse' => '\\Ovh\\StructType\\TelephonyPhonebookOnSmsContactListResponse',
925
            'nicCreateIT' => '\\Ovh\\StructType\\NicCreateIT',
926
            'nicCreateITResponse' => '\\Ovh\\StructType\\NicCreateITResponse',
927
            'telephonyPhonebookOnSmsContactAdd' => '\\Ovh\\StructType\\TelephonyPhonebookOnSmsContactAdd',
928
            'telephonyPhonebookOnSmsContactAddResponse' => '\\Ovh\\StructType\\TelephonyPhonebookOnSmsContactAddResponse',
929
            'dedicatedMonitoringNotificationDel' => '\\Ovh\\StructType\\DedicatedMonitoringNotificationDel',
930
            'dedicatedMonitoringNotificationDelResponse' => '\\Ovh\\StructType\\DedicatedMonitoringNotificationDelResponse',
931
            'domainOperationCancel' => '\\Ovh\\StructType\\DomainOperationCancel',
932
            'domainOperationCancelResponse' => '\\Ovh\\StructType\\DomainOperationCancelResponse',
933
            'telephonyFMHuntingModificationAnonymousCallRejection' => '\\Ovh\\StructType\\TelephonyFMHuntingModificationAnonymousCallRejection',
934
            'telephonyFMHuntingModificationAnonymousCallRejectionResponse' => '\\Ovh\\StructType\\TelephonyFMHuntingModificationAnonymousCallRejectionResponse',
935
            'dedicatedBandwidthManagementGet' => '\\Ovh\\StructType\\DedicatedBandwidthManagementGet',
936
            'dedicatedBandwidthManagementGetResponse' => '\\Ovh\\StructType\\DedicatedBandwidthManagementGetResponse',
937
            'telephonyDdiModify' => '\\Ovh\\StructType\\TelephonyDdiModify',
938
            'telephonyDdiModifyResponse' => '\\Ovh\\StructType\\TelephonyDdiModifyResponse',
939
            'dedicatedMonitoringStatusUpdate' => '\\Ovh\\StructType\\DedicatedMonitoringStatusUpdate',
940
            'dedicatedMonitoringStatusUpdateResponse' => '\\Ovh\\StructType\\DedicatedMonitoringStatusUpdateResponse',
941
            'dedicatedIPForUDPMoveGetStatus' => '\\Ovh\\StructType\\DedicatedIPForUDPMoveGetStatus',
942
            'dedicatedIPForUDPMoveGetStatusResponse' => '\\Ovh\\StructType\\DedicatedIPForUDPMoveGetStatusResponse',
943
            'telephonyRedirectInfo' => '\\Ovh\\StructType\\TelephonyRedirectInfo',
944
            'telephonyRedirectInfoResponse' => '\\Ovh\\StructType\\TelephonyRedirectInfoResponse',
945
            'anonymousFtpChangePassword' => '\\Ovh\\StructType\\AnonymousFtpChangePassword',
946
            'anonymousFtpChangePasswordResponse' => '\\Ovh\\StructType\\AnonymousFtpChangePasswordResponse',
947
            'telephonySmsSend' => '\\Ovh\\StructType\\TelephonySmsSend',
948
            'telephonySmsSendResponse' => '\\Ovh\\StructType\\TelephonySmsSendResponse',
949
            'automatedMailLock' => '\\Ovh\\StructType\\AutomatedMailLock',
950
            'automatedMailLockResponse' => '\\Ovh\\StructType\\AutomatedMailLockResponse',
951
            'dedicatedRipeDeleteOrganisation' => '\\Ovh\\StructType\\DedicatedRipeDeleteOrganisation',
952
            'dedicatedRipeDeleteOrganisationResponse' => '\\Ovh\\StructType\\DedicatedRipeDeleteOrganisationResponse',
953
            'dedicatedFailoverRipeGetIp' => '\\Ovh\\StructType\\DedicatedFailoverRipeGetIp',
954
            'dedicatedFailoverRipeGetIpResponse' => '\\Ovh\\StructType\\DedicatedFailoverRipeGetIpResponse',
955
            'responderEmailModify' => '\\Ovh\\StructType\\ResponderEmailModify',
956
            'responderEmailModifyResponse' => '\\Ovh\\StructType\\ResponderEmailModifyResponse',
957
            'dedicatedInstallBasic' => '\\Ovh\\StructType\\DedicatedInstallBasic',
958
            'dedicatedInstallBasicResponse' => '\\Ovh\\StructType\\DedicatedInstallBasicResponse',
959
            'emailGetDomainMxFiltering' => '\\Ovh\\StructType\\EmailGetDomainMxFiltering',
960
            'emailGetDomainMxFilteringResponse' => '\\Ovh\\StructType\\EmailGetDomainMxFilteringResponse',
961
            'managedServicesPartitionCreate' => '\\Ovh\\StructType\\ManagedServicesPartitionCreate',
962
            'managedServicesPartitionCreateResponse' => '\\Ovh\\StructType\\ManagedServicesPartitionCreateResponse',
963
            'telephonyLineGetSipDomain' => '\\Ovh\\StructType\\TelephonyLineGetSipDomain',
964
            'telephonyLineGetSipDomainResponse' => '\\Ovh\\StructType\\TelephonyLineGetSipDomainResponse',
965
            'nicModifyEmail' => '\\Ovh\\StructType\\NicModifyEmail',
966
            'nicModifyEmailResponse' => '\\Ovh\\StructType\\NicModifyEmailResponse',
967
            'telephonyToneDelete' => '\\Ovh\\StructType\\TelephonyToneDelete',
968
            'telephonyToneDeleteResponse' => '\\Ovh\\StructType\\TelephonyToneDeleteResponse',
969
            'telephonyLineSetMgcpIpRestriction' => '\\Ovh\\StructType\\TelephonyLineSetMgcpIpRestriction',
970
            'telephonyLineSetMgcpIpRestrictionResponse' => '\\Ovh\\StructType\\TelephonyLineSetMgcpIpRestrictionResponse',
971
            'dedicatedInstallReset' => '\\Ovh\\StructType\\DedicatedInstallReset',
972
            'dedicatedInstallResetResponse' => '\\Ovh\\StructType\\DedicatedInstallResetResponse',
973
            'dedicatedMonitoringServiceAddNotification' => '\\Ovh\\StructType\\DedicatedMonitoringServiceAddNotification',
974
            'dedicatedMonitoringServiceAddNotificationResponse' => '\\Ovh\\StructType\\DedicatedMonitoringServiceAddNotificationResponse',
975
            'orderDedicatedFailoverRipe' => '\\Ovh\\StructType\\OrderDedicatedFailoverRipe',
976
            'orderDedicatedFailoverRipeResponse' => '\\Ovh\\StructType\\OrderDedicatedFailoverRipeResponse',
977
            'telephonyPhonebookOnGroupContactModify' => '\\Ovh\\StructType\\TelephonyPhonebookOnGroupContactModify',
978
            'telephonyPhonebookOnGroupContactModifyResponse' => '\\Ovh\\StructType\\TelephonyPhonebookOnGroupContactModifyResponse',
979
            'serviceGroupRemoveService' => '\\Ovh\\StructType\\ServiceGroupRemoveService',
980
            'serviceGroupRemoveServiceResponse' => '\\Ovh\\StructType\\ServiceGroupRemoveServiceResponse',
981
            'telephonyScreenListBlackWhiteChoiceModify' => '\\Ovh\\StructType\\TelephonyScreenListBlackWhiteChoiceModify',
982
            'telephonyScreenListBlackWhiteChoiceModifyResponse' => '\\Ovh\\StructType\\TelephonyScreenListBlackWhiteChoiceModifyResponse',
983
            'telephonySmsplusServiceDetails' => '\\Ovh\\StructType\\TelephonySmsplusServiceDetails',
984
            'telephonySmsplusServiceDetailsResponse' => '\\Ovh\\StructType\\TelephonySmsplusServiceDetailsResponse',
985
            'dedicatedFilterIrcClientRuleDel' => '\\Ovh\\StructType\\DedicatedFilterIrcClientRuleDel',
986
            'dedicatedFilterIrcClientRuleDelResponse' => '\\Ovh\\StructType\\DedicatedFilterIrcClientRuleDelResponse',
987
            'domainHostAdd' => '\\Ovh\\StructType\\DomainHostAdd',
988
            'domainHostAddResponse' => '\\Ovh\\StructType\\DomainHostAddResponse',
989
            'popModifyDescription' => '\\Ovh\\StructType\\PopModifyDescription',
990
            'popModifyDescriptionResponse' => '\\Ovh\\StructType\\PopModifyDescriptionResponse',
991
            'telephonyAbbreviatedNumberOnGroupDel' => '\\Ovh\\StructType\\TelephonyAbbreviatedNumberOnGroupDel',
992
            'telephonyAbbreviatedNumberOnGroupDelResponse' => '\\Ovh\\StructType\\TelephonyAbbreviatedNumberOnGroupDelResponse',
993
            'crontabAdd' => '\\Ovh\\StructType\\CrontabAdd',
994
            'crontabAddResponse' => '\\Ovh\\StructType\\CrontabAddResponse',
995
            'telephonySmsSenderDescription' => '\\Ovh\\StructType\\TelephonySmsSenderDescription',
996
            'telephonySmsSenderDescriptionResponse' => '\\Ovh\\StructType\\TelephonySmsSenderDescriptionResponse',
997
            'mailingListModify' => '\\Ovh\\StructType\\MailingListModify',
998
            'mailingListModifyResponse' => '\\Ovh\\StructType\\MailingListModifyResponse',
999
            'managedServicesPartitionGet' => '\\Ovh\\StructType\\ManagedServicesPartitionGet',
1000
            'managedServicesPartitionGetResponse' => '\\Ovh\\StructType\\ManagedServicesPartitionGetResponse',
1001
            'telephonyAbbreviatedNumberListPaginated' => '\\Ovh\\StructType\\TelephonyAbbreviatedNumberListPaginated',
1002
            'telephonyAbbreviatedNumberListPaginatedResponse' => '\\Ovh\\StructType\\TelephonyAbbreviatedNumberListPaginatedResponse',
1003
            'telephonySetDefaultPrivateHolidaysEvents' => '\\Ovh\\StructType\\TelephonySetDefaultPrivateHolidaysEvents',
1004
            'telephonySetDefaultPrivateHolidaysEventsResponse' => '\\Ovh\\StructType\\TelephonySetDefaultPrivateHolidaysEventsResponse',
1005
            'emailDelMasterNic' => '\\Ovh\\StructType\\EmailDelMasterNic',
1006
            'emailDelMasterNicResponse' => '\\Ovh\\StructType\\EmailDelMasterNicResponse',
1007
            'redirectedEmailModify' => '\\Ovh\\StructType\\RedirectedEmailModify',
1008
            'redirectedEmailModifyResponse' => '\\Ovh\\StructType\\RedirectedEmailModifyResponse',
1009
            'telephonySpareServiceList' => '\\Ovh\\StructType\\TelephonySpareServiceList',
1010
            'telephonySpareServiceListResponse' => '\\Ovh\\StructType\\TelephonySpareServiceListResponse',
1011
            'popInfo' => '\\Ovh\\StructType\\PopInfo',
1012
            'popInfoResponse' => '\\Ovh\\StructType\\PopInfoResponse',
1013
            'zoneExport' => '\\Ovh\\StructType\\ZoneExport',
1014
            'zoneExportResponse' => '\\Ovh\\StructType\\ZoneExportResponse',
1015
            'dedicatedMrtgInfo' => '\\Ovh\\StructType\\DedicatedMrtgInfo',
1016
            'dedicatedMrtgInfoResponse' => '\\Ovh\\StructType\\DedicatedMrtgInfoResponse',
1017
            'dedicatedBackupReinstallData' => '\\Ovh\\StructType\\DedicatedBackupReinstallData',
1018
            'dedicatedBackupReinstallDataResponse' => '\\Ovh\\StructType\\DedicatedBackupReinstallDataResponse',
1019
            'serviceFreedomList' => '\\Ovh\\StructType\\ServiceFreedomList',
1020
            'serviceFreedomListResponse' => '\\Ovh\\StructType\\ServiceFreedomListResponse',
1021
            'supportGetFullMessage' => '\\Ovh\\StructType\\SupportGetFullMessage',
1022
            'supportGetFullMessageResponse' => '\\Ovh\\StructType\\SupportGetFullMessageResponse',
1023
            'telephonySmsUserListCsvAttachment' => '\\Ovh\\StructType\\TelephonySmsUserListCsvAttachment',
1024
            'telephonySmsUserListCsvAttachmentResponse' => '\\Ovh\\StructType\\TelephonySmsUserListCsvAttachmentResponse',
1025
            'emailGetDomainCatchAll' => '\\Ovh\\StructType\\EmailGetDomainCatchAll',
1026
            'emailGetDomainCatchAllResponse' => '\\Ovh\\StructType\\EmailGetDomainCatchAllResponse',
1027
            'telephonyFaxCallList' => '\\Ovh\\StructType\\TelephonyFaxCallList',
1028
            'telephonyFaxCallListResponse' => '\\Ovh\\StructType\\TelephonyFaxCallListResponse',
1029
            'telephonySmsUserSend' => '\\Ovh\\StructType\\TelephonySmsUserSend',
1030
            'telephonySmsUserSendResponse' => '\\Ovh\\StructType\\TelephonySmsUserSendResponse',
1031
            'mailingListAdd' => '\\Ovh\\StructType\\MailingListAdd',
1032
            'mailingListAddResponse' => '\\Ovh\\StructType\\MailingListAddResponse',
1033
            'dedicatedBackupFtpInfo' => '\\Ovh\\StructType\\DedicatedBackupFtpInfo',
1034
            'dedicatedBackupFtpInfoResponse' => '\\Ovh\\StructType\\DedicatedBackupFtpInfoResponse',
1035
            'telephonyPhonebookOnGroupGroupList' => '\\Ovh\\StructType\\TelephonyPhonebookOnGroupGroupList',
1036
            'telephonyPhonebookOnGroupGroupListResponse' => '\\Ovh\\StructType\\TelephonyPhonebookOnGroupGroupListResponse',
1037
            'telephonyClick2CallUserPassword' => '\\Ovh\\StructType\\TelephonyClick2CallUserPassword',
1038
            'telephonyClick2CallUserPasswordResponse' => '\\Ovh\\StructType\\TelephonyClick2CallUserPasswordResponse',
1039
            'dedicatedMonitoringModify' => '\\Ovh\\StructType\\DedicatedMonitoringModify',
1040
            'dedicatedMonitoringModifyResponse' => '\\Ovh\\StructType\\DedicatedMonitoringModifyResponse',
1041
            'emailSetMasterNic' => '\\Ovh\\StructType\\EmailSetMasterNic',
1042
            'emailSetMasterNicResponse' => '\\Ovh\\StructType\\EmailSetMasterNicResponse',
1043
            'sqlpriveMysqlDatabaseList' => '\\Ovh\\StructType\\SqlpriveMysqlDatabaseList',
1044
            'sqlpriveMysqlDatabaseListResponse' => '\\Ovh\\StructType\\SqlpriveMysqlDatabaseListResponse',
1045
            'automatedMailReturnSet' => '\\Ovh\\StructType\\AutomatedMailReturnSet',
1046
            'automatedMailReturnSetResponse' => '\\Ovh\\StructType\\AutomatedMailReturnSetResponse',
1047
            'databaseRecreate' => '\\Ovh\\StructType\\DatabaseRecreate',
1048
            'databaseRecreateResponse' => '\\Ovh\\StructType\\DatabaseRecreateResponse',
1049
            'popModifyPassword' => '\\Ovh\\StructType\\PopModifyPassword',
1050
            'popModifyPasswordResponse' => '\\Ovh\\StructType\\PopModifyPasswordResponse',
1051
            'responderEmailAdd' => '\\Ovh\\StructType\\ResponderEmailAdd',
1052
            'responderEmailAddResponse' => '\\Ovh\\StructType\\ResponderEmailAddResponse',
1053
            'sqlpriveMysqlProcessList' => '\\Ovh\\StructType\\SqlpriveMysqlProcessList',
1054
            'sqlpriveMysqlProcessListResponse' => '\\Ovh\\StructType\\SqlpriveMysqlProcessListResponse',
1055
            'telephonySmsGetUserQuota' => '\\Ovh\\StructType\\TelephonySmsGetUserQuota',
1056
            'telephonySmsGetUserQuotaResponse' => '\\Ovh\\StructType\\TelephonySmsGetUserQuotaResponse',
1057
            'dedicatedGetRandomAvailableIpFromCountry' => '\\Ovh\\StructType\\DedicatedGetRandomAvailableIpFromCountry',
1058
            'dedicatedGetRandomAvailableIpFromCountryResponse' => '\\Ovh\\StructType\\DedicatedGetRandomAvailableIpFromCountryResponse',
1059
            'telephonySmsSenderDelete' => '\\Ovh\\StructType\\TelephonySmsSenderDelete',
1060
            'telephonySmsSenderDeleteResponse' => '\\Ovh\\StructType\\TelephonySmsSenderDeleteResponse',
1061
            'telephonyToneStatus' => '\\Ovh\\StructType\\TelephonyToneStatus',
1062
            'telephonyToneStatusResponse' => '\\Ovh\\StructType\\TelephonyToneStatusResponse',
1063
            'telephonyDdiInfo' => '\\Ovh\\StructType\\TelephonyDdiInfo',
1064
            'telephonyDdiInfoResponse' => '\\Ovh\\StructType\\TelephonyDdiInfoResponse',
1065
            'dedicatedInstallBasicProgress' => '\\Ovh\\StructType\\DedicatedInstallBasicProgress',
1066
            'dedicatedInstallBasicProgressResponse' => '\\Ovh\\StructType\\DedicatedInstallBasicProgressResponse',
1067
            'dedicatedAddServiceMonitoringAlertEmail' => '\\Ovh\\StructType\\DedicatedAddServiceMonitoringAlertEmail',
1068
            'dedicatedAddServiceMonitoringAlertEmailResponse' => '\\Ovh\\StructType\\DedicatedAddServiceMonitoringAlertEmailResponse',
1069
            'telephonyHuntingGroupList' => '\\Ovh\\StructType\\TelephonyHuntingGroupList',
1070
            'telephonyHuntingGroupListResponse' => '\\Ovh\\StructType\\TelephonyHuntingGroupListResponse',
1071
            'dedicatedFailoverUpdate' => '\\Ovh\\StructType\\DedicatedFailoverUpdate',
1072
            'dedicatedFailoverUpdateResponse' => '\\Ovh\\StructType\\DedicatedFailoverUpdateResponse',
1073
            'telephonyTrunkExternalDisplayedNumberList' => '\\Ovh\\StructType\\TelephonyTrunkExternalDisplayedNumberList',
1074
            'telephonyTrunkExternalDisplayedNumberListResponse' => '\\Ovh\\StructType\\TelephonyTrunkExternalDisplayedNumberListResponse',
1075
            'telephonyDirectoryListWayType' => '\\Ovh\\StructType\\TelephonyDirectoryListWayType',
1076
            'telephonyDirectoryListWayTypeResponse' => '\\Ovh\\StructType\\TelephonyDirectoryListWayTypeResponse',
1077
            'telephonySmsUserHistoryCsv' => '\\Ovh\\StructType\\TelephonySmsUserHistoryCsv',
1078
            'telephonySmsUserHistoryCsvResponse' => '\\Ovh\\StructType\\TelephonySmsUserHistoryCsvResponse',
1079
            'telephonyCallList' => '\\Ovh\\StructType\\TelephonyCallList',
1080
            'telephonyCallListResponse' => '\\Ovh\\StructType\\TelephonyCallListResponse',
1081
            'managedServicesPartitionUpdate' => '\\Ovh\\StructType\\ManagedServicesPartitionUpdate',
1082
            'managedServicesPartitionUpdateResponse' => '\\Ovh\\StructType\\ManagedServicesPartitionUpdateResponse',
1083
            'telephonyGetDefaultPrivateHolidaysEvents' => '\\Ovh\\StructType\\TelephonyGetDefaultPrivateHolidaysEvents',
1084
            'telephonyGetDefaultPrivateHolidaysEventsResponse' => '\\Ovh\\StructType\\TelephonyGetDefaultPrivateHolidaysEventsResponse',
1085
            'telephonySmsplusShortCodesList' => '\\Ovh\\StructType\\TelephonySmsplusShortCodesList',
1086
            'telephonySmsplusShortCodesListResponse' => '\\Ovh\\StructType\\TelephonySmsplusShortCodesListResponse',
1087
            'dedicatedFilterIrcServerRuleAdd' => '\\Ovh\\StructType\\DedicatedFilterIrcServerRuleAdd',
1088
            'dedicatedFilterIrcServerRuleAddResponse' => '\\Ovh\\StructType\\DedicatedFilterIrcServerRuleAddResponse',
1089
            'dedicatedVirtualMacIpAdd' => '\\Ovh\\StructType\\DedicatedVirtualMacIpAdd',
1090
            'dedicatedVirtualMacIpAddResponse' => '\\Ovh\\StructType\\DedicatedVirtualMacIpAddResponse',
1091
            'telephonyAliasToSipPossibilities' => '\\Ovh\\StructType\\TelephonyAliasToSipPossibilities',
1092
            'telephonyAliasToSipPossibilitiesResponse' => '\\Ovh\\StructType\\TelephonyAliasToSipPossibilitiesResponse',
1093
            'telephonyAbbreviatedNumberOnGroupAdd' => '\\Ovh\\StructType\\TelephonyAbbreviatedNumberOnGroupAdd',
1094
            'telephonyAbbreviatedNumberOnGroupAddResponse' => '\\Ovh\\StructType\\TelephonyAbbreviatedNumberOnGroupAddResponse',
1095
            'telephonyHuntingModificationQueue' => '\\Ovh\\StructType\\TelephonyHuntingModificationQueue',
1096
            'telephonyHuntingModificationQueueResponse' => '\\Ovh\\StructType\\TelephonyHuntingModificationQueueResponse',
1097
            'telephonyDirectoryInfo' => '\\Ovh\\StructType\\TelephonyDirectoryInfo',
1098
            'telephonyDirectoryInfoResponse' => '\\Ovh\\StructType\\TelephonyDirectoryInfoResponse',
1099
            'telephonyBillDetails' => '\\Ovh\\StructType\\TelephonyBillDetails',
1100
            'telephonyBillDetailsResponse' => '\\Ovh\\StructType\\TelephonyBillDetailsResponse',
1101
            'dedicatedRipeGetRipeIds' => '\\Ovh\\StructType\\DedicatedRipeGetRipeIds',
1102
            'dedicatedRipeGetRipeIdsResponse' => '\\Ovh\\StructType\\DedicatedRipeGetRipeIdsResponse',
1103
            'telephonyLineLogsNotificationOptionsModify' => '\\Ovh\\StructType\\TelephonyLineLogsNotificationOptionsModify',
1104
            'telephonyLineLogsNotificationOptionsModifyResponse' => '\\Ovh\\StructType\\TelephonyLineLogsNotificationOptionsModifyResponse',
1105
            'dnsInstallCustom' => '\\Ovh\\StructType\\DnsInstallCustom',
1106
            'dnsInstallCustomResponse' => '\\Ovh\\StructType\\DnsInstallCustomResponse',
1107
            'sqlpriveMysqlActivateOvhManagement' => '\\Ovh\\StructType\\SqlpriveMysqlActivateOvhManagement',
1108
            'sqlpriveMysqlActivateOvhManagementResponse' => '\\Ovh\\StructType\\SqlpriveMysqlActivateOvhManagementResponse',
1109
            'telephonyClick2CallDoBySession' => '\\Ovh\\StructType\\TelephonyClick2CallDoBySession',
1110
            'telephonyClick2CallDoBySessionResponse' => '\\Ovh\\StructType\\TelephonyClick2CallDoBySessionResponse',
1111
            'prepaidGetThreshold' => '\\Ovh\\StructType\\PrepaidGetThreshold',
1112
            'prepaidGetThresholdResponse' => '\\Ovh\\StructType\\PrepaidGetThresholdResponse',
1113
            'telephonyAbbreviatedNumberAdd' => '\\Ovh\\StructType\\TelephonyAbbreviatedNumberAdd',
1114
            'telephonyAbbreviatedNumberAddResponse' => '\\Ovh\\StructType\\TelephonyAbbreviatedNumberAddResponse',
1115
            'domainWhoisObfuscatorUnsetAll' => '\\Ovh\\StructType\\DomainWhoisObfuscatorUnsetAll',
1116
            'domainWhoisObfuscatorUnsetAllResponse' => '\\Ovh\\StructType\\DomainWhoisObfuscatorUnsetAllResponse',
1117
            'multiFtpDel' => '\\Ovh\\StructType\\MultiFtpDel',
1118
            'multiFtpDelResponse' => '\\Ovh\\StructType\\MultiFtpDelResponse',
1119
            'sqlpriveMysqlGetPossibleDump' => '\\Ovh\\StructType\\SqlpriveMysqlGetPossibleDump',
1120
            'sqlpriveMysqlGetPossibleDumpResponse' => '\\Ovh\\StructType\\SqlpriveMysqlGetPossibleDumpResponse',
1121
            'telephonyNumberOrder' => '\\Ovh\\StructType\\TelephonyNumberOrder',
1122
            'telephonyNumberOrderResponse' => '\\Ovh\\StructType\\TelephonyNumberOrderResponse',
1123
            'telephonyLineSetIpRestriction' => '\\Ovh\\StructType\\TelephonyLineSetIpRestriction',
1124
            'telephonyLineSetIpRestrictionResponse' => '\\Ovh\\StructType\\TelephonyLineSetIpRestrictionResponse',
1125
            'prepaidGetHistory' => '\\Ovh\\StructType\\PrepaidGetHistory',
1126
            'prepaidGetHistoryResponse' => '\\Ovh\\StructType\\PrepaidGetHistoryResponse',
1127
            'telephonyLineSetCodecs' => '\\Ovh\\StructType\\TelephonyLineSetCodecs',
1128
            'telephonyLineSetCodecsResponse' => '\\Ovh\\StructType\\TelephonyLineSetCodecsResponse',
1129
            'telephonyNumberCityForZoneList' => '\\Ovh\\StructType\\TelephonyNumberCityForZoneList',
1130
            'telephonyNumberCityForZoneListResponse' => '\\Ovh\\StructType\\TelephonyNumberCityForZoneListResponse',
1131
            'redirectedEmailDel' => '\\Ovh\\StructType\\RedirectedEmailDel',
1132
            'redirectedEmailDelResponse' => '\\Ovh\\StructType\\RedirectedEmailDelResponse',
1133
            'dedicatedInfo' => '\\Ovh\\StructType\\DedicatedInfo',
1134
            'dedicatedInfoResponse' => '\\Ovh\\StructType\\DedicatedInfoResponse',
1135
            'dedicatedBackupUpdateDate' => '\\Ovh\\StructType\\DedicatedBackupUpdateDate',
1136
            'dedicatedBackupUpdateDateResponse' => '\\Ovh\\StructType\\DedicatedBackupUpdateDateResponse',
1137
            'domainOperationList' => '\\Ovh\\StructType\\DomainOperationList',
1138
            'domainOperationListResponse' => '\\Ovh\\StructType\\DomainOperationListResponse',
1139
            'telephonyTonesOptionsModify' => '\\Ovh\\StructType\\TelephonyTonesOptionsModify',
1140
            'telephonyTonesOptionsModifyResponse' => '\\Ovh\\StructType\\TelephonyTonesOptionsModifyResponse',
1141
            'popAttachMasterNic' => '\\Ovh\\StructType\\PopAttachMasterNic',
1142
            'popAttachMasterNicResponse' => '\\Ovh\\StructType\\PopAttachMasterNicResponse',
1143
            'telephonyVoicemailMessagesRemoteUpload' => '\\Ovh\\StructType\\TelephonyVoicemailMessagesRemoteUpload',
1144
            'telephonyVoicemailMessagesRemoteUploadResponse' => '\\Ovh\\StructType\\TelephonyVoicemailMessagesRemoteUploadResponse',
1145
            'crontabInfo' => '\\Ovh\\StructType\\CrontabInfo',
1146
            'crontabInfoResponse' => '\\Ovh\\StructType\\CrontabInfoResponse',
1147
            'serviceGroupSetName' => '\\Ovh\\StructType\\ServiceGroupSetName',
1148
            'serviceGroupSetNameResponse' => '\\Ovh\\StructType\\ServiceGroupSetNameResponse',
1149
            'telephonyOfferInfo' => '\\Ovh\\StructType\\TelephonyOfferInfo',
1150
            'telephonyOfferInfoResponse' => '\\Ovh\\StructType\\TelephonyOfferInfoResponse',
1151
            'multiDomainAdd' => '\\Ovh\\StructType\\MultiDomainAdd',
1152
            'multiDomainAddResponse' => '\\Ovh\\StructType\\MultiDomainAddResponse',
1153
            'telephonyPhonebookDel' => '\\Ovh\\StructType\\TelephonyPhonebookDel',
1154
            'telephonyPhonebookDelResponse' => '\\Ovh\\StructType\\TelephonyPhonebookDelResponse',
1155
            'redirectedEmailList' => '\\Ovh\\StructType\\RedirectedEmailList',
1156
            'redirectedEmailListResponse' => '\\Ovh\\StructType\\RedirectedEmailListResponse',
1157
            'telephonySmsUserAdd' => '\\Ovh\\StructType\\TelephonySmsUserAdd',
1158
            'telephonySmsUserAddResponse' => '\\Ovh\\StructType\\TelephonySmsUserAddResponse',
1159
            'nicUpdateIT' => '\\Ovh\\StructType\\NicUpdateIT',
1160
            'nicUpdateITResponse' => '\\Ovh\\StructType\\NicUpdateITResponse',
1161
            'telephonySmsUserHistory' => '\\Ovh\\StructType\\TelephonySmsUserHistory',
1162
            'telephonySmsUserHistoryResponse' => '\\Ovh\\StructType\\TelephonySmsUserHistoryResponse',
1163
            'dedicatedMonitoringStatusGet' => '\\Ovh\\StructType\\DedicatedMonitoringStatusGet',
1164
            'dedicatedMonitoringStatusGetResponse' => '\\Ovh\\StructType\\DedicatedMonitoringStatusGetResponse',
1165
            'ripeUpdateOrganisation' => '\\Ovh\\StructType\\RipeUpdateOrganisation',
1166
            'ripeUpdateOrganisationResponse' => '\\Ovh\\StructType\\RipeUpdateOrganisationResponse',
1167
            'telephonySmsUserGetCallBack' => '\\Ovh\\StructType\\TelephonySmsUserGetCallBack',
1168
            'telephonySmsUserGetCallBackResponse' => '\\Ovh\\StructType\\TelephonySmsUserGetCallBackResponse',
1169
            'dedicatedNetbootModify' => '\\Ovh\\StructType\\DedicatedNetbootModify',
1170
            'dedicatedNetbootModifyResponse' => '\\Ovh\\StructType\\DedicatedNetbootModifyResponse',
1171
            'subDomainList' => '\\Ovh\\StructType\\SubDomainList',
1172
            'subDomainListResponse' => '\\Ovh\\StructType\\SubDomainListResponse',
1173
            'sqlpriveFtpPassword' => '\\Ovh\\StructType\\SqlpriveFtpPassword',
1174
            'sqlpriveFtpPasswordResponse' => '\\Ovh\\StructType\\SqlpriveFtpPasswordResponse',
1175
            'telephonyOfferModifyPassword' => '\\Ovh\\StructType\\TelephonyOfferModifyPassword',
1176
            'telephonyOfferModifyPasswordResponse' => '\\Ovh\\StructType\\TelephonyOfferModifyPasswordResponse',
1177
            'dnsUninstall' => '\\Ovh\\StructType\\DnsUninstall',
1178
            'dnsUninstallResponse' => '\\Ovh\\StructType\\DnsUninstallResponse',
1179
            'dedicatedFilterIrcClientRuleList' => '\\Ovh\\StructType\\DedicatedFilterIrcClientRuleList',
1180
            'dedicatedFilterIrcClientRuleListResponse' => '\\Ovh\\StructType\\DedicatedFilterIrcClientRuleListResponse',
1181
            'telephonyFunctionKeyAdd' => '\\Ovh\\StructType\\TelephonyFunctionKeyAdd',
1182
            'telephonyFunctionKeyAddResponse' => '\\Ovh\\StructType\\TelephonyFunctionKeyAddResponse',
1183
            'telephonyPhonebookList' => '\\Ovh\\StructType\\TelephonyPhonebookList',
1184
            'telephonyPhonebookListResponse' => '\\Ovh\\StructType\\TelephonyPhonebookListResponse',
1185
            'telephonyPlugAndPhoneReset' => '\\Ovh\\StructType\\TelephonyPlugAndPhoneReset',
1186
            'telephonyPlugAndPhoneResetResponse' => '\\Ovh\\StructType\\TelephonyPlugAndPhoneResetResponse',
1187
            'sqlpriveMysqlRootPassword' => '\\Ovh\\StructType\\SqlpriveMysqlRootPassword',
1188
            'sqlpriveMysqlRootPasswordResponse' => '\\Ovh\\StructType\\SqlpriveMysqlRootPasswordResponse',
1189
            'telephonySpareInfo' => '\\Ovh\\StructType\\TelephonySpareInfo',
1190
            'telephonySpareInfoResponse' => '\\Ovh\\StructType\\TelephonySpareInfoResponse',
1191
            'telephonySmsUserDel' => '\\Ovh\\StructType\\TelephonySmsUserDel',
1192
            'telephonySmsUserDelResponse' => '\\Ovh\\StructType\\TelephonySmsUserDelResponse',
1193
            'emailSetDomainMxFiltering' => '\\Ovh\\StructType\\EmailSetDomainMxFiltering',
1194
            'emailSetDomainMxFilteringResponse' => '\\Ovh\\StructType\\EmailSetDomainMxFilteringResponse',
1195
            'telephonyVoicemailMessagesStatus' => '\\Ovh\\StructType\\TelephonyVoicemailMessagesStatus',
1196
            'telephonyVoicemailMessagesStatusResponse' => '\\Ovh\\StructType\\TelephonyVoicemailMessagesStatusResponse',
1197
            'telephonyPhonebookModify' => '\\Ovh\\StructType\\TelephonyPhonebookModify',
1198
            'telephonyPhonebookModifyResponse' => '\\Ovh\\StructType\\TelephonyPhonebookModifyResponse',
1199
            'dedicatedIPForUDPMove' => '\\Ovh\\StructType\\DedicatedIPForUDPMove',
1200
            'dedicatedIPForUDPMoveResponse' => '\\Ovh\\StructType\\DedicatedIPForUDPMoveResponse',
1201
            'nicUpdate' => '\\Ovh\\StructType\\NicUpdate',
1202
            'nicUpdateResponse' => '\\Ovh\\StructType\\NicUpdateResponse',
1203
            'passwordManager' => '\\Ovh\\StructType\\PasswordManager',
1204
            'passwordManagerResponse' => '\\Ovh\\StructType\\PasswordManagerResponse',
1205
            'telephonyOfferModifyName' => '\\Ovh\\StructType\\TelephonyOfferModifyName',
1206
            'telephonyOfferModifyNameResponse' => '\\Ovh\\StructType\\TelephonyOfferModifyNameResponse',
1207
            'telephonySmsSetCallBack' => '\\Ovh\\StructType\\TelephonySmsSetCallBack',
1208
            'telephonySmsSetCallBackResponse' => '\\Ovh\\StructType\\TelephonySmsSetCallBackResponse',
1209
            'multiDomainModify' => '\\Ovh\\StructType\\MultiDomainModify',
1210
            'multiDomainModifyResponse' => '\\Ovh\\StructType\\MultiDomainModifyResponse',
1211
            'language' => '\\Ovh\\StructType\\Language',
1212
            'languageResponse' => '\\Ovh\\StructType\\LanguageResponse',
1213
            'dedicatedMonitoringSMSModify' => '\\Ovh\\StructType\\DedicatedMonitoringSMSModify',
1214
            'dedicatedMonitoringSMSModifyResponse' => '\\Ovh\\StructType\\DedicatedMonitoringSMSModifyResponse',
1215
            'telephonyPhonebookGroupList' => '\\Ovh\\StructType\\TelephonyPhonebookGroupList',
1216
            'telephonyPhonebookGroupListResponse' => '\\Ovh\\StructType\\TelephonyPhonebookGroupListResponse',
1217
            'logsAccessDel' => '\\Ovh\\StructType\\LogsAccessDel',
1218
            'logsAccessDelResponse' => '\\Ovh\\StructType\\LogsAccessDelResponse',
1219
            'logsAccessAdd' => '\\Ovh\\StructType\\LogsAccessAdd',
1220
            'logsAccessAddResponse' => '\\Ovh\\StructType\\LogsAccessAddResponse',
1221
            'multiDomainInfo' => '\\Ovh\\StructType\\MultiDomainInfo',
1222
            'multiDomainInfoResponse' => '\\Ovh\\StructType\\MultiDomainInfoResponse',
1223
            'domainWhoisObfuscatorList' => '\\Ovh\\StructType\\DomainWhoisObfuscatorList',
1224
            'domainWhoisObfuscatorListResponse' => '\\Ovh\\StructType\\DomainWhoisObfuscatorListResponse',
1225
            'sqlpriveMysqlProcessKill' => '\\Ovh\\StructType\\SqlpriveMysqlProcessKill',
1226
            'sqlpriveMysqlProcessKillResponse' => '\\Ovh\\StructType\\SqlpriveMysqlProcessKillResponse',
1227
            'telephonyBillingAccountInfo' => '\\Ovh\\StructType\\TelephonyBillingAccountInfo',
1228
            'telephonyBillingAccountInfoResponse' => '\\Ovh\\StructType\\TelephonyBillingAccountInfoResponse',
1229
            'mailingListList' => '\\Ovh\\StructType\\MailingListList',
1230
            'mailingListListResponse' => '\\Ovh\\StructType\\MailingListListResponse',
1231
            'telephonySmsSenderAdd' => '\\Ovh\\StructType\\TelephonySmsSenderAdd',
1232
            'telephonySmsSenderAddResponse' => '\\Ovh\\StructType\\TelephonySmsSenderAddResponse',
1233
            'telephonyLineConsumptionCSVByMail' => '\\Ovh\\StructType\\TelephonyLineConsumptionCSVByMail',
1234
            'telephonyLineConsumptionCSVByMailResponse' => '\\Ovh\\StructType\\TelephonyLineConsumptionCSVByMailResponse',
1235
            'telephonySmsUserDeleteCsvAttachment' => '\\Ovh\\StructType\\TelephonySmsUserDeleteCsvAttachment',
1236
            'telephonySmsUserDeleteCsvAttachmentResponse' => '\\Ovh\\StructType\\TelephonySmsUserDeleteCsvAttachmentResponse',
1237
            'mailingListSubscriberListByEmail' => '\\Ovh\\StructType\\MailingListSubscriberListByEmail',
1238
            'mailingListSubscriberListByEmailResponse' => '\\Ovh\\StructType\\MailingListSubscriberListByEmailResponse',
1239
            'supportCloseThreads' => '\\Ovh\\StructType\\SupportCloseThreads',
1240
            'supportCloseThreadsResponse' => '\\Ovh\\StructType\\SupportCloseThreadsResponse',
1241
            'sqlpriveMysqlDatabaseSave' => '\\Ovh\\StructType\\SqlpriveMysqlDatabaseSave',
1242
            'sqlpriveMysqlDatabaseSaveResponse' => '\\Ovh\\StructType\\SqlpriveMysqlDatabaseSaveResponse',
1243
            'telephonyListReversableCallsFromNumber' => '\\Ovh\\StructType\\TelephonyListReversableCallsFromNumber',
1244
            'telephonyListReversableCallsFromNumberResponse' => '\\Ovh\\StructType\\TelephonyListReversableCallsFromNumberResponse',
1245
            'telephonyBillingAccountList' => '\\Ovh\\StructType\\TelephonyBillingAccountList',
1246
            'telephonyBillingAccountListResponse' => '\\Ovh\\StructType\\TelephonyBillingAccountListResponse',
1247
            'telephonySmsGetQuotaNotificationForUser' => '\\Ovh\\StructType\\TelephonySmsGetQuotaNotificationForUser',
1248
            'telephonySmsGetQuotaNotificationForUserResponse' => '\\Ovh\\StructType\\TelephonySmsGetQuotaNotificationForUserResponse',
1249
            'dedicatedMonitoringDel' => '\\Ovh\\StructType\\DedicatedMonitoringDel',
1250
            'dedicatedMonitoringDelResponse' => '\\Ovh\\StructType\\DedicatedMonitoringDelResponse',
1251
            'telephonyChangeNicModify' => '\\Ovh\\StructType\\TelephonyChangeNicModify',
1252
            'telephonyChangeNicModifyResponse' => '\\Ovh\\StructType\\TelephonyChangeNicModifyResponse',
1253
            'dedicatedMonitoringServiceAddSMS' => '\\Ovh\\StructType\\DedicatedMonitoringServiceAddSMS',
1254
            'dedicatedMonitoringServiceAddSMSResponse' => '\\Ovh\\StructType\\DedicatedMonitoringServiceAddSMSResponse',
1255
            'prepaidGetBalance' => '\\Ovh\\StructType\\PrepaidGetBalance',
1256
            'prepaidGetBalanceResponse' => '\\Ovh\\StructType\\PrepaidGetBalanceResponse',
1257
            'telephonySviInfo' => '\\Ovh\\StructType\\TelephonySviInfo',
1258
            'telephonySviInfoResponse' => '\\Ovh\\StructType\\TelephonySviInfoResponse',
1259
            'dnsGeolocalizeHosting' => '\\Ovh\\StructType\\DnsGeolocalizeHosting',
1260
            'dnsGeolocalizeHostingResponse' => '\\Ovh\\StructType\\DnsGeolocalizeHostingResponse',
1261
            'popAdd' => '\\Ovh\\StructType\\PopAdd',
1262
            'popAddResponse' => '\\Ovh\\StructType\\PopAddResponse',
1263
            'telephonyClick2CallUserAdd' => '\\Ovh\\StructType\\TelephonyClick2CallUserAdd',
1264
            'telephonyClick2CallUserAddResponse' => '\\Ovh\\StructType\\TelephonyClick2CallUserAddResponse',
1265
            'domainHostInfo' => '\\Ovh\\StructType\\DomainHostInfo',
1266
            'domainHostInfoResponse' => '\\Ovh\\StructType\\DomainHostInfoResponse',
1267
            'dedicatedList' => '\\Ovh\\StructType\\DedicatedList',
1268
            'dedicatedListResponse' => '\\Ovh\\StructType\\DedicatedListResponse',
1269
            'dedicatedIPForUDPGet' => '\\Ovh\\StructType\\DedicatedIPForUDPGet',
1270
            'dedicatedIPForUDPGetResponse' => '\\Ovh\\StructType\\DedicatedIPForUDPGetResponse',
1271
            'dedicatedGetAvailableIpFromNetwork' => '\\Ovh\\StructType\\DedicatedGetAvailableIpFromNetwork',
1272
            'dedicatedGetAvailableIpFromNetworkResponse' => '\\Ovh\\StructType\\DedicatedGetAvailableIpFromNetworkResponse',
1273
            'crontabModify' => '\\Ovh\\StructType\\CrontabModify',
1274
            'crontabModifyResponse' => '\\Ovh\\StructType\\CrontabModifyResponse',
1275
            'sqlpriveCronGet' => '\\Ovh\\StructType\\SqlpriveCronGet',
1276
            'sqlpriveCronGetResponse' => '\\Ovh\\StructType\\SqlpriveCronGetResponse',
1277
            'supportReactivateThread' => '\\Ovh\\StructType\\SupportReactivateThread',
1278
            'supportReactivateThreadResponse' => '\\Ovh\\StructType\\SupportReactivateThreadResponse',
1279
            'telephonySmsBlacklistedSendersDelete' => '\\Ovh\\StructType\\TelephonySmsBlacklistedSendersDelete',
1280
            'telephonySmsBlacklistedSendersDeleteResponse' => '\\Ovh\\StructType\\TelephonySmsBlacklistedSendersDeleteResponse',
1281
            'zoneImport' => '\\Ovh\\StructType\\ZoneImport',
1282
            'zoneImportResponse' => '\\Ovh\\StructType\\ZoneImportResponse',
1283
            'telephonySmsplusServiceAdd' => '\\Ovh\\StructType\\TelephonySmsplusServiceAdd',
1284
            'telephonySmsplusServiceAddResponse' => '\\Ovh\\StructType\\TelephonySmsplusServiceAddResponse',
1285
            'multiDomainDel' => '\\Ovh\\StructType\\MultiDomainDel',
1286
            'multiDomainDelResponse' => '\\Ovh\\StructType\\MultiDomainDelResponse',
1287
            'telephonySpareCreateRMA' => '\\Ovh\\StructType\\TelephonySpareCreateRMA',
1288
            'telephonySpareCreateRMAResponse' => '\\Ovh\\StructType\\TelephonySpareCreateRMAResponse',
1289
            'telephonySmsplusServiceEdit' => '\\Ovh\\StructType\\TelephonySmsplusServiceEdit',
1290
            'telephonySmsplusServiceEditResponse' => '\\Ovh\\StructType\\TelephonySmsplusServiceEditResponse',
1291
            'dedicatedMailinglistSubscribe' => '\\Ovh\\StructType\\DedicatedMailinglistSubscribe',
1292
            'dedicatedMailinglistSubscribeResponse' => '\\Ovh\\StructType\\DedicatedMailinglistSubscribeResponse',
1293
            'serviceGroupInfo' => '\\Ovh\\StructType\\ServiceGroupInfo',
1294
            'serviceGroupInfoResponse' => '\\Ovh\\StructType\\ServiceGroupInfoResponse',
1295
            'automatedMailFlush' => '\\Ovh\\StructType\\AutomatedMailFlush',
1296
            'automatedMailFlushResponse' => '\\Ovh\\StructType\\AutomatedMailFlushResponse',
1297
            'managedServicesNameUpdate' => '\\Ovh\\StructType\\ManagedServicesNameUpdate',
1298
            'managedServicesNameUpdateResponse' => '\\Ovh\\StructType\\ManagedServicesNameUpdateResponse',
1299
            'popGetQuota' => '\\Ovh\\StructType\\PopGetQuota',
1300
            'popGetQuotaResponse' => '\\Ovh\\StructType\\PopGetQuotaResponse',
1301
            'telephonyHuntingGenericScreenOptionsModify' => '\\Ovh\\StructType\\TelephonyHuntingGenericScreenOptionsModify',
1302
            'telephonyHuntingGenericScreenOptionsModifyResponse' => '\\Ovh\\StructType\\TelephonyHuntingGenericScreenOptionsModifyResponse',
1303
            'ripeCreateOrganisation' => '\\Ovh\\StructType\\RipeCreateOrganisation',
1304
            'ripeCreateOrganisationResponse' => '\\Ovh\\StructType\\RipeCreateOrganisationResponse',
1305
            'telephonyPlugAndPhoneInfo' => '\\Ovh\\StructType\\TelephonyPlugAndPhoneInfo',
1306
            'telephonyPlugAndPhoneInfoResponse' => '\\Ovh\\StructType\\TelephonyPlugAndPhoneInfoResponse',
1307
            'telephonyFaxCampaignDelete' => '\\Ovh\\StructType\\TelephonyFaxCampaignDelete',
1308
            'telephonyFaxCampaignDeleteResponse' => '\\Ovh\\StructType\\TelephonyFaxCampaignDeleteResponse',
1309
            'telephonyReversmentsRefundFromBillingAccount' => '\\Ovh\\StructType\\TelephonyReversmentsRefundFromBillingAccount',
1310
            'telephonyReversmentsRefundFromBillingAccountResponse' => '\\Ovh\\StructType\\TelephonyReversmentsRefundFromBillingAccountResponse',
1311
            'telephonyVoicemailMessageDelete' => '\\Ovh\\StructType\\TelephonyVoicemailMessageDelete',
1312
            'telephonyVoicemailMessageDeleteResponse' => '\\Ovh\\StructType\\TelephonyVoicemailMessageDeleteResponse',
1313
            'dedicatedIpLoadBalancingNameModify' => '\\Ovh\\StructType\\DedicatedIpLoadBalancingNameModify',
1314
            'dedicatedIpLoadBalancingNameModifyResponse' => '\\Ovh\\StructType\\DedicatedIpLoadBalancingNameModifyResponse',
1315
            'telephonyLineOptionsList' => '\\Ovh\\StructType\\TelephonyLineOptionsList',
1316
            'telephonyLineOptionsListResponse' => '\\Ovh\\StructType\\TelephonyLineOptionsListResponse',
1317
            'telephonySpareServiceInfo' => '\\Ovh\\StructType\\TelephonySpareServiceInfo',
1318
            'telephonySpareServiceInfoResponse' => '\\Ovh\\StructType\\TelephonySpareServiceInfoResponse',
1319
            'telephonyAbbreviatedNumberModify' => '\\Ovh\\StructType\\TelephonyAbbreviatedNumberModify',
1320
            'telephonyAbbreviatedNumberModifyResponse' => '\\Ovh\\StructType\\TelephonyAbbreviatedNumberModifyResponse',
1321
            'telephonyOfferSimultaneousLinesModify' => '\\Ovh\\StructType\\TelephonyOfferSimultaneousLinesModify',
1322
            'telephonyOfferSimultaneousLinesModifyResponse' => '\\Ovh\\StructType\\TelephonyOfferSimultaneousLinesModifyResponse',
1323
            'dedicatedMonitoringServiceList' => '\\Ovh\\StructType\\DedicatedMonitoringServiceList',
1324
            'dedicatedMonitoringServiceListResponse' => '\\Ovh\\StructType\\DedicatedMonitoringServiceListResponse',
1325
            'resellerDomainTransfer' => '\\Ovh\\StructType\\ResellerDomainTransfer',
1326
            'resellerDomainTransferResponse' => '\\Ovh\\StructType\\ResellerDomainTransferResponse',
1327
            'serviceGroupAddService' => '\\Ovh\\StructType\\ServiceGroupAddService',
1328
            'serviceGroupAddServiceResponse' => '\\Ovh\\StructType\\ServiceGroupAddServiceResponse',
1329
            'supportThreadDetailStruct' => '\\Ovh\\StructType\\SupportThreadDetailStruct',
1330
            'supportThreadMessageDetailStruct' => '\\Ovh\\StructType\\SupportThreadMessageDetailStruct',
1331
            'supportThreadTreeReturn' => '\\Ovh\\StructType\\SupportThreadTreeReturn',
1332
            'supportMessageDetailReturn' => '\\Ovh\\StructType\\SupportMessageDetailReturn',
1333
            'supportCategoryStruct' => '\\Ovh\\StructType\\SupportCategoryStruct',
1334
            'supportDomainStruct' => '\\Ovh\\StructType\\SupportDomainStruct',
1335
            'supportSendMessageReturn' => '\\Ovh\\StructType\\SupportSendMessageReturn',
1336
            'MyArrayOfSupportThreadDetailStructType' => '\\Ovh\\ArrayType\\MyArrayOfSupportThreadDetailStructType',
1337
            'MyArrayOfSupportCategoryStructType' => '\\Ovh\\ArrayType\\MyArrayOfSupportCategoryStructType',
1338
            'MyArrayOfSupportDomainStructType' => '\\Ovh\\ArrayType\\MyArrayOfSupportDomainStructType',
1339
            'MyArrayOfSupportThreadMessageDetailStructType' => '\\Ovh\\ArrayType\\MyArrayOfSupportThreadMessageDetailStructType',
1340
            'telephonyBillingAccountStruct' => '\\Ovh\\StructType\\TelephonyBillingAccountStruct',
1341
            'telephonyNumberDecodeStruct' => '\\Ovh\\StructType\\TelephonyNumberDecodeStruct',
1342
            'telephonyPendingActionStruct' => '\\Ovh\\StructType\\TelephonyPendingActionStruct',
1343
            'telephonyBillingAccountInfoChildrenStruct' => '\\Ovh\\StructType\\TelephonyBillingAccountInfoChildrenStruct',
1344
            'telephonyBillingAccountInfoReturn' => '\\Ovh\\StructType\\TelephonyBillingAccountInfoReturn',
1345
            'telephonyLineAliasPoolStruct' => '\\Ovh\\StructType\\TelephonyLineAliasPoolStruct',
1346
            'telephonyLineStruct' => '\\Ovh\\StructType\\TelephonyLineStruct',
1347
            'telephonyLineListReturn' => '\\Ovh\\StructType\\TelephonyLineListReturn',
1348
            'telephonyLineOptionsListReturn' => '\\Ovh\\StructType\\TelephonyLineOptionsListReturn',
1349
            'telephonyLineSwitchOldOfferStruct' => '\\Ovh\\StructType\\TelephonyLineSwitchOldOfferStruct',
1350
            'telephonyLineSwitchPossibilityPriceStruct' => '\\Ovh\\StructType\\TelephonyLineSwitchPossibilityPriceStruct',
1351
            'bufferStepStruct' => '\\Ovh\\StructType\\BufferStepStruct',
1352
            'orderFollowingUpStruct' => '\\Ovh\\StructType\\OrderFollowingUpStruct',
1353
            'telephonyOfferInfoReturn' => '\\Ovh\\StructType\\TelephonyOfferInfoReturn',
1354
            'telephonyOfferInfoSipAccountStruct' => '\\Ovh\\StructType\\TelephonyOfferInfoSipAccountStruct',
1355
            'telephonyOfferInfoHardwareStruct' => '\\Ovh\\StructType\\TelephonyOfferInfoHardwareStruct',
1356
            'telephonyDisplayNumberTestingGetNextNumberReturn' => '\\Ovh\\StructType\\TelephonyDisplayNumberTestingGetNextNumberReturn',
1357
            'telephonySpecialNumberCustomListReturn' => '\\Ovh\\StructType\\TelephonySpecialNumberCustomListReturn',
1358
            'telephonyListReversableCallsFromNumberReturn' => '\\Ovh\\StructType\\TelephonyListReversableCallsFromNumberReturn',
1359
            'telephonyReversmentsDetailsStruct' => '\\Ovh\\StructType\\TelephonyReversmentsDetailsStruct',
1360
            'telephonyReversmentsSummationStruct' => '\\Ovh\\StructType\\TelephonyReversmentsSummationStruct',
1361
            'telephonyReversmentsSummationNumbersStruct' => '\\Ovh\\StructType\\TelephonyReversmentsSummationNumbersStruct',
1362
            'telephonyCallStruct' => '\\Ovh\\StructType\\TelephonyCallStruct',
1363
            'telephonyCallsSummaryDetailsStruct' => '\\Ovh\\StructType\\TelephonyCallsSummaryDetailsStruct',
1364
            'telephonyFaxSummaryDetailsStruct' => '\\Ovh\\StructType\\TelephonyFaxSummaryDetailsStruct',
1365
            'telephonyCallsSummaryStruct' => '\\Ovh\\StructType\\TelephonyCallsSummaryStruct',
1366
            'telephonyFaxSummaryStruct' => '\\Ovh\\StructType\\TelephonyFaxSummaryStruct',
1367
            'telephonyBillingAccountSummaryLineStruct' => '\\Ovh\\StructType\\TelephonyBillingAccountSummaryLineStruct',
1368
            'telephonyBillingAccountSummaryBillingAccountStruct' => '\\Ovh\\StructType\\TelephonyBillingAccountSummaryBillingAccountStruct',
1369
            'telephonyBillingAccountSummaryReturn' => '\\Ovh\\StructType\\TelephonyBillingAccountSummaryReturn',
1370
            'telephonyCallListReturn' => '\\Ovh\\StructType\\TelephonyCallListReturn',
1371
            'telephonyBillStruct' => '\\Ovh\\StructType\\TelephonyBillStruct',
1372
            'telephonyBillDetailsReturn' => '\\Ovh\\StructType\\TelephonyBillDetailsReturn',
1373
            'telephonyVoicemailOptionsListReturn' => '\\Ovh\\StructType\\TelephonyVoicemailOptionsListReturn',
1374
            'telephonyVoicemailMessagesStatusReturn' => '\\Ovh\\StructType\\TelephonyVoicemailMessagesStatusReturn',
1375
            'telephonyVoicemailMailboxStruct' => '\\Ovh\\StructType\\TelephonyVoicemailMailboxStruct',
1376
            'telephonyVoicemailMailboxDownloadReturn' => '\\Ovh\\StructType\\TelephonyVoicemailMailboxDownloadReturn',
1377
            'telephonyVoicemailMessagesDownloadReturn' => '\\Ovh\\StructType\\TelephonyVoicemailMessagesDownloadReturn',
1378
            'telephonyPhonebookStruct' => '\\Ovh\\StructType\\TelephonyPhonebookStruct',
1379
            'telephonyPhonebookGroupStruct' => '\\Ovh\\StructType\\TelephonyPhonebookGroupStruct',
1380
            'telephonyPhonebookContactStruct' => '\\Ovh\\StructType\\TelephonyPhonebookContactStruct',
1381
            'telephonyPhonebookSharePeerStruct' => '\\Ovh\\StructType\\TelephonyPhonebookSharePeerStruct',
1382
            'telephonySecurityDepositCreditReturn' => '\\Ovh\\StructType\\TelephonySecurityDepositCreditReturn',
1383
            'telephonyConferenceStruct' => '\\Ovh\\StructType\\TelephonyConferenceStruct',
1384
            'telephonyConferenceAnnouncesStatusReturn' => '\\Ovh\\StructType\\TelephonyConferenceAnnouncesStatusReturn',
1385
            'telephonyConferenceGetInfosReturn' => '\\Ovh\\StructType\\TelephonyConferenceGetInfosReturn',
1386
            'telephonyConferenceParticipantStruct' => '\\Ovh\\StructType\\TelephonyConferenceParticipantStruct',
1387
            'telephonyConferenceParamsReturn' => '\\Ovh\\StructType\\TelephonyConferenceParamsReturn',
1388
            'telephonySmsCsvSlotStruct' => '\\Ovh\\StructType\\TelephonySmsCsvSlotStruct',
1389
            'telephonySmsUserQuotaStruct' => '\\Ovh\\StructType\\TelephonySmsUserQuotaStruct',
1390
            'telephonyNotificationSmsUserStruct' => '\\Ovh\\StructType\\TelephonyNotificationSmsUserStruct',
1391
            'telephonySmsUserStruct' => '\\Ovh\\StructType\\TelephonySmsUserStruct',
1392
            'telephonySmsCreditInfoReturn' => '\\Ovh\\StructType\\TelephonySmsCreditInfoReturn',
1393
            'telephonySmsHistoryStruct' => '\\Ovh\\StructType\\TelephonySmsHistoryStruct',
1394
            'telephonySmsSenderStruct' => '\\Ovh\\StructType\\TelephonySmsSenderStruct',
1395
            'telephonyAbbreviatedNumberStruct' => '\\Ovh\\StructType\\TelephonyAbbreviatedNumberStruct',
1396
            'telephonyDirectoryPJHeadingStruct' => '\\Ovh\\StructType\\TelephonyDirectoryPJHeadingStruct',
1397
            'telephonyDirectoryWayTypeStruct' => '\\Ovh\\StructType\\TelephonyDirectoryWayTypeStruct',
1398
            'telephonyDirectoryInfoReturn' => '\\Ovh\\StructType\\TelephonyDirectoryInfoReturn',
1399
            'telephonyDirectoryInfoGetSiretReturn' => '\\Ovh\\StructType\\TelephonyDirectoryInfoGetSiretReturn',
1400
            'telephonyAvailableFunctionStruct' => '\\Ovh\\StructType\\TelephonyAvailableFunctionStruct',
1401
            'telephonyFunctionKeyStruct' => '\\Ovh\\StructType\\TelephonyFunctionKeyStruct',
1402
            'telephonyFaxCallStruct' => '\\Ovh\\StructType\\TelephonyFaxCallStruct',
1403
            'telephonyFaxCallsSummaryDetailsStruct' => '\\Ovh\\StructType\\TelephonyFaxCallsSummaryDetailsStruct',
1404
            'telephonyFaxCallsSummaryStruct' => '\\Ovh\\StructType\\TelephonyFaxCallsSummaryStruct',
1405
            'telephonyFaxCallListReturn' => '\\Ovh\\StructType\\TelephonyFaxCallListReturn',
1406
            'telephonyFaxOptionsListReturn' => '\\Ovh\\StructType\\TelephonyFaxOptionsListReturn',
1407
            'telephonyFaxHistoryStruct' => '\\Ovh\\StructType\\TelephonyFaxHistoryStruct',
1408
            'telephonyFaxCampaignDetailsStruct' => '\\Ovh\\StructType\\TelephonyFaxCampaignDetailsStruct',
1409
            'telephonyRecipientStruct' => '\\Ovh\\StructType\\TelephonyRecipientStruct',
1410
            'telephonyAbbreviatedNumberListPaginatedReturn' => '\\Ovh\\StructType\\TelephonyAbbreviatedNumberListPaginatedReturn',
1411
            'telephonyFaxCampaignListReturn' => '\\Ovh\\StructType\\TelephonyFaxCampaignListReturn',
1412
            'telephonyFaxCampaignStruct' => '\\Ovh\\StructType\\TelephonyFaxCampaignStruct',
1413
            'telephonyPortabilityStruct' => '\\Ovh\\StructType\\TelephonyPortabilityStruct',
1414
            'telephonyNumberOrderReturn' => '\\Ovh\\StructType\\TelephonyNumberOrderReturn',
1415
            'telephonyNumberZoneAndPrefixStruct' => '\\Ovh\\StructType\\TelephonyNumberZoneAndPrefixStruct',
1416
            'telephonyNumberCityForZoneStruct' => '\\Ovh\\StructType\\TelephonyNumberCityForZoneStruct',
1417
            'telephonyTonesOptionsListReturn' => '\\Ovh\\StructType\\TelephonyTonesOptionsListReturn',
1418
            'telephonyToneStatusReturn' => '\\Ovh\\StructType\\TelephonyToneStatusReturn',
1419
            'telephonyDdiInfoReturn' => '\\Ovh\\StructType\\TelephonyDdiInfoReturn',
1420
            'telephonyRedirectInfoReturn' => '\\Ovh\\StructType\\TelephonyRedirectInfoReturn',
1421
            'telephonyHuntingInfoReturn' => '\\Ovh\\StructType\\TelephonyHuntingInfoReturn',
1422
            'telephonyHuntingInfoMemberStruct' => '\\Ovh\\StructType\\TelephonyHuntingInfoMemberStruct',
1423
            'telephonyScreenStruct' => '\\Ovh\\StructType\\TelephonyScreenStruct',
1424
            'telephonyScreenBlackWhiteChoiceReturn' => '\\Ovh\\StructType\\TelephonyScreenBlackWhiteChoiceReturn',
1425
            'telephonyHuntingGenericScreenStruct' => '\\Ovh\\StructType\\TelephonyHuntingGenericScreenStruct',
1426
            'telephonyHuntingGenericScreenOptionsStruct' => '\\Ovh\\StructType\\TelephonyHuntingGenericScreenOptionsStruct',
1427
            'telephonyPlugAndPhoneInfoReturn' => '\\Ovh\\StructType\\TelephonyPlugAndPhoneInfoReturn',
1428
            'telephonyPlugAndPhoneReinitConfigurationReturn' => '\\Ovh\\StructType\\TelephonyPlugAndPhoneReinitConfigurationReturn',
1429
            'telephonyAliasToLinePossibilityPriceStruct' => '\\Ovh\\StructType\\TelephonyAliasToLinePossibilityPriceStruct',
1430
            'telephonyLineLogsListStruct' => '\\Ovh\\StructType\\TelephonyLineLogsListStruct',
1431
            'telephonyLineLogsStruct' => '\\Ovh\\StructType\\TelephonyLineLogsStruct',
1432
            'telephonyLineLogsNotificationOptionsReturn' => '\\Ovh\\StructType\\TelephonyLineLogsNotificationOptionsReturn',
1433
            'telephonyFreefaxToVoicefaxCheckStruct' => '\\Ovh\\StructType\\TelephonyFreefaxToVoicefaxCheckStruct',
1434
            'telephonySipDomainStruct' => '\\Ovh\\StructType\\TelephonySipDomainStruct',
1435
            'telephonyRateStruct' => '\\Ovh\\StructType\\TelephonyRateStruct',
1436
            'telephonySmsBlacklistedSenderStruct' => '\\Ovh\\StructType\\TelephonySmsBlacklistedSenderStruct',
1437
            'telephonySmsBlacklistedSendersListReturn' => '\\Ovh\\StructType\\TelephonySmsBlacklistedSendersListReturn',
1438
            'telephonyDefaultPrivateHolidaysEventsCountryStruct' => '\\Ovh\\StructType\\TelephonyDefaultPrivateHolidaysEventsCountryStruct',
1439
            'telephonyGetDefaultPrivateHolidaysEventsReturn' => '\\Ovh\\StructType\\TelephonyGetDefaultPrivateHolidaysEventsReturn',
1440
            'telephonyGetClosureEventsAsIcsStruct' => '\\Ovh\\StructType\\TelephonyGetClosureEventsAsIcsStruct',
1441
            'telephonyGetClosureEventsAsArrayEventStruct' => '\\Ovh\\StructType\\TelephonyGetClosureEventsAsArrayEventStruct',
1442
            'telephonyGetClosureEventsAsArrayStruct' => '\\Ovh\\StructType\\TelephonyGetClosureEventsAsArrayStruct',
1443
            'telephonyTrunkExternalDisplayedNumberStruct' => '\\Ovh\\StructType\\TelephonyTrunkExternalDisplayedNumberStruct',
1444
            'telephonySmsplusOptionsStruct' => '\\Ovh\\StructType\\TelephonySmsplusOptionsStruct',
1445
            'telephonyApplicationTypeStruct' => '\\Ovh\\StructType\\TelephonyApplicationTypeStruct',
1446
            'telephonySmsplusChoicesStruct' => '\\Ovh\\StructType\\TelephonySmsplusChoicesStruct',
1447
            'telephonySmsplusDetailsStruct' => '\\Ovh\\StructType\\TelephonySmsplusDetailsStruct',
1448
            'telephonySmsplusSummaryInfosStruct' => '\\Ovh\\StructType\\TelephonySmsplusSummaryInfosStruct',
1449
            'telephonySmsplusTicketsStruct' => '\\Ovh\\StructType\\TelephonySmsplusTicketsStruct',
1450
            'telephonyNumberWayNameStruct' => '\\Ovh\\StructType\\TelephonyNumberWayNameStruct',
1451
            'telephonyLineGetCodecsReturn' => '\\Ovh\\StructType\\TelephonyLineGetCodecsReturn',
1452
            'telephonyCitiesFromZipStruct' => '\\Ovh\\StructType\\TelephonyCitiesFromZipStruct',
1453
            'telephonySpareActionsStruct' => '\\Ovh\\StructType\\TelephonySpareActionsStruct',
1454
            'telephonySpareDetailStruct' => '\\Ovh\\StructType\\TelephonySpareDetailStruct',
1455
            'telephonySpareServiceInfoStruct' => '\\Ovh\\StructType\\TelephonySpareServiceInfoStruct',
1456
            'telephonySpareInfoStruct' => '\\Ovh\\StructType\\TelephonySpareInfoStruct',
1457
            'telephonySpareListReturn' => '\\Ovh\\StructType\\TelephonySpareListReturn',
1458
            'telephonySpareFamilyStruct' => '\\Ovh\\StructType\\TelephonySpareFamilyStruct',
1459
            'telephonySviInfoReturn' => '\\Ovh\\StructType\\TelephonySviInfoReturn',
1460
            'MyArrayOfTelephonyBillingAccountStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyBillingAccountStructType',
1461
            'MyArrayOfStringType' => '\\Ovh\\ArrayType\\MyArrayOfStringType',
1462
            'MyArrayOfTelephonyLineSwitchPossibilityPriceStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyLineSwitchPossibilityPriceStructType',
1463
            'MyArrayOfTelephonyLineSwitchOldOfferStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyLineSwitchOldOfferStructType',
1464
            'MyArrayOfOrderFollowingUpStructType' => '\\Ovh\\ArrayType\\MyArrayOfOrderFollowingUpStructType',
1465
            'MyArrayOfTelephonyReversmentsSummationStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyReversmentsSummationStructType',
1466
            'MyArrayOfTelephonyReversmentsSummationNumbersStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyReversmentsSummationNumbersStructType',
1467
            'MyArrayOfTelephonyBillStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyBillStructType',
1468
            'MyArrayOfTelephonyRateStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyRateStructType',
1469
            'MyArrayOfTelephonyVoicemailMailboxStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyVoicemailMailboxStructType',
1470
            'MyArrayOfTelephonyPhonebookStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyPhonebookStructType',
1471
            'MyArrayOfTelephonyPhonebookGroupStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyPhonebookGroupStructType',
1472
            'MyArrayOfTelephonyPhonebookContactStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyPhonebookContactStructType',
1473
            'MyArrayOfTelephonyPhonebookSharePeerStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyPhonebookSharePeerStructType',
1474
            'MyArrayOfTelephonySmsCsvSlotStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonySmsCsvSlotStructType',
1475
            'MyArrayOfIntType' => '\\Ovh\\ArrayType\\MyArrayOfIntType',
1476
            'MyArrayOfTelephonySmsHistoryStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonySmsHistoryStructType',
1477
            'MyArrayOfTelephonySmsSenderStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonySmsSenderStructType',
1478
            'MyArrayOfTelephonyAbbreviatedNumberStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyAbbreviatedNumberStructType',
1479
            'MyArrayOfTelephonyDirectoryPJHeadingStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyDirectoryPJHeadingStructType',
1480
            'MyArrayOfTelephonyDirectoryWayTypeStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyDirectoryWayTypeStructType',
1481
            'MyArrayOfTelephonyFunctionKeyStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyFunctionKeyStructType',
1482
            'MyArrayOfTelephonyFaxHistoryStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyFaxHistoryStructType',
1483
            'MyArrayOfTelephonyPortabilityStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyPortabilityStructType',
1484
            'MyArrayOfTelephonyScreenStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyScreenStructType',
1485
            'MyArrayOfTelephonyHuntingGenericScreenStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyHuntingGenericScreenStructType',
1486
            'MyArrayOfTelephonyHuntingGenericScreenOptionsStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyHuntingGenericScreenOptionsStructType',
1487
            'MyArrayOfBooleanType' => '\\Ovh\\ArrayType\\MyArrayOfBooleanType',
1488
            'MyArrayOfTelephonyNumberWayNameStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyNumberWayNameStructType',
1489
            'MyArrayOfTelephonyNumberZoneAndPrefixStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyNumberZoneAndPrefixStructType',
1490
            'MyArrayOfTelephonyNumberCityForZoneStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyNumberCityForZoneStructType',
1491
            'MyArrayOfTelephonyAliasToLinePossibilityPriceStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyAliasToLinePossibilityPriceStructType',
1492
            'MyArrayOfTelephonyLineLogsStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyLineLogsStructType',
1493
            'MyArrayOfTelephonyFreefaxToVoicefaxCheckStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyFreefaxToVoicefaxCheckStructType',
1494
            'MyArrayOfTelephonySipDomainStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonySipDomainStructType',
1495
            'MyArrayOfTelephonyTrunkExternalDisplayedNumberStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyTrunkExternalDisplayedNumberStructType',
1496
            'MyArrayOfTelephonySmsplusChoicesStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonySmsplusChoicesStructType',
1497
            'MyArrayOfTelephonySmsplusDetailsStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonySmsplusDetailsStructType',
1498
            'MyArrayOfTelephonySmsplusTicketsStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonySmsplusTicketsStructType',
1499
            'MyArrayOfTelephonyCitiesFromZipStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyCitiesFromZipStructType',
1500
            'MyArrayOfTelephonySpareFamilyStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonySpareFamilyStructType',
1501
            'MyArrayOfTelephonySpareServiceInfoStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonySpareServiceInfoStructType',
1502
            'MyArrayOfTelephonyBillingAccountInfoChildrenStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyBillingAccountInfoChildrenStructType',
1503
            'MyArrayOfTelephonyLineStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyLineStructType',
1504
            'MyArrayOfTelephonyReversmentsDetailsStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyReversmentsDetailsStructType',
1505
            'MyArrayOfTelephonyBillingAccountSummaryLineStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyBillingAccountSummaryLineStructType',
1506
            'MyArrayOfTelephonyCallStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyCallStructType',
1507
            'MyArrayOfTelephonyConferenceParticipantStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyConferenceParticipantStructType',
1508
            'MyArrayOfTelephonyAvailableFunctionStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyAvailableFunctionStructType',
1509
            'MyArrayOfTelephonyFaxCallStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyFaxCallStructType',
1510
            'MyArrayOfTelephonyRecipientStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyRecipientStructType',
1511
            'MyArrayOfTelephonyFaxCampaignStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyFaxCampaignStructType',
1512
            'MyArrayOfTelephonyHuntingInfoMemberStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyHuntingInfoMemberStructType',
1513
            'MyArrayOfTelephonyLineLogsListStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyLineLogsListStructType',
1514
            'MyArrayOfTelephonySmsBlacklistedSenderStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonySmsBlacklistedSenderStructType',
1515
            'MyArrayOfTelephonyGetClosureEventsAsArrayEventStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyGetClosureEventsAsArrayEventStructType',
1516
            'MyArrayOfTelephonyApplicationTypeStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonyApplicationTypeStructType',
1517
            'MyArrayOfTelephonySpareInfoStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonySpareInfoStructType',
1518
            'MyArrayOfTelephonySpareDetailStructType' => '\\Ovh\\ArrayType\\MyArrayOfTelephonySpareDetailStructType',
1519
            'nicInfoReturn' => '\\Ovh\\StructType\\NicInfoReturn',
1520
            'nicPublicInfoReturn' => '\\Ovh\\StructType\\NicPublicInfoReturn',
1521
            'rpsGetIoStatsReturn' => '\\Ovh\\StructType\\RpsGetIoStatsReturn',
1522
            'rpsGetIOStatsDetailStruct' => '\\Ovh\\StructType\\RpsGetIOStatsDetailStruct',
1523
            'rpsGetIOStatsDetailIoRequestsStruct' => '\\Ovh\\StructType\\RpsGetIOStatsDetailIoRequestsStruct',
1524
            'rpsGetIOStatsDetailRawStruct' => '\\Ovh\\StructType\\RpsGetIOStatsDetailRawStruct',
1525
            'rpsMigrationStatusReturn' => '\\Ovh\\StructType\\RpsMigrationStatusReturn',
1526
            'rpsMigrationGetProgressStatusReturn' => '\\Ovh\\StructType\\RpsMigrationGetProgressStatusReturn',
1527
            'rpsMigrationGetProgressStatusStepStruct' => '\\Ovh\\StructType\\RpsMigrationGetProgressStatusStepStruct',
1528
            'managedServicesPartitionStruct' => '\\Ovh\\StructType\\ManagedServicesPartitionStruct',
1529
            'managedServicesAclStruct' => '\\Ovh\\StructType\\ManagedServicesAclStruct',
1530
            'MyArrayOfManagedServicesPartitionStructType' => '\\Ovh\\ArrayType\\MyArrayOfManagedServicesPartitionStructType',
1531
            'MyArrayOfManagedServicesAclStructType' => '\\Ovh\\ArrayType\\MyArrayOfManagedServicesAclStructType',
1532
            'orderStruct' => '\\Ovh\\StructType\\OrderStruct',
1533
            'dedicatedNetworkInterfaceStruct' => '\\Ovh\\StructType\\DedicatedNetworkInterfaceStruct',
1534
            'dedicatedNetworkTrafficDetailsStruct' => '\\Ovh\\StructType\\DedicatedNetworkTrafficDetailsStruct',
1535
            'dedicatedNetworkTrafficStruct' => '\\Ovh\\StructType\\DedicatedNetworkTrafficStruct',
1536
            'dedicatedNetworkStruct' => '\\Ovh\\StructType\\DedicatedNetworkStruct',
1537
            'dedicatedCapabilityStruct' => '\\Ovh\\StructType\\DedicatedCapabilityStruct',
1538
            'dedicatedFreedomStruct' => '\\Ovh\\StructType\\DedicatedFreedomStruct',
1539
            'dedicatedInfoReturn' => '\\Ovh\\StructType\\DedicatedInfoReturn',
1540
            'dedicatedNetbootStruct' => '\\Ovh\\StructType\\DedicatedNetbootStruct',
1541
            'dedicatedReverseStruct' => '\\Ovh\\StructType\\DedicatedReverseStruct',
1542
            'secondaryDNSStruct' => '\\Ovh\\StructType\\SecondaryDNSStruct',
1543
            'allSecondaryDNSStruct' => '\\Ovh\\StructType\\AllSecondaryDNSStruct',
1544
            'dedicatedMonitoringStatusReturn' => '\\Ovh\\StructType\\DedicatedMonitoringStatusReturn',
1545
            'dedicatedMonitoringStruct' => '\\Ovh\\StructType\\DedicatedMonitoringStruct',
1546
            'dedicatedMonitoringServiceStruct' => '\\Ovh\\StructType\\DedicatedMonitoringServiceStruct',
1547
            'dedicatedGetServiceMonitoringItemStruct' => '\\Ovh\\StructType\\DedicatedGetServiceMonitoringItemStruct',
1548
            'dedicatedMrtgInfoStruct' => '\\Ovh\\StructType\\DedicatedMrtgInfoStruct',
1549
            'dedicatedMrtgInfoReturn' => '\\Ovh\\StructType\\DedicatedMrtgInfoReturn',
1550
            'dedicatedHardRebootStatusReturn' => '\\Ovh\\StructType\\DedicatedHardRebootStatusReturn',
1551
            'dedicatedOperationStruct' => '\\Ovh\\StructType\\DedicatedOperationStruct',
1552
            'dedicatedFailoverStruct' => '\\Ovh\\StructType\\DedicatedFailoverStruct',
1553
            'dedicatedFailoverRipeStruct' => '\\Ovh\\StructType\\DedicatedFailoverRipeStruct',
1554
            'dedicatedFilterIrcRuleStruct' => '\\Ovh\\StructType\\DedicatedFilterIrcRuleStruct',
1555
            'dedicatedBackupFtpInfoReturn' => '\\Ovh\\StructType\\DedicatedBackupFtpInfoReturn',
1556
            'dedicatedBackupListStruct' => '\\Ovh\\StructType\\DedicatedBackupListStruct',
1557
            'dedicatedBackupListReturn' => '\\Ovh\\StructType\\DedicatedBackupListReturn',
1558
            'dedicatedBackupDateStruct' => '\\Ovh\\StructType\\DedicatedBackupDateStruct',
1559
            'dedicatedBackupHistoStruct' => '\\Ovh\\StructType\\DedicatedBackupHistoStruct',
1560
            'dedicatedBackupGetPlanningStruct' => '\\Ovh\\StructType\\DedicatedBackupGetPlanningStruct',
1561
            'dedicatedOrderStruct' => '\\Ovh\\StructType\\DedicatedOrderStruct',
1562
            'dedicatedCapabilitiesStruct' => '\\Ovh\\StructType\\DedicatedCapabilitiesStruct',
1563
            'dedicatedIpLoadBalancingServerStruct' => '\\Ovh\\StructType\\DedicatedIpLoadBalancingServerStruct',
1564
            'dedicatedIpLoadBalancingStruct' => '\\Ovh\\StructType\\DedicatedIpLoadBalancingStruct',
1565
            'dedicatedRtmStatusReturn' => '\\Ovh\\StructType\\DedicatedRtmStatusReturn',
1566
            'rtmCpuStruct' => '\\Ovh\\StructType\\RtmCpuStruct',
1567
            'rtmCpuLoadAvgStruct' => '\\Ovh\\StructType\\RtmCpuLoadAvgStruct',
1568
            'rtmHddStruct' => '\\Ovh\\StructType\\RtmHddStruct',
1569
            'rtmHddSmartStruct' => '\\Ovh\\StructType\\RtmHddSmartStruct',
1570
            'rtmHddPartitionStruct' => '\\Ovh\\StructType\\RtmHddPartitionStruct',
1571
            'rtmSystemStruct' => '\\Ovh\\StructType\\RtmSystemStruct',
1572
            'rtmSystemOsStruct' => '\\Ovh\\StructType\\RtmSystemOsStruct',
1573
            'rtmSystemRtmStruct' => '\\Ovh\\StructType\\RtmSystemRtmStruct',
1574
            'rtmSystemKernelStruct' => '\\Ovh\\StructType\\RtmSystemKernelStruct',
1575
            'rtmMemoryStruct' => '\\Ovh\\StructType\\RtmMemoryStruct',
1576
            'rtmMemoryModuleStruct' => '\\Ovh\\StructType\\RtmMemoryModuleStruct',
1577
            'rtmMotherboardStruct' => '\\Ovh\\StructType\\RtmMotherboardStruct',
1578
            'rtmLspciStruct' => '\\Ovh\\StructType\\RtmLspciStruct',
1579
            'rtmPortsStruct' => '\\Ovh\\StructType\\RtmPortsStruct',
1580
            'rtmPortsIfaceStruct' => '\\Ovh\\StructType\\RtmPortsIfaceStruct',
1581
            'rtmPortsIfaceDetailStruct' => '\\Ovh\\StructType\\RtmPortsIfaceDetailStruct',
1582
            'rtmRaidStruct' => '\\Ovh\\StructType\\RtmRaidStruct',
1583
            'rtmRaidPartitionStruct' => '\\Ovh\\StructType\\RtmRaidPartitionStruct',
1584
            'rtmRaidPartitionVolumeStruct' => '\\Ovh\\StructType\\RtmRaidPartitionVolumeStruct',
1585
            'rtmRaidPartitionVolumeMemberStruct' => '\\Ovh\\StructType\\RtmRaidPartitionVolumeMemberStruct',
1586
            'dedicatedRtmListBackdoorStruct' => '\\Ovh\\StructType\\DedicatedRtmListBackdoorStruct',
1587
            'dedicatedRipeGetIpStruct' => '\\Ovh\\StructType\\DedicatedRipeGetIpStruct',
1588
            'dedicatedIpVirtualMacAvailableReturn' => '\\Ovh\\StructType\\DedicatedIpVirtualMacAvailableReturn',
1589
            'dedicatedIpVirtualMacUsedStruct' => '\\Ovh\\StructType\\DedicatedIpVirtualMacUsedStruct',
1590
            'dedicatedBandwidthManagementReturn' => '\\Ovh\\StructType\\DedicatedBandwidthManagementReturn',
1591
            'dedicatedServerPartioningDetailStruct' => '\\Ovh\\StructType\\DedicatedServerPartioningDetailStruct',
1592
            'dedicatedServerPartioningReturn' => '\\Ovh\\StructType\\DedicatedServerPartioningReturn',
1593
            'dedicatedInstallConfigurationParametersStruct' => '\\Ovh\\StructType\\DedicatedInstallConfigurationParametersStruct',
1594
            'dedicatedInstallConfigurationStruct' => '\\Ovh\\StructType\\DedicatedInstallConfigurationStruct',
1595
            'dedicatedAllowedDistributionBitFormatStruct' => '\\Ovh\\StructType\\DedicatedAllowedDistributionBitFormatStruct',
1596
            'dedicatedAllowedDistributionLanguageStruct' => '\\Ovh\\StructType\\DedicatedAllowedDistributionLanguageStruct',
1597
            'dedicatedAllowedDistributionDetailsStruct' => '\\Ovh\\StructType\\DedicatedAllowedDistributionDetailsStruct',
1598
            'dedicatedAllowedDistributionMoreStruct' => '\\Ovh\\StructType\\DedicatedAllowedDistributionMoreStruct',
1599
            'dedicatedAllowedDistributionReturn' => '\\Ovh\\StructType\\DedicatedAllowedDistributionReturn',
1600
            'dedicatedBasicInstallProgressStruct' => '\\Ovh\\StructType\\DedicatedBasicInstallProgressStruct',
1601
            'dedicatedBasicInstallProgressReturn' => '\\Ovh\\StructType\\DedicatedBasicInstallProgressReturn',
1602
            'dedicatedInstallationTemplateStruct' => '\\Ovh\\StructType\\DedicatedInstallationTemplateStruct',
1603
            'dedicatedIPForUDPStruct' => '\\Ovh\\StructType\\DedicatedIPForUDPStruct',
1604
            'IPForUDPServerListStruct' => '\\Ovh\\StructType\\IPForUDPServerListStruct',
1605
            'MyArrayOfDedicatedCapabilitiesStructType' => '\\Ovh\\ArrayType\\MyArrayOfDedicatedCapabilitiesStructType',
1606
            'MyArrayOfDedicatedNetbootStructType' => '\\Ovh\\ArrayType\\MyArrayOfDedicatedNetbootStructType',
1607
            'MyArrayOfDedicatedReverseStructType' => '\\Ovh\\ArrayType\\MyArrayOfDedicatedReverseStructType',
1608
            'MyArrayOfSecondaryDNSStructType' => '\\Ovh\\ArrayType\\MyArrayOfSecondaryDNSStructType',
1609
            'MyArrayOfAllSecondaryDNSStructType' => '\\Ovh\\ArrayType\\MyArrayOfAllSecondaryDNSStructType',
1610
            'MyArrayOfDedicatedMonitoringStructType' => '\\Ovh\\ArrayType\\MyArrayOfDedicatedMonitoringStructType',
1611
            'MyArrayOfDedicatedMonitoringServiceStructType' => '\\Ovh\\ArrayType\\MyArrayOfDedicatedMonitoringServiceStructType',
1612
            'MyArrayOfDedicatedOperationStructType' => '\\Ovh\\ArrayType\\MyArrayOfDedicatedOperationStructType',
1613
            'MyArrayOfDedicatedFailoverStructType' => '\\Ovh\\ArrayType\\MyArrayOfDedicatedFailoverStructType',
1614
            'MyArrayOfDedicatedFailoverRipeStructType' => '\\Ovh\\ArrayType\\MyArrayOfDedicatedFailoverRipeStructType',
1615
            'MyArrayOfDedicatedRipeGetIpStructType' => '\\Ovh\\ArrayType\\MyArrayOfDedicatedRipeGetIpStructType',
1616
            'MyArrayOfDedicatedFilterIrcRuleStructType' => '\\Ovh\\ArrayType\\MyArrayOfDedicatedFilterIrcRuleStructType',
1617
            'MyArrayOfDedicatedBackupListStructType' => '\\Ovh\\ArrayType\\MyArrayOfDedicatedBackupListStructType',
1618
            'MyArrayOfDedicatedBackupDateStructType' => '\\Ovh\\ArrayType\\MyArrayOfDedicatedBackupDateStructType',
1619
            'MyArrayOfDedicatedBackupHistoStructType' => '\\Ovh\\ArrayType\\MyArrayOfDedicatedBackupHistoStructType',
1620
            'MyArrayOfDedicatedBackupGetPlanningStructType' => '\\Ovh\\ArrayType\\MyArrayOfDedicatedBackupGetPlanningStructType',
1621
            'MyArrayOfDedicatedIpLoadBalancingStructType' => '\\Ovh\\ArrayType\\MyArrayOfDedicatedIpLoadBalancingStructType',
1622
            'MyArrayOfDedicatedRtmListBackdoorStructType' => '\\Ovh\\ArrayType\\MyArrayOfDedicatedRtmListBackdoorStructType',
1623
            'MyArrayOfDedicatedIpVirtualMacUsedStructType' => '\\Ovh\\ArrayType\\MyArrayOfDedicatedIpVirtualMacUsedStructType',
1624
            'MyArrayOfDedicatedInstallationTemplateStructType' => '\\Ovh\\ArrayType\\MyArrayOfDedicatedInstallationTemplateStructType',
1625
            'MyArrayOfDedicatedIPForUDPStructType' => '\\Ovh\\ArrayType\\MyArrayOfDedicatedIPForUDPStructType',
1626
            'MyArrayOfIPForUDPServerListStructType' => '\\Ovh\\ArrayType\\MyArrayOfIPForUDPServerListStructType',
1627
            'MyArrayOfDedicatedNetworkInterfaceStructType' => '\\Ovh\\ArrayType\\MyArrayOfDedicatedNetworkInterfaceStructType',
1628
            'MyArrayOfDedicatedIpLoadBalancingServerStructType' => '\\Ovh\\ArrayType\\MyArrayOfDedicatedIpLoadBalancingServerStructType',
1629
            'MyArrayOfRtmHddStructType' => '\\Ovh\\ArrayType\\MyArrayOfRtmHddStructType',
1630
            'MyArrayOfRtmLspciStructType' => '\\Ovh\\ArrayType\\MyArrayOfRtmLspciStructType',
1631
            'MyArrayOfRtmHddPartitionStructType' => '\\Ovh\\ArrayType\\MyArrayOfRtmHddPartitionStructType',
1632
            'MyArrayOfRtmMemoryModuleStructType' => '\\Ovh\\ArrayType\\MyArrayOfRtmMemoryModuleStructType',
1633
            'MyArrayOfRtmPortsIfaceStructType' => '\\Ovh\\ArrayType\\MyArrayOfRtmPortsIfaceStructType',
1634
            'MyArrayOfRtmPortsIfaceDetailStructType' => '\\Ovh\\ArrayType\\MyArrayOfRtmPortsIfaceDetailStructType',
1635
            'MyArrayOfRtmRaidPartitionStructType' => '\\Ovh\\ArrayType\\MyArrayOfRtmRaidPartitionStructType',
1636
            'MyArrayOfRtmRaidPartitionVolumeStructType' => '\\Ovh\\ArrayType\\MyArrayOfRtmRaidPartitionVolumeStructType',
1637
            'MyArrayOfRtmRaidPartitionVolumeMemberStructType' => '\\Ovh\\ArrayType\\MyArrayOfRtmRaidPartitionVolumeMemberStructType',
1638
            'MyArrayOfDedicatedServerPartioningDetailStructType' => '\\Ovh\\ArrayType\\MyArrayOfDedicatedServerPartioningDetailStructType',
1639
            'MyArrayOfDedicatedAllowedDistributionLanguageStructType' => '\\Ovh\\ArrayType\\MyArrayOfDedicatedAllowedDistributionLanguageStructType',
1640
            'MyArrayOfDedicatedAllowedDistributionBitFormatStructType' => '\\Ovh\\ArrayType\\MyArrayOfDedicatedAllowedDistributionBitFormatStructType',
1641
            'MyArrayOfDedicatedAllowedDistributionDetailsStructType' => '\\Ovh\\ArrayType\\MyArrayOfDedicatedAllowedDistributionDetailsStructType',
1642
            'MyArrayOfDedicatedAllowedDistributionMoreStructType' => '\\Ovh\\ArrayType\\MyArrayOfDedicatedAllowedDistributionMoreStructType',
1643
            'MyArrayOfDedicatedBasicInstallProgressStructType' => '\\Ovh\\ArrayType\\MyArrayOfDedicatedBasicInstallProgressStructType',
1644
            'ticketStruct' => '\\Ovh\\StructType\\TicketStruct',
1645
            'fullTicketReturn' => '\\Ovh\\StructType\\FullTicketReturn',
1646
            'messageDetailStruct' => '\\Ovh\\StructType\\MessageDetailStruct',
1647
            'ticketContactStruct' => '\\Ovh\\StructType\\TicketContactStruct',
1648
            'ticketContactDomainStruct' => '\\Ovh\\StructType\\TicketContactDomainStruct',
1649
            'supportCapabilitiesReturn' => '\\Ovh\\StructType\\SupportCapabilitiesReturn',
1650
            'MyArrayOfTicketStructType' => '\\Ovh\\ArrayType\\MyArrayOfTicketStructType',
1651
            'MyArrayOfTicketContactStructType' => '\\Ovh\\ArrayType\\MyArrayOfTicketContactStructType',
1652
            'MyArrayOfMessageDetailStructType' => '\\Ovh\\ArrayType\\MyArrayOfMessageDetailStructType',
1653
            'MyArrayOfTicketContactDomainStructType' => '\\Ovh\\ArrayType\\MyArrayOfTicketContactDomainStructType',
1654
            'sqlpriveStruct' => '\\Ovh\\StructType\\SqlpriveStruct',
1655
            'sqlpriveMysqlProcessStruct' => '\\Ovh\\StructType\\SqlpriveMysqlProcessStruct',
1656
            'sqlpriveMysqlDatabasePrivilegeStruct' => '\\Ovh\\StructType\\SqlpriveMysqlDatabasePrivilegeStruct',
1657
            'sqlpriveMysqlDatabaseUserPrivilegeStruct' => '\\Ovh\\StructType\\SqlpriveMysqlDatabaseUserPrivilegeStruct',
1658
            'sqlpriveGetPossibleDumpStruct' => '\\Ovh\\StructType\\SqlpriveGetPossibleDumpStruct',
1659
            'sqlpriveAlertInfotReturn' => '\\Ovh\\StructType\\SqlpriveAlertInfotReturn',
1660
            'sqlpriveCronStruct' => '\\Ovh\\StructType\\SqlpriveCronStruct',
1661
            'MyArrayOfSqlpriveStructType' => '\\Ovh\\ArrayType\\MyArrayOfSqlpriveStructType',
1662
            'MyArrayOfSqlpriveMysqlDatabasePrivilegeStructType' => '\\Ovh\\ArrayType\\MyArrayOfSqlpriveMysqlDatabasePrivilegeStructType',
1663
            'MyArrayOfSqlpriveGetPossibleDumpStructType' => '\\Ovh\\ArrayType\\MyArrayOfSqlpriveGetPossibleDumpStructType',
1664
            'MyArrayOfSqlpriveMysqlProcessStructType' => '\\Ovh\\ArrayType\\MyArrayOfSqlpriveMysqlProcessStructType',
1665
            'MyArrayOfSqlpriveCronStructType' => '\\Ovh\\ArrayType\\MyArrayOfSqlpriveCronStructType',
1666
            'MyArrayOfSqlpriveMysqlDatabaseUserPrivilegeStructType' => '\\Ovh\\ArrayType\\MyArrayOfSqlpriveMysqlDatabaseUserPrivilegeStructType',
1667
            'resellerAccountMovementStruct' => '\\Ovh\\StructType\\ResellerAccountMovementStruct',
1668
            'resellerAccountHistoryReturn' => '\\Ovh\\StructType\\ResellerAccountHistoryReturn',
1669
            'resellerAccountSummaryReturn' => '\\Ovh\\StructType\\ResellerAccountSummaryReturn',
1670
            'MyArrayOfResellerAccountMovementStructType' => '\\Ovh\\ArrayType\\MyArrayOfResellerAccountMovementStructType',
1671
            'InfrastructureIpStruct' => '\\Ovh\\StructType\\InfrastructureIpStruct',
1672
            'ripeReturn' => '\\Ovh\\StructType\\RipeReturn',
1673
            'ripeInetnumStruct' => '\\Ovh\\StructType\\RipeInetnumStruct',
1674
            'ripeOrganisationStruct' => '\\Ovh\\StructType\\RipeOrganisationStruct',
1675
            'ripeUpdateReturn' => '\\Ovh\\StructType\\RipeUpdateReturn',
1676
            'MyArrayOfInfrastructureIpStructType' => '\\Ovh\\ArrayType\\MyArrayOfInfrastructureIpStructType',
1677
            'accountMovementStruct' => '\\Ovh\\StructType\\AccountMovementStruct',
1678
            'accountHistoryReturn' => '\\Ovh\\StructType\\AccountHistoryReturn',
1679
            'accountSummaryReturn' => '\\Ovh\\StructType\\AccountSummaryReturn',
1680
            'MyArrayOfAccountMovementStructType' => '\\Ovh\\ArrayType\\MyArrayOfAccountMovementStructType',
1681
            'hostingChangeMainDomainReturn' => '\\Ovh\\StructType\\HostingChangeMainDomainReturn',
1682
            'hostingGetCapabilitiesReturn' => '\\Ovh\\StructType\\HostingGetCapabilitiesReturn',
1683
            'hostingListStruct' => '\\Ovh\\StructType\\HostingListStruct',
1684
            'hostingSummaryReturn' => '\\Ovh\\StructType\\HostingSummaryReturn',
1685
            'ftpInfoReturn' => '\\Ovh\\StructType\\FtpInfoReturn',
1686
            'databaseStruct' => '\\Ovh\\StructType\\DatabaseStruct',
1687
            'anonymousFtpInfoReturn' => '\\Ovh\\StructType\\AnonymousFtpInfoReturn',
1688
            'subDomainStruct' => '\\Ovh\\StructType\\SubDomainStruct',
1689
            'multiDomainStruct' => '\\Ovh\\StructType\\MultiDomainStruct',
1690
            'multiFtpStruct' => '\\Ovh\\StructType\\MultiFtpStruct',
1691
            'overquotaInfoDayStruct' => '\\Ovh\\StructType\\OverquotaInfoDayStruct',
1692
            'overquotaInfoStruct' => '\\Ovh\\StructType\\OverquotaInfoStruct',
1693
            'overquotaInfoReturn' => '\\Ovh\\StructType\\OverquotaInfoReturn',
1694
            'logsAccessStruct' => '\\Ovh\\StructType\\LogsAccessStruct',
1695
            'automatedMailGetStateReturn' => '\\Ovh\\StructType\\AutomatedMailGetStateReturn',
1696
            'automatedMailGetVolumeHistoryStruct' => '\\Ovh\\StructType\\AutomatedMailGetVolumeHistoryStruct',
1697
            'automatedMailGetErrorsStruct' => '\\Ovh\\StructType\\AutomatedMailGetErrorsStruct',
1698
            'cmsAvailableStruct' => '\\Ovh\\StructType\\CmsAvailableStruct',
1699
            'cmsStruct' => '\\Ovh\\StructType\\CmsStruct',
1700
            'crontabStruct' => '\\Ovh\\StructType\\CrontabStruct',
1701
            'crontabInfoReturn' => '\\Ovh\\StructType\\CrontabInfoReturn',
1702
            'MyArrayOfHostingListStructType' => '\\Ovh\\ArrayType\\MyArrayOfHostingListStructType',
1703
            'MyArrayOfDatabaseStructType' => '\\Ovh\\ArrayType\\MyArrayOfDatabaseStructType',
1704
            'MyArrayOfSubDomainStructType' => '\\Ovh\\ArrayType\\MyArrayOfSubDomainStructType',
1705
            'MyArrayOfMultiDomainStructType' => '\\Ovh\\ArrayType\\MyArrayOfMultiDomainStructType',
1706
            'MyArrayOfMultiFtpStructType' => '\\Ovh\\ArrayType\\MyArrayOfMultiFtpStructType',
1707
            'MyArrayOfLogsAccessStructType' => '\\Ovh\\ArrayType\\MyArrayOfLogsAccessStructType',
1708
            'MyArrayOfCrontabStructType' => '\\Ovh\\ArrayType\\MyArrayOfCrontabStructType',
1709
            'MyArrayOfAutomatedMailGetErrorsStructType' => '\\Ovh\\ArrayType\\MyArrayOfAutomatedMailGetErrorsStructType',
1710
            'MyArrayOfAutomatedMailGetVolumeHistoryStructType' => '\\Ovh\\ArrayType\\MyArrayOfAutomatedMailGetVolumeHistoryStructType',
1711
            'MyArrayOfCmsAvailableStructType' => '\\Ovh\\ArrayType\\MyArrayOfCmsAvailableStructType',
1712
            'MyArrayOfCmsStructType' => '\\Ovh\\ArrayType\\MyArrayOfCmsStructType',
1713
            'MyArrayOfOverquotaInfoStructType' => '\\Ovh\\ArrayType\\MyArrayOfOverquotaInfoStructType',
1714
            'serviceStruct' => '\\Ovh\\StructType\\ServiceStruct',
1715
            'serviceLightStruct' => '\\Ovh\\StructType\\ServiceLightStruct',
1716
            'serviceListPaginatedStruct' => '\\Ovh\\StructType\\ServiceListPaginatedStruct',
1717
            'freedomStruct' => '\\Ovh\\StructType\\FreedomStruct',
1718
            'serviceGroupStruct' => '\\Ovh\\StructType\\ServiceGroupStruct',
1719
            'MyArrayOfServiceStructType' => '\\Ovh\\ArrayType\\MyArrayOfServiceStructType',
1720
            'MyArrayOfFreedomStructType' => '\\Ovh\\ArrayType\\MyArrayOfFreedomStructType',
1721
            'MyArrayOfServiceGroupStructType' => '\\Ovh\\ArrayType\\MyArrayOfServiceGroupStructType',
1722
            'MyArrayOfServiceLightStructType' => '\\Ovh\\ArrayType\\MyArrayOfServiceLightStructType',
1723
            'domainInfoReturn' => '\\Ovh\\StructType\\DomainInfoReturn',
1724
            'domainCheckStruct' => '\\Ovh\\StructType\\DomainCheckStruct',
1725
            'domainCapabilitiesReturn' => '\\Ovh\\StructType\\DomainCapabilitiesReturn',
1726
            'nsStruct' => '\\Ovh\\StructType\\NsStruct',
1727
            'zoneStruct' => '\\Ovh\\StructType\\ZoneStruct',
1728
            'ortStruct' => '\\Ovh\\StructType\\OrtStruct',
1729
            'domainHostInfoReturn' => '\\Ovh\\StructType\\DomainHostInfoReturn',
1730
            'operationStruct' => '\\Ovh\\StructType\\OperationStruct',
1731
            'domainWhoisObfuscatorStruct' => '\\Ovh\\StructType\\DomainWhoisObfuscatorStruct',
1732
            'MyArrayOfDomainCheckStructType' => '\\Ovh\\ArrayType\\MyArrayOfDomainCheckStructType',
1733
            'MyArrayOfNsStructType' => '\\Ovh\\ArrayType\\MyArrayOfNsStructType',
1734
            'MyArrayOfZoneStructType' => '\\Ovh\\ArrayType\\MyArrayOfZoneStructType',
1735
            'MyArrayOfOrtStructType' => '\\Ovh\\ArrayType\\MyArrayOfOrtStructType',
1736
            'MyArrayOfOperationStructType' => '\\Ovh\\ArrayType\\MyArrayOfOperationStructType',
1737
            'MyArrayOfDomainWhoisObfuscatorStructType' => '\\Ovh\\ArrayType\\MyArrayOfDomainWhoisObfuscatorStructType',
1738
            'emailRedirectionStruct' => '\\Ovh\\StructType\\EmailRedirectionStruct',
1739
            'popStruct' => '\\Ovh\\StructType\\PopStruct',
1740
            'popGetQuotaReturn' => '\\Ovh\\StructType\\PopGetQuotaReturn',
1741
            'mailingListStruct' => '\\Ovh\\StructType\\MailingListStruct',
1742
            'mailingListFullInfoReturn' => '\\Ovh\\StructType\\MailingListFullInfoReturn',
1743
            'responderEmailStruct' => '\\Ovh\\StructType\\ResponderEmailStruct',
1744
            'catchAllGetReturn' => '\\Ovh\\StructType\\CatchAllGetReturn',
1745
            'emailDomainSummaryReturn' => '\\Ovh\\StructType\\EmailDomainSummaryReturn',
1746
            'emailGetCapabilitiesReturn' => '\\Ovh\\StructType\\EmailGetCapabilitiesReturn',
1747
            'emailFilterStruct' => '\\Ovh\\StructType\\EmailFilterStruct',
1748
            'emailFilterRuleStruct' => '\\Ovh\\StructType\\EmailFilterRuleStruct',
1749
            'MyArrayOfEmailRedirectionStructType' => '\\Ovh\\ArrayType\\MyArrayOfEmailRedirectionStructType',
1750
            'MyArrayOfPopStructType' => '\\Ovh\\ArrayType\\MyArrayOfPopStructType',
1751
            'MyArrayOfMailingListStructType' => '\\Ovh\\ArrayType\\MyArrayOfMailingListStructType',
1752
            'MyArrayOfResponderEmailStructType' => '\\Ovh\\ArrayType\\MyArrayOfResponderEmailStructType',
1753
            'MyArrayOfEmailFilterStructType' => '\\Ovh\\ArrayType\\MyArrayOfEmailFilterStructType',
1754
            'MyArrayOfEmailFilterRuleStructType' => '\\Ovh\\ArrayType\\MyArrayOfEmailFilterRuleStructType',
1755
            'globalAccessStruct' => '\\Ovh\\StructType\\GlobalAccessStruct',
1756
            'momVersionReturn' => '\\Ovh\\StructType\\MomVersionReturn',
1757
            'MyArrayOfGlobalAccessStructType' => '\\Ovh\\ArrayType\\MyArrayOfGlobalAccessStructType',
1758
            'prepaidOperationStruct' => '\\Ovh\\StructType\\PrepaidOperationStruct',
1759
            'prepaidGetHistoryReturn' => '\\Ovh\\StructType\\PrepaidGetHistoryReturn',
1760
            'prepaidGetSummaryReturn' => '\\Ovh\\StructType\\PrepaidGetSummaryReturn',
1761
            'MyArrayOfPrepaidOperationStructType' => '\\Ovh\\ArrayType\\MyArrayOfPrepaidOperationStructType',
1762
            'billingInvoiceDetailStruct' => '\\Ovh\\StructType\\BillingInvoiceDetailStruct',
1763
            'billingInvoiceStruct' => '\\Ovh\\StructType\\BillingInvoiceStruct',
1764
            'billingInvoiceInfoDetailStruct' => '\\Ovh\\StructType\\BillingInvoiceInfoDetailStruct',
1765
            'billingInvoiceInfoPayementStruct' => '\\Ovh\\StructType\\BillingInvoiceInfoPayementStruct',
1766
            'billingGetReferencesToExpiredStruct' => '\\Ovh\\StructType\\BillingGetReferencesToExpiredStruct',
1767
            'billingInvoiceInfoReturn' => '\\Ovh\\StructType\\BillingInvoiceInfoReturn',
1768
            'MyArrayOfBillingInvoiceStructType' => '\\Ovh\\ArrayType\\MyArrayOfBillingInvoiceStructType',
1769
            'MyArrayOfBillingGetReferencesToExpiredStructType' => '\\Ovh\\ArrayType\\MyArrayOfBillingGetReferencesToExpiredStructType',
1770
            'MyArrayOfBillingInvoiceDetailStructType' => '\\Ovh\\ArrayType\\MyArrayOfBillingInvoiceDetailStructType',
1771
            'MyArrayOfBillingInvoiceInfoDetailStructType' => '\\Ovh\\ArrayType\\MyArrayOfBillingInvoiceInfoDetailStructType',
1772
        );
1773
    }
1774
}
1775