Kinetica C# API  Version 6.1.0.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 
10 
11 namespace kinetica
12 {
13 
21  {
22 
24  public string trigger_id { get; set; }
25 
27  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
28 
29 
32  public ClearTriggerRequest() { }
33 
42  IDictionary<string, string> options = null)
43  {
44  this.trigger_id = trigger_id ?? "";
45  this.options = options ?? new Dictionary<string, string>();
46  } // end constructor
47 
48  } // end class ClearTriggerRequest
49 
50 
51 
56  {
57 
60  public string trigger_id { get; set; }
61 
62  } // end class ClearTriggerResponse
63 
64 
65 
66 
67 } // end namespace kinetica
A set of results returned by Kinetica.clearTrigger(string,IDictionary<string, string>).
Definition: ClearTrigger.cs:55
ClearTriggerRequest(string trigger_id, IDictionary< string, string > options=null)
Constructs a ClearTriggerRequest object with the specified parameters.
Definition: ClearTrigger.cs:41
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:27
ClearTriggerRequest()
Constructs a ClearTriggerRequest object with default parameters.
Definition: ClearTrigger.cs:32