@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
50 lines (49 loc) • 2.15 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 { Ptsv2paymentsidcapturesBuyerInformationPersonalIdentification } from './ptsv2paymentsidcaptures-buyer-information-personal-identification';
/**
*
* @export
* @interface Ptsv2paymentreferencesBuyerInformation
*/
export interface Ptsv2paymentreferencesBuyerInformation {
/**
* Recipient's date of birth. **Format**: `YYYYMMDD`. This field is a `pass-through`, which means that CyberSource ensures that the value is eight numeric characters but otherwise does not verify the value or modify it in any way before sending it to the processor. If the field is not required for the transaction, CyberSource does not forward it to the processor. For more details, see `recipient_date_of_birth` field description in the [Credit Card Services Using the SCMP API Guide.](https://apps.cybersource.com/library/documentation/dev_guides/CC_Svcs_SCMP_API/html/)
* @type {string}
* @memberof Ptsv2paymentreferencesBuyerInformation
*/
dateOfBirth?: string;
/**
* Customer's gender. Possible values are F (female), M (male),O (other).
* @type {string}
* @memberof Ptsv2paymentreferencesBuyerInformation
*/
gender?: string;
/**
* language setting of the user
* @type {string}
* @memberof Ptsv2paymentreferencesBuyerInformation
*/
language?: string;
/**
* Note to the recipient of the funds in this transaction
* @type {string}
* @memberof Ptsv2paymentreferencesBuyerInformation
*/
noteToSeller?: string;
/**
*
* @type {Array<Ptsv2paymentsidcapturesBuyerInformationPersonalIdentification>}
* @memberof Ptsv2paymentreferencesBuyerInformation
*/
personalIdentification?: Array<Ptsv2paymentsidcapturesBuyerInformationPersonalIdentification>;
}