// // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. // namespace k8s.Models { using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; using System.Linq; /// /// FlowSchemaStatus represents the current state of a FlowSchema. /// public partial class V1beta1FlowSchemaStatus { /// /// Initializes a new instance of the V1beta1FlowSchemaStatus class. /// public V1beta1FlowSchemaStatus() { CustomInit(); } /// /// Initializes a new instance of the V1beta1FlowSchemaStatus class. /// /// `conditions` is a list of the current /// states of FlowSchema. public V1beta1FlowSchemaStatus(IList conditions = default(IList)) { Conditions = conditions; CustomInit(); } /// /// An initialization method that performs custom operations like setting defaults /// partial void CustomInit(); /// /// Gets or sets `conditions` is a list of the current states of /// FlowSchema. /// [JsonProperty(PropertyName = "conditions")] public IList Conditions { get; set; } } }