This is a POC for addressing some of the things that we ran into in the other SDKs; namely:
Split up NotFound errors into distinct categories
Change GetResponse value to Optional, to allow us to distinguish between NotFound and WrongType
Also removes the inner Success enum value from the GetResponse because it was making it harder to work with the success case, and in the Cache client, we don't use enums when we only have a single response type.
This is a POC for addressing some of the things that we ran into in the other SDKs; namely:
Also removes the inner
Success
enum value from the GetResponse because it was making it harder to work with the success case, and in the Cache client, we don't use enums when we only have a single response type.Open to feedback on all of the above.