Type alias HighSystemsResponseGetInstanceSettings
HighSystemsResponseGetInstanceSettings: { 
    results: { 
        instance: string; 
        logo: { 
            filename: string; 
            size: number; 
        }; 
        name?: string; 
        theme?: { 
            primary: string; 
        }; 
        twoFactorEnforced?: boolean; 
    }; 
    success: boolean; 
}
Type declaration
- results: { 
 instance: string;
 logo: {
 filename: string;
 size: number;
 };
 name?: string;
 theme?: {
 primary: string;
 };
 twoFactorEnforced?: boolean;
 }
- instance: string
- logo: { 
 filename: string;
 size: number;
 }
- filename: string
- size: number
 
- Optionalname?: string
- Optionaltheme?: {
 primary: string;
 }
- OptionaltwoFactorEnforced?: boolean
 
- success: boolean