Execute method

Executes this instance.

Implementation

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