Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
19  {
21  public string trigger_id { get; set; }
22 
26  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
27 
30  public ClearTriggerRequest() { }
31 
40  IDictionary<string, string> options = null)
41  {
42  this.trigger_id = trigger_id ?? "";
43  this.options = options ?? new Dictionary<string, string>();
44  } // end constructor
45  } // end class ClearTriggerRequest
46 
51  {
54  public string trigger_id { get; set; }
55 
57  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
58  } // end class ClearTriggerResponse
59 } // end namespace kinetica
A set of results returned by Kinetica.clearTrigger.
Definition: ClearTrigger.cs:50
ClearTriggerRequest(string trigger_id, IDictionary< string, string > options=null)
Constructs a ClearTriggerRequest object with the specified parameters.
Definition: ClearTrigger.cs:39
string trigger_id
Value of trigger_id.
Definition: ClearTrigger.cs:54
IDictionary< string, string > info
Additional information.
Definition: ClearTrigger.cs:57
string trigger_id
ID for the trigger to be deactivated.
Definition: ClearTrigger.cs:21
A set of parameters for Kinetica.clearTrigger.
Definition: ClearTrigger.cs:18
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:30