All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.taxjar.model.transactions.LineItem Maven / Gradle / Ivy

There is a newer version: 5.0.3
Show newest version
package com.taxjar.model.transactions;

import com.google.gson.annotations.SerializedName;

public class LineItem {
    @SerializedName("id")
    String id;

    @SerializedName("quantity")
    Integer quantity;

    @SerializedName("product_identifier")
    String productIdentifier;

    @SerializedName("description")
    String description;

    @SerializedName("product_tax_code")
    String productTaxCode;

    @SerializedName("unit_price")
    Float unitPrice;

    @SerializedName("discount")
    Float discount;

    @SerializedName("sales_tax")
    Float salesTax;

    public String getId() {
        return id;
    }

    public Integer getQuantity() {
        return quantity;
    }

    public String getProductIdentifier() {
        return productIdentifier;
    }

    public String getDescription() {
        return description;
    }

    public String getProductTaxCode() {
        return productTaxCode;
    }

    public Float getUnitPrice() {
        return unitPrice;
    }

    public Float getDiscount() {
        return discount;
    }

    public Float getSalesTax() {
        return salesTax;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy