UNPKG

@paciolan/cybersource-sdk

Version:
47 lines (46 loc) 1.78 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 { Ptsv2paymentreferencesidintentsClientReferenceInformation } from './ptsv2paymentreferencesidintents-client-reference-information'; import { Ptsv2paymentreferencesidintentsOrderInformation } from './ptsv2paymentreferencesidintents-order-information'; import { Ptsv2paymentreferencesidintentsPaymentInformation } from './ptsv2paymentreferencesidintents-payment-information'; import { Ptsv2paymentreferencesidintentsProcessingInformation } from './ptsv2paymentreferencesidintents-processing-information'; /** * * @export * @interface IdIntentsBody */ export interface IdIntentsBody { /** * * @type {Ptsv2paymentreferencesidintentsClientReferenceInformation} * @memberof IdIntentsBody */ clientReferenceInformation?: Ptsv2paymentreferencesidintentsClientReferenceInformation; /** * * @type {Ptsv2paymentreferencesidintentsProcessingInformation} * @memberof IdIntentsBody */ processingInformation?: Ptsv2paymentreferencesidintentsProcessingInformation; /** * * @type {Ptsv2paymentreferencesidintentsPaymentInformation} * @memberof IdIntentsBody */ paymentInformation?: Ptsv2paymentreferencesidintentsPaymentInformation; /** * * @type {Ptsv2paymentreferencesidintentsOrderInformation} * @memberof IdIntentsBody */ orderInformation?: Ptsv2paymentreferencesidintentsOrderInformation; }