io.trippay.sdk.payment.model.PayableContractResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of payment-sdk-java Show documentation
Show all versions of payment-sdk-java Show documentation
Java SDK for the wink Payment API
/*
* Wink Payment API
* A programmatic way to create bookings, receive payment and disburse funds globally. ## APIs Not every integrator needs every APIs. For that reason, we have separated APIs into context. - [Affiliate](/affiliate): All APIs related to selling travel inventory as an affiliate. - [Analytics](/analytics): All APIs related to tracking metrics across a wide variety of data source segments including, more entertaining, leaderboard metrics. - [Booking](/booking): All APIs related to creating platform bookings. - [Channel Manager](/channel-manager): All APIs related to channel managers who want to integrate with our platform. - [Extranet](/extranet): All APIs related to managing travel inventory and suppliers. - [Inventory](/inventory): All APIs related to retrieve known travel inventory as it was found using the Lookup API.. - [Lookup](/lookup): All APIs related to locating inventory by region, locale and property flags. - [Reference](/reference): All APIs related to retrieving platform-supported taxonomies. - [TripPay](/payment): All APIs related to TripPay account management, booking, mapping and integration features. ## SDKs We are actively working on supporting the most used languages out there. If you don't see your language here, reach out to us with a request to officially add your language. In the meantime, if you want to roll your own SDK, you can do so by downloading the OpenAPI spec and using one of the many available OpenAPI generators available: [https://openapi-generator.tech/docs/generators](https://openapi-generator.tech/docs/generators). - Java SDK [https://github.com/wink-travel/trip-pay-sdk-java](https://github.com/wink-travel/trip-pay-sdk-java) # Usage These features are made available to you via a [REST API](https://en.wikipedia.org/wiki/Representational_state_transfer). This API is language agnostic. We will link to SDKs for the most popular programming languages on this page as they become available. ## Versioning We chose to version our endpoints in a way that we hope affects your integration with us the least. You request the version of our API you wish to work with via the `Wink-Version` header. When it's time for you to upgrade, you only have to change the version number to get access to our updated endpoints. ## Release history - Follow updates on Github: https://github.com/wink-travel/wink-sdk-java/blob/master/CHANGELOG.md
*
* The version of the OpenAPI document: 30.3.1
* 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 io.trippay.sdk.payment.model;
import java.util.Objects;
import java.util.Arrays;
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 io.trippay.sdk.payment.model.CustomMonetaryAmount;
import java.util.UUID;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonTypeName;
import jakarta.validation.constraints.*;
import jakarta.validation.Valid;
import org.hibernate.validator.constraints.*;
/**
* Details of the booking entries that went in for one particular supplier directly.
*/
@JsonPropertyOrder({
PayableContractResponse.JSON_PROPERTY_ID,
PayableContractResponse.JSON_PROPERTY_TRACE_ID,
PayableContractResponse.JSON_PROPERTY_SUPPLIER_CONTRACT_IDENTIFIER,
PayableContractResponse.JSON_PROPERTY_SUPPLIER_IDENTIFIER,
PayableContractResponse.JSON_PROPERTY_SUPPLIER_NAME,
PayableContractResponse.JSON_PROPERTY_EXTERNAL_SUPPLIER_IDENTIFIER,
PayableContractResponse.JSON_PROPERTY_EXTERNAL_SUPPLIER_BOOKING_CODE,
PayableContractResponse.JSON_PROPERTY_EXTERNAL_TRANSACTION_IDENTIFIER,
PayableContractResponse.JSON_PROPERTY_TOTAL_PRICE,
PayableContractResponse.JSON_PROPERTY_TOTAL_DISPLAY_PRICE,
PayableContractResponse.JSON_PROPERTY_TOTAL_SUPPLIER_PRICE,
PayableContractResponse.JSON_PROPERTY_TOTAL_INTERNAL_PRICE,
PayableContractResponse.JSON_PROPERTY_TOTAL_CAPTURE_PRICE
})
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-12T10:13:49.239999511+07:00[Asia/Bangkok]")
public class PayableContractResponse {
public static final String JSON_PROPERTY_ID = "id";
private String id;
public static final String JSON_PROPERTY_TRACE_ID = "traceId";
private String traceId;
public static final String JSON_PROPERTY_SUPPLIER_CONTRACT_IDENTIFIER = "supplierContractIdentifier";
private UUID supplierContractIdentifier;
public static final String JSON_PROPERTY_SUPPLIER_IDENTIFIER = "supplierIdentifier";
private UUID supplierIdentifier;
public static final String JSON_PROPERTY_SUPPLIER_NAME = "supplierName";
private String supplierName;
public static final String JSON_PROPERTY_EXTERNAL_SUPPLIER_IDENTIFIER = "externalSupplierIdentifier";
private String externalSupplierIdentifier;
public static final String JSON_PROPERTY_EXTERNAL_SUPPLIER_BOOKING_CODE = "externalSupplierBookingCode";
private String externalSupplierBookingCode;
public static final String JSON_PROPERTY_EXTERNAL_TRANSACTION_IDENTIFIER = "externalTransactionIdentifier";
private String externalTransactionIdentifier;
public static final String JSON_PROPERTY_TOTAL_PRICE = "totalPrice";
private CustomMonetaryAmount totalPrice;
public static final String JSON_PROPERTY_TOTAL_DISPLAY_PRICE = "totalDisplayPrice";
private CustomMonetaryAmount totalDisplayPrice;
public static final String JSON_PROPERTY_TOTAL_SUPPLIER_PRICE = "totalSupplierPrice";
private CustomMonetaryAmount totalSupplierPrice;
public static final String JSON_PROPERTY_TOTAL_INTERNAL_PRICE = "totalInternalPrice";
private CustomMonetaryAmount totalInternalPrice;
public static final String JSON_PROPERTY_TOTAL_CAPTURE_PRICE = "totalCapturePrice";
private CustomMonetaryAmount totalCapturePrice;
public PayableContractResponse() {
}
public PayableContractResponse id(String id) {
this.id = id;
return this;
}
/**
* TripPay supplierContractIdentifier for payment widget
* @return id
**/
@jakarta.annotation.Nonnull
@NotNull
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getId() {
return id;
}
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setId(String id) {
this.id = id;
}
public PayableContractResponse traceId(String traceId) {
this.traceId = traceId;
return this;
}
/**
* Groups all booking contracts submitted at the same time
* @return traceId
**/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TRACE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getTraceId() {
return traceId;
}
@JsonProperty(JSON_PROPERTY_TRACE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setTraceId(String traceId) {
this.traceId = traceId;
}
public PayableContractResponse supplierContractIdentifier(UUID supplierContractIdentifier) {
this.supplierContractIdentifier = supplierContractIdentifier;
return this;
}
/**
* Unique supplierContractIdentifier used to track the contract. Create a UUID for this purpose.
* @return supplierContractIdentifier
**/
@jakarta.annotation.Nonnull
@NotNull
@Valid
@JsonProperty(JSON_PROPERTY_SUPPLIER_CONTRACT_IDENTIFIER)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public UUID getSupplierContractIdentifier() {
return supplierContractIdentifier;
}
@JsonProperty(JSON_PROPERTY_SUPPLIER_CONTRACT_IDENTIFIER)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setSupplierContractIdentifier(UUID supplierContractIdentifier) {
this.supplierContractIdentifier = supplierContractIdentifier;
}
public PayableContractResponse supplierIdentifier(UUID supplierIdentifier) {
this.supplierIdentifier = supplierIdentifier;
return this;
}
/**
* Supplier supplierContractIdentifier
* @return supplierIdentifier
**/
@jakarta.annotation.Nonnull
@NotNull
@Valid
@JsonProperty(JSON_PROPERTY_SUPPLIER_IDENTIFIER)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public UUID getSupplierIdentifier() {
return supplierIdentifier;
}
@JsonProperty(JSON_PROPERTY_SUPPLIER_IDENTIFIER)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setSupplierIdentifier(UUID supplierIdentifier) {
this.supplierIdentifier = supplierIdentifier;
}
public PayableContractResponse supplierName(String supplierName) {
this.supplierName = supplierName;
return this;
}
/**
* Supplier name
* @return supplierName
**/
@jakarta.annotation.Nonnull
@NotNull
@JsonProperty(JSON_PROPERTY_SUPPLIER_NAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getSupplierName() {
return supplierName;
}
@JsonProperty(JSON_PROPERTY_SUPPLIER_NAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setSupplierName(String supplierName) {
this.supplierName = supplierName;
}
public PayableContractResponse externalSupplierIdentifier(String externalSupplierIdentifier) {
this.externalSupplierIdentifier = externalSupplierIdentifier;
return this;
}
/**
* Track supplier with its external supplier supplierContractIdentifier
* @return externalSupplierIdentifier
**/
@jakarta.annotation.Nonnull
@NotNull
@JsonProperty(JSON_PROPERTY_EXTERNAL_SUPPLIER_IDENTIFIER)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getExternalSupplierIdentifier() {
return externalSupplierIdentifier;
}
@JsonProperty(JSON_PROPERTY_EXTERNAL_SUPPLIER_IDENTIFIER)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setExternalSupplierIdentifier(String externalSupplierIdentifier) {
this.externalSupplierIdentifier = externalSupplierIdentifier;
}
public PayableContractResponse externalSupplierBookingCode(String externalSupplierBookingCode) {
this.externalSupplierBookingCode = externalSupplierBookingCode;
return this;
}
/**
* External booking code generated by the affiliate
* @return externalSupplierBookingCode
**/
@jakarta.annotation.Nonnull
@NotNull
@JsonProperty(JSON_PROPERTY_EXTERNAL_SUPPLIER_BOOKING_CODE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getExternalSupplierBookingCode() {
return externalSupplierBookingCode;
}
@JsonProperty(JSON_PROPERTY_EXTERNAL_SUPPLIER_BOOKING_CODE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setExternalSupplierBookingCode(String externalSupplierBookingCode) {
this.externalSupplierBookingCode = externalSupplierBookingCode;
}
public PayableContractResponse externalTransactionIdentifier(String externalTransactionIdentifier) {
this.externalTransactionIdentifier = externalTransactionIdentifier;
return this;
}
/**
* External transaction supplierContractIdentifier populated when agent responsible for acquiring
* @return externalTransactionIdentifier
**/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXTERNAL_TRANSACTION_IDENTIFIER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getExternalTransactionIdentifier() {
return externalTransactionIdentifier;
}
@JsonProperty(JSON_PROPERTY_EXTERNAL_TRANSACTION_IDENTIFIER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setExternalTransactionIdentifier(String externalTransactionIdentifier) {
this.externalTransactionIdentifier = externalTransactionIdentifier;
}
public PayableContractResponse totalPrice(CustomMonetaryAmount totalPrice) {
this.totalPrice = totalPrice;
return this;
}
/**
* Get totalPrice
* @return totalPrice
**/
@jakarta.annotation.Nonnull
@NotNull
@Valid
@JsonProperty(JSON_PROPERTY_TOTAL_PRICE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public CustomMonetaryAmount getTotalPrice() {
return totalPrice;
}
@JsonProperty(JSON_PROPERTY_TOTAL_PRICE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setTotalPrice(CustomMonetaryAmount totalPrice) {
this.totalPrice = totalPrice;
}
public PayableContractResponse totalDisplayPrice(CustomMonetaryAmount totalDisplayPrice) {
this.totalDisplayPrice = totalDisplayPrice;
return this;
}
/**
* Get totalDisplayPrice
* @return totalDisplayPrice
**/
@jakarta.annotation.Nonnull
@NotNull
@Valid
@JsonProperty(JSON_PROPERTY_TOTAL_DISPLAY_PRICE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public CustomMonetaryAmount getTotalDisplayPrice() {
return totalDisplayPrice;
}
@JsonProperty(JSON_PROPERTY_TOTAL_DISPLAY_PRICE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setTotalDisplayPrice(CustomMonetaryAmount totalDisplayPrice) {
this.totalDisplayPrice = totalDisplayPrice;
}
public PayableContractResponse totalSupplierPrice(CustomMonetaryAmount totalSupplierPrice) {
this.totalSupplierPrice = totalSupplierPrice;
return this;
}
/**
* Get totalSupplierPrice
* @return totalSupplierPrice
**/
@jakarta.annotation.Nonnull
@NotNull
@Valid
@JsonProperty(JSON_PROPERTY_TOTAL_SUPPLIER_PRICE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public CustomMonetaryAmount getTotalSupplierPrice() {
return totalSupplierPrice;
}
@JsonProperty(JSON_PROPERTY_TOTAL_SUPPLIER_PRICE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setTotalSupplierPrice(CustomMonetaryAmount totalSupplierPrice) {
this.totalSupplierPrice = totalSupplierPrice;
}
public PayableContractResponse totalInternalPrice(CustomMonetaryAmount totalInternalPrice) {
this.totalInternalPrice = totalInternalPrice;
return this;
}
/**
* Get totalInternalPrice
* @return totalInternalPrice
**/
@jakarta.annotation.Nonnull
@NotNull
@Valid
@JsonProperty(JSON_PROPERTY_TOTAL_INTERNAL_PRICE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public CustomMonetaryAmount getTotalInternalPrice() {
return totalInternalPrice;
}
@JsonProperty(JSON_PROPERTY_TOTAL_INTERNAL_PRICE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setTotalInternalPrice(CustomMonetaryAmount totalInternalPrice) {
this.totalInternalPrice = totalInternalPrice;
}
public PayableContractResponse totalCapturePrice(CustomMonetaryAmount totalCapturePrice) {
this.totalCapturePrice = totalCapturePrice;
return this;
}
/**
* Get totalCapturePrice
* @return totalCapturePrice
**/
@jakarta.annotation.Nonnull
@NotNull
@Valid
@JsonProperty(JSON_PROPERTY_TOTAL_CAPTURE_PRICE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public CustomMonetaryAmount getTotalCapturePrice() {
return totalCapturePrice;
}
@JsonProperty(JSON_PROPERTY_TOTAL_CAPTURE_PRICE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setTotalCapturePrice(CustomMonetaryAmount totalCapturePrice) {
this.totalCapturePrice = totalCapturePrice;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PayableContractResponse payableContractResponse = (PayableContractResponse) o;
return Objects.equals(this.id, payableContractResponse.id) &&
Objects.equals(this.traceId, payableContractResponse.traceId) &&
Objects.equals(this.supplierContractIdentifier, payableContractResponse.supplierContractIdentifier) &&
Objects.equals(this.supplierIdentifier, payableContractResponse.supplierIdentifier) &&
Objects.equals(this.supplierName, payableContractResponse.supplierName) &&
Objects.equals(this.externalSupplierIdentifier, payableContractResponse.externalSupplierIdentifier) &&
Objects.equals(this.externalSupplierBookingCode, payableContractResponse.externalSupplierBookingCode) &&
Objects.equals(this.externalTransactionIdentifier, payableContractResponse.externalTransactionIdentifier) &&
Objects.equals(this.totalPrice, payableContractResponse.totalPrice) &&
Objects.equals(this.totalDisplayPrice, payableContractResponse.totalDisplayPrice) &&
Objects.equals(this.totalSupplierPrice, payableContractResponse.totalSupplierPrice) &&
Objects.equals(this.totalInternalPrice, payableContractResponse.totalInternalPrice) &&
Objects.equals(this.totalCapturePrice, payableContractResponse.totalCapturePrice);
}
@Override
public int hashCode() {
return Objects.hash(id, traceId, supplierContractIdentifier, supplierIdentifier, supplierName, externalSupplierIdentifier, externalSupplierBookingCode, externalTransactionIdentifier, totalPrice, totalDisplayPrice, totalSupplierPrice, totalInternalPrice, totalCapturePrice);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PayableContractResponse {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" traceId: ").append(toIndentedString(traceId)).append("\n");
sb.append(" supplierContractIdentifier: ").append(toIndentedString(supplierContractIdentifier)).append("\n");
sb.append(" supplierIdentifier: ").append(toIndentedString(supplierIdentifier)).append("\n");
sb.append(" supplierName: ").append(toIndentedString(supplierName)).append("\n");
sb.append(" externalSupplierIdentifier: ").append(toIndentedString(externalSupplierIdentifier)).append("\n");
sb.append(" externalSupplierBookingCode: ").append(toIndentedString(externalSupplierBookingCode)).append("\n");
sb.append(" externalTransactionIdentifier: ").append(toIndentedString(externalTransactionIdentifier)).append("\n");
sb.append(" totalPrice: ").append(toIndentedString(totalPrice)).append("\n");
sb.append(" totalDisplayPrice: ").append(toIndentedString(totalDisplayPrice)).append("\n");
sb.append(" totalSupplierPrice: ").append(toIndentedString(totalSupplierPrice)).append("\n");
sb.append(" totalInternalPrice: ").append(toIndentedString(totalInternalPrice)).append("\n");
sb.append(" totalCapturePrice: ").append(toIndentedString(totalCapturePrice)).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 ");
}
}