Repository URL to install this package:
export interface SettingCreate {
value?: string;
type?: string;
/**
* true if when changed does not requires server restart
*/
dynamic: boolean;
/**
* true if contains sensitive values such as passwords
*/
crypted: boolean;
name: string;
}