namespace k8s.Models { public class PodMetricsList : IMetadata { /// /// Defines the versioned schema of this representation of an object. /// [JsonPropertyName("apiVersion")] public string ApiVersion { get; set; } /// /// Defines the REST resource this object represents. /// [JsonPropertyName("kind")] public string Kind { get; set; } /// /// The kubernetes standard object's metadata. /// [JsonPropertyName("metadata")] public V1ObjectMeta Metadata { get; set; } /// /// The list of pod metrics. /// [JsonPropertyName("items")] public IEnumerable Items { get; set; } } }