com.conekta.model.ShippingOrderResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ct-conekta-java Show documentation
Show all versions of ct-conekta-java Show documentation
This is a java library that allows interaction with https://api.conekta.io API.
The newest version!
/*
* Conekta API
* Conekta sdk
*
* The version of the OpenAPI document: 2.1.0
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.conekta.model;
import java.util.Objects;
import java.util.Map;
import java.util.HashMap;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.conekta.JSON;
/**
* ShippingOrderResponse
*/
@JsonPropertyOrder({
ShippingOrderResponse.JSON_PROPERTY_AMOUNT,
ShippingOrderResponse.JSON_PROPERTY_CARRIER,
ShippingOrderResponse.JSON_PROPERTY_TRACKING_NUMBER,
ShippingOrderResponse.JSON_PROPERTY_METHOD,
ShippingOrderResponse.JSON_PROPERTY_METADATA,
ShippingOrderResponse.JSON_PROPERTY_ID,
ShippingOrderResponse.JSON_PROPERTY_OBJECT,
ShippingOrderResponse.JSON_PROPERTY_PARENT_ID
})
@JsonTypeName("shipping_order_response")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0")
public class ShippingOrderResponse {
public static final String JSON_PROPERTY_AMOUNT = "amount";
private Long amount;
public static final String JSON_PROPERTY_CARRIER = "carrier";
private String carrier;
public static final String JSON_PROPERTY_TRACKING_NUMBER = "tracking_number";
private String trackingNumber;
public static final String JSON_PROPERTY_METHOD = "method";
private String method;
public static final String JSON_PROPERTY_METADATA = "metadata";
private Map metadata = new HashMap<>();
public static final String JSON_PROPERTY_ID = "id";
private String id;
public static final String JSON_PROPERTY_OBJECT = "object";
private String _object;
public static final String JSON_PROPERTY_PARENT_ID = "parent_id";
private String parentId;
public ShippingOrderResponse() {
}
public ShippingOrderResponse amount(Long amount) {
this.amount = amount;
return this;
}
/**
* Shipping amount in cents
* minimum: 0
* @return amount
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_AMOUNT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public Long getAmount() {
return amount;
}
@JsonProperty(JSON_PROPERTY_AMOUNT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setAmount(Long amount) {
this.amount = amount;
}
public ShippingOrderResponse carrier(String carrier) {
this.carrier = carrier;
return this;
}
/**
* Carrier name for the shipment
* @return carrier
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CARRIER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getCarrier() {
return carrier;
}
@JsonProperty(JSON_PROPERTY_CARRIER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setCarrier(String carrier) {
this.carrier = carrier;
}
public ShippingOrderResponse trackingNumber(String trackingNumber) {
this.trackingNumber = trackingNumber;
return this;
}
/**
* Tracking number can be used to track the shipment
* @return trackingNumber
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TRACKING_NUMBER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getTrackingNumber() {
return trackingNumber;
}
@JsonProperty(JSON_PROPERTY_TRACKING_NUMBER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setTrackingNumber(String trackingNumber) {
this.trackingNumber = trackingNumber;
}
public ShippingOrderResponse method(String method) {
this.method = method;
return this;
}
/**
* Method of shipment
* @return method
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_METHOD)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getMethod() {
return method;
}
@JsonProperty(JSON_PROPERTY_METHOD)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setMethod(String method) {
this.method = method;
}
public ShippingOrderResponse metadata(Map metadata) {
this.metadata = metadata;
return this;
}
public ShippingOrderResponse putMetadataItem(String key, Object metadataItem) {
if (this.metadata == null) {
this.metadata = new HashMap<>();
}
this.metadata.put(key, metadataItem);
return this;
}
/**
* Hash where the user can send additional information for each 'shipping'.
* @return metadata
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_METADATA)
@JsonInclude(content = JsonInclude.Include.ALWAYS, value = JsonInclude.Include.USE_DEFAULTS)
public Map getMetadata() {
return metadata;
}
@JsonProperty(JSON_PROPERTY_METADATA)
@JsonInclude(content = JsonInclude.Include.ALWAYS, value = JsonInclude.Include.USE_DEFAULTS)
public void setMetadata(Map metadata) {
this.metadata = metadata;
}
public ShippingOrderResponse id(String id) {
this.id = id;
return this;
}
/**
* Get id
* @return id
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getId() {
return id;
}
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setId(String id) {
this.id = id;
}
public ShippingOrderResponse _object(String _object) {
this._object = _object;
return this;
}
/**
* Get _object
* @return _object
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_OBJECT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getObject() {
return _object;
}
@JsonProperty(JSON_PROPERTY_OBJECT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setObject(String _object) {
this._object = _object;
}
public ShippingOrderResponse parentId(String parentId) {
this.parentId = parentId;
return this;
}
/**
* Get parentId
* @return parentId
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getParentId() {
return parentId;
}
@JsonProperty(JSON_PROPERTY_PARENT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setParentId(String parentId) {
this.parentId = parentId;
}
/**
* Return true if this shipping_order_response object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ShippingOrderResponse shippingOrderResponse = (ShippingOrderResponse) o;
return Objects.equals(this.amount, shippingOrderResponse.amount) &&
Objects.equals(this.carrier, shippingOrderResponse.carrier) &&
Objects.equals(this.trackingNumber, shippingOrderResponse.trackingNumber) &&
Objects.equals(this.method, shippingOrderResponse.method) &&
Objects.equals(this.metadata, shippingOrderResponse.metadata) &&
Objects.equals(this.id, shippingOrderResponse.id) &&
Objects.equals(this._object, shippingOrderResponse._object) &&
Objects.equals(this.parentId, shippingOrderResponse.parentId);
}
@Override
public int hashCode() {
return Objects.hash(amount, carrier, trackingNumber, method, metadata, id, _object, parentId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ShippingOrderResponse {\n");
sb.append(" amount: ").append(toIndentedString(amount)).append("\n");
sb.append(" carrier: ").append(toIndentedString(carrier)).append("\n");
sb.append(" trackingNumber: ").append(toIndentedString(trackingNumber)).append("\n");
sb.append(" method: ").append(toIndentedString(method)).append("\n");
sb.append(" metadata: ").append(toIndentedString(metadata)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" _object: ").append(toIndentedString(_object)).append("\n");
sb.append(" parentId: ").append(toIndentedString(parentId)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}