UNPKG

@paciolan/cybersource-sdk

Version:
43 lines (42 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. */ /** * * @export * @interface Ptsv2paymentsPaymentInformationSepaDirectDebit */ export interface Ptsv2paymentsPaymentInformationSepaDirectDebit { /** * Mandate reference as returned on the first transaction in the sequence * @type {string} * @memberof Ptsv2paymentsPaymentInformationSepaDirectDebit */ reference?: string; /** * Date of the initial transaction, format is YYYY-MM-DD. Date can be taken from the finaltimestamp of the SUCCEEDED notification for the first transaction in the sequence. * @type {string} * @memberof Ptsv2paymentsPaymentInformationSepaDirectDebit */ signatureDate?: string; /** * Valid URL pointing to the SEPA mandate, needs to be accessible by our risk and compliance department. * @type {string} * @memberof Ptsv2paymentsPaymentInformationSepaDirectDebit */ url?: string; /** * Sequence type of the direct debit, defaults to \"oneOff\". Valid values: oneOff The direct debit is executed once. first First direct debit in a series of recurring ones. * @type {string} * @memberof Ptsv2paymentsPaymentInformationSepaDirectDebit */ type?: string; }