Class ShareContentDetail
Detail of shared content
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 ShareContentDetail
Detail of shared content
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public class ShareContentDetail
The content data. It's an object of dynamic metadata whose structure is defined in the Content schema specified
by the ContentSchemaId property.
[JsonProperty("content", Required = Required.Always)]
[Required]
public object Content { get; set; }
object |
The ID of the schema with schema type content.
[JsonProperty("contentSchemaId", Required = Required.Always)]
[Required]
public string ContentSchemaId { get; set; }
string |
The type of content
[JsonProperty("contentType", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
[JsonConverter(typeof(StringEnumConverter))]
public ContentType ContentType { get; set; }
ContentType |
The id of related DisplayContent
[JsonProperty("displayContentId", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string DisplayContentId { get; set; }
string |
Contains language specific display values, rendered according to the content schema's display pattern configuration.
[JsonProperty("displayValues", Required = Required.Always)]
[Required]
public DisplayValueDictionary DisplayValues { get; set; }
DisplayValueDictionary |
Contains an URL that can be used to retrieve the icon corresponding to the file type.
[JsonProperty("iconUrl", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string IconUrl { get; set; }
string |
Content ID.
[JsonProperty("id", Required = Required.Always)]
[Required]
public string Id { get; set; }
string |
An optional ID list of schemas with type layer.
[JsonProperty("layerSchemaIds", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public ICollection<string> LayerSchemaIds { get; set; }
ICollection<string> |
The metadata belonging to the layers of the content. It's a dictionary of dynamic metadata whose structure is defined in the Layer schemas identified
by the LayerSchemaIds property.
[JsonProperty("metadata", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public IDictionary<string, object> Metadata { get; set; }
IDictionary<string, object> |
List of shared outputs for this content.
[JsonProperty("outputs", Required = Required.Always)]
[Required]
public ICollection<ShareOutputBase> Outputs { get; set; }
ICollection<ShareOutputBase> |
public static ShareContentDetail FromJson(string data)
string data |
ShareContentDetail |