@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
99 lines (98 loc) • 4.54 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 { PtsV2PaymentsPost201ResponseLinks } from './pts-v2-payments-post201-response-links';
import { PtsV2PaymentsPost201ResponseRiskInformation } from './pts-v2-payments-post201-response-risk-information';
import { PtsV2PaymentsPost201ResponseWatchlistScreeningInformation } from './pts-v2-payments-post201-response-watchlist-screening-information';
import { RiskV1DecisionsPost201ResponseConsumerAuthenticationInformation } from './risk-v1-decisions-post201-response-consumer-authentication-information';
import { RiskV1DecisionsPost201ResponseErrorInformation } from './risk-v1-decisions-post201-response-error-information';
import { RiskV1DecisionsPost201ResponseOrderInformation } from './risk-v1-decisions-post201-response-order-information';
import { RiskV1DecisionsPost201ResponsePaymentInformation } from './risk-v1-decisions-post201-response-payment-information';
import { RiskV1UpdatePost201ResponseClientReferenceInformaton } from './risk-v1-update-post201-response-client-reference-informaton';
/**
*
* @export
* @interface RiskV1DecisionsPost201Response
*/
export interface RiskV1DecisionsPost201Response {
/**
*
* @type {PtsV2PaymentsPost201ResponseLinks}
* @memberof RiskV1DecisionsPost201Response
*/
links?: PtsV2PaymentsPost201ResponseLinks;
/**
* An unique identification number generated by Cybersource to identify the submitted request. Returned by all services. It is also appended to the endpoint of the resource. On incremental authorizations, this value with be the same as the identification number returned in the original authorization response.
* @type {string}
* @memberof RiskV1DecisionsPost201Response
*/
id?: string;
/**
* Time of request in UTC. Format: `YYYY-MM-DDThh:mm:ssZ` **Example** `2016-08-11T22:47:57Z` equals August 11, 2016, at 22:47:57 (10:47:57 p.m.). The `T` separates the date and the time. The `Z` indicates UTC. Returned by Cybersource for all services.
* @type {string}
* @memberof RiskV1DecisionsPost201Response
*/
submitTimeUtc?: string;
/**
* Time that the transaction was submitted in local time. Generated by Cybersource.
* @type {string}
* @memberof RiskV1DecisionsPost201Response
*/
submitTimeLocal?: string;
/**
* The status of the submitted transaction. Possible values: - `ACCEPTED` - `REJECTED` - `PENDING_REVIEW` - `DECLINED` - `PENDING_AUTHENTICATION` - `INVALID_REQUEST` - `AUTHENTICATION_FAILED` - `CHALLENGE`
* @type {string}
* @memberof RiskV1DecisionsPost201Response
*/
status?: string;
/**
*
* @type {PtsV2PaymentsPost201ResponseRiskInformation}
* @memberof RiskV1DecisionsPost201Response
*/
riskInformation?: PtsV2PaymentsPost201ResponseRiskInformation;
/**
*
* @type {RiskV1DecisionsPost201ResponsePaymentInformation}
* @memberof RiskV1DecisionsPost201Response
*/
paymentInformation?: RiskV1DecisionsPost201ResponsePaymentInformation;
/**
*
* @type {RiskV1UpdatePost201ResponseClientReferenceInformaton}
* @memberof RiskV1DecisionsPost201Response
*/
clientReferenceInformation?: RiskV1UpdatePost201ResponseClientReferenceInformaton;
/**
*
* @type {RiskV1DecisionsPost201ResponseOrderInformation}
* @memberof RiskV1DecisionsPost201Response
*/
orderInformation?: RiskV1DecisionsPost201ResponseOrderInformation;
/**
*
* @type {RiskV1DecisionsPost201ResponseConsumerAuthenticationInformation}
* @memberof RiskV1DecisionsPost201Response
*/
consumerAuthenticationInformation?: RiskV1DecisionsPost201ResponseConsumerAuthenticationInformation;
/**
*
* @type {PtsV2PaymentsPost201ResponseWatchlistScreeningInformation}
* @memberof RiskV1DecisionsPost201Response
*/
watchlistScreeningInformation?: PtsV2PaymentsPost201ResponseWatchlistScreeningInformation;
/**
*
* @type {RiskV1DecisionsPost201ResponseErrorInformation}
* @memberof RiskV1DecisionsPost201Response
*/
errorInformation?: RiskV1DecisionsPost201ResponseErrorInformation;
}