@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
49 lines (48 loc) • 1.55 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 InlineResponse5022
*/
export interface InlineResponse5022 {
/**
* 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 InlineResponse5022
*/
submitTimeUtc?: string;
/**
* The status of the submitted transaction. Possible values: - SERVER_ERROR
* @type {string}
* @memberof InlineResponse5022
*/
status?: string;
/**
* The reason of the status. Possible values: - SYSTEM_ERROR - SERVER_TIMEOUT - SERVICE_TIMEOUT
* @type {string}
* @memberof InlineResponse5022
*/
reason?: string;
/**
* The detail message related to the status and reason listed above.
* @type {string}
* @memberof InlineResponse5022
*/
message?: string;
/**
* HTTP status code of the submitted request. Possible values: - 500
* @type {string}
* @memberof InlineResponse5022
*/
statusCode?: string;
}