Class OutputFormat
Represents an output format.
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 OutputFormat : OutputFormatEditable
Properties
DataExtraction
Specifies if output format should be taken into account during data extraction.
Declaration
[JsonProperty("dataExtraction", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
[Obsolete("Will be removed in future versions")]
public bool DataExtraction { get; set; }
Property Value
bool |
Dynamic
A dynamic output format is not rendered automatically, but only on demand.
Declaration
[JsonProperty("dynamic", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public bool Dynamic { get; set; }
Property Value
bool |
Id
Output format ID.
Declaration
[JsonProperty("id", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Id { get; set; }
Property Value
string |
System
Marks if this is a system output format.
Declaration
[JsonProperty("system", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
[Obsolete("Will be removed in future versions")]
public bool System { get; set; }
Property Value
bool |
Temporary
Temporary outputs are only used during rendering, they are not persisted or made available to users directly.
Declaration
[JsonProperty("temporary", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public bool Temporary { get; set; }
Property Value
bool |
Methods
FromJson(string)
Declaration
public static OutputFormat FromJson(string data)
Parameters
string data |
Returns
OutputFormat |