Show / Hide Table of Contents

Class ServiceDefinition

Details for a service definition.

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

Properties

DisplayName

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

Display name of the service. For example, "Oracle Retail Order Management Cloud Service".

Remarks

Required

ShortDisplayName

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

Short display name of the service. For example, "Retail Order Management".

Remarks

Required

Type

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

The service definition type. For example, a service definition type "RGBUOROMS" would be for the service "Oracle Retail Order Management Cloud Service".

Remarks

Required

In this article
Back to top