| 1869 | |
| 1870 | #[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] |
| 1871 | pub struct AdminApiBehaviorEventsQuery { |
| 1872 | pub days: Option<usize>, |
| 1873 | pub limit: Option<usize>, |
| 1874 | pub offset: Option<usize>, |
| 1875 | pub path_contains: Option<String>, |
| 1876 | pub page_contains: Option<String>, |
| 1877 | pub device_type: Option<String>, |
| 1878 | pub method: Option<String>, |
| 1879 | pub status_code: Option<i32>, |
| 1880 | pub ip: Option<String>, |
| 1881 | pub date: Option<String>, |
| 1882 | } |
| 1883 | |
| 1884 | #[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] |
| 1885 | pub struct AdminApiBehaviorCleanupRequest { |
nothing calls this directly
no outgoing calls
no test coverage detected