Kinetica C# API  Version 6.0.1.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 
20  {
21 
23  public string trigger_id { get; set; }
24 
26  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
27 
28 
31  public ClearTriggerRequest() { }
32 
41  IDictionary<string, string> options = null)
42  {
43  this.trigger_id = trigger_id ?? "";
44  this.options = options ?? new Dictionary<string, string>();
45  } // end constructor
46 
47  } // end class ClearTriggerRequest
48 
49 
50 
53  {
54 
57  public string trigger_id { get; set; }
58 
59  } // end class ClearTriggerResponse
60 
61 
62 
63 
64 } // end namespace kinetica
A set of results returned by /clear/trigger.
Definition: ClearTrigger.cs:52
ClearTriggerRequest(string trigger_id, IDictionary< string, string > options=null)
Constructs a ClearTriggerRequest object with the specified parameters.
Definition: ClearTrigger.cs:40
string trigger_id
Value of .
Definition: ClearTrigger.cs:57
string trigger_id
ID for the trigger to be deactivated.
Definition: ClearTrigger.cs:23
A set of parameters for /clear/trigger.
Definition: ClearTrigger.cs:19
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IDictionary< string, string > options
Optional parameters.
Definition: ClearTrigger.cs:26
ClearTriggerRequest()
Constructs a ClearTriggerRequest object with default parameters.
Definition: ClearTrigger.cs:31