7 using System.Collections.Generic;
16 public class DeleteGraphRequest : KineticaData
38 public const string TRUE =
"true";
39 public const string FALSE =
"false";
45 public const string SERVER_ID =
"server_id";
82 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
124 IDictionary<string, string>
options =
null)
134 public class DeleteGraphResponse : KineticaData
137 public bool result {
get;
set; }
140 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
string graph_name
Name of the graph to be deleted.
IDictionary< string, string > options
Optional parameters.
const string DELETE_PERSIST
If set to TRUE, the graph is removed from the server and persist.
DeleteGraphRequest()
Constructs a DeleteGraphRequest object with default parameters.
DeleteGraphRequest(string graph_name, IDictionary< string, string > options=null)
Constructs a DeleteGraphRequest object with the specified parameters.
const string SERVER_ID
Indicates which graph server(s) to send the request to.
bool result
Indicates a successful deletion.
IDictionary< string, string > info
Additional information.