Show / Hide Table of Contents

Class PoliticalLocation

The geographical location of a problem in terms of political units.

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

Properties

City

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

City of problem's location

Remarks

Required

Country

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

Country of problem's location

Remarks

Required

State

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

State or province of problem's location

Remarks

Required

In this article
Back to top