pub struct Brand {Show 18 fields
pub brand_uuid: Uuid,
pub domain: String,
pub default: Option<bool>,
pub branding_title: Option<String>,
pub branding_logo: Option<String>,
pub branding_favicon: Option<String>,
pub branding_custom_css: Option<String>,
pub branding_default_flow_background: Option<String>,
pub flow_authentication: Option<Option<Uuid>>,
pub flow_invalidation: Option<Option<Uuid>>,
pub flow_recovery: Option<Option<Uuid>>,
pub flow_unenrollment: Option<Option<Uuid>>,
pub flow_user_settings: Option<Option<Uuid>>,
pub flow_device_code: Option<Option<Uuid>>,
pub default_application: Option<Option<Uuid>>,
pub web_certificate: Option<Option<Uuid>>,
pub client_certificates: Option<Vec<Uuid>>,
pub attributes: Option<HashMap<String, Value>>,
}Expand description
Brand : Brand Serializer
Fields§
§brand_uuid: Uuid§domain: StringDomain that activates this brand. Can be a superset, i.e. a.b for aa.b and ba.b
default: Option<bool>§branding_title: Option<String>§branding_logo: Option<String>§branding_favicon: Option<String>§branding_custom_css: Option<String>§branding_default_flow_background: Option<String>§flow_authentication: Option<Option<Uuid>>§flow_invalidation: Option<Option<Uuid>>§flow_recovery: Option<Option<Uuid>>§flow_unenrollment: Option<Option<Uuid>>§flow_user_settings: Option<Option<Uuid>>§flow_device_code: Option<Option<Uuid>>§default_application: Option<Option<Uuid>>When set, external users will be redirected to this application after authenticating.
web_certificate: Option<Option<Uuid>>Web Certificate used by the authentik Core webserver.
client_certificates: Option<Vec<Uuid>>Certificates used for client authentication.
attributes: Option<HashMap<String, Value>>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Brand
impl<'de> Deserialize<'de> for Brand
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Brand
Auto Trait Implementations§
impl Freeze for Brand
impl RefUnwindSafe for Brand
impl Send for Brand
impl Sync for Brand
impl Unpin for Brand
impl UnsafeUnpin for Brand
impl UnwindSafe for Brand
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more