UNPKG

@paciolan/cybersource-sdk

Version:
33 lines (32 loc) 1.2 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 { InlineResponse2002EmbeddedCapture } from './inline-response2002-embedded-capture'; import { InlineResponse2002EmbeddedReversal } from './inline-response2002-embedded-reversal'; /** * This object includes either a capture or reversal object. They each has the status of the action and link to the GET method to the following-on capture transaction or reversal transaction. * @export * @interface InlineResponse2002Embedded */ export interface InlineResponse2002Embedded { /** * * @type {InlineResponse2002EmbeddedCapture} * @memberof InlineResponse2002Embedded */ capture?: InlineResponse2002EmbeddedCapture; /** * * @type {InlineResponse2002EmbeddedReversal} * @memberof InlineResponse2002Embedded */ reversal?: InlineResponse2002EmbeddedReversal; }