Search Results for

    Show / Hide Table of Contents
    View Source

    Class RelationTypeSave

    Inheritance
    System.Object
    EntityBasic
    Namespace: Umbraco.Cms.Core.Models.ContentEditing
    Assembly: Umbraco.Core.dll
    Syntax
    [DataContract(Name = "relationType", Namespace = "")]
    public class RelationTypeSave : EntityBasic

    Properties

    View Source

    ChildObjectType

    Gets or sets the child object type ID.

    Declaration
    [DataMember(Name = "childObjectType", IsRequired = false)]
    public Guid? ChildObjectType { get; set; }
    Property Value
    Type Description
    System.Nullable<Guid>
    View Source

    IsBidirectional

    Gets or sets a boolean indicating whether the RelationType is Bidirectional (true) or Parent to Child (false)

    Declaration
    [DataMember(Name = "isBidirectional", IsRequired = true)]
    public bool IsBidirectional { get; set; }
    Property Value
    Type Description
    System.Boolean
    View Source

    IsDependency

    Gets or sets a boolean indicating whether the RelationType should be returned in "Used by"-queries.

    Declaration
    [DataMember(Name = "isDependency", IsRequired = true)]
    public bool IsDependency { get; set; }
    Property Value
    Type Description
    System.Boolean
    View Source

    ParentObjectType

    Gets or sets the parent object type ID.

    Declaration
    [DataMember(Name = "parentObjectType", IsRequired = false)]
    public Guid? ParentObjectType { get; set; }
    Property Value
    Type Description
    System.Nullable<Guid>
    • Improve this Doc
    • View Source
    In This Article
    • Properties
      • ChildObjectType
      • IsBidirectional
      • IsDependency
      • ParentObjectType
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX