Struct azure_devops_rust_api::test_plan::models::TestSuite
source · pub struct TestSuite {
pub test_suite_create_params: TestSuiteCreateParams,
pub links: Option<Value>,
pub children: Vec<TestSuite>,
pub has_children: Option<bool>,
pub id: Option<i32>,
pub last_error: Option<String>,
pub last_populated_date: Option<OffsetDateTime>,
pub last_updated_by: Option<IdentityRef>,
pub last_updated_date: Option<OffsetDateTime>,
pub plan: Option<TestPlanReference>,
pub project: Option<TeamProjectReference>,
pub revision: Option<i32>,
}
Expand description
Test suite
Fields§
§test_suite_create_params: TestSuiteCreateParams
§links: Option<Value>
Links
children: Vec<TestSuite>
Child test suites of current test suite.
has_children: Option<bool>
Boolean value dictating if Child test suites are present
id: Option<i32>
Id of test suite.
last_error: Option<String>
Last error for test suite.
last_populated_date: Option<OffsetDateTime>
Last populated date.
last_updated_by: Option<IdentityRef>
§last_updated_date: Option<OffsetDateTime>
Last update date.
plan: Option<TestPlanReference>
The test plan reference resource.
project: Option<TeamProjectReference>
Represents a shallow reference to a TeamProject.
revision: Option<i32>
Test suite revision.
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for TestSuite
impl<'de> Deserialize<'de> for TestSuite
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