pub struct UpdateTestSuiteTestChatDto {
pub scorers: Option<Vec<TestSuiteTestVoiceScorersInner>>,
pub type: Option<TypeTrue>,
pub name: Option<String>,
pub script: Option<String>,
pub num_attempts: Option<f64>,
}
Fields§
§scorers: Option<Vec<TestSuiteTestVoiceScorersInner>>
These are the scorers used to evaluate the test.
type: Option<TypeTrue>
This is the type of the test, which must be chat.
name: Option<String>
This is the name of the test.
script: Option<String>
This is the script to be used for the chat test.
num_attempts: Option<f64>
This is the number of attempts allowed for the test.
Implementations§
Source§impl UpdateTestSuiteTestChatDto
impl UpdateTestSuiteTestChatDto
pub fn new() -> UpdateTestSuiteTestChatDto
Trait Implementations§
Source§impl Clone for UpdateTestSuiteTestChatDto
impl Clone for UpdateTestSuiteTestChatDto
Source§fn clone(&self) -> UpdateTestSuiteTestChatDto
fn clone(&self) -> UpdateTestSuiteTestChatDto
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UpdateTestSuiteTestChatDto
impl Debug for UpdateTestSuiteTestChatDto
Source§impl Default for UpdateTestSuiteTestChatDto
impl Default for UpdateTestSuiteTestChatDto
Source§fn default() -> UpdateTestSuiteTestChatDto
fn default() -> UpdateTestSuiteTestChatDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateTestSuiteTestChatDto
impl<'de> Deserialize<'de> for UpdateTestSuiteTestChatDto
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 UpdateTestSuiteTestChatDto
Auto Trait Implementations§
impl Freeze for UpdateTestSuiteTestChatDto
impl RefUnwindSafe for UpdateTestSuiteTestChatDto
impl Send for UpdateTestSuiteTestChatDto
impl Sync for UpdateTestSuiteTestChatDto
impl Unpin for UpdateTestSuiteTestChatDto
impl UnwindSafe for UpdateTestSuiteTestChatDto
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