internal CalloutRequest(ICalloutApiEndpoints calloutApiEndpoints) { _calloutApiEndpoints = calloutApiEndpoints; }
public CallStatusReportRequest(ICalloutApiEndpoints endpoints, string callId, CallStatusReportModel callStatusReport) { _endpoints = endpoints; _callId = callId; _callStatusReport = callStatusReport; }
internal CalloutApi(ICalloutApiEndpoints calloutApiEndpoints, CallbackResponseFactory responseFactory) { _responseFactory = responseFactory; _request = new CalloutRequest(_apiEndpoints = calloutApiEndpoints); }
internal CalloutApi(ICalloutApiEndpoints calloutApiEndpoints) { _calloutApiEndpoints = calloutApiEndpoints; _request = new CalloutRequest(calloutApiEndpoints); }