uapi_sdk_rust/models/generated/
get_random_string_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 GetRandomString200Response {
16    #[serde(rename = "code", skip_serializing_if = "Option::is_none")]
17    pub code: Option<i32>,
18    #[serde(rename = "text", skip_serializing_if = "Option::is_none")]
19    pub text: Option<String>,
20}
21
22impl GetRandomString200Response {
23    pub fn new() -> GetRandomString200Response {
24        GetRandomString200Response {
25            code: None,
26            text: None,
27        }
28    }
29}
30