windmill-api 1.683.0

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
Documentation
/*
 * Windmill API
 *
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 1.683.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 S3PermissionRule {
    #[serde(rename = "pattern")]
    pub pattern: String,
    #[serde(rename = "allow")]
    pub allow: String,
}

impl S3PermissionRule {
    pub fn new(pattern: String, allow: String) -> S3PermissionRule {
        S3PermissionRule {
            pattern,
            allow,
        }
    }
}