Class UserInfoAddress
- Namespace
- Auth0.AuthenticationApi.Models
- Assembly
- Auth0.AuthenticationApi.dll
Represents a physical mailing address of an user.
public class UserInfoAddress
- Inheritance
-
UserInfoAddress
- Inherited Members
Properties
Country
Country component of the address.
[JsonProperty("country")]
public string Country { get; set; }
Property Value
Formatted
Full mailing address, formatted for display or use on a mailing label.
[JsonProperty("formatted")]
public string Formatted { get; set; }
Property Value
Remarks
MAY contain multiple lines, separated by newlines as either CRLF (Windows) \r\n
or LF (Unix) \n
.
Locality
City or locality component of the address.
[JsonProperty("locality")]
public string Locality { get; set; }
Property Value
PostalCode
Zip or postal code component of the address.
[JsonProperty("postal_code")]
public string PostalCode { get; set; }
Property Value
Region
State, province, prefecture, or region component of the address.
[JsonProperty("region")]
public string Region { get; set; }
Property Value
StreetAddress
Full street address component, which MAY include house number, street name, Post Office Box, and multi-line extended street address information.
[JsonProperty("street_address")]
public string StreetAddress { get; set; }
Property Value
Remarks
MAY contain multiple lines, separated by newlines as either CRLF (Windows) \r\n
or LF (Unix) \n
.