@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
32 lines (31 loc) • 2 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 { Ptsv2paymentsidcapturesPointOfSaleInformationEmv } from './ptsv2paymentsidcaptures-point-of-sale-information-emv';
/**
*
* @export
* @interface Ptsv2paymentsidcapturesPointOfSaleInformation
*/
export interface Ptsv2paymentsidcapturesPointOfSaleInformation {
/**
*
* @type {Ptsv2paymentsidcapturesPointOfSaleInformationEmv}
* @memberof Ptsv2paymentsidcapturesPointOfSaleInformation
*/
emv?: Ptsv2paymentsidcapturesPointOfSaleInformationEmv;
/**
* Point-of-sale details for the transaction. This value is returned only for **American Express Direct**. CyberSource generates this value, which consists of a series of codes that identify terminal capability, security data, and specific conditions present at the time the transaction occurred. To comply with the CAPN requirements, this value must be included in all subsequent follow-on requests, such as captures and follow-on credits. When you perform authorizations, captures, and credits through CyberSource, CyberSource passes this value from the authorization service to the subsequent services for you. However, when you perform authorizations through CyberSource and perform subsequent services through other financial institutions, you must ensure that your requests for captures and credits include this value. For details, see `auth_pos_data` field description in [Credit Card Services Using the SCMP API.](https://apps.cybersource.com/library/documentation/dev_guides/CC_Svcs_SCMP_API/html/)
* @type {string}
* @memberof Ptsv2paymentsidcapturesPointOfSaleInformation
*/
amexCapnData?: string;
}