UNPKG

@paciolan/cybersource-sdk

Version:
32 lines (31 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 { Rbsv1subscriptionsProcessingInformationAuthorizationOptions } from './rbsv1subscriptions-processing-information-authorization-options'; /** * * @export * @interface Rbsv1subscriptionsProcessingInformation */ export interface Rbsv1subscriptionsProcessingInformation { /** * Commerce Indicator is a way to identify the type of transaction. Some payment card companies use this information when determining discount rates. Valid values: - `MOTO` - `RECURRING` * @type {string} * @memberof Rbsv1subscriptionsProcessingInformation */ commerceIndicator?: string; /** * * @type {Rbsv1subscriptionsProcessingInformationAuthorizationOptions} * @memberof Rbsv1subscriptionsProcessingInformation */ authorizationOptions?: Rbsv1subscriptionsProcessingInformationAuthorizationOptions; }