Execute method
Implementation
Future<GetUserSettingsResponseCollection> Execute() async {
GetUserSettingsResponseCollection responses =
(await this.InternalExecute()) as GetUserSettingsResponseCollection;
if (responses.ErrorCode == AutodiscoverErrorCode.NoError) {
this.PostProcessResponses(responses);
}
return responses;
}