7 using System.Collections.Generic;
16 public class RevokeRoleRequest : KineticaData
21 public string role {
get;
set; }
26 public string member {
get;
set; }
31 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
49 IDictionary<string, string>
options =
null)
51 this.role =
role ??
"";
52 this.member =
member ??
"";
60 public class RevokeRoleResponse : KineticaData
64 public string role {
get;
set; }
68 public string member {
get;
set; }
71 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
string member
Value of member.
string role
Value of role.
IDictionary< string, string > options
Optional parameters.
string role
Name of the role in which membership will be revoked.
RevokeRoleRequest()
Constructs a RevokeRoleRequest object with default parameters.
IDictionary< string, string > info
Additional information.
RevokeRoleRequest(string role, string member, IDictionary< string, string > options=null)
Constructs a RevokeRoleRequest object with the specified parameters.
string member
Name of the user or role that will be revoked membership in role.