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

io.sphere.sdk.taxcategories.TaxRate Maven / Gradle / Ivy

The newest version!
package io.sphere.sdk.taxcategories;

import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import java.util.Optional;
import com.neovisionaries.i18n.CountryCode;

@JsonDeserialize(as=TaxRateImpl.class)
public interface TaxRate {
    /**
     * The id is created by the backend, so will only be present if fetched from the backend.
     * @return the id or absent
     */
    Optional getId();

    String getName();

    double getAmount();

    boolean isIncludedInPrice();

    CountryCode getCountry();

    Optional getState();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy