I\'m currently working with Codable types in my project and facing an issue.
Codable
struct Person: Codable { var id: Any }
Simply you can use AnyCodable type from Matt Thompson's cool library AnyCodable.
AnyCodable
Eg:
import AnyCodable struct Person: Codable { var id: AnyCodable }