uapi_sdk_rust/models/generated/
post_image_speechless_request.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 PostImageSpeechlessRequest {
16    /// 表情包上方的文字内容。你们怎么不说话了,是不是都在偷偷 _______
17    #[serde(rename = "top_text", skip_serializing_if = "Option::is_none")]
18    pub top_text: Option<String>,
19    /// 表情包下方的文字内容。求求你_______
20    #[serde(rename = "bottom_text", skip_serializing_if = "Option::is_none")]
21    pub bottom_text: Option<String>,
22}
23
24impl PostImageSpeechlessRequest {
25    pub fn new() -> PostImageSpeechlessRequest {
26        PostImageSpeechlessRequest {
27            top_text: None,
28            bottom_text: None,
29        }
30    }
31}
32