Class PermissionSetCreateRequestOfMetadataRight
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Syntax
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public abstract class PermissionSetCreateRequestOfMetadataRight
Properties
Exclusive
When true this permission set will derogate all other configured permission sets on Content Items or List Items.
Declaration
[JsonProperty("exclusive", Required = Required.Always)]
public bool Exclusive { get; set; }
Property Value
bool |
Names
Language specific permission set names.
Declaration
[JsonProperty("names", Required = Required.Always)]
[Required]
public TranslatedStringDictionary Names { get; set; }
Property Value
TranslatedStringDictionary |
RequestId
Optional client reference for this request.
Will be returned back in response to make easier for clients to match request items with the respective results.
It is not persisted anywhere and it is ignored in single operations.
Declaration
[JsonProperty("requestId", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string RequestId { get; set; }
Property Value
string |
UserRolesPermissionSetRights
A list of permission set rights authorizing operations on this permission set.
Declaration
[JsonProperty("userRolesPermissionSetRights", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public ICollection<UserRoleRightsOfPermissionSetRight> UserRolesPermissionSetRights { get; set; }
Property Value
ICollection<UserRoleRightsOfPermissionSetRight> |
UserRolesRights
A list of content or metadata rights authorizing operations on Content Items or List Items.
Declaration
[JsonProperty("userRolesRights", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public ICollection<UserRoleRightsOfMetadataRight> UserRolesRights { get; set; }
Property Value
ICollection<UserRoleRightsOfMetadataRight> |
Methods
FromJson(string)
Declaration
public static PermissionSetCreateRequestOfMetadataRight FromJson(string data)
Parameters
string data |
Returns
PermissionSetCreateRequestOfMetadataRight |