Kinetica   C#   API  Version 7.2.3.1
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 
18 {
20  public string trigger_id { get; set; }
21 
25  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
26 
29  public ClearTriggerRequest() { }
30 
38  IDictionary<string, string> options = null)
39  {
40  this.trigger_id = trigger_id ?? "";
41  this.options = options ?? new Dictionary<string, string>();
42  } // end constructor
43 } // end class ClearTriggerRequest
44 
49 {
52  public string trigger_id { get; set; }
53 
55  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
56 } // end class ClearTriggerResponse
A set of results returned by Kinetica.clearTrigger.
Definition: ClearTrigger.cs:48
ClearTriggerRequest(string trigger_id, IDictionary< string, string > options=null)
Constructs a ClearTriggerRequest object with the specified parameters.
Definition: ClearTrigger.cs:37
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IDictionary< string, string > info
Additional information.
Definition: ClearTrigger.cs:55
string trigger_id
Value of trigger_id.
Definition: ClearTrigger.cs:52
string trigger_id
ID for the trigger to be deactivated.
Definition: ClearTrigger.cs:20
ClearTriggerRequest()
Constructs a ClearTriggerRequest object with default parameters.
Definition: ClearTrigger.cs:29
A set of parameters for Kinetica.clearTrigger.
Definition: ClearTrigger.cs:17
IDictionary< string, string > options
Optional parameters.
Definition: ClearTrigger.cs:25