Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
AlterVideo.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 
19  {
20 
33  public struct Options
34  {
35 
38  public const string TTL = "ttl";
39  } // end struct Options
40 
41 
44  public string path { get; set; }
45 
56  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
57 
58 
61  public AlterVideoRequest() { }
62 
79  public AlterVideoRequest( string path,
80  IDictionary<string, string> options = null)
81  {
82  this.path = path ?? "";
83  this.options = options ?? new Dictionary<string, string>();
84  } // end constructor
85 
86  } // end class AlterVideoRequest
87 
88 
89 
94  {
95 
97  public string path { get; set; }
98 
100  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
101 
102  } // end class AlterVideoResponse
103 
104 
105 
106 
107 } // end namespace kinetica
string path
Fully-qualified KiFS path to the video to be altered.
Definition: AlterVideo.cs:44
AlterVideoRequest()
Constructs an AlterVideoRequest object with default parameters.
Definition: AlterVideo.cs:61
AlterVideoRequest(string path, IDictionary< string, string > options=null)
Constructs an AlterVideoRequest object with the specified parameters.
Definition: AlterVideo.cs:79
A set of parameters for Kinetica.alterVideo(string,IDictionary{string, string}).
Definition: AlterVideo.cs:18
string path
Fully qualified KIFS path to the video file.
Definition: AlterVideo.cs:97
IDictionary< string, string > info
Additional information.
Definition: AlterVideo.cs:100
const string TTL
Sets the TTL of the video.
Definition: AlterVideo.cs:38
A set of results returned by Kinetica.alterVideo(string,IDictionary{string, string}).
Definition: AlterVideo.cs:93
IDictionary< string, string > options
Optional parameters.
Definition: AlterVideo.cs:56
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14