Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
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 
10 
11 namespace kinetica
12 {
13 
19  {
20 
23  public string name { get; set; }
24 
27  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
28 
29 
32  public DeleteUserRequest() { }
33 
42  public DeleteUserRequest( string name,
43  IDictionary<string, string> options = null)
44  {
45  this.name = name ?? "";
46  this.options = options ?? new Dictionary<string, string>();
47  } // end constructor
48 
49  } // end class DeleteUserRequest
50 
51 
52 
57  {
58 
61  public string name { get; set; }
62 
64  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
65 
66  } // end class DeleteUserResponse
67 
68 
69 
70 
71 } // end namespace kinetica
IDictionary< string, string > info
Additional information.
Definition: DeleteUser.cs:64
IDictionary< string, string > options
Optional parameters.
Definition: DeleteUser.cs:27
string name
Value of .
Definition: DeleteUser.cs:61
A set of parameters for Kinetica.deleteUser(string,IDictionary{string, string}).
Definition: DeleteUser.cs:18
string name
Name of the user to be deleted.
Definition: DeleteUser.cs:23
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:42
A set of results returned by Kinetica.deleteUser(string,IDictionary{string, string}).
Definition: DeleteUser.cs:56
DeleteUserRequest()
Constructs a DeleteUserRequest object with default parameters.
Definition: DeleteUser.cs:32