// // IntegerValueWithUnitEnum.swift // // Generated by openapi-generator // https://openapi-generator.tech // import Foundation public struct IntegerValueWithUnitEnum: Codable { public var value: Int public var unit: UnitEnum public init(value: Int, unit: UnitEnum) { self.value = value self.unit = unit } }