pub struct Builder { /* private fields */ }
Expand description
A builder for StopSuiteRunInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn suite_definition_id(self, input: impl Into<String>) -> Self
pub fn suite_definition_id(self, input: impl Into<String>) -> Self
Suite definition ID of the test suite run to be stopped.
sourcepub fn set_suite_definition_id(self, input: Option<String>) -> Self
pub fn set_suite_definition_id(self, input: Option<String>) -> Self
Suite definition ID of the test suite run to be stopped.
sourcepub fn suite_run_id(self, input: impl Into<String>) -> Self
pub fn suite_run_id(self, input: impl Into<String>) -> Self
Suite run ID of the test suite run to be stopped.
sourcepub fn set_suite_run_id(self, input: Option<String>) -> Self
pub fn set_suite_run_id(self, input: Option<String>) -> Self
Suite run ID of the test suite run to be stopped.
sourcepub fn build(self) -> Result<StopSuiteRunInput, BuildError>
pub fn build(self) -> Result<StopSuiteRunInput, BuildError>
Consumes the builder and constructs a StopSuiteRunInput
.