feat: Add pagination support to ListMediaParams and ListMediaOptions

This commit is contained in:
2025-11-15 17:54:00 +01:00
parent b80c4e0895
commit dd10211c63
4 changed files with 61 additions and 19 deletions

View File

@@ -37,6 +37,8 @@ pub struct ListMediaParams {
pub mime_type: Option<String>,
#[serde(default)]
pub metadata: Vec<String>,
pub page: Option<u32>,
pub limit: Option<u32>,
}
#[derive(Deserialize)]