7 using System.Collections.Generic;
 
   24         public IList<string> 
trigger_ids { 
get; set; } = 
new List<string>();
 
   27         public IDictionary<string, string> 
options { 
get; set; } = 
new Dictionary<string, string>();
 
   43                                     IDictionary<string, string> 
options = null)
 
   45             this.trigger_ids = trigger_ids ?? 
new List<string>();
 
   46             this.options = 
options ?? 
new Dictionary<string, string>();
 
   67         public IDictionary<string, IDictionary<string, string>> 
trigger_map { 
get; set; } = 
new Dictionary<string, IDictionary<string, string>>();
 
ShowTriggersRequest(IList< string > trigger_ids, IDictionary< string, string > options=null)
Constructs a ShowTriggersRequest object with the specified parameters. 
ShowTriggersRequest()
Constructs a ShowTriggersRequest object with default parameters. 
IDictionary< string, string > options
Optional parameters. 
A set of results returned by /show/triggers.
KineticaData - class to help with Avro Encoding for Kinetica 
IList< string > trigger_ids
List of IDs of the triggers whose information is to be retrieved. 
IDictionary< string, IDictionary< string, string > > trigger_map
This dictionary contains (key, value) pairs of (trigger ID, information map/dictionary) where the key...
A set of parameters for /show/triggers.