UNPKG

@paciolan/cybersource-sdk

Version:
40 lines (39 loc) 1.22 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 { Tmsv2customersLinksPaymentInstruments } from './tmsv2customers-links-payment-instruments'; import { Tmsv2customersLinksSelf } from './tmsv2customers-links-self'; import { Tmsv2customersLinksShippingAddress } from './tmsv2customers-links-shipping-address'; /** * * @export * @interface Tmsv2customersLinks */ export interface Tmsv2customersLinks { /** * * @type {Tmsv2customersLinksSelf} * @memberof Tmsv2customersLinks */ self?: Tmsv2customersLinksSelf; /** * * @type {Tmsv2customersLinksPaymentInstruments} * @memberof Tmsv2customersLinks */ paymentInstruments?: Tmsv2customersLinksPaymentInstruments; /** * * @type {Tmsv2customersLinksShippingAddress} * @memberof Tmsv2customersLinks */ shippingAddress?: Tmsv2customersLinksShippingAddress; }