1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
use crate::Request;
use crate::PddFile;
use serde::{Deserialize, Serialize};


/// 多多客信息流投放备案图片上传
#[derive(Serialize, Deserialize, Debug, Default)]
pub struct PddDdkReportImgUpload {
    
    /// 多多视频图片文件流
    #[serde(rename = "file")]
    pub file: Option<PddFile>,
    
}


impl Request for PddDdkReportImgUpload {
    fn get_type() -> String {
        "pdd.ddk.report.img.upload".to_string()
    }

    fn get_response_name() -> String {
        "response".to_string()
    }
}