/*
* Vapi API
*
* Voice AI for developers.
*
* The version of the OpenAPI document: 1.0
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct TestSuiteRunTestAttemptCall {
/// This is the artifact of the call.
#[serde(rename = "artifact")]
pub artifact: models::Artifact,
}
impl TestSuiteRunTestAttemptCall {
pub fn new(artifact: models::Artifact) -> TestSuiteRunTestAttemptCall {
TestSuiteRunTestAttemptCall { artifact }
}
}