com.stripe.param.OrderUpdateParams Maven / Gradle / Ivy
// Generated by delombok at Thu Oct 07 18:42:34 EDT 2021
// File generated from our OpenAPI spec
package com.stripe.param;
import com.google.gson.annotations.SerializedName;
import com.stripe.net.ApiRequestParams;
import com.stripe.param.common.EmptyParam;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class OrderUpdateParams extends ApiRequestParams {
/**
* A coupon code that represents a discount to be applied to this order. Must be one-time duration
* and in same currency as the order. An order can have multiple coupons.
*/
@SerializedName("coupon")
Object coupon;
/**
* Specifies which fields in the response should be expanded.
*/
@SerializedName("expand")
List expand;
/**
* Map of extra parameters for custom features not available in this client library. The content
* in this map is not serialized under this field's {@code @SerializedName} value. Instead, each
* key/value pair is serialized as if the key is a root-level field (serialized) name in this
* param object. Effectively, this map is flattened to its parent instance.
*/
@SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY)
Map extraParams;
/**
* Set of key-value pairs that you can attach
* to an object. This can be useful for storing additional information about the object in a
* structured format. Individual keys can be unset by posting an empty value to them. All keys can
* be unset by posting an empty value to {@code metadata}.
*/
@SerializedName("metadata")
Object metadata;
/**
* The shipping method to select for fulfilling this order. If specified, must be one of the
* {@code id}s of a shipping method in the {@code shipping_methods} array. If specified, will
* overwrite the existing selected shipping method, updating {@code items} as necessary.
*/
@SerializedName("selected_shipping_method")
Object selectedShippingMethod;
/**
* Tracking information once the order has been fulfilled.
*/
@SerializedName("shipping")
Shipping shipping;
/**
* Current order status. One of {@code created}, {@code paid}, {@code canceled}, {@code
* fulfilled}, or {@code returned}. More detail in the Orders Guide.
*/
@SerializedName("status")
Status status;
private OrderUpdateParams(Object coupon, List expand, Map extraParams, Object metadata, Object selectedShippingMethod, Shipping shipping, Status status) {
this.coupon = coupon;
this.expand = expand;
this.extraParams = extraParams;
this.metadata = metadata;
this.selectedShippingMethod = selectedShippingMethod;
this.shipping = shipping;
this.status = status;
}
public static Builder builder() {
return new Builder();
}
public static class Builder {
private Object coupon;
private List expand;
private Map extraParams;
private Object metadata;
private Object selectedShippingMethod;
private Shipping shipping;
private Status status;
/**
* Finalize and obtain parameter instance from this builder.
*/
public OrderUpdateParams build() {
return new OrderUpdateParams(this.coupon, this.expand, this.extraParams, this.metadata, this.selectedShippingMethod, this.shipping, this.status);
}
/**
* A coupon code that represents a discount to be applied to this order. Must be one-time
* duration and in same currency as the order. An order can have multiple coupons.
*/
public Builder setCoupon(String coupon) {
this.coupon = coupon;
return this;
}
/**
* A coupon code that represents a discount to be applied to this order. Must be one-time
* duration and in same currency as the order. An order can have multiple coupons.
*/
public Builder setCoupon(EmptyParam coupon) {
this.coupon = coupon;
return this;
}
/**
* Add an element to `expand` list. A list is initialized for the first `add/addAll` call, and
* subsequent calls adds additional elements to the original list. See {@link
* OrderUpdateParams#expand} for the field documentation.
*/
public Builder addExpand(String element) {
if (this.expand == null) {
this.expand = new ArrayList<>();
}
this.expand.add(element);
return this;
}
/**
* Add all elements to `expand` list. A list is initialized for the first `add/addAll` call, and
* subsequent calls adds additional elements to the original list. See {@link
* OrderUpdateParams#expand} for the field documentation.
*/
public Builder addAllExpand(List elements) {
if (this.expand == null) {
this.expand = new ArrayList<>();
}
this.expand.addAll(elements);
return this;
}
/**
* Add a key/value pair to `extraParams` map. A map is initialized for the first `put/putAll`
* call, and subsequent calls add additional key/value pairs to the original map. See {@link
* OrderUpdateParams#extraParams} for the field documentation.
*/
public Builder putExtraParam(String key, Object value) {
if (this.extraParams == null) {
this.extraParams = new HashMap<>();
}
this.extraParams.put(key, value);
return this;
}
/**
* Add all map key/value pairs to `extraParams` map. A map is initialized for the first
* `put/putAll` call, and subsequent calls add additional key/value pairs to the original map.
* See {@link OrderUpdateParams#extraParams} for the field documentation.
*/
public Builder putAllExtraParam(Map map) {
if (this.extraParams == null) {
this.extraParams = new HashMap<>();
}
this.extraParams.putAll(map);
return this;
}
/**
* Add a key/value pair to `metadata` map. A map is initialized for the first `put/putAll` call,
* and subsequent calls add additional key/value pairs to the original map. See {@link
* OrderUpdateParams#metadata} for the field documentation.
*/
@SuppressWarnings("unchecked")
public Builder putMetadata(String key, String value) {
if (this.metadata == null || this.metadata instanceof EmptyParam) {
this.metadata = new HashMap();
}
((Map) this.metadata).put(key, value);
return this;
}
/**
* Add all map key/value pairs to `metadata` map. A map is initialized for the first
* `put/putAll` call, and subsequent calls add additional key/value pairs to the original map.
* See {@link OrderUpdateParams#metadata} for the field documentation.
*/
@SuppressWarnings("unchecked")
public Builder putAllMetadata(Map map) {
if (this.metadata == null || this.metadata instanceof EmptyParam) {
this.metadata = new HashMap();
}
((Map) this.metadata).putAll(map);
return this;
}
/**
* Set of key-value pairs that you can attach
* to an object. This can be useful for storing additional information about the object in a
* structured format. Individual keys can be unset by posting an empty value to them. All keys
* can be unset by posting an empty value to {@code metadata}.
*/
public Builder setMetadata(EmptyParam metadata) {
this.metadata = metadata;
return this;
}
/**
* Set of key-value pairs that you can attach
* to an object. This can be useful for storing additional information about the object in a
* structured format. Individual keys can be unset by posting an empty value to them. All keys
* can be unset by posting an empty value to {@code metadata}.
*/
public Builder setMetadata(Map metadata) {
this.metadata = metadata;
return this;
}
/**
* The shipping method to select for fulfilling this order. If specified, must be one of the
* {@code id}s of a shipping method in the {@code shipping_methods} array. If specified, will
* overwrite the existing selected shipping method, updating {@code items} as necessary.
*/
public Builder setSelectedShippingMethod(String selectedShippingMethod) {
this.selectedShippingMethod = selectedShippingMethod;
return this;
}
/**
* The shipping method to select for fulfilling this order. If specified, must be one of the
* {@code id}s of a shipping method in the {@code shipping_methods} array. If specified, will
* overwrite the existing selected shipping method, updating {@code items} as necessary.
*/
public Builder setSelectedShippingMethod(EmptyParam selectedShippingMethod) {
this.selectedShippingMethod = selectedShippingMethod;
return this;
}
/**
* Tracking information once the order has been fulfilled.
*/
public Builder setShipping(Shipping shipping) {
this.shipping = shipping;
return this;
}
/**
* Current order status. One of {@code created}, {@code paid}, {@code canceled}, {@code
* fulfilled}, or {@code returned}. More detail in the Orders Guide.
*/
public Builder setStatus(Status status) {
this.status = status;
return this;
}
}
public static class Shipping {
/**
* The name of the carrier like {@code USPS}, {@code UPS}, or {@code FedEx}.
*/
@SerializedName("carrier")
Object carrier;
/**
* Map of extra parameters for custom features not available in this client library. The content
* in this map is not serialized under this field's {@code @SerializedName} value. Instead, each
* key/value pair is serialized as if the key is a root-level field (serialized) name in this
* param object. Effectively, this map is flattened to its parent instance.
*/
@SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY)
Map extraParams;
/**
* The tracking number provided by the carrier.
*/
@SerializedName("tracking_number")
Object trackingNumber;
private Shipping(Object carrier, Map extraParams, Object trackingNumber) {
this.carrier = carrier;
this.extraParams = extraParams;
this.trackingNumber = trackingNumber;
}
public static Builder builder() {
return new Builder();
}
public static class Builder {
private Object carrier;
private Map extraParams;
private Object trackingNumber;
/** Finalize and obtain parameter instance from this builder. */
public Shipping build() {
return new Shipping(this.carrier, this.extraParams, this.trackingNumber);
}
/** The name of the carrier like {@code USPS}, {@code UPS}, or {@code FedEx}. */
public Builder setCarrier(String carrier) {
this.carrier = carrier;
return this;
}
/** The name of the carrier like {@code USPS}, {@code UPS}, or {@code FedEx}. */
public Builder setCarrier(EmptyParam carrier) {
this.carrier = carrier;
return this;
}
/**
* Add a key/value pair to `extraParams` map. A map is initialized for the first `put/putAll`
* call, and subsequent calls add additional key/value pairs to the original map. See {@link
* OrderUpdateParams.Shipping#extraParams} for the field documentation.
*/
public Builder putExtraParam(String key, Object value) {
if (this.extraParams == null) {
this.extraParams = new HashMap<>();
}
this.extraParams.put(key, value);
return this;
}
/**
* Add all map key/value pairs to `extraParams` map. A map is initialized for the first
* `put/putAll` call, and subsequent calls add additional key/value pairs to the original map.
* See {@link OrderUpdateParams.Shipping#extraParams} for the field documentation.
*/
public Builder putAllExtraParam(Map map) {
if (this.extraParams == null) {
this.extraParams = new HashMap<>();
}
this.extraParams.putAll(map);
return this;
}
/** The tracking number provided by the carrier. */
public Builder setTrackingNumber(String trackingNumber) {
this.trackingNumber = trackingNumber;
return this;
}
public Builder setTrackingNumber(EmptyParam trackingNumber) {
this.trackingNumber = trackingNumber;
return this;
}
}
/**
* The name of the carrier like {@code USPS}, {@code UPS}, or {@code FedEx}.
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public Object getCarrier() {
return this.carrier;
}
/**
* Map of extra parameters for custom features not available in this client library. The content
* in this map is not serialized under this field's {@code @SerializedName} value. Instead, each
* key/value pair is serialized as if the key is a root-level field (serialized) name in this
* param object. Effectively, this map is flattened to its parent instance.
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public Map getExtraParams() {
return this.extraParams;
}
/**
* The tracking number provided by the carrier.
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public Object getTrackingNumber() {
return this.trackingNumber;
}
}
/**
* The tracking number provided by the carrier.
*/
public enum Status implements ApiRequestParams.EnumParam {
@SerializedName("canceled")
CANCELED("canceled"), @SerializedName("created")
CREATED("created"), @SerializedName("fulfilled")
FULFILLED("fulfilled"), @SerializedName("paid")
PAID("paid"), @SerializedName("returned")
RETURNED("returned");
private final String value;
Status(String value) {
this.value = value;
}
@Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public String getValue() {
return this.value;
}
}
/**
* A coupon code that represents a discount to be applied to this order. Must be one-time duration
* and in same currency as the order. An order can have multiple coupons.
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public Object getCoupon() {
return this.coupon;
}
/**
* Specifies which fields in the response should be expanded.
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public List getExpand() {
return this.expand;
}
/**
* Map of extra parameters for custom features not available in this client library. The content
* in this map is not serialized under this field's {@code @SerializedName} value. Instead, each
* key/value pair is serialized as if the key is a root-level field (serialized) name in this
* param object. Effectively, this map is flattened to its parent instance.
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public Map getExtraParams() {
return this.extraParams;
}
/**
* Set of key-value pairs that you can attach
* to an object. This can be useful for storing additional information about the object in a
* structured format. Individual keys can be unset by posting an empty value to them. All keys can
* be unset by posting an empty value to {@code metadata}.
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public Object getMetadata() {
return this.metadata;
}
/**
* The shipping method to select for fulfilling this order. If specified, must be one of the
* {@code id}s of a shipping method in the {@code shipping_methods} array. If specified, will
* overwrite the existing selected shipping method, updating {@code items} as necessary.
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public Object getSelectedShippingMethod() {
return this.selectedShippingMethod;
}
/**
* Tracking information once the order has been fulfilled.
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public Shipping getShipping() {
return this.shipping;
}
/**
* Current order status. One of {@code created}, {@code paid}, {@code canceled}, {@code
* fulfilled}, or {@code returned}. More detail in the Orders Guide.
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public Status getStatus() {
return this.status;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy