1 2 3 4 5 6 7 8 9
use serde::{self, Deserialize, Serialize}; pub type r#ParamsUserids = Vec<i64>; #[derive(Serialize, Deserialize, Debug)] pub struct Params { #[serde(rename = "userids")] pub r#userids: Option<r#ParamsUserids>, }