vapi_client/models/
test_suite_run_test_attempt_call.rs1use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct TestSuiteRunTestAttemptCall {
16 #[serde(rename = "artifact")]
18 pub artifact: Box<models::Artifact>,
19}
20
21impl TestSuiteRunTestAttemptCall {
22 pub fn new(artifact: models::Artifact) -> TestSuiteRunTestAttemptCall {
23 TestSuiteRunTestAttemptCall {
24 artifact: Box::new(artifact),
25 }
26 }
27}
28