Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumSwiftCodable custom keysSingle-choice MCQ

Given a flat JSON object, which CodingKeys setup correctly decodes `"user_name"` into a property named `userName`?

struct User: Decodable { let userName: String let age: Int }