fix typo V1PathJsonConverter -> V1PatchJsonConverter (#580)
This commit is contained in:
@@ -3,7 +3,7 @@ using Newtonsoft.Json;
|
||||
|
||||
namespace k8s.Models
|
||||
{
|
||||
[JsonConverter(typeof(V1PathJsonConverter))]
|
||||
[JsonConverter(typeof(V1PatchJsonConverter))]
|
||||
public partial class V1Patch
|
||||
{
|
||||
public enum PatchType
|
||||
|
||||
@@ -3,7 +3,7 @@ using Newtonsoft.Json;
|
||||
|
||||
namespace k8s.Models
|
||||
{
|
||||
internal class V1PathJsonConverter : JsonConverter
|
||||
internal class V1PatchJsonConverter : JsonConverter
|
||||
{
|
||||
public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer)
|
||||
{
|
||||
Reference in New Issue
Block a user