io.sphere.sdk.carts.commands.updateactions.Recalculate Maven / Gradle / Ivy
package io.sphere.sdk.carts.commands.updateactions;
import io.sphere.sdk.carts.Cart;
import io.sphere.sdk.commands.UpdateActionImpl;
/**
Updates tax rates and prices.
{@doc.gen intro}
{@include.example io.sphere.sdk.carts.commands.CartUpdateCommandTest#recalculate()}
*/
public class Recalculate extends UpdateActionImpl {
private Recalculate() {
super("recalculate");
}
public static Recalculate of() {
return new Recalculate();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy