Update Product Request
data class UpdateProductRequest(val name: String? = null, val description: String? = null, val defaultPrice: Int? = null, val shippable: Boolean? = null, val url: String? = null, val metadata: Map<String, String>? = null)
Request body for updating an existing product.
All fields are optional; only non-null fields are applied to the product.