We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4ea30c commit e852755Copy full SHA for e852755
examples/IBM.Watson.VisualRecognition.v4.Examples/ServiceExample.cs
@@ -312,6 +312,22 @@ public void AddTrainingData()
312
313
Console.WriteLine(result.Response);
314
}
315
+
316
+ public void GetTrainingUsage()
317
+ {
318
+ IamAuthenticator authenticator = new IamAuthenticator(
319
+ apikey: "{apikey}"
320
+ );
321
322
+ VisualRecognitionService service = new VisualRecognitionService("2019-02-11", authenticator);
323
324
+ var result = service.GetTrainingUsage(
325
+ startTime: "2019-01-01",
326
+ endTime: "2019-01-31"
327
328
329
+ Console.WriteLine(result.Response);
330
+ }
331
#endregion
332
333
#region User Data
0 commit comments