I hereby claim:
- I am bytenik on github.
- I am bytenik (https://keybase.io/bytenik) on keybase.
- I have a public key ASD-xVoUNkfD042sgesceYG5-HNy7nFEsl6cqC3Huq8Ozwo
To claim this, I am signing this object:
{ | |
"openapi": "3.0.0", | |
"servers": [ | |
{ | |
"description": "Production environment", | |
"url": "https://www.bitgo.com" | |
}, | |
{ | |
"description": "Test environment", | |
"url": "https://test.bitgo.com" |
I hereby claim:
To claim this, I am signing this object:
class ContractResolver : DefaultContractResolver | |
{ | |
public readonly IDictionary<Type, JsonContract> Contracts = new Dictionary<Type, JsonContract>(); | |
public override JsonContract ResolveContract(Type type) | |
{ | |
if (Contracts.ContainsKey(type)) | |
return Contracts[type]; | |
else | |
return base.ResolveContract(type); |