
com.adyen.model.payment.AdditionalDataLodging Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adyen-java-api-library Show documentation
Show all versions of adyen-java-api-library Show documentation
Adyen API Client Library for Java
/*
* Adyen Payment API
*
* The version of the OpenAPI document: 68
*
*
* 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.adyen.model.payment;
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 com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.core.JsonProcessingException;
/**
* AdditionalDataLodging
*/
@JsonPropertyOrder({
AdditionalDataLodging.JSON_PROPERTY_LODGING_SPECIAL_PROGRAM_CODE,
AdditionalDataLodging.JSON_PROPERTY_LODGING_CHECK_IN_DATE,
AdditionalDataLodging.JSON_PROPERTY_LODGING_CHECK_OUT_DATE,
AdditionalDataLodging.JSON_PROPERTY_LODGING_CUSTOMER_SERVICE_TOLL_FREE_NUMBER,
AdditionalDataLodging.JSON_PROPERTY_LODGING_FIRE_SAFETY_ACT_INDICATOR,
AdditionalDataLodging.JSON_PROPERTY_LODGING_FOLIO_CASH_ADVANCES,
AdditionalDataLodging.JSON_PROPERTY_LODGING_FOLIO_NUMBER,
AdditionalDataLodging.JSON_PROPERTY_LODGING_FOOD_BEVERAGE_CHARGES,
AdditionalDataLodging.JSON_PROPERTY_LODGING_NO_SHOW_INDICATOR,
AdditionalDataLodging.JSON_PROPERTY_LODGING_PREPAID_EXPENSES,
AdditionalDataLodging.JSON_PROPERTY_LODGING_PROPERTY_PHONE_NUMBER,
AdditionalDataLodging.JSON_PROPERTY_LODGING_ROOM1_NUMBER_OF_NIGHTS,
AdditionalDataLodging.JSON_PROPERTY_LODGING_ROOM1_RATE,
AdditionalDataLodging.JSON_PROPERTY_LODGING_TOTAL_ROOM_TAX,
AdditionalDataLodging.JSON_PROPERTY_LODGING_TOTAL_TAX,
AdditionalDataLodging.JSON_PROPERTY_TRAVEL_ENTERTAINMENT_AUTH_DATA_DURATION,
AdditionalDataLodging.JSON_PROPERTY_TRAVEL_ENTERTAINMENT_AUTH_DATA_MARKET
})
public class AdditionalDataLodging {
public static final String JSON_PROPERTY_LODGING_SPECIAL_PROGRAM_CODE = "lodging.SpecialProgramCode";
private String lodgingSpecialProgramCode;
public static final String JSON_PROPERTY_LODGING_CHECK_IN_DATE = "lodging.checkInDate";
private String lodgingCheckInDate;
public static final String JSON_PROPERTY_LODGING_CHECK_OUT_DATE = "lodging.checkOutDate";
private String lodgingCheckOutDate;
public static final String JSON_PROPERTY_LODGING_CUSTOMER_SERVICE_TOLL_FREE_NUMBER = "lodging.customerServiceTollFreeNumber";
private String lodgingCustomerServiceTollFreeNumber;
public static final String JSON_PROPERTY_LODGING_FIRE_SAFETY_ACT_INDICATOR = "lodging.fireSafetyActIndicator";
private String lodgingFireSafetyActIndicator;
public static final String JSON_PROPERTY_LODGING_FOLIO_CASH_ADVANCES = "lodging.folioCashAdvances";
private String lodgingFolioCashAdvances;
public static final String JSON_PROPERTY_LODGING_FOLIO_NUMBER = "lodging.folioNumber";
private String lodgingFolioNumber;
public static final String JSON_PROPERTY_LODGING_FOOD_BEVERAGE_CHARGES = "lodging.foodBeverageCharges";
private String lodgingFoodBeverageCharges;
public static final String JSON_PROPERTY_LODGING_NO_SHOW_INDICATOR = "lodging.noShowIndicator";
private String lodgingNoShowIndicator;
public static final String JSON_PROPERTY_LODGING_PREPAID_EXPENSES = "lodging.prepaidExpenses";
private String lodgingPrepaidExpenses;
public static final String JSON_PROPERTY_LODGING_PROPERTY_PHONE_NUMBER = "lodging.propertyPhoneNumber";
private String lodgingPropertyPhoneNumber;
public static final String JSON_PROPERTY_LODGING_ROOM1_NUMBER_OF_NIGHTS = "lodging.room1.numberOfNights";
private String lodgingRoom1NumberOfNights;
public static final String JSON_PROPERTY_LODGING_ROOM1_RATE = "lodging.room1.rate";
private String lodgingRoom1Rate;
public static final String JSON_PROPERTY_LODGING_TOTAL_ROOM_TAX = "lodging.totalRoomTax";
private String lodgingTotalRoomTax;
public static final String JSON_PROPERTY_LODGING_TOTAL_TAX = "lodging.totalTax";
private String lodgingTotalTax;
public static final String JSON_PROPERTY_TRAVEL_ENTERTAINMENT_AUTH_DATA_DURATION = "travelEntertainmentAuthData.duration";
private String travelEntertainmentAuthDataDuration;
public static final String JSON_PROPERTY_TRAVEL_ENTERTAINMENT_AUTH_DATA_MARKET = "travelEntertainmentAuthData.market";
private String travelEntertainmentAuthDataMarket;
public AdditionalDataLodging() {
}
/**
* A code that corresponds to the category of lodging charges for the payment. Possible values: * 1: Lodging * 2: No show reservation * 3: Advanced deposit
*
* @param lodgingSpecialProgramCode A code that corresponds to the category of lodging charges for the payment. Possible values: * 1: Lodging * 2: No show reservation * 3: Advanced deposit
* @return the current {@code AdditionalDataLodging} instance, allowing for method chaining
*/
public AdditionalDataLodging lodgingSpecialProgramCode(String lodgingSpecialProgramCode) {
this.lodgingSpecialProgramCode = lodgingSpecialProgramCode;
return this;
}
/**
* A code that corresponds to the category of lodging charges for the payment. Possible values: * 1: Lodging * 2: No show reservation * 3: Advanced deposit
* @return lodgingSpecialProgramCode A code that corresponds to the category of lodging charges for the payment. Possible values: * 1: Lodging * 2: No show reservation * 3: Advanced deposit
*/
@JsonProperty(JSON_PROPERTY_LODGING_SPECIAL_PROGRAM_CODE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getLodgingSpecialProgramCode() {
return lodgingSpecialProgramCode;
}
/**
* A code that corresponds to the category of lodging charges for the payment. Possible values: * 1: Lodging * 2: No show reservation * 3: Advanced deposit
*
* @param lodgingSpecialProgramCode A code that corresponds to the category of lodging charges for the payment. Possible values: * 1: Lodging * 2: No show reservation * 3: Advanced deposit
*/
@JsonProperty(JSON_PROPERTY_LODGING_SPECIAL_PROGRAM_CODE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setLodgingSpecialProgramCode(String lodgingSpecialProgramCode) {
this.lodgingSpecialProgramCode = lodgingSpecialProgramCode;
}
/**
* The arrival date. * Date format: **yyyyMmDd**. For example, for 2023 April 22, **20230422**.
*
* @param lodgingCheckInDate The arrival date. * Date format: **yyyyMmDd**. For example, for 2023 April 22, **20230422**.
* @return the current {@code AdditionalDataLodging} instance, allowing for method chaining
*/
public AdditionalDataLodging lodgingCheckInDate(String lodgingCheckInDate) {
this.lodgingCheckInDate = lodgingCheckInDate;
return this;
}
/**
* The arrival date. * Date format: **yyyyMmDd**. For example, for 2023 April 22, **20230422**.
* @return lodgingCheckInDate The arrival date. * Date format: **yyyyMmDd**. For example, for 2023 April 22, **20230422**.
*/
@JsonProperty(JSON_PROPERTY_LODGING_CHECK_IN_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getLodgingCheckInDate() {
return lodgingCheckInDate;
}
/**
* The arrival date. * Date format: **yyyyMmDd**. For example, for 2023 April 22, **20230422**.
*
* @param lodgingCheckInDate The arrival date. * Date format: **yyyyMmDd**. For example, for 2023 April 22, **20230422**.
*/
@JsonProperty(JSON_PROPERTY_LODGING_CHECK_IN_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setLodgingCheckInDate(String lodgingCheckInDate) {
this.lodgingCheckInDate = lodgingCheckInDate;
}
/**
* The departure date. * Date format: **yyyyMmDd**. For example, for 2023 April 22, **20230422**.
*
* @param lodgingCheckOutDate The departure date. * Date format: **yyyyMmDd**. For example, for 2023 April 22, **20230422**.
* @return the current {@code AdditionalDataLodging} instance, allowing for method chaining
*/
public AdditionalDataLodging lodgingCheckOutDate(String lodgingCheckOutDate) {
this.lodgingCheckOutDate = lodgingCheckOutDate;
return this;
}
/**
* The departure date. * Date format: **yyyyMmDd**. For example, for 2023 April 22, **20230422**.
* @return lodgingCheckOutDate The departure date. * Date format: **yyyyMmDd**. For example, for 2023 April 22, **20230422**.
*/
@JsonProperty(JSON_PROPERTY_LODGING_CHECK_OUT_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getLodgingCheckOutDate() {
return lodgingCheckOutDate;
}
/**
* The departure date. * Date format: **yyyyMmDd**. For example, for 2023 April 22, **20230422**.
*
* @param lodgingCheckOutDate The departure date. * Date format: **yyyyMmDd**. For example, for 2023 April 22, **20230422**.
*/
@JsonProperty(JSON_PROPERTY_LODGING_CHECK_OUT_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setLodgingCheckOutDate(String lodgingCheckOutDate) {
this.lodgingCheckOutDate = lodgingCheckOutDate;
}
/**
* The toll-free phone number for the lodging. * Format: numeric * Max length: 17 characters. * For US and CA numbers must be 10 characters in length * Must not start with a space * Must not contain any special characters such as + or - * Must not be all zeros.
*
* @param lodgingCustomerServiceTollFreeNumber The toll-free phone number for the lodging. * Format: numeric * Max length: 17 characters. * For US and CA numbers must be 10 characters in length * Must not start with a space * Must not contain any special characters such as + or - * Must not be all zeros.
* @return the current {@code AdditionalDataLodging} instance, allowing for method chaining
*/
public AdditionalDataLodging lodgingCustomerServiceTollFreeNumber(String lodgingCustomerServiceTollFreeNumber) {
this.lodgingCustomerServiceTollFreeNumber = lodgingCustomerServiceTollFreeNumber;
return this;
}
/**
* The toll-free phone number for the lodging. * Format: numeric * Max length: 17 characters. * For US and CA numbers must be 10 characters in length * Must not start with a space * Must not contain any special characters such as + or - * Must not be all zeros.
* @return lodgingCustomerServiceTollFreeNumber The toll-free phone number for the lodging. * Format: numeric * Max length: 17 characters. * For US and CA numbers must be 10 characters in length * Must not start with a space * Must not contain any special characters such as + or - * Must not be all zeros.
*/
@JsonProperty(JSON_PROPERTY_LODGING_CUSTOMER_SERVICE_TOLL_FREE_NUMBER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getLodgingCustomerServiceTollFreeNumber() {
return lodgingCustomerServiceTollFreeNumber;
}
/**
* The toll-free phone number for the lodging. * Format: numeric * Max length: 17 characters. * For US and CA numbers must be 10 characters in length * Must not start with a space * Must not contain any special characters such as + or - * Must not be all zeros.
*
* @param lodgingCustomerServiceTollFreeNumber The toll-free phone number for the lodging. * Format: numeric * Max length: 17 characters. * For US and CA numbers must be 10 characters in length * Must not start with a space * Must not contain any special characters such as + or - * Must not be all zeros.
*/
@JsonProperty(JSON_PROPERTY_LODGING_CUSTOMER_SERVICE_TOLL_FREE_NUMBER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setLodgingCustomerServiceTollFreeNumber(String lodgingCustomerServiceTollFreeNumber) {
this.lodgingCustomerServiceTollFreeNumber = lodgingCustomerServiceTollFreeNumber;
}
/**
* Identifies that the facility complies with the Hotel and Motel Fire Safety Act of 1990. Must be 'Y' or 'N'. * Format: alphabetic * Max length: 1 character
*
* @param lodgingFireSafetyActIndicator Identifies that the facility complies with the Hotel and Motel Fire Safety Act of 1990. Must be 'Y' or 'N'. * Format: alphabetic * Max length: 1 character
* @return the current {@code AdditionalDataLodging} instance, allowing for method chaining
*/
public AdditionalDataLodging lodgingFireSafetyActIndicator(String lodgingFireSafetyActIndicator) {
this.lodgingFireSafetyActIndicator = lodgingFireSafetyActIndicator;
return this;
}
/**
* Identifies that the facility complies with the Hotel and Motel Fire Safety Act of 1990. Must be 'Y' or 'N'. * Format: alphabetic * Max length: 1 character
* @return lodgingFireSafetyActIndicator Identifies that the facility complies with the Hotel and Motel Fire Safety Act of 1990. Must be 'Y' or 'N'. * Format: alphabetic * Max length: 1 character
*/
@JsonProperty(JSON_PROPERTY_LODGING_FIRE_SAFETY_ACT_INDICATOR)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getLodgingFireSafetyActIndicator() {
return lodgingFireSafetyActIndicator;
}
/**
* Identifies that the facility complies with the Hotel and Motel Fire Safety Act of 1990. Must be 'Y' or 'N'. * Format: alphabetic * Max length: 1 character
*
* @param lodgingFireSafetyActIndicator Identifies that the facility complies with the Hotel and Motel Fire Safety Act of 1990. Must be 'Y' or 'N'. * Format: alphabetic * Max length: 1 character
*/
@JsonProperty(JSON_PROPERTY_LODGING_FIRE_SAFETY_ACT_INDICATOR)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setLodgingFireSafetyActIndicator(String lodgingFireSafetyActIndicator) {
this.lodgingFireSafetyActIndicator = lodgingFireSafetyActIndicator;
}
/**
* The folio cash advances, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters
*
* @param lodgingFolioCashAdvances The folio cash advances, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters
* @return the current {@code AdditionalDataLodging} instance, allowing for method chaining
*/
public AdditionalDataLodging lodgingFolioCashAdvances(String lodgingFolioCashAdvances) {
this.lodgingFolioCashAdvances = lodgingFolioCashAdvances;
return this;
}
/**
* The folio cash advances, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters
* @return lodgingFolioCashAdvances The folio cash advances, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters
*/
@JsonProperty(JSON_PROPERTY_LODGING_FOLIO_CASH_ADVANCES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getLodgingFolioCashAdvances() {
return lodgingFolioCashAdvances;
}
/**
* The folio cash advances, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters
*
* @param lodgingFolioCashAdvances The folio cash advances, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters
*/
@JsonProperty(JSON_PROPERTY_LODGING_FOLIO_CASH_ADVANCES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setLodgingFolioCashAdvances(String lodgingFolioCashAdvances) {
this.lodgingFolioCashAdvances = lodgingFolioCashAdvances;
}
/**
* The card acceptor’s internal invoice or billing ID reference number. * Max length: 25 characters * Must not start with a space * Must not contain any special characters * Must not be all zeros.
*
* @param lodgingFolioNumber The card acceptor’s internal invoice or billing ID reference number. * Max length: 25 characters * Must not start with a space * Must not contain any special characters * Must not be all zeros.
* @return the current {@code AdditionalDataLodging} instance, allowing for method chaining
*/
public AdditionalDataLodging lodgingFolioNumber(String lodgingFolioNumber) {
this.lodgingFolioNumber = lodgingFolioNumber;
return this;
}
/**
* The card acceptor’s internal invoice or billing ID reference number. * Max length: 25 characters * Must not start with a space * Must not contain any special characters * Must not be all zeros.
* @return lodgingFolioNumber The card acceptor’s internal invoice or billing ID reference number. * Max length: 25 characters * Must not start with a space * Must not contain any special characters * Must not be all zeros.
*/
@JsonProperty(JSON_PROPERTY_LODGING_FOLIO_NUMBER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getLodgingFolioNumber() {
return lodgingFolioNumber;
}
/**
* The card acceptor’s internal invoice or billing ID reference number. * Max length: 25 characters * Must not start with a space * Must not contain any special characters * Must not be all zeros.
*
* @param lodgingFolioNumber The card acceptor’s internal invoice or billing ID reference number. * Max length: 25 characters * Must not start with a space * Must not contain any special characters * Must not be all zeros.
*/
@JsonProperty(JSON_PROPERTY_LODGING_FOLIO_NUMBER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setLodgingFolioNumber(String lodgingFolioNumber) {
this.lodgingFolioNumber = lodgingFolioNumber;
}
/**
* Any charges for food and beverages associated with the booking, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters
*
* @param lodgingFoodBeverageCharges Any charges for food and beverages associated with the booking, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters
* @return the current {@code AdditionalDataLodging} instance, allowing for method chaining
*/
public AdditionalDataLodging lodgingFoodBeverageCharges(String lodgingFoodBeverageCharges) {
this.lodgingFoodBeverageCharges = lodgingFoodBeverageCharges;
return this;
}
/**
* Any charges for food and beverages associated with the booking, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters
* @return lodgingFoodBeverageCharges Any charges for food and beverages associated with the booking, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters
*/
@JsonProperty(JSON_PROPERTY_LODGING_FOOD_BEVERAGE_CHARGES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getLodgingFoodBeverageCharges() {
return lodgingFoodBeverageCharges;
}
/**
* Any charges for food and beverages associated with the booking, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters
*
* @param lodgingFoodBeverageCharges Any charges for food and beverages associated with the booking, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters
*/
@JsonProperty(JSON_PROPERTY_LODGING_FOOD_BEVERAGE_CHARGES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setLodgingFoodBeverageCharges(String lodgingFoodBeverageCharges) {
this.lodgingFoodBeverageCharges = lodgingFoodBeverageCharges;
}
/**
* Indicates if the customer didn't check in for their booking. Possible values: * **Y**: the customer didn't check in * **N**: the customer checked in
*
* @param lodgingNoShowIndicator Indicates if the customer didn't check in for their booking. Possible values: * **Y**: the customer didn't check in * **N**: the customer checked in
* @return the current {@code AdditionalDataLodging} instance, allowing for method chaining
*/
public AdditionalDataLodging lodgingNoShowIndicator(String lodgingNoShowIndicator) {
this.lodgingNoShowIndicator = lodgingNoShowIndicator;
return this;
}
/**
* Indicates if the customer didn't check in for their booking. Possible values: * **Y**: the customer didn't check in * **N**: the customer checked in
* @return lodgingNoShowIndicator Indicates if the customer didn't check in for their booking. Possible values: * **Y**: the customer didn't check in * **N**: the customer checked in
*/
@JsonProperty(JSON_PROPERTY_LODGING_NO_SHOW_INDICATOR)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getLodgingNoShowIndicator() {
return lodgingNoShowIndicator;
}
/**
* Indicates if the customer didn't check in for their booking. Possible values: * **Y**: the customer didn't check in * **N**: the customer checked in
*
* @param lodgingNoShowIndicator Indicates if the customer didn't check in for their booking. Possible values: * **Y**: the customer didn't check in * **N**: the customer checked in
*/
@JsonProperty(JSON_PROPERTY_LODGING_NO_SHOW_INDICATOR)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setLodgingNoShowIndicator(String lodgingNoShowIndicator) {
this.lodgingNoShowIndicator = lodgingNoShowIndicator;
}
/**
* The prepaid expenses for the booking. * Format: numeric * Max length: 12 characters
*
* @param lodgingPrepaidExpenses The prepaid expenses for the booking. * Format: numeric * Max length: 12 characters
* @return the current {@code AdditionalDataLodging} instance, allowing for method chaining
*/
public AdditionalDataLodging lodgingPrepaidExpenses(String lodgingPrepaidExpenses) {
this.lodgingPrepaidExpenses = lodgingPrepaidExpenses;
return this;
}
/**
* The prepaid expenses for the booking. * Format: numeric * Max length: 12 characters
* @return lodgingPrepaidExpenses The prepaid expenses for the booking. * Format: numeric * Max length: 12 characters
*/
@JsonProperty(JSON_PROPERTY_LODGING_PREPAID_EXPENSES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getLodgingPrepaidExpenses() {
return lodgingPrepaidExpenses;
}
/**
* The prepaid expenses for the booking. * Format: numeric * Max length: 12 characters
*
* @param lodgingPrepaidExpenses The prepaid expenses for the booking. * Format: numeric * Max length: 12 characters
*/
@JsonProperty(JSON_PROPERTY_LODGING_PREPAID_EXPENSES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setLodgingPrepaidExpenses(String lodgingPrepaidExpenses) {
this.lodgingPrepaidExpenses = lodgingPrepaidExpenses;
}
/**
* The lodging property location's phone number. * Format: numeric * Min length: 10 characters * Max length: 17 characters * For US and CA numbers must be 10 characters in length * Must not start with a space * Must not contain any special characters such as + or - * Must not be all zeros.
*
* @param lodgingPropertyPhoneNumber The lodging property location's phone number. * Format: numeric * Min length: 10 characters * Max length: 17 characters * For US and CA numbers must be 10 characters in length * Must not start with a space * Must not contain any special characters such as + or - * Must not be all zeros.
* @return the current {@code AdditionalDataLodging} instance, allowing for method chaining
*/
public AdditionalDataLodging lodgingPropertyPhoneNumber(String lodgingPropertyPhoneNumber) {
this.lodgingPropertyPhoneNumber = lodgingPropertyPhoneNumber;
return this;
}
/**
* The lodging property location's phone number. * Format: numeric * Min length: 10 characters * Max length: 17 characters * For US and CA numbers must be 10 characters in length * Must not start with a space * Must not contain any special characters such as + or - * Must not be all zeros.
* @return lodgingPropertyPhoneNumber The lodging property location's phone number. * Format: numeric * Min length: 10 characters * Max length: 17 characters * For US and CA numbers must be 10 characters in length * Must not start with a space * Must not contain any special characters such as + or - * Must not be all zeros.
*/
@JsonProperty(JSON_PROPERTY_LODGING_PROPERTY_PHONE_NUMBER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getLodgingPropertyPhoneNumber() {
return lodgingPropertyPhoneNumber;
}
/**
* The lodging property location's phone number. * Format: numeric * Min length: 10 characters * Max length: 17 characters * For US and CA numbers must be 10 characters in length * Must not start with a space * Must not contain any special characters such as + or - * Must not be all zeros.
*
* @param lodgingPropertyPhoneNumber The lodging property location's phone number. * Format: numeric * Min length: 10 characters * Max length: 17 characters * For US and CA numbers must be 10 characters in length * Must not start with a space * Must not contain any special characters such as + or - * Must not be all zeros.
*/
@JsonProperty(JSON_PROPERTY_LODGING_PROPERTY_PHONE_NUMBER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setLodgingPropertyPhoneNumber(String lodgingPropertyPhoneNumber) {
this.lodgingPropertyPhoneNumber = lodgingPropertyPhoneNumber;
}
/**
* The total number of nights the room is booked for. * Format: numeric * Must be a number between 0 and 99 * Max length: 4 characters
*
* @param lodgingRoom1NumberOfNights The total number of nights the room is booked for. * Format: numeric * Must be a number between 0 and 99 * Max length: 4 characters
* @return the current {@code AdditionalDataLodging} instance, allowing for method chaining
*/
public AdditionalDataLodging lodgingRoom1NumberOfNights(String lodgingRoom1NumberOfNights) {
this.lodgingRoom1NumberOfNights = lodgingRoom1NumberOfNights;
return this;
}
/**
* The total number of nights the room is booked for. * Format: numeric * Must be a number between 0 and 99 * Max length: 4 characters
* @return lodgingRoom1NumberOfNights The total number of nights the room is booked for. * Format: numeric * Must be a number between 0 and 99 * Max length: 4 characters
*/
@JsonProperty(JSON_PROPERTY_LODGING_ROOM1_NUMBER_OF_NIGHTS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getLodgingRoom1NumberOfNights() {
return lodgingRoom1NumberOfNights;
}
/**
* The total number of nights the room is booked for. * Format: numeric * Must be a number between 0 and 99 * Max length: 4 characters
*
* @param lodgingRoom1NumberOfNights The total number of nights the room is booked for. * Format: numeric * Must be a number between 0 and 99 * Max length: 4 characters
*/
@JsonProperty(JSON_PROPERTY_LODGING_ROOM1_NUMBER_OF_NIGHTS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setLodgingRoom1NumberOfNights(String lodgingRoom1NumberOfNights) {
this.lodgingRoom1NumberOfNights = lodgingRoom1NumberOfNights;
}
/**
* The rate for the room, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters * Must not be a negative number
*
* @param lodgingRoom1Rate The rate for the room, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters * Must not be a negative number
* @return the current {@code AdditionalDataLodging} instance, allowing for method chaining
*/
public AdditionalDataLodging lodgingRoom1Rate(String lodgingRoom1Rate) {
this.lodgingRoom1Rate = lodgingRoom1Rate;
return this;
}
/**
* The rate for the room, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters * Must not be a negative number
* @return lodgingRoom1Rate The rate for the room, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters * Must not be a negative number
*/
@JsonProperty(JSON_PROPERTY_LODGING_ROOM1_RATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getLodgingRoom1Rate() {
return lodgingRoom1Rate;
}
/**
* The rate for the room, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters * Must not be a negative number
*
* @param lodgingRoom1Rate The rate for the room, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters * Must not be a negative number
*/
@JsonProperty(JSON_PROPERTY_LODGING_ROOM1_RATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setLodgingRoom1Rate(String lodgingRoom1Rate) {
this.lodgingRoom1Rate = lodgingRoom1Rate;
}
/**
* The total room tax amount, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters * Must not be a negative number
*
* @param lodgingTotalRoomTax The total room tax amount, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters * Must not be a negative number
* @return the current {@code AdditionalDataLodging} instance, allowing for method chaining
*/
public AdditionalDataLodging lodgingTotalRoomTax(String lodgingTotalRoomTax) {
this.lodgingTotalRoomTax = lodgingTotalRoomTax;
return this;
}
/**
* The total room tax amount, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters * Must not be a negative number
* @return lodgingTotalRoomTax The total room tax amount, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters * Must not be a negative number
*/
@JsonProperty(JSON_PROPERTY_LODGING_TOTAL_ROOM_TAX)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getLodgingTotalRoomTax() {
return lodgingTotalRoomTax;
}
/**
* The total room tax amount, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters * Must not be a negative number
*
* @param lodgingTotalRoomTax The total room tax amount, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters * Must not be a negative number
*/
@JsonProperty(JSON_PROPERTY_LODGING_TOTAL_ROOM_TAX)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setLodgingTotalRoomTax(String lodgingTotalRoomTax) {
this.lodgingTotalRoomTax = lodgingTotalRoomTax;
}
/**
* The total tax amount, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters * Must not be a negative number
*
* @param lodgingTotalTax The total tax amount, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters * Must not be a negative number
* @return the current {@code AdditionalDataLodging} instance, allowing for method chaining
*/
public AdditionalDataLodging lodgingTotalTax(String lodgingTotalTax) {
this.lodgingTotalTax = lodgingTotalTax;
return this;
}
/**
* The total tax amount, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters * Must not be a negative number
* @return lodgingTotalTax The total tax amount, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters * Must not be a negative number
*/
@JsonProperty(JSON_PROPERTY_LODGING_TOTAL_TAX)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getLodgingTotalTax() {
return lodgingTotalTax;
}
/**
* The total tax amount, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters * Must not be a negative number
*
* @param lodgingTotalTax The total tax amount, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: numeric * Max length: 12 characters * Must not be a negative number
*/
@JsonProperty(JSON_PROPERTY_LODGING_TOTAL_TAX)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setLodgingTotalTax(String lodgingTotalTax) {
this.lodgingTotalTax = lodgingTotalTax;
}
/**
* The number of nights. This should be included in the auth message. * Format: numeric * Max length: 4 characters
*
* @param travelEntertainmentAuthDataDuration The number of nights. This should be included in the auth message. * Format: numeric * Max length: 4 characters
* @return the current {@code AdditionalDataLodging} instance, allowing for method chaining
*/
public AdditionalDataLodging travelEntertainmentAuthDataDuration(String travelEntertainmentAuthDataDuration) {
this.travelEntertainmentAuthDataDuration = travelEntertainmentAuthDataDuration;
return this;
}
/**
* The number of nights. This should be included in the auth message. * Format: numeric * Max length: 4 characters
* @return travelEntertainmentAuthDataDuration The number of nights. This should be included in the auth message. * Format: numeric * Max length: 4 characters
*/
@JsonProperty(JSON_PROPERTY_TRAVEL_ENTERTAINMENT_AUTH_DATA_DURATION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getTravelEntertainmentAuthDataDuration() {
return travelEntertainmentAuthDataDuration;
}
/**
* The number of nights. This should be included in the auth message. * Format: numeric * Max length: 4 characters
*
* @param travelEntertainmentAuthDataDuration The number of nights. This should be included in the auth message. * Format: numeric * Max length: 4 characters
*/
@JsonProperty(JSON_PROPERTY_TRAVEL_ENTERTAINMENT_AUTH_DATA_DURATION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setTravelEntertainmentAuthDataDuration(String travelEntertainmentAuthDataDuration) {
this.travelEntertainmentAuthDataDuration = travelEntertainmentAuthDataDuration;
}
/**
* Indicates what market-specific dataset will be submitted. Must be 'H' for Hotel. This should be included in the auth message. * Format: alphanumeric * Max length: 1 character
*
* @param travelEntertainmentAuthDataMarket Indicates what market-specific dataset will be submitted. Must be 'H' for Hotel. This should be included in the auth message. * Format: alphanumeric * Max length: 1 character
* @return the current {@code AdditionalDataLodging} instance, allowing for method chaining
*/
public AdditionalDataLodging travelEntertainmentAuthDataMarket(String travelEntertainmentAuthDataMarket) {
this.travelEntertainmentAuthDataMarket = travelEntertainmentAuthDataMarket;
return this;
}
/**
* Indicates what market-specific dataset will be submitted. Must be 'H' for Hotel. This should be included in the auth message. * Format: alphanumeric * Max length: 1 character
* @return travelEntertainmentAuthDataMarket Indicates what market-specific dataset will be submitted. Must be 'H' for Hotel. This should be included in the auth message. * Format: alphanumeric * Max length: 1 character
*/
@JsonProperty(JSON_PROPERTY_TRAVEL_ENTERTAINMENT_AUTH_DATA_MARKET)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getTravelEntertainmentAuthDataMarket() {
return travelEntertainmentAuthDataMarket;
}
/**
* Indicates what market-specific dataset will be submitted. Must be 'H' for Hotel. This should be included in the auth message. * Format: alphanumeric * Max length: 1 character
*
* @param travelEntertainmentAuthDataMarket Indicates what market-specific dataset will be submitted. Must be 'H' for Hotel. This should be included in the auth message. * Format: alphanumeric * Max length: 1 character
*/
@JsonProperty(JSON_PROPERTY_TRAVEL_ENTERTAINMENT_AUTH_DATA_MARKET)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setTravelEntertainmentAuthDataMarket(String travelEntertainmentAuthDataMarket) {
this.travelEntertainmentAuthDataMarket = travelEntertainmentAuthDataMarket;
}
/**
* Return true if this AdditionalDataLodging object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AdditionalDataLodging additionalDataLodging = (AdditionalDataLodging) o;
return Objects.equals(this.lodgingSpecialProgramCode, additionalDataLodging.lodgingSpecialProgramCode) &&
Objects.equals(this.lodgingCheckInDate, additionalDataLodging.lodgingCheckInDate) &&
Objects.equals(this.lodgingCheckOutDate, additionalDataLodging.lodgingCheckOutDate) &&
Objects.equals(this.lodgingCustomerServiceTollFreeNumber, additionalDataLodging.lodgingCustomerServiceTollFreeNumber) &&
Objects.equals(this.lodgingFireSafetyActIndicator, additionalDataLodging.lodgingFireSafetyActIndicator) &&
Objects.equals(this.lodgingFolioCashAdvances, additionalDataLodging.lodgingFolioCashAdvances) &&
Objects.equals(this.lodgingFolioNumber, additionalDataLodging.lodgingFolioNumber) &&
Objects.equals(this.lodgingFoodBeverageCharges, additionalDataLodging.lodgingFoodBeverageCharges) &&
Objects.equals(this.lodgingNoShowIndicator, additionalDataLodging.lodgingNoShowIndicator) &&
Objects.equals(this.lodgingPrepaidExpenses, additionalDataLodging.lodgingPrepaidExpenses) &&
Objects.equals(this.lodgingPropertyPhoneNumber, additionalDataLodging.lodgingPropertyPhoneNumber) &&
Objects.equals(this.lodgingRoom1NumberOfNights, additionalDataLodging.lodgingRoom1NumberOfNights) &&
Objects.equals(this.lodgingRoom1Rate, additionalDataLodging.lodgingRoom1Rate) &&
Objects.equals(this.lodgingTotalRoomTax, additionalDataLodging.lodgingTotalRoomTax) &&
Objects.equals(this.lodgingTotalTax, additionalDataLodging.lodgingTotalTax) &&
Objects.equals(this.travelEntertainmentAuthDataDuration, additionalDataLodging.travelEntertainmentAuthDataDuration) &&
Objects.equals(this.travelEntertainmentAuthDataMarket, additionalDataLodging.travelEntertainmentAuthDataMarket);
}
@Override
public int hashCode() {
return Objects.hash(lodgingSpecialProgramCode, lodgingCheckInDate, lodgingCheckOutDate, lodgingCustomerServiceTollFreeNumber, lodgingFireSafetyActIndicator, lodgingFolioCashAdvances, lodgingFolioNumber, lodgingFoodBeverageCharges, lodgingNoShowIndicator, lodgingPrepaidExpenses, lodgingPropertyPhoneNumber, lodgingRoom1NumberOfNights, lodgingRoom1Rate, lodgingTotalRoomTax, lodgingTotalTax, travelEntertainmentAuthDataDuration, travelEntertainmentAuthDataMarket);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AdditionalDataLodging {\n");
sb.append(" lodgingSpecialProgramCode: ").append(toIndentedString(lodgingSpecialProgramCode)).append("\n");
sb.append(" lodgingCheckInDate: ").append(toIndentedString(lodgingCheckInDate)).append("\n");
sb.append(" lodgingCheckOutDate: ").append(toIndentedString(lodgingCheckOutDate)).append("\n");
sb.append(" lodgingCustomerServiceTollFreeNumber: ").append(toIndentedString(lodgingCustomerServiceTollFreeNumber)).append("\n");
sb.append(" lodgingFireSafetyActIndicator: ").append(toIndentedString(lodgingFireSafetyActIndicator)).append("\n");
sb.append(" lodgingFolioCashAdvances: ").append(toIndentedString(lodgingFolioCashAdvances)).append("\n");
sb.append(" lodgingFolioNumber: ").append(toIndentedString(lodgingFolioNumber)).append("\n");
sb.append(" lodgingFoodBeverageCharges: ").append(toIndentedString(lodgingFoodBeverageCharges)).append("\n");
sb.append(" lodgingNoShowIndicator: ").append(toIndentedString(lodgingNoShowIndicator)).append("\n");
sb.append(" lodgingPrepaidExpenses: ").append(toIndentedString(lodgingPrepaidExpenses)).append("\n");
sb.append(" lodgingPropertyPhoneNumber: ").append(toIndentedString(lodgingPropertyPhoneNumber)).append("\n");
sb.append(" lodgingRoom1NumberOfNights: ").append(toIndentedString(lodgingRoom1NumberOfNights)).append("\n");
sb.append(" lodgingRoom1Rate: ").append(toIndentedString(lodgingRoom1Rate)).append("\n");
sb.append(" lodgingTotalRoomTax: ").append(toIndentedString(lodgingTotalRoomTax)).append("\n");
sb.append(" lodgingTotalTax: ").append(toIndentedString(lodgingTotalTax)).append("\n");
sb.append(" travelEntertainmentAuthDataDuration: ").append(toIndentedString(travelEntertainmentAuthDataDuration)).append("\n");
sb.append(" travelEntertainmentAuthDataMarket: ").append(toIndentedString(travelEntertainmentAuthDataMarket)).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 ");
}
/**
* Create an instance of AdditionalDataLodging given an JSON string
*
* @param jsonString JSON string
* @return An instance of AdditionalDataLodging
* @throws JsonProcessingException if the JSON string is invalid with respect to AdditionalDataLodging
*/
public static AdditionalDataLodging fromJson(String jsonString) throws JsonProcessingException {
return JSON.getMapper().readValue(jsonString, AdditionalDataLodging.class);
}
/**
* Convert an instance of AdditionalDataLodging to an JSON string
*
* @return JSON string
*/
public String toJson() throws JsonProcessingException {
return JSON.getMapper().writeValueAsString(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy