Example #1
0
 public async Task CreateLargeListFacesToFindSimilarFaces(CreateLargeListRequest request)
 {
     await HttpProvider.PutAsync <EmptyClass>(
         FaceApiConstants.LargeListGenericEndpoint(Guid.NewGuid().ToString()),
         request,
         _headers);
 }
Example #2
0
 public async Task <List <GetLargeListFaceResponse> > GetLargeListFaces()
 {
     return(await HttpProvider.GetAsync <List <GetLargeListFaceResponse> >(
                FaceApiConstants.LargeListGenericEndpoint(),
                _headers));
 }