Class Share
Share
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 class Share
Share
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public class Share
Audit information.
[JsonProperty("audit", Required = Required.Always)]
[Required]
public UserAudit Audit { get; set; }
UserAudit |
List of shared content IDs.
[JsonProperty("contentIds", Required = Required.Always)]
[Required]
public ICollection<string> ContentIds { get; set; }
ICollection<string> |
Date when share expires and cannot be accessed anymore.
[JsonProperty("expirationDate", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public DateTime? ExpirationDate { get; set; }
DateTime? |
Share ID.
[JsonProperty("id", Required = Required.Always)]
[Required]
public string Id { get; set; }
string |
Share is readonly if the current user is not the creator but only the recipient.
[JsonProperty("isReadOnly", Required = Required.Always)]
public bool IsReadOnly { get; set; }
bool |
Name of share.
[JsonProperty("name", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Name { get; set; }
string |
Type of share.
[JsonProperty("shareType", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
[JsonConverter(typeof(StringEnumConverter))]
public ShareType ShareType { get; set; }
ShareType |