Skip to main content

uapi_sdk_rust/models/generated/
get_webparse_extractimages_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 GetWebparseExtractimages200Response {
16    /// 实际解析的网页地址。
17    #[serde(rename = "page_url", skip_serializing_if = "Option::is_none")]
18    pub page_url: Option<String>,
19    /// 页面中提取到的图片链接列表。
20    #[serde(rename = "image_urls", skip_serializing_if = "Option::is_none")]
21    pub image_urls: Option<Vec<String>>,
22}
23
24impl GetWebparseExtractimages200Response {
25    pub fn new() -> GetWebparseExtractimages200Response {
26        GetWebparseExtractimages200Response {
27            page_url: None,
28            image_urls: None,
29        }
30    }
31}
32