use crate::Request;
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Default)]
pub struct PddServicemarketSettlementbillGet {
#[serde(rename = "page")]
pub page: Option<i32>,
#[serde(rename = "page_size")]
pub page_size: Option<i32>,
#[serde(rename = "service_order_sn")]
pub service_order_sn: Option<String>,
#[serde(rename = "settle_month")]
pub settle_month: Option<String>,
}
impl Request for PddServicemarketSettlementbillGet {
fn get_type() -> String {
"pdd.servicemarket.settlementbill.get".to_string()
}
fn get_response_name() -> String {
"settlement_bill_search_response".to_string()
}
}