@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
38 lines (37 loc) • 1.98 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 { Ptsv1pushfundstransferAggregatorInformationSubMerchant } from './ptsv1pushfundstransfer-aggregator-information-sub-merchant';
/**
*
* @export
* @interface Ptsv1pushfundstransferAggregatorInformation
*/
export interface Ptsv1pushfundstransferAggregatorInformation {
/**
* Value that identifies you as a payment aggregator. Get this value from the processor. FDC Compass This value must consist of uppercase letters. Visa Platform Connect The value for this field corresponds to the following data in the TC 33 capture file: - `Record`: CP01 TCR6 - `Position`: 95-105 - `Field`: Market Identifier / Payment Facilitator ID
* @type {string}
* @memberof Ptsv1pushfundstransferAggregatorInformation
*/
aggregatorId?: string;
/**
* Your payment aggregator business name. Visa Platform COnnect With American Express, the maximum length of the aggregator name depends on the length of the sub-merchant name. The combined length for both values must not exceed 36 characters. The value for this field does not map to the TC 33 capture file5. FDC Compass This value must consist of uppercase characters. For processor-specific information, see the aggregator_name field in Credit Card Services Using the SCMP API.
* @type {string}
* @memberof Ptsv1pushfundstransferAggregatorInformation
*/
name?: string;
/**
*
* @type {Ptsv1pushfundstransferAggregatorInformationSubMerchant}
* @memberof Ptsv1pushfundstransferAggregatorInformation
*/
subMerchant?: Ptsv1pushfundstransferAggregatorInformationSubMerchant;
}