Files
swift-openfoodfacts-sdk/Sources/OpenFoodFacts/Schemas/ProductResponse.swift
2025-09-13 11:25:35 +02:00

14 lines
343 B
Swift

public struct ProductResponse: Codable, ObjectDebugger {
public var product: Product?
public var code: String?
public var status: Int? // or Bool, depending on your needs
public var statusVerbose: String?
private enum CodingKeys: String, CodingKey {
case product
case code
case status
case statusVerbose = "status_verbose"
}
}