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 SourceAddress
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 SourceFromJson(String)
Declaration
public static Organization FromJson(string data)
Parameters
Type | Name | Description |
---|---|---|
System.String | data |
Returns
Type | Description |
---|---|
Organization |
RaisePropertyChanged(String)
Declaration
protected virtual void RaisePropertyChanged(string propertyName = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | propertyName |
ToJson()
Declaration
public string ToJson()
Returns
Type | Description |
---|---|
System.String |
Events
| Improve this Doc View SourcePropertyChanged
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
Type | Description |
---|---|
System.ComponentModel.PropertyChangedEventHandler |
Implements
System.ComponentModel.INotifyPropertyChanged