@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
38 lines (37 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.
*/
import { Tmsv2customersEmbeddedDefaultPaymentInstrumentBuyerInformationIssuedBy } from './tmsv2customers-embedded-default-payment-instrument-buyer-information-issued-by';
/**
*
* @export
* @interface Tmsv2customersEmbeddedDefaultPaymentInstrumentBuyerInformationPersonalIdentification
*/
export interface Tmsv2customersEmbeddedDefaultPaymentInstrumentBuyerInformationPersonalIdentification {
/**
* The value of the identification type.
* @type {string}
* @memberof Tmsv2customersEmbeddedDefaultPaymentInstrumentBuyerInformationPersonalIdentification
*/
id?: string;
/**
* The type of the identification. Possible Values: - driver license
* @type {string}
* @memberof Tmsv2customersEmbeddedDefaultPaymentInstrumentBuyerInformationPersonalIdentification
*/
type?: string;
/**
*
* @type {Tmsv2customersEmbeddedDefaultPaymentInstrumentBuyerInformationIssuedBy}
* @memberof Tmsv2customersEmbeddedDefaultPaymentInstrumentBuyerInformationPersonalIdentification
*/
issuedBy?: Tmsv2customersEmbeddedDefaultPaymentInstrumentBuyerInformationIssuedBy;
}