uapi-sdk-rust 0.1.16

UAPI Rust SDK - idiomatic, typed, domain-driven API client.
Documentation
/*
 * UAPI
 *
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 1.0.0
 * 
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct GetClipzyGet200Response {
    /// 加密并使用 LZString 压缩后的 Base64 数据。
    #[serde(rename = "compressedData", skip_serializing_if = "Option::is_none")]
    pub compressed_data: Option<String>,
}

impl GetClipzyGet200Response {
    pub fn new() -> GetClipzyGet200Response {
        GetClipzyGet200Response {
            compressed_data: None,
        }
    }
}