Show / Hide Table of Contents

Class Region

The model for regions supported by a listing and package.

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

Properties

Code

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

The code of the region.

Countries

Declaration
[JsonProperty(PropertyName = "countries")]
public List<Item> Countries { get; set; }
Property Value
Type Description
List<Item>

Countries in the region.

Name

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

The name of the region.

In this article
Back to top