/**
 * CardScan API
 * The official documentation for the CardScan API Clients.
 *
 * The version of the OpenAPI document: 1.0.0
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { Address } from './address';
import { KeysToCamelCase, KeysToSnakeCase } from "./";
/**
 *
 * @export
 * @interface SubscriberDetails
 */
export interface SubscriberDetailsOriginal {
    /**
     * The member ID of the subscriber.
     * @type {string}
     * @memberof SubscriberDetails
     */
    'member_id'?: string;
    /**
     * The first name of the subscriber.
     * @type {string}
     * @memberof SubscriberDetails
     */
    'first_name'?: string;
    /**
     * The last name of the subscriber.
     * @type {string}
     * @memberof SubscriberDetails
     */
    'last_name'?: string;
    /**
     * The middle name of the subscriber.
     * @type {string}
     * @memberof SubscriberDetails
     */
    'middle_name'?: string;
    /**
     * The gender of the subscriber.
     * @type {string}
     * @memberof SubscriberDetails
     */
    'gender'?: string;
    /**
     *
     * @type {Address}
     * @memberof SubscriberDetails
     */
    'address'?: Address;
    /**
     * The date of birth of the subscriber.
     * @type {string}
     * @memberof SubscriberDetails
     */
    'date_of_birth'?: string;
}
export type SubscriberDetails = KeysToCamelCase<SubscriberDetailsOriginal>;
export type SubscriberDetailsSnake = KeysToSnakeCase<SubscriberDetailsOriginal>;
