UNPKG

@paciolan/cybersource-sdk

Version:
38 lines (37 loc) 1.64 kB
/** * 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 { PushFunds201ResponseErrorInformationDetails } from './push-funds201-response-error-information-details'; /** * * @export * @interface PushFunds201ResponseErrorInformation */ export interface PushFunds201ResponseErrorInformation { /** * The reason of the status. Possible values: - CONTACT_PROCESSOR - INVALID_MERCHANT_CONFIGURATION - STOLEN_LOST_CARD - PROCESSOR_DECLINED - PARTIAL_APPROVAL - PAYMENT_REFUSED - INVALID_ACCOUNT - ISSUER_UNAVAILABLE - INSUFFICIENT_FUND - EXPIRED_CARD - INVALID_PIN - UNAUTHORIZED_CARD - EXCEEDS_CREDIT_LIMIT - DEBIT_CARD_USAGE_LIMIT_EXCEEDED - CVN_NOT_MATCH - DUPLICATE_REQUEST - GENERAL_DECLINE - BLACKLISTED_CUSTOMER - GATEWAY_TIMEOUT - INVALID_DATA - SYSTEM_ERROR - SERVICE_UNAVAILABLE - GATEWAY_TIMEOUT * @type {string} * @memberof PushFunds201ResponseErrorInformation */ reason?: string; /** * The detail message related to the status and reason listed above. * @type {string} * @memberof PushFunds201ResponseErrorInformation */ message?: string; /** * * @type {Array<PushFunds201ResponseErrorInformationDetails>} * @memberof PushFunds201ResponseErrorInformation */ details?: Array<PushFunds201ResponseErrorInformationDetails>; }