@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
55 lines (54 loc) • 1.77 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 Upv1capturecontextsCaptureMandate
*/
export interface Upv1capturecontextsCaptureMandate {
/**
* This field defines the type of Billing Address information captured through the Manual card Entry UX. FULL, PARTIAL
* @type {string}
* @memberof Upv1capturecontextsCaptureMandate
*/
billingType?: string;
/**
* Capture email contact information in the manual card acceptance screens.
* @type {boolean}
* @memberof Upv1capturecontextsCaptureMandate
*/
requestEmail?: boolean;
/**
* Capture email contact information in the manual card acceptance screens.
* @type {boolean}
* @memberof Upv1capturecontextsCaptureMandate
*/
requestPhone?: boolean;
/**
* Capture email contact information in the manual card acceptance screens.
* @type {boolean}
* @memberof Upv1capturecontextsCaptureMandate
*/
requestShipping?: boolean;
/**
* List of countries available to ship to. Use the two- character ISO Standard Country Codes.
* @type {Array<string>}
* @memberof Upv1capturecontextsCaptureMandate
*/
shipToCountries?: Array<string>;
/**
* Show the list of accepted payment icons in the payment button
* @type {boolean}
* @memberof Upv1capturecontextsCaptureMandate
*/
showAcceptedNetworkIcons?: boolean;
}