Show / Hide Table of Contents

Class AddressRule

Addres rule information

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

Properties

Address

Declaration
[Required(ErrorMessage = "Address is required.")]
[JsonProperty(PropertyName = "address")]
public AddressTypeRule Address { get; set; }
Property Value
Type Description
AddressTypeRule
Remarks

Required

Contact

Declaration
[JsonProperty(PropertyName = "contact")]
public ContactTypeRule Contact { get; set; }
Property Value
Type Description
ContactTypeRule

CountryCode

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

Country code for the address rule in ISO-3166-1 2-letter format

Remarks

Required

Tax

Declaration
[JsonProperty(PropertyName = "tax")]
public TaxTypeRule Tax { get; set; }
Property Value
Type Description
TaxTypeRule
In this article
Back to top