UNPKG

@paciolan/cybersource-sdk

Version:
31 lines (30 loc) 1.75 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 CardProcessingConfigFeaturesCardNotPresentInstallment */ export interface CardProcessingConfigFeaturesCardNotPresentInstallment { /** * This flag is to enable for installment plan programs. Applicable for Fiserv (fiserv), Vero (vero) and American Express Direct (amexdirect) processors. Validation details (for selected processors)... <table> <thead><tr><th>Processor</th><th>Acceptance Type</th><th>Required</th><th>Default Value</th></tr></thead> <tr><td>American Express Direct</td><td>cnp</td><td>No</td><td>No</td></tr> </table> * @type {boolean} * @memberof CardProcessingConfigFeaturesCardNotPresentInstallment */ enableInstallment?: boolean; /** * This indicates the type of funding for the installment plan associated with the payment. Valid values: \"merchant\" - Merchant-funded installment plan \"issuer\" - Issuer-funded installment plan Applicable for Fiserv (fiserv), American Express Direct (amexdirect) and Vero (vero) processors. Validation details (for selected processors)... <table> <thead><tr><th>Processor</th><th>Acceptance Type</th><th>Required</th></tr></thead> <tr><td>American Express Direct</td><td>cnp</td><td>No</td></tr> </table> * @type {string} * @memberof CardProcessingConfigFeaturesCardNotPresentInstallment */ installmentPlan?: string; }