@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
72 lines (71 loc) • 2.35 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 InlineResponse2013SetupsPaymentsCardProcessingSubscriptionStatus
*/
export interface InlineResponse2013SetupsPaymentsCardProcessingSubscriptionStatus {
/**
* 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 InlineResponse2013SetupsPaymentsCardProcessingSubscriptionStatus
*/
submitTimeUtc?: string;
/**
*
* @type {string}
* @memberof InlineResponse2013SetupsPaymentsCardProcessingSubscriptionStatus
*/
status?: InlineResponse2013SetupsPaymentsCardProcessingSubscriptionStatusStatusEnum;
/**
*
* @type {string}
* @memberof InlineResponse2013SetupsPaymentsCardProcessingSubscriptionStatus
*/
reason?: InlineResponse2013SetupsPaymentsCardProcessingSubscriptionStatusReasonEnum;
/**
*
* @type {Array<{ [key: string]: string; }>}
* @memberof InlineResponse2013SetupsPaymentsCardProcessingSubscriptionStatus
*/
details?: Array<{
[key: string]: string;
}>;
/**
*
* @type {string}
* @memberof InlineResponse2013SetupsPaymentsCardProcessingSubscriptionStatus
*/
message?: string;
}
/**
* @export
* @enum {string}
*/
export declare enum InlineResponse2013SetupsPaymentsCardProcessingSubscriptionStatusStatusEnum {
SUCCESS = "SUCCESS",
FAILURE = "FAILURE",
PARTIAL = "PARTIAL",
PENDING = "PENDING"
}
/**
* @export
* @enum {string}
*/
export declare enum InlineResponse2013SetupsPaymentsCardProcessingSubscriptionStatusReasonEnum {
DEPENDENTPRODUCTNOTCONTRACTED = "DEPENDENT_PRODUCT_NOT_CONTRACTED",
DEPENDENTFEATURENOTCHOSEN = "DEPENDENT_FEATURE_NOT_CHOSEN",
MISSINGDATA = "MISSING_DATA",
INVALIDDATA = "INVALID_DATA",
DUPLICATEFIELD = "DUPLICATE_FIELD"
}