Hi Im doing an API client and I want to use a struct to pull out the json, the problem is that one of the json fields should be named type, as far as I know it is a reserved keyword, how can I create a struct with a "type" field in it?
Example:
What I want to do:
type Card struct {
cardId string
name string
cardSet string
type string
}