diff --git a/examples/customResource/CustomResourceDefinition.cs b/examples/customResource/CustomResourceDefinition.cs index b0deb29..ad1b7f9 100644 --- a/examples/customResource/CustomResourceDefinition.cs +++ b/examples/customResource/CustomResourceDefinition.cs @@ -32,8 +32,8 @@ namespace customResource [JsonPropertyName("spec")] public TSpec Spec { get; set; } - [JsonPropertyName("CStatus")] - public TStatus CStatus { get; set; } + [JsonPropertyName("status")] + public TStatus Status { get; set; } } public class CustomResourceList : KubernetesObject