pub struct PatchedBrandRequest {Show 13 fields
pub domain: Option<String>,
pub default: Option<bool>,
pub branding_title: Option<String>,
pub branding_logo: Option<String>,
pub branding_favicon: 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 web_certificate: Option<Option<Uuid>>,
pub attributes: Option<Option<Value>>,
}
Expand description
PatchedBrandRequest : Brand Serializer
Fields§
§domain: Option<String>
Domain 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>
§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>>
§web_certificate: Option<Option<Uuid>>
Web Certificate used by the authentik Core webserver.
attributes: Option<Option<Value>>
Implementations§
Source§impl PatchedBrandRequest
impl PatchedBrandRequest
Sourcepub fn new() -> PatchedBrandRequest
pub fn new() -> PatchedBrandRequest
Brand Serializer
Trait Implementations§
Source§impl Clone for PatchedBrandRequest
impl Clone for PatchedBrandRequest
Source§fn clone(&self) -> PatchedBrandRequest
fn clone(&self) -> PatchedBrandRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PatchedBrandRequest
impl Debug for PatchedBrandRequest
Source§impl Default for PatchedBrandRequest
impl Default for PatchedBrandRequest
Source§fn default() -> PatchedBrandRequest
fn default() -> PatchedBrandRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PatchedBrandRequest
impl<'de> Deserialize<'de> for PatchedBrandRequest
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
Source§impl PartialEq for PatchedBrandRequest
impl PartialEq for PatchedBrandRequest
Source§impl Serialize for PatchedBrandRequest
impl Serialize for PatchedBrandRequest
impl StructuralPartialEq for PatchedBrandRequest
Auto Trait Implementations§
impl Freeze for PatchedBrandRequest
impl RefUnwindSafe for PatchedBrandRequest
impl Send for PatchedBrandRequest
impl Sync for PatchedBrandRequest
impl Unpin for PatchedBrandRequest
impl UnwindSafe for PatchedBrandRequest
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