Execute method

Executes this instance.

Implementation

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