I have a JSON data pulled from API and one of the key is "24h_volume"
.
When I try to put 24h_volume
as a constant inside my Decodable struct
giving me error:
Expected a digit after integer literal prefix.
From what I understand, Swift syntax does not allow variables names starting with numbers.
What is the simplest way to surpass this restriction and successfully pull the data from the source?