Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
ClearTrigger.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 {
13 
21  {
22 
24  public string trigger_id { get; set; }
25 
28  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
29 
30 
33  public ClearTriggerRequest() { }
34 
44  IDictionary<string, string> options = null)
45  {
46  this.trigger_id = trigger_id ?? "";
47  this.options = options ?? new Dictionary<string, string>();
48  } // end constructor
49 
50  } // end class ClearTriggerRequest
51 
52 
53 
58  {
59 
62  public string trigger_id { get; set; }
63 
65  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
66 
67  } // end class ClearTriggerResponse
68 
69 
70 
71 
72 } // end namespace kinetica
A set of results returned by Kinetica.clearTrigger(string,IDictionary{string, string}).
Definition: ClearTrigger.cs:57
ClearTriggerRequest(string trigger_id, IDictionary< string, string > options=null)
Constructs a ClearTriggerRequest object with the specified parameters.
Definition: ClearTrigger.cs:43
string trigger_id
Value of .
Definition: ClearTrigger.cs:62
IDictionary< string, string > info
Additional information.
Definition: ClearTrigger.cs:65
string trigger_id
ID for the trigger to be deactivated.
Definition: ClearTrigger.cs:24
A set of parameters for Kinetica.clearTrigger(string,IDictionary{string, string}).
Definition: ClearTrigger.cs:20
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IDictionary< string, string > options
Optional parameters.
Definition: ClearTrigger.cs:28
ClearTriggerRequest()
Constructs a ClearTriggerRequest object with default parameters.
Definition: ClearTrigger.cs:33