Show / Hide Table of Contents

Class GeoLocation

Support details based on geographic location

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

Properties

Details

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

Support details for specific region

Remarks

Required

GeographicRegion

Declaration
[Required(ErrorMessage = "GeographicRegion is required.")]
[JsonProperty(PropertyName = "geographicRegion")]
[JsonConverter(typeof(ResponseEnumConverter))]
public GeoLocation.GeographicRegionEnum? GeographicRegion { get; set; }
Property Value
Type Description
GeoLocation.GeographicRegionEnum?

Region for geographic location

Remarks

Required

In this article
Back to top