Show / Hide Table of Contents

Class CreateGlossaryDetails

Properties used in glossary create operations.

Inheritance
object
CreateGlossaryDetails
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 CreateGlossaryDetails

Properties

CustomPropertyMembers

Declaration
[JsonProperty(PropertyName = "customPropertyMembers")]
public List<CustomPropertySetUsage> CustomPropertyMembers { get; set; }
Property Value
Type Description
List<CustomPropertySetUsage>

The list of customized properties along with the values for this object

Description

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

Detailed description of the glossary.

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. Does not have to be unique, and it's changeable. Avoid entering confidential information.

Remarks

Required

Owner

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

OCID of the user who is the owner of the glossary.

WorkflowStatus

Declaration
[JsonProperty(PropertyName = "workflowStatus")]
[JsonConverter(typeof(StringEnumConverter))]
public TermWorkflowStatus? WorkflowStatus { get; set; }
Property Value
Type Description
TermWorkflowStatus?

Status of the approval process workflow for this business glossary.

In this article
Back to top