Skip to main content

uapi_sdk_rust/models/generated/
post_convert_json_200_response.rs

1/*
2 * UAPI
3 *
4 * UAPI 官方接口文档
5 *
6 * The version of the OpenAPI document: 1.0.0
7 * 
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct PostConvertJson200Response {
16    /// 格式化后的JSON字符串,带有标准缩进和换行。
17    #[serde(rename = "content", skip_serializing_if = "Option::is_none")]
18    pub content: Option<String>,
19}
20
21impl PostConvertJson200Response {
22    pub fn new() -> PostConvertJson200Response {
23        PostConvertJson200Response {
24            content: None,
25        }
26    }
27}
28