internal ConsentRequiredAPI(ConsentRequiredHandler getConsentDetails, string consentID, Endpoints endpoints, HttpClientFactory clientFactory) : this(getConsentDetails, endpoints, clientFactory)
 {
     ConsentID = consentID;
 }
 internal ConsentRequiredAPI(ConsentRequiredHandler getConsentDetails, Endpoints endpoints, HttpClientFactory clientFactory) : base(clientFactory)
 {
     this._endpoints = endpoints;
     this._consentRequiredHandler = getConsentDetails;
 }