@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
61 lines (60 loc) • 2.57 kB
TypeScript
/**
* CyberSource Merged Spec
* All CyberSource API specs merged together. These are available at https://developer.cybersource.com/api/reference/api-reference.html
*
* OpenAPI spec version: 0.0.1
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
/**
*
* @export
* @interface Ptsv2paymentsTravelInformationAutoRentalReturnAddress
*/
export interface Ptsv2paymentsTravelInformationAutoRentalReturnAddress {
/**
* City where the auto was returned to the rental agency.
* @type {string}
* @memberof Ptsv2paymentsTravelInformationAutoRentalReturnAddress
*/
city?: string;
/**
* State in which the auto was returned to the rental agency. Use the [State, Province, and Territory Codes for the United States and Canada](https://developer.cybersource.com/library/documentation/sbc/quickref/states_and_provinces.pdf). For authorizations, this field is supported for Visa, MasterCard, and American Express. For captures, this field is supported only for MasterCard and American Express.
* @type {string}
* @memberof Ptsv2paymentsTravelInformationAutoRentalReturnAddress
*/
state?: string;
/**
* Country where the auto was returned to the rental agency. Use the [ISO Standard Country Codes](https://developer.cybersource.com/library/documentation/sbc/quickref/countries_alpha_list.pdf).
* @type {string}
* @memberof Ptsv2paymentsTravelInformationAutoRentalReturnAddress
*/
country?: string;
/**
* Code, address, phone number, etc. used to identify the location of the auto rental return. This field is supported only for MasterCard and American Express.
* @type {string}
* @memberof Ptsv2paymentsTravelInformationAutoRentalReturnAddress
*/
locationId?: string;
/**
* When merchant wants to send the rental address's street address.
* @type {string}
* @memberof Ptsv2paymentsTravelInformationAutoRentalReturnAddress
*/
address1?: string;
/**
* When merchant wants to send the return address's postal code.
* @type {string}
* @memberof Ptsv2paymentsTravelInformationAutoRentalReturnAddress
*/
postalCode?: string;
/**
* This field contains the location where the taxi passenger was dropped off or where the auto rental vehicle was returned.
* @type {string}
* @memberof Ptsv2paymentsTravelInformationAutoRentalReturnAddress
*/
location?: string;
}