Show / Hide Table of Contents

Class Link

The model for links.

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

Properties

Href

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

The anchor tag.

Rel

Declaration
[JsonProperty(PropertyName = "rel")]
[JsonConverter(typeof(ResponseEnumConverter))]
public LinkEnum? Rel { get; set; }
Property Value
Type Description
LinkEnum?

Reference links to the previous page, next page, and other pages.

In this article
Back to top