/*
* ProxMox VE API
*
* ProxMox VE API
*
* The version of the OpenAPI document: 2.0
* Contact: support@lumaserv.com
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.IO;
using System.Runtime.Serialization;
using System.Text;
using System.Text.RegularExpressions;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using Newtonsoft.Json.Linq;
using System.ComponentModel.DataAnnotations;
using OpenAPIDateConverter = ProxmoxSharp.Client.OpenAPIDateConverter;
namespace ProxmoxSharp.Model
{
///
/// A blocking HA resource
///
[DataContract(Name = "createClusterHaResourcesSingleRelocate_200_response_data_blocking_resources_inner")]
public partial class CreateClusterHaResourcesSingleRelocate200ResponseDataBlockingResourcesInner : IValidatableObject
{
///
/// Initializes a new instance of the class.
///
/// The reason why the HA resource is blocking the relocation..
/// The blocking HA resource id.
public CreateClusterHaResourcesSingleRelocate200ResponseDataBlockingResourcesInner(string cause = default(string), string sid = default(string))
{
this.Cause = cause;
this.Sid = sid;
}
///
/// The reason why the HA resource is blocking the relocation.
///
/// The reason why the HA resource is blocking the relocation.
[DataMember(Name = "cause", EmitDefaultValue = false)]
public string Cause { get; set; }
///
/// The blocking HA resource id
///
/// The blocking HA resource id
[DataMember(Name = "sid", EmitDefaultValue = false)]
public string Sid { get; set; }
///
/// Returns the string presentation of the object
///
/// String presentation of the object
public override string ToString()
{
StringBuilder sb = new StringBuilder();
sb.Append("class CreateClusterHaResourcesSingleRelocate200ResponseDataBlockingResourcesInner {\n");
sb.Append(" Cause: ").Append(Cause).Append("\n");
sb.Append(" Sid: ").Append(Sid).Append("\n");
sb.Append("}\n");
return sb.ToString();
}
///
/// Returns the JSON string presentation of the object
///
/// JSON string presentation of the object
public virtual string ToJson()
{
return Newtonsoft.Json.JsonConvert.SerializeObject(this, Newtonsoft.Json.Formatting.Indented);
}
///
/// To validate all properties of the instance
///
/// Validation context
/// Validation Result
IEnumerable IValidatableObject.Validate(ValidationContext validationContext)
{
yield break;
}
}
}