/**
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 *
 * @export
 * @interface MetadataPayment
 */
export interface MetadataPayment {
    /**
     * Email of the user.
     * @type {string}
     * @memberof MetadataPayment
     */
    email: string;
    /**
     * Phone number of the user in E.164 format. We recommend using a library such as [libphonenumber](https://github.com/google/libphonenumber) to parse and validate phone numbers.
     * @type {string}
     * @memberof MetadataPayment
     */
    phoneNumber?: string;
    /**
     * Hash of the session identifier; typically of the end user. This helps us make risk decisions and prevent fraud. IMPORTANT: Please hash the session identifier to prevent sending us actual session identifiers.
     * @type {string}
     * @memberof MetadataPayment
     */
    sessionId: string;
    /**
     * Single IPv4 or IPv6 address of user\'
     * @type {string}
     * @memberof MetadataPayment
     */
    ipAddress: string;
}
