@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
50 lines (49 loc) • 2.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.
*/
import { TssV2TransactionsPost201ResponseEmbeddedApplicationInformationApplications } from './tss-v2-transactions-post201-response-embedded-application-information-applications';
/**
*
* @export
* @interface TssV2TransactionsPost201ResponseEmbeddedApplicationInformation
*/
export interface TssV2TransactionsPost201ResponseEmbeddedApplicationInformation {
/**
* Indicates the reason why a request succeeded or failed and possible action to take if a request fails. For details, see the appendix of reason codes in the documentation for the relevant payment method.
* @type {string}
* @memberof TssV2TransactionsPost201ResponseEmbeddedApplicationInformation
*/
reasonCode?: string;
/**
* Indicates whether the service request was successful. Possible values: - `-1`: An error occurred. - `0`: The request was declined. - `1`: The request was successful.
* @type {string}
* @memberof TssV2TransactionsPost201ResponseEmbeddedApplicationInformation
*/
rCode?: string;
/**
* One-word description of the result of the application.
* @type {string}
* @memberof TssV2TransactionsPost201ResponseEmbeddedApplicationInformation
*/
rFlag?: string;
/**
*
* @type {Array<TssV2TransactionsPost201ResponseEmbeddedApplicationInformationApplications>}
* @memberof TssV2TransactionsPost201ResponseEmbeddedApplicationInformation
*/
applications?: Array<TssV2TransactionsPost201ResponseEmbeddedApplicationInformationApplications>;
/**
* The description for this field is not available.
* @type {number}
* @memberof TssV2TransactionsPost201ResponseEmbeddedApplicationInformation
*/
returnCode?: number;
}