UNPKG

@paciolan/cybersource-sdk

Version:
84 lines (83 loc) 2.65 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. */ /** * * @export * @interface InlineResponse2013SetupsPaymentsCardProcessingConfigurationStatus */ export interface InlineResponse2013SetupsPaymentsCardProcessingConfigurationStatus { /** * This is NOT for MVP * @type {string} * @memberof InlineResponse2013SetupsPaymentsCardProcessingConfigurationStatus */ configurationId?: string; /** * * @type {string} * @memberof InlineResponse2013SetupsPaymentsCardProcessingConfigurationStatus */ version?: 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 InlineResponse2013SetupsPaymentsCardProcessingConfigurationStatus */ submitTimeUtc?: string; /** * * @type {string} * @memberof InlineResponse2013SetupsPaymentsCardProcessingConfigurationStatus */ status?: InlineResponse2013SetupsPaymentsCardProcessingConfigurationStatusStatusEnum; /** * * @type {string} * @memberof InlineResponse2013SetupsPaymentsCardProcessingConfigurationStatus */ reason?: InlineResponse2013SetupsPaymentsCardProcessingConfigurationStatusReasonEnum; /** * * @type {Array<{ [key: string]: string; }>} * @memberof InlineResponse2013SetupsPaymentsCardProcessingConfigurationStatus */ details?: Array<{ [key: string]: string; }>; /** * * @type {string} * @memberof InlineResponse2013SetupsPaymentsCardProcessingConfigurationStatus */ message?: string; } /** * @export * @enum {string} */ export declare enum InlineResponse2013SetupsPaymentsCardProcessingConfigurationStatusStatusEnum { SUCCESS = "SUCCESS", PARTIAL = "PARTIAL", PENDING = "PENDING", NOTSETUP = "NOT_SETUP" } /** * @export * @enum {string} */ export declare enum InlineResponse2013SetupsPaymentsCardProcessingConfigurationStatusReasonEnum { PENDINGPROVISIONINGPROCESS = "PENDING_PROVISIONING_PROCESS", MISSINGDATA = "MISSING_DATA", INVALIDDATA = "INVALID_DATA", DUPLICATEFIELD = "DUPLICATE_FIELD", NOTAPPLICABLE = "NOT_APPLICABLE" }