UNPKG

@paciolan/cybersource-sdk

Version:
61 lines (60 loc) 2.17 kB
/** * 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 Ptsv2paymentsTravelInformationTransitAirlineTicketIssuer */ export interface Ptsv2paymentsTravelInformationTransitAirlineTicketIssuer { /** * IATA2 airline code. Format: English characters only. Required for Mastercard; optional for all other card types. * @type {string} * @memberof Ptsv2paymentsTravelInformationTransitAirlineTicketIssuer */ code?: string; /** * Name of the ticket issuer. If you do not include this field, CyberSource uses the value for your merchant name that is in the CyberSource merchant configuration database. * @type {string} * @memberof Ptsv2paymentsTravelInformationTransitAirlineTicketIssuer */ name?: string; /** * Address of the company issuing the ticket. * @type {string} * @memberof Ptsv2paymentsTravelInformationTransitAirlineTicketIssuer */ address?: string; /** * City in which the transaction occurred. If the name of the city exceeds 18 characters, use meaningful abbreviations. Format: English characters only. Optional request field. * @type {string} * @memberof Ptsv2paymentsTravelInformationTransitAirlineTicketIssuer */ locality?: string; /** * State in which transaction occured. * @type {string} * @memberof Ptsv2paymentsTravelInformationTransitAirlineTicketIssuer */ administrativeArea?: string; /** * Zip code of the city in which transaction occured. * @type {string} * @memberof Ptsv2paymentsTravelInformationTransitAirlineTicketIssuer */ postalCode?: string; /** * Country in which transaction occured. * @type {string} * @memberof Ptsv2paymentsTravelInformationTransitAirlineTicketIssuer */ country?: string; }