//! Parameters for `GET /images`.
/// Typed parameters for fetching IMS images.
pub struct GetImagesParams {
/// Exact IMS image ID; returns just that image when set.
pub id: Option<String>,
/// Regex to filter images by name.
pub pattern: Option<String>,
/// Cap on the number of images returned (most recent first).
pub limit: Option<u8>,
}