1#[allow(unused_imports)] 2use serde_json::Value; 3 4#[derive(Debug, Serialize, Deserialize)] 5pub struct CreateAuthRefreshItemResponse { 6 /// Unique ID of the log filter. 7 #[serde(rename = "id")] 8 pub id: Option<i32>, 9}