Class LineItemVatInformation
VAT information for a single line item
Inheritance
System.Object
LineItemVatInformation
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 LineItemVatInformation : INotifyPropertyChanged
Properties
| Improve this Doc View SourceVatCategory
The VAT category for the charge
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 |
VatRate
The actual tax rate as a decimal value,
meaning 19% would be 0.19
Declaration
[JsonProperty("vatRate", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public decimal? VatRate { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Decimal> |
Methods
| Improve this Doc View SourceFromJson(String)
Declaration
public static LineItemVatInformation FromJson(string data)
Parameters
Type | Name | Description |
---|---|---|
System.String | data |
Returns
Type | Description |
---|---|
LineItemVatInformation |
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