pub struct UpdateNotetakerRequest {
pub provider_settings: Option<ProviderSettings>,
pub transcription_settings: Option<TranscriptionSettings>,
pub summary_settings: Option<SummarySettings>,
pub webhook_url: Option<String>,
pub active: Option<bool>,
}Expand description
Request to update a notetaker configuration.
Fields§
§provider_settings: Option<ProviderSettings>Provider-specific settings
transcription_settings: Option<TranscriptionSettings>Transcription settings
summary_settings: Option<SummarySettings>AI summary settings
webhook_url: Option<String>Webhook URL for notifications
active: Option<bool>Whether the notetaker is active
Implementations§
Source§impl UpdateNotetakerRequest
impl UpdateNotetakerRequest
Sourcepub fn builder() -> UpdateNotetakerRequestBuilder
pub fn builder() -> UpdateNotetakerRequestBuilder
Create a builder for UpdateNotetakerRequest.
Trait Implementations§
Source§impl Clone for UpdateNotetakerRequest
impl Clone for UpdateNotetakerRequest
Source§fn clone(&self) -> UpdateNotetakerRequest
fn clone(&self) -> UpdateNotetakerRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UpdateNotetakerRequest
impl Debug for UpdateNotetakerRequest
Source§impl Default for UpdateNotetakerRequest
impl Default for UpdateNotetakerRequest
Source§fn default() -> UpdateNotetakerRequest
fn default() -> UpdateNotetakerRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateNotetakerRequest
impl<'de> Deserialize<'de> for UpdateNotetakerRequest
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 UpdateNotetakerRequest
impl PartialEq for UpdateNotetakerRequest
Source§fn eq(&self, other: &UpdateNotetakerRequest) -> bool
fn eq(&self, other: &UpdateNotetakerRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UpdateNotetakerRequest
impl Serialize for UpdateNotetakerRequest
impl StructuralPartialEq for UpdateNotetakerRequest
Auto Trait Implementations§
impl Freeze for UpdateNotetakerRequest
impl RefUnwindSafe for UpdateNotetakerRequest
impl Send for UpdateNotetakerRequest
impl Sync for UpdateNotetakerRequest
impl Unpin for UpdateNotetakerRequest
impl UnsafeUnpin for UpdateNotetakerRequest
impl UnwindSafe for UpdateNotetakerRequest
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