Better handling of Nutriments

This commit is contained in:
cdricms
2025-09-13 11:25:35 +02:00
parent 04d0d47320
commit 9469a0aff2
37 changed files with 1765 additions and 1440 deletions

View File

@@ -0,0 +1,14 @@
public struct SearchResponse: Codable, ObjectDebugger {
public var count: Int
public var page: Int
public var pageCount: Int
public var pageSize: Int
public var products: [Product]?
public var skip: Int
private enum CodingKeys: String, CodingKey {
case count, page, products, skip
case pageCount = "page_count"
case pageSize = "page_size"
}
}