pub struct UpdateTestSuiteDto {
pub name: Option<String>,
pub phone_number_id: Option<String>,
pub tester_plan: Option<TesterPlan>,
pub target_plan: Option<TargetPlan>,
}
Fields§
§name: Option<String>
This is the name of the test suite.
phone_number_id: Option<String>
This is the phone number ID associated with this test suite.
tester_plan: Option<TesterPlan>
Override the default tester plan by providing custom assistant configuration for the test agent. We recommend only using this if you are confident, as we have already set sensible defaults on the tester plan.
target_plan: Option<TargetPlan>
These are the configuration for the assistant / phone number that is being tested.
Implementations§
Source§impl UpdateTestSuiteDto
impl UpdateTestSuiteDto
pub fn new() -> UpdateTestSuiteDto
Trait Implementations§
Source§impl Clone for UpdateTestSuiteDto
impl Clone for UpdateTestSuiteDto
Source§fn clone(&self) -> UpdateTestSuiteDto
fn clone(&self) -> UpdateTestSuiteDto
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 UpdateTestSuiteDto
impl Debug for UpdateTestSuiteDto
Source§impl Default for UpdateTestSuiteDto
impl Default for UpdateTestSuiteDto
Source§fn default() -> UpdateTestSuiteDto
fn default() -> UpdateTestSuiteDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateTestSuiteDto
impl<'de> Deserialize<'de> for UpdateTestSuiteDto
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 UpdateTestSuiteDto
impl PartialEq for UpdateTestSuiteDto
Source§impl Serialize for UpdateTestSuiteDto
impl Serialize for UpdateTestSuiteDto
impl StructuralPartialEq for UpdateTestSuiteDto
Auto Trait Implementations§
impl Freeze for UpdateTestSuiteDto
impl RefUnwindSafe for UpdateTestSuiteDto
impl Send for UpdateTestSuiteDto
impl Sync for UpdateTestSuiteDto
impl Unpin for UpdateTestSuiteDto
impl UnwindSafe for UpdateTestSuiteDto
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