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

io.sphere.sdk.customers.commands.updateactions.SetVatId Maven / Gradle / Ivy

There is a newer version: 1.0.0-M12
Show newest version
package io.sphere.sdk.customers.commands.updateactions;

import io.sphere.sdk.commands.UpdateAction;
import io.sphere.sdk.customers.Customer;

import java.util.Optional;

/**
 * Sets a new vat ID for the customer
 *
 * {@include.example io.sphere.sdk.customers.commands.CustomerUpdateCommandTest#setVatId()}
 */
public class SetVatId extends UpdateAction {
    private final Optional vatId;

    private SetVatId(final Optional vatId) {
        super("setVatId");
        this.vatId = vatId;
    }

    public static SetVatId of(final Optional vatId) {
        return new SetVatId(vatId);
    }

    public static SetVatId of(final String vatId) {
        return of(Optional.of(vatId));
    }

    public Optional getVatId() {
        return vatId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy