Kinetica C# API  Version 6.1.0.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 
10 
11 namespace kinetica
12 {
13 
19  {
20 
23  public string name { get; set; }
24 
26  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
27 
28 
31  public DeleteUserRequest() { }
32 
40  public DeleteUserRequest( string name,
41  IDictionary<string, string> options)
42  {
43  this.name = name ?? "";
44  this.options = options ?? new Dictionary<string, string>();
45  } // end constructor
46 
47  } // end class DeleteUserRequest
48 
49 
50 
55  {
56 
59  public string name { get; set; }
60 
61  } // end class DeleteUserResponse
62 
63 
64 
65 
66 } // end namespace kinetica
DeleteUserRequest(string name, IDictionary< string, string > options)
Constructs a DeleteUserRequest object with the specified parameters.
Definition: DeleteUser.cs:40
IDictionary< string, string > options
Optional parameters.
Definition: DeleteUser.cs:26
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
A set of results returned by Kinetica.deleteUser(string,IDictionary<string, string>).
Definition: DeleteUser.cs:54
DeleteUserRequest()
Constructs a DeleteUserRequest object with default parameters.
Definition: DeleteUser.cs:31