use crate::Request;
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Default)]
pub struct PddExpressSearchDepot {
#[serde(rename = "code")]
pub code: Option<String>,
#[serde(rename = "length")]
pub length: Option<i32>,
#[serde(rename = "name")]
pub name: Option<String>,
#[serde(rename = "start")]
pub start: Option<i32>,
}
impl Request for PddExpressSearchDepot {
fn get_type() -> String {
"pdd.express.search.depot".to_string()
}
fn get_response_name() -> String {
"open_api_response".to_string()
}
}