UNPKG

@tomei/customer-base

Version:

Tomei Customer Base Package

17 lines (16 loc) 483 B
import { Model } from 'sequelize-typescript'; import { CustomerBaseModel } from './customer-base.entity'; export declare class CustomerIndividualModel extends Model { CustomerId: string; FullName: string; IdType: string; IdNo: string; Title: string; PreferredName: string; Birthdate: Date; Gender: 'Male' | 'Female'; Ethnicity: string; Nationality: string; PreferredLanguage: string; CustomerBase: CustomerBaseModel; }