bellhop-client 0.2.1

Autogenerated API client for Bellhop
Documentation
/*
 * Bellhop
 *
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * OpenAPI spec version: 0.0.0
 *
 * Generated by: https://openapi-generator.tech
 */

#[allow(unused_imports)]
use serde_json::Value;

#[derive(Debug, Serialize, Deserialize)]
pub struct CreateLease {
    #[serde(rename = "end_time")]
    pub end_time: String,
}

impl CreateLease {
    pub fn new(end_time: String) -> CreateLease {
        CreateLease { end_time: end_time }
    }
}