@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
55 lines (54 loc) • 1.77 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 Boardingv1registrationsOrganizationInformationBusinessInformationAddress
*/
export interface Boardingv1registrationsOrganizationInformationBusinessInformationAddress {
/**
*
* @type {string}
* @memberof Boardingv1registrationsOrganizationInformationBusinessInformationAddress
*/
country: string;
/**
*
* @type {string}
* @memberof Boardingv1registrationsOrganizationInformationBusinessInformationAddress
*/
address1: string;
/**
*
* @type {string}
* @memberof Boardingv1registrationsOrganizationInformationBusinessInformationAddress
*/
address2?: string;
/**
* City of the billing address.
* @type {string}
* @memberof Boardingv1registrationsOrganizationInformationBusinessInformationAddress
*/
locality: string;
/**
* State or province of the billing address. Required for United States and Canada.
* @type {string}
* @memberof Boardingv1registrationsOrganizationInformationBusinessInformationAddress
*/
administrativeArea?: string;
/**
* Postal code for the billing address. The postal code must consist of 5 to 9 digits. Required for United States and Canada.
* @type {string}
* @memberof Boardingv1registrationsOrganizationInformationBusinessInformationAddress
*/
postalCode?: string;
}