Search Results for

    Show / Hide Table of Contents

    Class FieldOverwriteBase

    Base class to overwrite field's information

    Inheritance
    object
    FieldOverwriteBase
    FieldOverwriteMultiTagbox
    FieldOverwriteSingleTagbox
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: System.Dynamic.ExpandoObject
    Syntax
    [JsonConverter(typeof(JsonInheritanceConverter), new object[] { "kind" })]
    [GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
    public abstract class FieldOverwriteBase

    Properties

    Id

    The field's ID whose information need to be overwritten.

    Declaration
    [JsonProperty("id", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string Id { get; set; }
    Property Value
    string

    OverwriteRequired

    Enable the overwriting of the Required property of the field specified by the Id property.

    Declaration
    [JsonProperty("overwriteRequired", Required = Required.Always)]
    public bool OverwriteRequired { get; set; }
    Property Value
    bool

    Required

    Defines if a field value is mandatory or not: this value will overwrite the existing Required value specified in the parent schema if
    OverwriteRequired is set to true.

    Declaration
    [JsonProperty("required", Required = Required.Always)]
    public bool Required { get; set; }
    Property Value
    bool

    Methods

    FromJson(string)

    Declaration
    public static FieldOverwriteBase FromJson(string data)
    Parameters
    string data

    Returns
    FieldOverwriteBase

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX