@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
73 lines (72 loc) • 2.46 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 PtsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo
*/
export interface PtsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo {
/**
* Customer's first name.
* @type {string}
* @memberof PtsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo
*/
firstName?: string;
/**
* Customer's last name.
* @type {string}
* @memberof PtsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo
*/
lastName?: string;
/**
* First line of the billing street address.
* @type {string}
* @memberof PtsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo
*/
address1?: string;
/**
* Additional address information. Example: Attention - Accounts Payable
* @type {string}
* @memberof PtsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo
*/
address2?: string;
/**
* City of the billing address.
* @type {string}
* @memberof PtsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo
*/
locality?: string;
/**
* State of the billing address in the U.S.
* @type {string}
* @memberof PtsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo
*/
administrativeArea?: string;
/**
* Postal code for the billing address. The postal code must consist of 5 to 9 digits. A 9-digit postal code must follow this format: [5 digits][dash][4 digits] Example: 12345-6789\"
* @type {string}
* @memberof PtsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo
*/
postalCode?: string;
/**
* Billing country. Use the two character ISO Standard Country Codes.
* @type {string}
* @memberof PtsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo
*/
country?: string;
/**
* Customer's email address, including the full domain name.
* @type {string}
* @memberof PtsV2ModifyBillingAgreementPost201ResponseOrderInformationBillTo
*/
email?: string;
}