import { IFndyObject } from '../fndy-object/fndy-object.model'; export interface IFndyUser { account_id?: string; account_licenses?: number; account_name?: string; account_picture?: string; active?: number; address1?: string; address2?: string; api_user_only?: number; city?: string; cognito?: { api_gateway_endpoint: string; api_gateway_region?: string; cognito_developer_provider_name: string; cognito_identity_pool_id: string; is_default?: 1; }; country?: string; created_date?: string; updated_date?: string; email: string; enable_attribute_edit?: number; first_name: string; full_name?: string; forgot_time?: string; forgot_token?: string; id?: string; identity_id?: string; invitation_code?: string; last_name: string; name?: string; level?: number; mfa_expiration_days?: number; password: string; password_type?: number | string; phone?: string; picture?: string; postal_code?: string; role: string; root_account_id?: string; state?: string; title?: string; use_mfa?: number; username: string; send_email?: boolean; from_email?: boolean; subject_email?: boolean; host?: string; policy_type?: 0 | 1; customObjects?: IFndyObject[]; force_change_password?: 0 | 1; }