What’s the best way to use Codable structs with PATCH calls?
I guess, I need to know which properties of my struct have been updated, and then pass only those values as partial updates for the patch call.
Do I need to use didSet observers on all properies, so that I can flag which one has changed or is there a better way?
thanks