Show / Hide Table of Contents

Class CreateTermRelationshipDetails

Properties used in term relationship create operations.

Inheritance
object
CreateTermRelationshipDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatacatalogService.Models
Assembly: OCI.DotNetSDK.Datacatalog.dll
Syntax
public class CreateTermRelationshipDetails

Properties

Description

Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
string

Detailed description of the term relationship usually defined at the time of creation.

DisplayName

Declaration
[Required(ErrorMessage = "DisplayName is required.")]
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

A user-friendly display name. Is changeable. The combination of 'displayName' and 'parentTermKey' must be unique. Avoid entering confidential information. This is the same as 'relationshipType' for 'termRelationship'.

Remarks

Required

RelatedTermKey

Declaration
[Required(ErrorMessage = "RelatedTermKey is required.")]
[JsonProperty(PropertyName = "relatedTermKey")]
public string RelatedTermKey { get; set; }
Property Value
Type Description
string

Unique id of the related term.

Remarks

Required

In this article
Back to top