Show / Hide Table of Contents

Class LinkFeatureSummary

Result of a query request for a list of link features. Contains LinkFeature items.

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

Properties

Description

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

Description of the feature.

Remarks

Required

DisplayName

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

Display name of the feature.

Remarks

Required

Feature

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

The feature associated with this link. Default value is CORE.

Remarks

Required

PartnerServiceConsoleUrl

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

ConsoleUrl of the feature.

UserGuideUrl

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

UserGuideUrl of the feature.

In this article
Back to top