//
// 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.Linq;
public partial class V1Patch
{
///
/// Initializes a new instance of the V1Patch class.
///
public V1Patch()
{
CustomInit();
}
///
/// Initializes a new instance of the V1Patch class.
///
public V1Patch(object content = default(object))
{
Content = content;
CustomInit();
}
///
/// An initialization method that performs custom operations like setting defaults
///
partial void CustomInit();
///
///
[JsonProperty(PropertyName = "content")]
public object Content { get; private set; }
}
}