@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
67 lines (66 loc) • 2.43 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 PtsV2ModifyBillingAgreementPost201ResponseOrderInformationShipTo
*/
export interface PtsV2ModifyBillingAgreementPost201ResponseOrderInformationShipTo {
/**
* First name of the recipient.
* @type {string}
* @memberof PtsV2ModifyBillingAgreementPost201ResponseOrderInformationShipTo
*/
firstName?: string;
/**
* Last name of the recipient.
* @type {string}
* @memberof PtsV2ModifyBillingAgreementPost201ResponseOrderInformationShipTo
*/
lastName?: string;
/**
* First line of the shipping address.
* @type {string}
* @memberof PtsV2ModifyBillingAgreementPost201ResponseOrderInformationShipTo
*/
address1?: string;
/**
* Second line of the shipping address.
* @type {string}
* @memberof PtsV2ModifyBillingAgreementPost201ResponseOrderInformationShipTo
*/
address2?: string;
/**
* City of the shipping address.
* @type {string}
* @memberof PtsV2ModifyBillingAgreementPost201ResponseOrderInformationShipTo
*/
locality?: 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) (maximum length: 2)
* @type {string}
* @memberof PtsV2ModifyBillingAgreementPost201ResponseOrderInformationShipTo
*/
administrativeArea?: string;
/**
* Postal code for the shipping address. The postal code must consist of 5 to 9 digits.
* @type {string}
* @memberof PtsV2ModifyBillingAgreementPost201ResponseOrderInformationShipTo
*/
postalCode?: 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 PtsV2ModifyBillingAgreementPost201ResponseOrderInformationShipTo
*/
country?: string;
}