@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
38 lines (37 loc) • 1.8 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 { PtsV2PaymentsPost400ResponseDetails } from './pts-v2-payments-post400-response-details';
/**
*
* @export
* @interface PtsV2IncrementalAuthorizationPatch201ResponseErrorInformation
*/
export interface PtsV2IncrementalAuthorizationPatch201ResponseErrorInformation {
/**
* The reason of the status. Possible values: - AVS_FAILED - CONTACT_PROCESSOR - EXPIRED_CARD - PROCESSOR_DECLINED - INSUFFICIENT_FUND - STOLEN_LOST_CARD - ISSUER_UNAVAILABLE - UNAUTHORIZED_CARD - CVN_NOT_MATCH - EXCEEDS_CREDIT_LIMIT - INVALID_CVN - BLACKLISTED_CUSTOMER - SUSPENDED_ACCOUNT - PAYMENT_REFUSED - CV_FAILED - INVALID_ACCOUNT - GENERAL_DECLINE - INVALID_MERCHANT_CONFIGURATION - DECISION_PROFILE_REJECT - SCORE_EXCEEDS_THRESHOLD - CONSUMER_AUTHENTICATION_REQUIRED - ALLOWABLE_PIN_RETRIES_EXCEEDED - PROCESSOR_ERROR
* @type {string}
* @memberof PtsV2IncrementalAuthorizationPatch201ResponseErrorInformation
*/
reason?: string;
/**
* The detail message related to the status and reason listed above.
* @type {string}
* @memberof PtsV2IncrementalAuthorizationPatch201ResponseErrorInformation
*/
message?: string;
/**
*
* @type {Array<PtsV2PaymentsPost400ResponseDetails>}
* @memberof PtsV2IncrementalAuthorizationPatch201ResponseErrorInformation
*/
details?: Array<PtsV2PaymentsPost400ResponseDetails>;
}