/** * 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 UpdateCustomerRequest { code?: string; firstName?: string; lastName?: string; codeExternal?: string; sex?: UpdateCustomerRequest.SexEnum; birthDate?: string; country?: string; birthCountry?: string; countryNationality?: string; city?: number; birthCity?: number; postalCode?: string; address?: string; telephone?: string; mobile?: string; email?: string; pep?: boolean; status?: UpdateCustomerRequest.StatusEnum; watched?: UpdateCustomerRequest.WatchedEnum; occupation?: string; } export declare namespace UpdateCustomerRequest { 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"; }; }