uapi_sdk_rust/models/generated/
post_text_aes_encrypt_200_response.rs1use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct PostTextAesEncrypt200Response {
16 #[serde(rename = "ciphertext", skip_serializing_if = "Option::is_none")]
17 pub ciphertext: Option<String>,
18}
19
20impl PostTextAesEncrypt200Response {
21 pub fn new() -> PostTextAesEncrypt200Response {
22 PostTextAesEncrypt200Response {
23 ciphertext: None,
24 }
25 }
26}
27