Search Results for

    Show / Hide Table of Contents

    Class UserAddress

    User's address

    Inheritance
    object
    UserAddress
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: System.Dynamic.ExpandoObject
    Syntax
    [GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
    public class UserAddress

    Properties

    Address

    Street and house number.

    Declaration
    [JsonProperty("address", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string Address { get; set; }
    Property Value
    string

    AlternativeAddress

    Additional address line.

    Declaration
    [JsonProperty("alternativeAddress", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string AlternativeAddress { get; set; }
    Property Value
    string

    City

    City or town.

    Declaration
    [JsonProperty("city", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string City { get; set; }
    Property Value
    string

    Company

    Company address line

    Declaration
    [JsonProperty("company", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string Company { get; set; }
    Property Value
    string

    CountryCode

    Country code.

    Declaration
    [JsonProperty("countryCode", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string CountryCode { get; set; }
    Property Value
    string

    Department

    Company department.

    Declaration
    [JsonProperty("department", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string Department { get; set; }
    Property Value
    string

    Phone

    Phone number.

    Declaration
    [JsonProperty("phone", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string Phone { get; set; }
    Property Value
    string

    Zip

    ZIP code.

    Declaration
    [JsonProperty("zip", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string Zip { get; set; }
    Property Value
    string

    Methods

    FromJson(string)

    Declaration
    public static UserAddress FromJson(string data)
    Parameters
    string data

    Returns
    UserAddress

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX