UNPKG

@paciolan/cybersource-sdk

Version:
56 lines (55 loc) 2.04 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 { PushFunds400ResponseDetails } from './push-funds400-response-details'; /** * * @export * @interface PushFunds400Response */ export interface PushFunds400Response { /** * A unique identification number to identify the submitted request. It is also appended to the endpoint of the resource. * @type {string} * @memberof PushFunds400Response */ 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. * @type {string} * @memberof PushFunds400Response */ submitTimeUtc?: string; /** * Possible values: - INVALID_REQUEST * @type {string} * @memberof PushFunds400Response */ status?: string; /** * The reason of the status. Possible values: - INVALID_DATA - MISSING_FIELD - INVALID_MERCHANT_CONFIGURATION - INVALID_REQUEST - INVALID_PAYMENT_ID * @type {string} * @memberof PushFunds400Response */ reason?: string; /** * The detail message related to the status and reason listed above. Possible values: - Declined - One or more fields in the request contains invalid data - Declined - The request is missing one or more fields - Declined - There is a problem with your CyberSource merchant configuration. * @type {string} * @memberof PushFunds400Response */ message?: string; /** * * @type {Array<PushFunds400ResponseDetails>} * @memberof PushFunds400Response */ details?: Array<PushFunds400ResponseDetails>; }