001
002package com.commercetools.api.models.tax_category;
003
004import java.util.*;
005
006import io.vrap.rmf.base.client.utils.Generated;
007
008/**
009 * TaxCategoryUpdateActionBuilder
010 */
011@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
012public class TaxCategoryUpdateActionBuilder {
013
014    public com.commercetools.api.models.tax_category.TaxCategoryAddTaxRateActionBuilder addTaxRateBuilder() {
015        return com.commercetools.api.models.tax_category.TaxCategoryAddTaxRateActionBuilder.of();
016    }
017
018    public com.commercetools.api.models.tax_category.TaxCategoryChangeNameActionBuilder changeNameBuilder() {
019        return com.commercetools.api.models.tax_category.TaxCategoryChangeNameActionBuilder.of();
020    }
021
022    public com.commercetools.api.models.tax_category.TaxCategoryRemoveTaxRateActionBuilder removeTaxRateBuilder() {
023        return com.commercetools.api.models.tax_category.TaxCategoryRemoveTaxRateActionBuilder.of();
024    }
025
026    public com.commercetools.api.models.tax_category.TaxCategoryReplaceTaxRateActionBuilder replaceTaxRateBuilder() {
027        return com.commercetools.api.models.tax_category.TaxCategoryReplaceTaxRateActionBuilder.of();
028    }
029
030    public com.commercetools.api.models.tax_category.TaxCategorySetDescriptionActionBuilder setDescriptionBuilder() {
031        return com.commercetools.api.models.tax_category.TaxCategorySetDescriptionActionBuilder.of();
032    }
033
034    public com.commercetools.api.models.tax_category.TaxCategorySetKeyActionBuilder setKeyBuilder() {
035        return com.commercetools.api.models.tax_category.TaxCategorySetKeyActionBuilder.of();
036    }
037
038    /**
039     * factory method for an instance of TaxCategoryUpdateActionBuilder
040     * @return builder
041     */
042    public static TaxCategoryUpdateActionBuilder of() {
043        return new TaxCategoryUpdateActionBuilder();
044    }
045
046}