Exemplo n.º 1
0
        public async Task <ServiceResponse <AnalyzeResponse> > SendAnalysisAsync(AnalyzeRequest a)
        {
            string sendAnalysis = _endpoint + Endpoints.Analyze;

            return(await _client.CallAsync <AnalyzeRequest, AnalyzeResponse>(HttpMethod.Post, sendAnalysis, a));
        }