UNPKG

@paciolan/cybersource-sdk

Version:
91 lines (90 loc) 2.88 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 Upv1capturecontextsOrderInformationShipTo */ export interface Upv1capturecontextsOrderInformationShipTo { /** * First line of the shipping address. * @type {string} * @memberof Upv1capturecontextsOrderInformationShipTo */ address1?: string; /** * Second line of the shipping address. * @type {string} * @memberof Upv1capturecontextsOrderInformationShipTo */ address2?: string; /** * Third line of the shipping address. * @type {string} * @memberof Upv1capturecontextsOrderInformationShipTo */ address3?: string; /** * Fourth line of the shipping address. * @type {string} * @memberof Upv1capturecontextsOrderInformationShipTo */ address4?: string; /** * State or province of the shipping 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 Upv1capturecontextsOrderInformationShipTo */ administrativeArea?: string; /** * Building number in the street address. * @type {string} * @memberof Upv1capturecontextsOrderInformationShipTo */ buildingNumber?: string; /** * Country of the shipping address. Use the two-character [ISO Standard Country Codes.](http://apps.cybersource.com/library/documentation/sbc/quickref/countries_alpha_list.pdf) * @type {string} * @memberof Upv1capturecontextsOrderInformationShipTo */ country?: string; /** * Neighborhood, community, or region within a city or municipality. * @type {string} * @memberof Upv1capturecontextsOrderInformationShipTo */ district?: string; /** * City of the shipping address. * @type {string} * @memberof Upv1capturecontextsOrderInformationShipTo */ locality?: string; /** * Postal code for the shipping address. The postal code must consist of 5 to 9 digits. * @type {string} * @memberof Upv1capturecontextsOrderInformationShipTo */ postalCode?: string; /** * First name of the recipient * @type {string} * @memberof Upv1capturecontextsOrderInformationShipTo */ firstName?: string; /** * Last name of the recipient. * @type {string} * @memberof Upv1capturecontextsOrderInformationShipTo */ lastName?: string; }