@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
86 lines (85 loc) • 3.32 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 { RiskV1AddressVerificationsPost201ResponseAddressVerificationInformationStandardAddressAddress1 } from './risk-v1-address-verifications-post201-response-address-verification-information-standard-address-address1';
/**
*
* @export
* @interface RiskV1AddressVerificationsPost201ResponseAddressVerificationInformationStandardAddress
*/
export interface RiskV1AddressVerificationsPost201ResponseAddressVerificationInformationStandardAddress {
/**
*
* @type {RiskV1AddressVerificationsPost201ResponseAddressVerificationInformationStandardAddressAddress1}
* @memberof RiskV1AddressVerificationsPost201ResponseAddressVerificationInformationStandardAddress
*/
address1?: RiskV1AddressVerificationsPost201ResponseAddressVerificationInformationStandardAddressAddress1;
/**
* Second line of the standardized address.
* @type {string}
* @memberof RiskV1AddressVerificationsPost201ResponseAddressVerificationInformationStandardAddress
*/
address2?: string;
/**
* Third line of the standardized address.
* @type {string}
* @memberof RiskV1AddressVerificationsPost201ResponseAddressVerificationInformationStandardAddress
*/
address3?: string;
/**
* Fourth line of the standardized address.
* @type {string}
* @memberof RiskV1AddressVerificationsPost201ResponseAddressVerificationInformationStandardAddress
*/
address4?: string;
/**
* Standardized city name.
* @type {string}
* @memberof RiskV1AddressVerificationsPost201ResponseAddressVerificationInformationStandardAddress
*/
locality?: string;
/**
* U.S. county if available.
* @type {string}
* @memberof RiskV1AddressVerificationsPost201ResponseAddressVerificationInformationStandardAddress
*/
county?: string;
/**
* Standardized country name.
* @type {string}
* @memberof RiskV1AddressVerificationsPost201ResponseAddressVerificationInformationStandardAddress
*/
country?: string;
/**
* Standardized city, state or province, and ZIP +4 code or postal code line.
* @type {string}
* @memberof RiskV1AddressVerificationsPost201ResponseAddressVerificationInformationStandardAddress
*/
csz?: string;
/**
* Standardized two-character ISO country code.
* @type {string}
* @memberof RiskV1AddressVerificationsPost201ResponseAddressVerificationInformationStandardAddress
*/
isoCountry?: string;
/**
* U.S.P.S. standardized state or province abbreviation.
* @type {string}
* @memberof RiskV1AddressVerificationsPost201ResponseAddressVerificationInformationStandardAddress
*/
administrativeArea?: string;
/**
* Standardized U.S. ZIP + 4 postal code.
* @type {string}
* @memberof RiskV1AddressVerificationsPost201ResponseAddressVerificationInformationStandardAddress
*/
postalCode?: string;
}