Show / Hide Table of Contents

Class Country

Country details model

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

Properties

Ascii3CountryCode

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

Country code in ISO-3166-1 3-letter format

CountryCode

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

Country code in ISO-3166-1 2-letter format

CountryId

Declaration
[JsonProperty(PropertyName = "countryId")]
public decimal? CountryId { get; set; }
Property Value
Type Description
decimal?

Indentifier of the country. This is a DB side unique id which was generated when the entity was created in the table

CountryName

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

Name of the country

LanguageId

Declaration
[JsonProperty(PropertyName = "languageId")]
public decimal? LanguageId { get; set; }
Property Value
Type Description
decimal?

Language identifier

In this article
Back to top