Kinetica   C#   API  Version 7.2.3.0
DeleteUser.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  {
19  public string name { get; set; }
20 
24  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
25 
28  public DeleteUserRequest() { }
29 
37  public DeleteUserRequest( string name,
38  IDictionary<string, string> options = null)
39  {
40  this.name = name ?? "";
41  this.options = options ?? new Dictionary<string, string>();
42  } // end constructor
43  } // end class DeleteUserRequest
44 
49  {
52  public string name { get; set; }
53 
55  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
56  } // end class DeleteUserResponse
57 } // end namespace kinetica
IDictionary< string, string > info
Additional information.
Definition: DeleteUser.cs:55
IDictionary< string, string > options
Optional parameters.
Definition: DeleteUser.cs:24
string name
Value of name.
Definition: DeleteUser.cs:52
A set of parameters for Kinetica.deleteUser.
Definition: DeleteUser.cs:15
string name
Name of the user to be deleted.
Definition: DeleteUser.cs:19
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
DeleteUserRequest(string name, IDictionary< string, string > options=null)
Constructs a DeleteUserRequest object with the specified parameters.
Definition: DeleteUser.cs:37
A set of results returned by Kinetica.deleteUser.
Definition: DeleteUser.cs:48
DeleteUserRequest()
Constructs a DeleteUserRequest object with default parameters.
Definition: DeleteUser.cs:28