pub struct CreateNotetakerRequest {
pub provider_settings: ProviderSettings,
pub transcription_settings: Option<TranscriptionSettings>,
pub summary_settings: Option<SummarySettings>,
pub webhook_url: Option<String>,
pub active: Option<bool>,
}Expand description
Request to create a notetaker configuration.
Fields§
§provider_settings: ProviderSettingsProvider-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 CreateNotetakerRequest
impl CreateNotetakerRequest
Sourcepub fn builder(
provider_settings: ProviderSettings,
) -> CreateNotetakerRequestBuilder
pub fn builder( provider_settings: ProviderSettings, ) -> CreateNotetakerRequestBuilder
Create a builder for CreateNotetakerRequest.
Trait Implementations§
Source§impl Clone for CreateNotetakerRequest
impl Clone for CreateNotetakerRequest
Source§fn clone(&self) -> CreateNotetakerRequest
fn clone(&self) -> CreateNotetakerRequest
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 CreateNotetakerRequest
impl Debug for CreateNotetakerRequest
Source§impl<'de> Deserialize<'de> for CreateNotetakerRequest
impl<'de> Deserialize<'de> for CreateNotetakerRequest
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 CreateNotetakerRequest
impl PartialEq for CreateNotetakerRequest
Source§fn eq(&self, other: &CreateNotetakerRequest) -> bool
fn eq(&self, other: &CreateNotetakerRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CreateNotetakerRequest
impl Serialize for CreateNotetakerRequest
impl StructuralPartialEq for CreateNotetakerRequest
Auto Trait Implementations§
impl Freeze for CreateNotetakerRequest
impl RefUnwindSafe for CreateNotetakerRequest
impl Send for CreateNotetakerRequest
impl Sync for CreateNotetakerRequest
impl Unpin for CreateNotetakerRequest
impl UnsafeUnpin for CreateNotetakerRequest
impl UnwindSafe for CreateNotetakerRequest
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