/// <summary>
        /// get umbrella candidates
        /// </summary>
        /// <exception cref="GS1US.Tests.Common.APIs.DataHub.Umbrella.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="companyAccountId">IMIS company id</param>
        /// <returns>Task of UmbrellaDefinitionResponse</returns>
        public async System.Threading.Tasks.Task <UmbrellaDefinitionResponse> GetUmbrellaCandidatesAsync(string companyAccountId)
        {
            GS1US.Tests.Common.APIs.DataHub.Umbrella.Client.ApiResponse <UmbrellaDefinitionResponse> localVarResponse = await GetUmbrellaCandidatesAsyncWithHttpInfo(companyAccountId);

            return(localVarResponse.Data);
        }
 /// <summary>
 /// get umbrella candidates
 /// </summary>
 /// <exception cref="GS1US.Tests.Common.APIs.DataHub.Umbrella.Client.ApiException">Thrown when fails to make API call</exception>
 /// <param name="companyAccountId">IMIS company id</param>
 /// <returns>UmbrellaDefinitionResponse</returns>
 public UmbrellaDefinitionResponse GetUmbrellaCandidates(string companyAccountId)
 {
     GS1US.Tests.Common.APIs.DataHub.Umbrella.Client.ApiResponse <UmbrellaDefinitionResponse> localVarResponse = GetUmbrellaCandidatesWithHttpInfo(companyAccountId);
     return(localVarResponse.Data);
 }