mirror of
https://github.com/jlengrand/adyen-node-api-library.git
synced 2026-03-10 08:01:20 +00:00
229 lines
7.4 KiB
TypeScript
229 lines
7.4 KiB
TypeScript
/*
|
|
* The version of the OpenAPI document: v68
|
|
* Contact: developer-experience@adyen.com
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit this class manually.
|
|
*/
|
|
|
|
|
|
export class AdditionalDataCarRental {
|
|
/**
|
|
* Pick-up date. * Date format: `yyyyMMdd`
|
|
*/
|
|
'carRentalCheckOutDate'?: string;
|
|
/**
|
|
* The customer service phone number of the car rental company. * Format: Alphanumeric * maxLength: 17
|
|
*/
|
|
'carRentalCustomerServiceTollFreeNumber'?: string;
|
|
/**
|
|
* Number of days for which the car is being rented. * Format: Numeric * maxLength: 19
|
|
*/
|
|
'carRentalDaysRented'?: string;
|
|
/**
|
|
* Any fuel charges associated with the rental. * Format: Numeric * maxLength: 12
|
|
*/
|
|
'carRentalFuelCharges'?: string;
|
|
/**
|
|
* Any insurance charges associated with the rental. * Format: Numeric * maxLength: 12
|
|
*/
|
|
'carRentalInsuranceCharges'?: string;
|
|
/**
|
|
* The city from which the car is rented. * Format: Alphanumeric * maxLength: 18
|
|
*/
|
|
'carRentalLocationCity'?: string;
|
|
/**
|
|
* The country from which the car is rented. * Format: Alphanumeric * maxLength: 2
|
|
*/
|
|
'carRentalLocationCountry'?: string;
|
|
/**
|
|
* The state or province from where the car is rented. * Format: Alphanumeric * maxLength: 3
|
|
*/
|
|
'carRentalLocationStateProvince'?: string;
|
|
/**
|
|
* Indicates if the customer was a \"no-show\" (neither keeps nor cancels their booking). * Y - Customer was a no show. * N - Not applicable.
|
|
*/
|
|
'carRentalNoShowIndicator'?: string;
|
|
/**
|
|
* Charge associated with not returning a vehicle to the original rental location.
|
|
*/
|
|
'carRentalOneWayDropOffCharges'?: string;
|
|
/**
|
|
* Daily rental rate. * Format: Alphanumeric * maxLength: 12
|
|
*/
|
|
'carRentalRate'?: string;
|
|
/**
|
|
* Specifies whether the given rate is applied daily or weekly. * D - Daily rate. * W - Weekly rate.
|
|
*/
|
|
'carRentalRateIndicator'?: string;
|
|
/**
|
|
* The rental agreement number associated with this car rental. * Format: Alphanumeric * maxLength: 9
|
|
*/
|
|
'carRentalRentalAgreementNumber'?: string;
|
|
/**
|
|
* Daily rental rate. * Format: Alphanumeric * maxLength: 12
|
|
*/
|
|
'carRentalRentalClassId'?: string;
|
|
/**
|
|
* The name of the person renting the car. * Format: Alphanumeric * maxLength: 26
|
|
*/
|
|
'carRentalRenterName'?: string;
|
|
/**
|
|
* The city where the car must be returned. * Format: Alphanumeric * maxLength: 18
|
|
*/
|
|
'carRentalReturnCity'?: string;
|
|
/**
|
|
* The country where the car must be returned. * Format: Alphanumeric * maxLength: 2
|
|
*/
|
|
'carRentalReturnCountry'?: string;
|
|
/**
|
|
* The last date to return the car by. * Date format: `yyyyMMdd`
|
|
*/
|
|
'carRentalReturnDate'?: string;
|
|
/**
|
|
* Agency code, phone number, or address abbreviation * Format: Alphanumeric * maxLength: 10
|
|
*/
|
|
'carRentalReturnLocationId'?: string;
|
|
/**
|
|
* The state or province where the car must be returned. * Format: Alphanumeric * maxLength: 3
|
|
*/
|
|
'carRentalReturnStateProvince'?: string;
|
|
/**
|
|
* Indicates whether the goods or services were tax-exempt, or tax was not collected. Values: * Y - Goods or services were tax exempt * N - Tax was not collected
|
|
*/
|
|
'carRentalTaxExemptIndicator'?: string;
|
|
/**
|
|
* Number of nights. This should be included in the auth message. * Format: Numeric * maxLength: 2
|
|
*/
|
|
'travelEntertainmentAuthDataDuration'?: string;
|
|
/**
|
|
* Indicates what market-specific dataset will be submitted or is being submitted. Value should be \"A\" for Car rental. This should be included in the auth message. * Format: Alphanumeric * maxLength: 1
|
|
*/
|
|
'travelEntertainmentAuthDataMarket'?: string;
|
|
|
|
static discriminator: string | undefined = undefined;
|
|
|
|
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
|
|
{
|
|
"name": "carRentalCheckOutDate",
|
|
"baseName": "carRental.checkOutDate",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "carRentalCustomerServiceTollFreeNumber",
|
|
"baseName": "carRental.customerServiceTollFreeNumber",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "carRentalDaysRented",
|
|
"baseName": "carRental.daysRented",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "carRentalFuelCharges",
|
|
"baseName": "carRental.fuelCharges",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "carRentalInsuranceCharges",
|
|
"baseName": "carRental.insuranceCharges",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "carRentalLocationCity",
|
|
"baseName": "carRental.locationCity",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "carRentalLocationCountry",
|
|
"baseName": "carRental.locationCountry",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "carRentalLocationStateProvince",
|
|
"baseName": "carRental.locationStateProvince",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "carRentalNoShowIndicator",
|
|
"baseName": "carRental.noShowIndicator",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "carRentalOneWayDropOffCharges",
|
|
"baseName": "carRental.oneWayDropOffCharges",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "carRentalRate",
|
|
"baseName": "carRental.rate",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "carRentalRateIndicator",
|
|
"baseName": "carRental.rateIndicator",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "carRentalRentalAgreementNumber",
|
|
"baseName": "carRental.rentalAgreementNumber",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "carRentalRentalClassId",
|
|
"baseName": "carRental.rentalClassId",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "carRentalRenterName",
|
|
"baseName": "carRental.renterName",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "carRentalReturnCity",
|
|
"baseName": "carRental.returnCity",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "carRentalReturnCountry",
|
|
"baseName": "carRental.returnCountry",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "carRentalReturnDate",
|
|
"baseName": "carRental.returnDate",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "carRentalReturnLocationId",
|
|
"baseName": "carRental.returnLocationId",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "carRentalReturnStateProvince",
|
|
"baseName": "carRental.returnStateProvince",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "carRentalTaxExemptIndicator",
|
|
"baseName": "carRental.taxExemptIndicator",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "travelEntertainmentAuthDataDuration",
|
|
"baseName": "travelEntertainmentAuthData.duration",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "travelEntertainmentAuthDataMarket",
|
|
"baseName": "travelEntertainmentAuthData.market",
|
|
"type": "string"
|
|
} ];
|
|
|
|
static getAttributeTypeMap() {
|
|
return AdditionalDataCarRental.attributeTypeMap;
|
|
}
|
|
}
|
|
|