Search Results for

    Show / Hide Table of Contents

    Class Organization

    Represents an organization, e.g. a buyer or a seller

    Inheritance
    System.Object
    Organization
    Implements
    System.ComponentModel.INotifyPropertyChanged
    Inherited Members
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.ToString()
    Namespace: Dangl.AVACloud.Client
    Assembly: Dangl.AVACloud.Client.dll
    Syntax
    public class Organization : INotifyPropertyChanged

    Properties

    | Improve this Doc View Source

    Address

    The address of the organization

    Declaration
    [JsonProperty("address", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string Address { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    City

    The city of the organization

    Declaration
    [JsonProperty("city", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string City { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    ContactPersonEmail

    The email of a contact person

    Declaration
    [JsonProperty("contactPersonEmail", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string ContactPersonEmail { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    ContactPersonName

    The name of a contact person

    Declaration
    [JsonProperty("contactPersonName", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string ContactPersonName { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    ContactPersonPhone

    The phone of a contact person

    Declaration
    [JsonProperty("contactPersonPhone", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string ContactPersonPhone { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    CountryCode

    The ISO 3166-1 2 letter country code

    Declaration
    [JsonProperty("countryCode", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string CountryCode { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    Email

    An email address for the organization

    Declaration
    [JsonProperty("email", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string Email { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    Name

    The name of the organization

    Declaration
    [JsonProperty("name", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string Name { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    State

    The state of the organization, e.g. a federal state in Germany

    Declaration
    [JsonProperty("state", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string State { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    VatId

    The VAT ID for the organization

    Declaration
    [JsonProperty("vatId", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string VatId { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    ZipCode

    The zip code of the organization

    Declaration
    [JsonProperty("zipCode", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string ZipCode { get; set; }
    Property Value
    Type Description
    System.String

    Methods

    | Improve this Doc View Source

    FromJson(String)

    Declaration
    public static Organization FromJson(string data)
    Parameters
    Type Name Description
    System.String data
    Returns
    Type Description
    Organization
    | Improve this Doc View Source

    RaisePropertyChanged(String)

    Declaration
    protected virtual void RaisePropertyChanged(string propertyName = null)
    Parameters
    Type Name Description
    System.String propertyName
    | Improve this Doc View Source

    ToJson()

    Declaration
    public string ToJson()
    Returns
    Type Description
    System.String

    Events

    | Improve this Doc View Source

    PropertyChanged

    Declaration
    public event PropertyChangedEventHandler PropertyChanged
    Event Type
    Type Description
    System.ComponentModel.PropertyChangedEventHandler

    Implements

    System.ComponentModel.INotifyPropertyChanged
    • Improve this Doc
    • View Source
    In This Article
    Back to top © Dangl IT GmbH