UNPKG

@paciolan/cybersource-sdk

Version:
50 lines (49 loc) 1.57 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 { PtsV2PaymentsPost400ResponseDetails } from './pts-v2-payments-post400-response-details'; /** * * @export * @interface InlineResponse502 */ export interface InlineResponse502 { /** * 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 InlineResponse502 */ submitTimeUtc?: string; /** * The status of the submitted transaction. Possible values: - `SERVER_ERROR` * @type {string} * @memberof InlineResponse502 */ status?: string; /** * The reason of the status. Possible Values: - `INTERNAL_SERVICE_ERROR` * @type {string} * @memberof InlineResponse502 */ reason?: string; /** * Application failed. * @type {string} * @memberof InlineResponse502 */ message?: string; /** * * @type {Array<PtsV2PaymentsPost400ResponseDetails>} * @memberof InlineResponse502 */ details?: Array<PtsV2PaymentsPost400ResponseDetails>; }