@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
79 lines (78 loc) • 4.11 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 TssV2TransactionsGet200ResponseProcessorInformationElectronicVerificationResults
*/
export interface TssV2TransactionsGet200ResponseProcessorInformationElectronicVerificationResults {
/**
* Mapped Electronic Verification response code for the customer's email address. For details, see `auth_ev_email` field description in the [Credit Card Services Using the SCMP API Guide.](https://apps.cybersource.com/library/documentation/dev_guides/CC_Svcs_SCMP_API/html/)
* @type {string}
* @memberof TssV2TransactionsGet200ResponseProcessorInformationElectronicVerificationResults
*/
email?: string;
/**
* Raw Electronic Verification response code from the processor for the customer's email address.
* @type {string}
* @memberof TssV2TransactionsGet200ResponseProcessorInformationElectronicVerificationResults
*/
emailRaw?: string;
/**
* #### Visa Platform Connect Mapped Electronic Verification response code for the customer's name. Valid values : 'Y' Yes, the data Matches 'N' No Match 'O' Partial Match
* @type {string}
* @memberof TssV2TransactionsGet200ResponseProcessorInformationElectronicVerificationResults
*/
name?: string;
/**
* #### Visa Platform Connect Raw Electronic Verification response code from the processor for the customer's name. Valid values : '01' Match '50' Partial Match '99' No Match
* @type {string}
* @memberof TssV2TransactionsGet200ResponseProcessorInformationElectronicVerificationResults
*/
nameRaw?: string;
/**
* Mapped Electronic Verification response code for the customer's phone number. For details, see `auth_ev_phone_number` field description in the [Credit Card Services Using the SCMP API Guide.](https://apps.cybersource.com/library/documentation/dev_guides/CC_Svcs_SCMP_API/html/)
* @type {string}
* @memberof TssV2TransactionsGet200ResponseProcessorInformationElectronicVerificationResults
*/
phoneNumber?: string;
/**
* Raw Electronic Verification response code from the processor for the customer's phone number.
* @type {string}
* @memberof TssV2TransactionsGet200ResponseProcessorInformationElectronicVerificationResults
*/
phoneNumberRaw?: string;
/**
* Mapped Electronic Verification response code for the customer's street address. For details, see `auth_ev_street` field description in the [Credit Card Services Using the SCMP API Guide.](https://apps.cybersource.com/library/documentation/dev_guides/CC_Svcs_SCMP_API/html/)
* @type {string}
* @memberof TssV2TransactionsGet200ResponseProcessorInformationElectronicVerificationResults
*/
street?: string;
/**
* Raw Electronic Verification response code from the processor for the customer's street address.
* @type {string}
* @memberof TssV2TransactionsGet200ResponseProcessorInformationElectronicVerificationResults
*/
streetRaw?: string;
/**
* Mapped Electronic Verification response code for the customer's postal code. For details, see `auth_ev_postal_code` field description in the [Credit Card Services Using the SCMP API Guide.](https://apps.cybersource.com/library/documentation/dev_guides/CC_Svcs_SCMP_API/html/)
* @type {string}
* @memberof TssV2TransactionsGet200ResponseProcessorInformationElectronicVerificationResults
*/
postalCode?: string;
/**
* Raw Electronic Verification response code from the processor for the customer's postal code.
* @type {string}
* @memberof TssV2TransactionsGet200ResponseProcessorInformationElectronicVerificationResults
*/
postalCodeRaw?: string;
}