Class PaymentMeans
Represents a payment means for an invoice
Inheritance
System.Object
PaymentMeans
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 PaymentMeans : INotifyPropertyChanged
Properties
| Improve this Doc View SourceAccountIdentifier
This is typically the IBAN or account number
Declaration
[JsonProperty("accountIdentifier", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string AccountIdentifier { get; set; }
Property Value
Type | Description |
---|---|
System.String |
AccountName
The name for the account, typically the name of the owner for
a bank account.
Declaration
[JsonProperty("accountName", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string AccountName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ServiceProviderIdentifier
This can be the BIC
Declaration
[JsonProperty("serviceProviderIdentifier", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string ServiceProviderIdentifier { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
| Improve this Doc View SourceFromJson(String)
Declaration
public static PaymentMeans FromJson(string data)
Parameters
Type | Name | Description |
---|---|---|
System.String | data |
Returns
Type | Description |
---|---|
PaymentMeans |
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