@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
134 lines (133 loc) • 4.54 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.
*/
import { Upv1capturecontextsOrderInformationBillToCompany } from './upv1capturecontexts-order-information-bill-to-company';
/**
*
* @export
* @interface Upv1capturecontextsOrderInformationBillTo
*/
export interface Upv1capturecontextsOrderInformationBillTo {
/**
* Payment card billing street address as it appears on the credit card issuer's records.
* @type {string}
* @memberof Upv1capturecontextsOrderInformationBillTo
*/
address1?: string;
/**
* Used for additional address information. For example: _Attention: Accounts Payable_ Optional field.
* @type {string}
* @memberof Upv1capturecontextsOrderInformationBillTo
*/
address2?: string;
/**
* Additional address information (third line of the billing address)
* @type {string}
* @memberof Upv1capturecontextsOrderInformationBillTo
*/
address3?: string;
/**
* Additional address information (fourth line of the billing address)
* @type {string}
* @memberof Upv1capturecontextsOrderInformationBillTo
*/
address4?: string;
/**
* State or province of the billing address. 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).
* @type {string}
* @memberof Upv1capturecontextsOrderInformationBillTo
*/
administrativeArea?: string;
/**
* Building number in the street address.
* @type {string}
* @memberof Upv1capturecontextsOrderInformationBillTo
*/
buildingNumber?: string;
/**
* Payment card billing country. Use the two-character [ISO Standard Country Codes](http://apps.cybersource.com/library/documentation/sbc/quickref/countries_alpha_list.pdf).
* @type {string}
* @memberof Upv1capturecontextsOrderInformationBillTo
*/
country?: string;
/**
* Customer's neighborhood, community, or region (a barrio in Brazil) within the city or municipality
* @type {string}
* @memberof Upv1capturecontextsOrderInformationBillTo
*/
district?: string;
/**
* Payment card billing city.
* @type {string}
* @memberof Upv1capturecontextsOrderInformationBillTo
*/
locality?: string;
/**
* Postal code for the billing address. The postal code must consist of 5 to 9 digits.
* @type {string}
* @memberof Upv1capturecontextsOrderInformationBillTo
*/
postalCode?: string;
/**
*
* @type {Upv1capturecontextsOrderInformationBillToCompany}
* @memberof Upv1capturecontextsOrderInformationBillTo
*/
company?: Upv1capturecontextsOrderInformationBillToCompany;
/**
* Customer's email address, including the full domain name.
* @type {string}
* @memberof Upv1capturecontextsOrderInformationBillTo
*/
email?: string;
/**
* Customer's first name. This name must be the same as the name on the card
* @type {string}
* @memberof Upv1capturecontextsOrderInformationBillTo
*/
firstName?: string;
/**
* Customer's last name. This name must be the same as the name on the card.
* @type {string}
* @memberof Upv1capturecontextsOrderInformationBillTo
*/
lastName?: string;
/**
* Customer's middle name.
* @type {string}
* @memberof Upv1capturecontextsOrderInformationBillTo
*/
middleName?: string;
/**
* Customer's name suffix.
* @type {string}
* @memberof Upv1capturecontextsOrderInformationBillTo
*/
nameSuffix?: string;
/**
* Title.
* @type {string}
* @memberof Upv1capturecontextsOrderInformationBillTo
*/
title?: string;
/**
* Customer's phone number.
* @type {string}
* @memberof Upv1capturecontextsOrderInformationBillTo
*/
phoneNumber?: string;
/**
* Customer's phone number type. #### For Payouts: This field may be sent only for FDC Compass. Possible Values: * day * home * night * work
* @type {string}
* @memberof Upv1capturecontextsOrderInformationBillTo
*/
phoneType?: string;
}