UNPKG

@paciolan/cybersource-sdk

Version:
40 lines (39 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. */ import { VTConfigCardNotPresentReceiptInformationEmailReceipt } from './vtconfig-card-not-present-receipt-information-email-receipt'; import { VTConfigCardNotPresentReceiptInformationHeader } from './vtconfig-card-not-present-receipt-information-header'; import { VTConfigCardNotPresentReceiptInformationOrderInformation } from './vtconfig-card-not-present-receipt-information-order-information'; /** * * @export * @interface VTConfigCardNotPresentReceiptInformation */ export interface VTConfigCardNotPresentReceiptInformation { /** * * @type {VTConfigCardNotPresentReceiptInformationHeader} * @memberof VTConfigCardNotPresentReceiptInformation */ header?: VTConfigCardNotPresentReceiptInformationHeader; /** * * @type {VTConfigCardNotPresentReceiptInformationOrderInformation} * @memberof VTConfigCardNotPresentReceiptInformation */ orderInformation?: VTConfigCardNotPresentReceiptInformationOrderInformation; /** * * @type {VTConfigCardNotPresentReceiptInformationEmailReceipt} * @memberof VTConfigCardNotPresentReceiptInformation */ emailReceipt?: VTConfigCardNotPresentReceiptInformationEmailReceipt; }