Kinetica   C#   API  Version 7.2.3.0
DropModel.cs
Go to the documentation of this file.
1 /*
2  * This file was autogenerated by the Kinetica schema processor.
3  *
4  * DO NOT EDIT DIRECTLY.
5  */
6 
7 using System.Collections.Generic;
8 
9 namespace kinetica
10 {
12  public class DropModelRequest : KineticaData
13  {
14  public string model_name { get; set; }
15  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
16 
17  public DropModelRequest() { }
18 
19  public DropModelRequest( string model_name,
20  IDictionary<string, string> options = null)
21  {
22  this.model_name = model_name ?? "";
23  this.options = options ?? new Dictionary<string, string>();
24  } // end constructor
25  } // end class DropModelRequest
27 
29  public class DropModelResponse : KineticaData
30  {
31  public struct Info
32  {
33  public const string KML_RESPONSE = "kml_response";
34  } // end struct Info
35 
36  public string model_name { get; set; }
37  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
38  } // end class DropModelResponse
40 } // end namespace kinetica