Search Results for

    Show / Hide Table of Contents

    Class VatBreakdown

    Describes the VAT breakdown for an invoice
    in a single VAT category

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

    Properties

    | Improve this Doc View Source

    NetTaxableAmount

    The total net amount of this VAT category

    Declaration
    [JsonProperty("netTaxableAmount", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public decimal? NetTaxableAmount { get; set; }
    Property Value
    Type Description
    System.Nullable<System.Decimal>
    | Improve this Doc View Source

    TaxRate

    The actual tax rate as a decimal value,
    e.g. 19% would be 0.19

    Declaration
    [JsonProperty("taxRate", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public decimal? TaxRate { get; set; }
    Property Value
    Type Description
    System.Nullable<System.Decimal>
    | Improve this Doc View Source

    VatAmount

    The total VAT

    Declaration
    [JsonProperty("vatAmount", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public decimal? VatAmount { get; set; }
    Property Value
    Type Description
    System.Nullable<System.Decimal>
    | Improve this Doc View Source

    VatCategory

    The category of the VAT

    Declaration
    [JsonProperty("vatCategory", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
    [Required(AllowEmptyStrings = true)]
    [JsonConverter(typeof(StringEnumConverter))]
    public VatCategory VatCategory { get; set; }
    Property Value
    Type Description
    VatCategory
    | Improve this Doc View Source

    VatExemptionReasonCode

    A code from the VAT exemption reason code list(VATEX)“

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

    VatExemptionReasonText

    If the VAT is exempt, there should be a description here.
    For example, in reverse charge scenarios, this text
    should contain a reference to "Reverse charge according to ...".

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

    Methods

    | Improve this Doc View Source

    FromJson(String)

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