use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct CreateTestLead200Response {
#[serde(rename = "status", skip_serializing_if = "Option::is_none")]
pub status: Option<String>,
#[serde(rename = "testLead", skip_serializing_if = "Option::is_none")]
pub test_lead: Option<Box<models::CreateTestLead200ResponseTestLead>>,
}
impl CreateTestLead200Response {
pub fn new() -> CreateTestLead200Response {
CreateTestLead200Response {
status: None,
test_lead: None,
}
}
}