Search Results for

    Show / Hide Table of Contents

    Class PaymentInstructions

    Instructions how payment for an invoice should be provided.

    Inheritance
    System.Object
    PaymentInstructions
    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 PaymentInstructions : INotifyPropertyChanged

    Properties

    | Improve this Doc View Source

    Description

    Additional text to describe the payment instructions.

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

    PaymentMeans

    A list of payment means that can be used to pay the invoice.

    Declaration
    [JsonProperty("paymentMeans", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public ObservableCollection<PaymentMeans> PaymentMeans { get; set; }
    Property Value
    Type Description
    System.Collections.ObjectModel.ObservableCollection<PaymentMeans>
    | Improve this Doc View Source

    PaymentTypeCode

    This should be a code according to UN/ECE 4461
    to identify the type of payment. For example, code "58" means SEPA Credit Transfer,
    and code "30" means non-SEPA Credit Transfer.

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

    Methods

    | Improve this Doc View Source

    FromJson(String)

    Declaration
    public static PaymentInstructions FromJson(string data)
    Parameters
    Type Name Description
    System.String data
    Returns
    Type Description
    PaymentInstructions
    | 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