travel.wink.sdk.affiliate.model.UserSessionAffiliate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of affiliate-sdk-java Show documentation
Show all versions of affiliate-sdk-java Show documentation
Java SDK for the wink Affiliate API
/*
* Wink API
* ## 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 Acquiring](/payment-acquiring): All APIs related to capture payment details such as a Stripe payment intent. - [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/wink-sdk-java](https://github.com/wink-travel/wink-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. ## 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 - 2022-10-15: v2.0 - Removed HATEOAS and added Wink-Version header - 2022-05-08: v1 - Exposed channel manager API - 2021-07-01: v1 - Initial release # Affiliate API Welcome to the Affiliate API - A programmer-friendly way to search for and display bespoke travel inventory for your audience. Use this API to help you prepare travel inventory for sale. # Intended Audience Programmers are a requirement to start integrating with wink. You will benefit from an API integration if you are new or existing travel related company that want easy access to great inventory.## Examples: - Hotel brands / chains that want to make their own booking engine - Travel tech companies that want to create the next hot mobile travel app - Destination sites that want to make their own booking engine - Bloggers and influencers who want to sell travel inventory to their audience - OTAs that want access direct relationships with suppliers and better quality hotel inventory
*
* The version of the OpenAPI document: 24.0.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 travel.wink.sdk.affiliate.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.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;
import java.util.UUID;
import travel.wink.sdk.affiliate.model.GeoJsonPointAffiliate;
import travel.wink.sdk.affiliate.model.GeoJsonPolygonAffiliate;
import travel.wink.sdk.affiliate.model.IPLocationAffiliate;
import travel.wink.sdk.affiliate.model.ItineraryAffiliate;
import travel.wink.sdk.affiliate.model.RoomConfigurationAffiliate;
import travel.wink.sdk.affiliate.model.SearchFiltersAffiliate;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonTypeName;
import javax.validation.constraints.*;
import javax.validation.Valid;
import org.hibernate.validator.constraints.*;
/**
* User session information containing itinerary and other user related data.
*/
@ApiModel(description = "User session information containing itinerary and other user related data.")
@JsonPropertyOrder({
UserSessionAffiliate.JSON_PROPERTY_LOCATION,
UserSessionAffiliate.JSON_PROPERTY_IP_LOCATION,
UserSessionAffiliate.JSON_PROPERTY_IP_NUMBER,
UserSessionAffiliate.JSON_PROPERTY_BOUNDS,
UserSessionAffiliate.JSON_PROPERTY_ITINERARY,
UserSessionAffiliate.JSON_PROPERTY_SEARCH_FILTERS,
UserSessionAffiliate.JSON_PROPERTY_LANGUAGE,
UserSessionAffiliate.JSON_PROPERTY_CURRENCY,
UserSessionAffiliate.JSON_PROPERTY_REDIRECT_URL,
UserSessionAffiliate.JSON_PROPERTY_USER_IDENTIFIER,
UserSessionAffiliate.JSON_PROPERTY_PROMOTIONAL_CODES,
UserSessionAffiliate.JSON_PROPERTY_SELECTED_ROOM_CONFIGURATION
})
@JsonTypeName("UserSession_Affiliate")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-03-06T16:56:30.815925180+07:00[Asia/Bangkok]")
public class UserSessionAffiliate {
public static final String JSON_PROPERTY_LOCATION = "location";
private GeoJsonPointAffiliate location;
public static final String JSON_PROPERTY_IP_LOCATION = "ipLocation";
private IPLocationAffiliate ipLocation;
public static final String JSON_PROPERTY_IP_NUMBER = "ipNumber";
private String ipNumber;
public static final String JSON_PROPERTY_BOUNDS = "bounds";
private GeoJsonPolygonAffiliate bounds;
public static final String JSON_PROPERTY_ITINERARY = "itinerary";
private ItineraryAffiliate itinerary;
public static final String JSON_PROPERTY_SEARCH_FILTERS = "searchFilters";
private SearchFiltersAffiliate searchFilters;
public static final String JSON_PROPERTY_LANGUAGE = "language";
private String language;
public static final String JSON_PROPERTY_CURRENCY = "currency";
private String currency;
public static final String JSON_PROPERTY_REDIRECT_URL = "redirectUrl";
private String redirectUrl;
public static final String JSON_PROPERTY_USER_IDENTIFIER = "userIdentifier";
private UUID userIdentifier;
public static final String JSON_PROPERTY_PROMOTIONAL_CODES = "promotionalCodes";
private List promotionalCodes = null;
public static final String JSON_PROPERTY_SELECTED_ROOM_CONFIGURATION = "selectedRoomConfiguration";
private RoomConfigurationAffiliate selectedRoomConfiguration;
public UserSessionAffiliate() {
}
public UserSessionAffiliate location(GeoJsonPointAffiliate location) {
this.location = location;
return this;
}
/**
* Get location
* @return location
**/
@javax.annotation.Nullable
@Valid
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_LOCATION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public GeoJsonPointAffiliate getLocation() {
return location;
}
@JsonProperty(JSON_PROPERTY_LOCATION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setLocation(GeoJsonPointAffiliate location) {
this.location = location;
}
public UserSessionAffiliate ipLocation(IPLocationAffiliate ipLocation) {
this.ipLocation = ipLocation;
return this;
}
/**
* Get ipLocation
* @return ipLocation
**/
@javax.annotation.Nullable
@Valid
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_IP_LOCATION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public IPLocationAffiliate getIpLocation() {
return ipLocation;
}
@JsonProperty(JSON_PROPERTY_IP_LOCATION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setIpLocation(IPLocationAffiliate ipLocation) {
this.ipLocation = ipLocation;
}
public UserSessionAffiliate ipNumber(String ipNumber) {
this.ipNumber = ipNumber;
return this;
}
/**
* User's incoming IP number
* @return ipNumber
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "203.543.122.021", value = "User's incoming IP number")
@JsonProperty(JSON_PROPERTY_IP_NUMBER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getIpNumber() {
return ipNumber;
}
@JsonProperty(JSON_PROPERTY_IP_NUMBER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setIpNumber(String ipNumber) {
this.ipNumber = ipNumber;
}
public UserSessionAffiliate bounds(GeoJsonPolygonAffiliate bounds) {
this.bounds = bounds;
return this;
}
/**
* Get bounds
* @return bounds
**/
@javax.annotation.Nullable
@Valid
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_BOUNDS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public GeoJsonPolygonAffiliate getBounds() {
return bounds;
}
@JsonProperty(JSON_PROPERTY_BOUNDS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setBounds(GeoJsonPolygonAffiliate bounds) {
this.bounds = bounds;
}
public UserSessionAffiliate itinerary(ItineraryAffiliate itinerary) {
this.itinerary = itinerary;
return this;
}
/**
* Get itinerary
* @return itinerary
**/
@javax.annotation.Nonnull
@NotNull
@Valid
@ApiModelProperty(required = true, value = "")
@JsonProperty(JSON_PROPERTY_ITINERARY)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public ItineraryAffiliate getItinerary() {
return itinerary;
}
@JsonProperty(JSON_PROPERTY_ITINERARY)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setItinerary(ItineraryAffiliate itinerary) {
this.itinerary = itinerary;
}
public UserSessionAffiliate searchFilters(SearchFiltersAffiliate searchFilters) {
this.searchFilters = searchFilters;
return this;
}
/**
* Get searchFilters
* @return searchFilters
**/
@javax.annotation.Nullable
@Valid
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_SEARCH_FILTERS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public SearchFiltersAffiliate getSearchFilters() {
return searchFilters;
}
@JsonProperty(JSON_PROPERTY_SEARCH_FILTERS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setSearchFilters(SearchFiltersAffiliate searchFilters) {
this.searchFilters = searchFilters;
}
public UserSessionAffiliate language(String language) {
this.language = language;
return this;
}
/**
* User's language preference
* @return language
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "en", value = "User's language preference")
@JsonProperty(JSON_PROPERTY_LANGUAGE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getLanguage() {
return language;
}
@JsonProperty(JSON_PROPERTY_LANGUAGE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setLanguage(String language) {
this.language = language;
}
public UserSessionAffiliate currency(String currency) {
this.currency = currency;
return this;
}
/**
* User's currency preference
* @return currency
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "USD", value = "User's currency preference")
@JsonProperty(JSON_PROPERTY_CURRENCY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getCurrency() {
return currency;
}
@JsonProperty(JSON_PROPERTY_CURRENCY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setCurrency(String currency) {
this.currency = currency;
}
public UserSessionAffiliate redirectUrl(String redirectUrl) {
this.redirectUrl = redirectUrl;
return this;
}
/**
* Get redirectUrl
* @return redirectUrl
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_REDIRECT_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getRedirectUrl() {
return redirectUrl;
}
@JsonProperty(JSON_PROPERTY_REDIRECT_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setRedirectUrl(String redirectUrl) {
this.redirectUrl = redirectUrl;
}
public UserSessionAffiliate userIdentifier(UUID userIdentifier) {
this.userIdentifier = userIdentifier;
return this;
}
/**
* Pass along the user identifier if user is known.
* @return userIdentifier
**/
@javax.annotation.Nullable
@Valid
@ApiModelProperty(value = "Pass along the user identifier if user is known.")
@JsonProperty(JSON_PROPERTY_USER_IDENTIFIER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public UUID getUserIdentifier() {
return userIdentifier;
}
@JsonProperty(JSON_PROPERTY_USER_IDENTIFIER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setUserIdentifier(UUID userIdentifier) {
this.userIdentifier = userIdentifier;
}
public UserSessionAffiliate promotionalCodes(List promotionalCodes) {
this.promotionalCodes = promotionalCodes;
return this;
}
public UserSessionAffiliate addPromotionalCodesItem(String promotionalCodesItem) {
if (this.promotionalCodes == null) {
this.promotionalCodes = new ArrayList<>();
}
this.promotionalCodes.add(promotionalCodesItem);
return this;
}
/**
* Get promotionalCodes
* @return promotionalCodes
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_PROMOTIONAL_CODES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List getPromotionalCodes() {
return promotionalCodes;
}
@JsonProperty(JSON_PROPERTY_PROMOTIONAL_CODES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setPromotionalCodes(List promotionalCodes) {
this.promotionalCodes = promotionalCodes;
}
public UserSessionAffiliate selectedRoomConfiguration(RoomConfigurationAffiliate selectedRoomConfiguration) {
this.selectedRoomConfiguration = selectedRoomConfiguration;
return this;
}
/**
* Get selectedRoomConfiguration
* @return selectedRoomConfiguration
**/
@javax.annotation.Nullable
@Valid
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_SELECTED_ROOM_CONFIGURATION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public RoomConfigurationAffiliate getSelectedRoomConfiguration() {
return selectedRoomConfiguration;
}
@JsonProperty(JSON_PROPERTY_SELECTED_ROOM_CONFIGURATION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setSelectedRoomConfiguration(RoomConfigurationAffiliate selectedRoomConfiguration) {
this.selectedRoomConfiguration = selectedRoomConfiguration;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
UserSessionAffiliate userSessionAffiliate = (UserSessionAffiliate) o;
return Objects.equals(this.location, userSessionAffiliate.location) &&
Objects.equals(this.ipLocation, userSessionAffiliate.ipLocation) &&
Objects.equals(this.ipNumber, userSessionAffiliate.ipNumber) &&
Objects.equals(this.bounds, userSessionAffiliate.bounds) &&
Objects.equals(this.itinerary, userSessionAffiliate.itinerary) &&
Objects.equals(this.searchFilters, userSessionAffiliate.searchFilters) &&
Objects.equals(this.language, userSessionAffiliate.language) &&
Objects.equals(this.currency, userSessionAffiliate.currency) &&
Objects.equals(this.redirectUrl, userSessionAffiliate.redirectUrl) &&
Objects.equals(this.userIdentifier, userSessionAffiliate.userIdentifier) &&
Objects.equals(this.promotionalCodes, userSessionAffiliate.promotionalCodes) &&
Objects.equals(this.selectedRoomConfiguration, userSessionAffiliate.selectedRoomConfiguration);
}
@Override
public int hashCode() {
return Objects.hash(location, ipLocation, ipNumber, bounds, itinerary, searchFilters, language, currency, redirectUrl, userIdentifier, promotionalCodes, selectedRoomConfiguration);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class UserSessionAffiliate {\n");
sb.append(" location: ").append(toIndentedString(location)).append("\n");
sb.append(" ipLocation: ").append(toIndentedString(ipLocation)).append("\n");
sb.append(" ipNumber: ").append(toIndentedString(ipNumber)).append("\n");
sb.append(" bounds: ").append(toIndentedString(bounds)).append("\n");
sb.append(" itinerary: ").append(toIndentedString(itinerary)).append("\n");
sb.append(" searchFilters: ").append(toIndentedString(searchFilters)).append("\n");
sb.append(" language: ").append(toIndentedString(language)).append("\n");
sb.append(" currency: ").append(toIndentedString(currency)).append("\n");
sb.append(" redirectUrl: ").append(toIndentedString(redirectUrl)).append("\n");
sb.append(" userIdentifier: ").append(toIndentedString(userIdentifier)).append("\n");
sb.append(" promotionalCodes: ").append(toIndentedString(promotionalCodes)).append("\n");
sb.append(" selectedRoomConfiguration: ").append(toIndentedString(selectedRoomConfiguration)).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 ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy