Show / Hide Table of Contents

Class Id

An id along with a name to simplify display for a user

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

Properties

DisplayName

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

User friendly name

Remarks

Required

IdProp

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

unique identifier that is immutable on creation

Remarks

Required

In this article
Back to top