uapi-sdk-rust 0.1.17

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 GetWebparseExtractimages200Response {
    /// 实际解析的网页地址。
    #[serde(rename = "page_url", skip_serializing_if = "Option::is_none")]
    pub page_url: Option<String>,
    /// 页面中提取到的图片链接列表。
    #[serde(rename = "image_urls", skip_serializing_if = "Option::is_none")]
    pub image_urls: Option<Vec<String>>,
}

impl GetWebparseExtractimages200Response {
    pub fn new() -> GetWebparseExtractimages200Response {
        GetWebparseExtractimages200Response {
            page_url: None,
            image_urls: None,
        }
    }
}