/*
* Tapis Security API
*
* The Tapis Security API provides for management of Security Kernel (SK) role-based authorization and secrets resources.
*
* The version of the OpenAPI document: 1.8.2
* Contact: cicsupport@tacc.utexas.edu
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct SkSecretList {
#[serde(rename = "secretPath", skip_serializing_if = "Option::is_none")]
pub secret_path: Option<String>,
#[serde(rename = "keys", skip_serializing_if = "Option::is_none")]
pub keys: Option<Vec<String>>,
}
impl SkSecretList {
pub fn new() -> SkSecretList {
SkSecretList {
secret_path: None,
keys: None,
}
}
}