/*
* 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
{
///
/// CreateAccessOpenidAuthurlRequest
///
[DataContract(Name = "CreateAccessOpenidAuthurlRequest")]
public partial class CreateAccessOpenidAuthurlRequest : IValidatableObject
{
///
/// Initializes a new instance of the class.
///
[JsonConstructorAttribute]
protected CreateAccessOpenidAuthurlRequest() { }
///
/// Initializes a new instance of the class.
///
/// realm (required).
/// redirectUrl (required).
public CreateAccessOpenidAuthurlRequest(string realm = default(string), string redirectUrl = default(string))
{
// to ensure "realm" is required (not null)
if (realm == null)
{
throw new ArgumentNullException("realm is a required property for CreateAccessOpenidAuthurlRequest and cannot be null");
}
this.Realm = realm;
// to ensure "redirectUrl" is required (not null)
if (redirectUrl == null)
{
throw new ArgumentNullException("redirectUrl is a required property for CreateAccessOpenidAuthurlRequest and cannot be null");
}
this.RedirectUrl = redirectUrl;
}
///
/// Gets or Sets Realm
///
[DataMember(Name = "realm", IsRequired = true, EmitDefaultValue = true)]
public string Realm { get; set; }
///
/// Gets or Sets RedirectUrl
///
[DataMember(Name = "redirect-url", IsRequired = true, EmitDefaultValue = true)]
public string RedirectUrl { 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 CreateAccessOpenidAuthurlRequest {\n");
sb.Append(" Realm: ").Append(Realm).Append("\n");
sb.Append(" RedirectUrl: ").Append(RedirectUrl).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;
}
}
}