Class Addresses
A physical mailing address for this User, as described in (address Element). Canonical Type Values of work, home, and other. The value attribute is a complex type with the following sub-attributes.
Inherited Members
Namespace: Oci.IdentitydomainsService.Models
Assembly: OCI.DotNetSDK.Identitydomains.dll
Syntax
public class Addresses
Properties
Country
Declaration
[JsonProperty(PropertyName = "country")]
public string Country { get; set; }
Property Value
Type | Description |
---|---|
string | The country name component.
|
Formatted
Declaration
[JsonProperty(PropertyName = "formatted")]
public string Formatted { get; set; }
Property Value
Type | Description |
---|---|
string | The full mailing address, formatted for display or use with a mailing label. This attribute MAY contain newlines.
|
Locality
Declaration
[JsonProperty(PropertyName = "locality")]
public string Locality { get; set; }
Property Value
Type | Description |
---|---|
string | The city or locality component.
|
PostalCode
Declaration
[JsonProperty(PropertyName = "postalCode")]
public string PostalCode { get; set; }
Property Value
Type | Description |
---|---|
string | The zipcode or postal code component.
|
Primary
Declaration
[JsonProperty(PropertyName = "primary")]
public bool? Primary { get; set; }
Property Value
Type | Description |
---|---|
bool? | A Boolean value indicating the 'primary' or preferred attribute value for this attribute. The primary attribute value 'true' MUST appear no more than once.
|
Region
Declaration
[JsonProperty(PropertyName = "region")]
public string Region { get; set; }
Property Value
Type | Description |
---|---|
string | The state or region component.
|
StreetAddress
Declaration
[JsonProperty(PropertyName = "streetAddress")]
public string StreetAddress { get; set; }
Property Value
Type | Description |
---|---|
string | The full street address component, which may include house number, street name, PO BOX, and multi-line extended street address information. This attribute MAY contain newlines.
|
Type
Declaration
[Required(ErrorMessage = "Type is required.")]
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Addresses.TypeEnum? Type { get; set; }
Property Value
Type | Description |
---|---|
Addresses.TypeEnum? | A label indicating the attribute's function; e.g., 'work' or 'home'.
|
Remarks
Required