Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
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 
10 
11 namespace kinetica
12 {
18  public class DropModelRequest : KineticaData
19  {
20  public string model_name { get; set; }
21  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
22 
23 
26  public DropModelRequest() { }
27 
34  public DropModelRequest( string model_name,
35  IDictionary<string, string> options = null)
36  {
37  this.model_name = model_name ?? "";
38  this.options = options ?? new Dictionary<string, string>();
39  } // end constructor
40 
41  } // end class DropModelRequest
43 
44 
45 
50  public class DropModelResponse : KineticaData
51  {
52 
64  public struct Info
65  {
66  public const string KML_RESPONSE = "kml_response";
67  } // end struct Info
68 
69  public string model_name { get; set; }
70 
80  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
81 
82  } // end class DropModelResponse
84 
85 
86 
87 
88 
89 } // end namespace kinetica