Search Results for

    Show / Hide Table of Contents

    Class FieldExistsResponse

    Response for a query if a field exists

    Inheritance
    object
    FieldExistsResponse
    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
    [GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
    public class FieldExistsResponse

    Properties

    Exists

    Indicates if a field with the specified ID currently exists.

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

    PreviouslyUsed

    Indicates if a field with the specified ID was previously used.
    A field ID that was previously in use cannot be used again.

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

    SchemaId

    If the field does already exist or has already existed, this will contain the ID
    of the schema containing it. It case of parent-child schemas, a field ID
    has to be unique across the schema hierarchy.

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

    Methods

    FromJson(string)

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

    Returns
    FieldExistsResponse

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX