@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
44 lines (43 loc) • 1.14 kB
TypeScript
/**
* 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 { Accountupdaterv1batchesIncluded } from './accountupdaterv1batches-included';
/**
*
* @export
* @interface V1BatchesBody
*/
export interface V1BatchesBody {
/**
* Valid Values: * oneOff * amexRegistration
* @type {string}
* @memberof V1BatchesBody
*/
type?: string;
/**
*
* @type {Accountupdaterv1batchesIncluded}
* @memberof V1BatchesBody
*/
included: Accountupdaterv1batchesIncluded;
/**
* Reference used by merchant to identify batch.
* @type {string}
* @memberof V1BatchesBody
*/
merchantReference?: string;
/**
* Email used to notify the batch status.
* @type {string}
* @memberof V1BatchesBody
*/
notificationEmail: string;
}