@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
31 lines (30 loc) • 1.51 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.
*/
/**
*
* @export
* @interface TmsEmbeddedInstrumentIdentifierTokenProvisioningInformation
*/
export interface TmsEmbeddedInstrumentIdentifierTokenProvisioningInformation {
/**
* Flag that indicates whether the user consented to the tokenization of their credentials. Required for card network tokenization in certain markets, such as India. Possible Values: - `true`: Consumer has consented to tokenization of their credentials. - `false`: Consumer has not consented to tokenization of their credentials.
* @type {boolean}
* @memberof TmsEmbeddedInstrumentIdentifierTokenProvisioningInformation
*/
consumerConsentObtained?: boolean;
/**
* Flag that indicates whether AFA (Additional Factor of Authentication) for the PAN was completed. Required for card network tokenization in certain markets, such as India. Possible Values: - `true`: Consumer has been authenticated by the issuer. - `false`: Consumer has not been authenticated by the issuer.
* @type {boolean}
* @memberof TmsEmbeddedInstrumentIdentifierTokenProvisioningInformation
*/
multiFactorAuthenticated?: boolean;
}