dtz_core/models/issue_certificate_request.rs
1/*
2 * DTZ Core Api
3 *
4 * a generated client for the DTZ Core API
5 *
6 * The version of the OpenAPI document: 1.1.2
7 * Contact: jens@apimeister.com
8 * Generated by: https://openapi-generator.tech
9 */
10
11#[allow(unused)]
12use crate::models;
13
14
15
16
17#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
18pub struct IssueCertificateRequest {
19 #[serde(rename = "domain", skip_serializing_if = "Option::is_none")]
20 pub domain: Option<String>,
21}
22
23impl IssueCertificateRequest {
24 pub fn new() -> IssueCertificateRequest {
25 IssueCertificateRequest {
26 domain: None,
27 }
28 }
29}
30
31