vapi_client/models/
test_suite_run_test_attempt_call.rs

1/*
2 * Vapi API
3 *
4 * Voice AI for developers.
5 *
6 * The version of the OpenAPI document: 1.0
7 * 
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct TestSuiteRunTestAttemptCall {
16    /// This is the artifact associated with the call.
17    #[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