Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
16  {
20  public struct Options
21  {
24  public const string TTL = "ttl";
25  } // end struct Options
26 
29  public string path { get; set; }
30 
40  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
41 
44  public AlterVideoRequest() { }
45 
60  public AlterVideoRequest( string path,
61  IDictionary<string, string> options = null)
62  {
63  this.path = path ?? "";
64  this.options = options ?? new Dictionary<string, string>();
65  } // end constructor
66  } // end class AlterVideoRequest
67 
72  {
74  public string path { get; set; }
75 
77  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
78  } // end class AlterVideoResponse
79 } // end namespace kinetica
A set of string constants for the parameter options.
Definition: AlterVideo.cs:20
string path
Fully-qualified KiFS path to the video to be altered.
Definition: AlterVideo.cs:29
AlterVideoRequest()
Constructs an AlterVideoRequest object with default parameters.
Definition: AlterVideo.cs:44
AlterVideoRequest(string path, IDictionary< string, string > options=null)
Constructs an AlterVideoRequest object with the specified parameters.
Definition: AlterVideo.cs:60
A set of parameters for Kinetica.alterVideo.
Definition: AlterVideo.cs:15
string path
Fully qualified KIFS path to the video file.
Definition: AlterVideo.cs:74
IDictionary< string, string > info
Additional information.
Definition: AlterVideo.cs:77
const string TTL
Sets the TTL of the video.
Definition: AlterVideo.cs:24
A set of results returned by Kinetica.alterVideo.
Definition: AlterVideo.cs:71
IDictionary< string, string > options
Optional parameters.
Definition: AlterVideo.cs:40
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14