/** * mtc-backoffice-api * MTC Backoffice Composite Api * * OpenAPI spec version: 0.1.0-SNAPSHOT * Contact: developers@greysystems.eu * * 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. */ export interface CustomerBasicData { address?: string; birthCity?: number; birthCountry?: string; birthDate?: string; city?: number; code?: string; codeExternal?: string; country?: string; countryNationality?: string; creationDate?: Date; email?: string; firstName?: string; id?: number; lastName?: string; mobile?: string; occupation?: string; pep?: boolean; postalCode?: string; sex?: CustomerBasicData.SexEnum; status?: CustomerBasicData.StatusEnum; telephone?: string; watched?: CustomerBasicData.WatchedEnum; } export declare namespace CustomerBasicData { type SexEnum = 'Male' | 'Female'; const SexEnum: { Male: "Male" | "Female"; Female: "Male" | "Female"; }; type StatusEnum = 'Active' | 'Unactive' | 'Blocked' | 'Unblocked'; const StatusEnum: { Active: "Active" | "Unactive" | "Blocked" | "Unblocked"; Unactive: "Active" | "Unactive" | "Blocked" | "Unblocked"; Blocked: "Active" | "Unactive" | "Blocked" | "Unblocked"; Unblocked: "Active" | "Unactive" | "Blocked" | "Unblocked"; }; type WatchedEnum = 'Watched' | 'Unwatched'; const WatchedEnum: { Watched: "Watched" | "Unwatched"; Unwatched: "Watched" | "Unwatched"; }; }