io.sphere.sdk.customers.commands.updateactions.SetCustomField Maven / Gradle / Ivy
package io.sphere.sdk.customers.commands.updateactions;
import com.fasterxml.jackson.databind.JsonNode;
import io.sphere.sdk.customers.Customer;
import io.sphere.sdk.json.SphereJsonUtils;
import io.sphere.sdk.types.customupdateactions.SetCustomFieldBase;
/**
* Updates a custom field.
*
* @see io.sphere.sdk.types.Custom
*/
public class SetCustomField extends SetCustomFieldBase {
private SetCustomField(final String name, final JsonNode value) {
super(name, value);
}
public static SetCustomField ofJson(final String name, final JsonNode value) {
return new SetCustomField(name, value);
}
public static SetCustomField ofObject(final String name, final Object value) {
final JsonNode jsonNode = SphereJsonUtils.toJsonNode(value);
return ofJson(name, jsonNode);
}
public static SetCustomField ofUnset(final String name) {
return ofJson(name, null);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy