/*
* Windmill API
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.699.0
* Contact: contact@windmill.dev
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct TestAzureConnection {
#[serde(rename = "azure_resource_path")]
pub azure_resource_path: String,
}
impl TestAzureConnection {
pub fn new(azure_resource_path: String) -> TestAzureConnection {
TestAzureConnection {
azure_resource_path,
}
}
}