/*
* Azure Storage Blob service
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2026-02-06
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// KeyInfo : Key information
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct KeyInfo {
/// The date-time the key is active.
#[serde(rename = "Start")]
pub start: String,
/// The date-time the key expires.
#[serde(rename = "Expiry")]
pub expiry: String,
}
impl KeyInfo {
/// Key information
pub fn new(start: String, expiry: String) -> KeyInfo {
KeyInfo { start, expiry }
}
}