vapi-client 0.4.2

Unofficial crate for Vapi - Voice AI for developers.
Documentation
/*
 * 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 TestSuiteRunTestAttemptMetadata {
    /// This is the session ID for the test attempt.
    #[serde(rename = "sessionId")]
    pub session_id: String,
}

impl TestSuiteRunTestAttemptMetadata {
    pub fn new(session_id: String) -> TestSuiteRunTestAttemptMetadata {
        TestSuiteRunTestAttemptMetadata { session_id }
    }
}