proxmox-sharp/src/ProxmoxSharp/Model/CreateAccessOpenidAuthurlRequest.cs

107 lines
3.8 KiB
C#

/*
* 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
{
/// <summary>
/// CreateAccessOpenidAuthurlRequest
/// </summary>
[DataContract(Name = "CreateAccessOpenidAuthurlRequest")]
public partial class CreateAccessOpenidAuthurlRequest : IValidatableObject
{
/// <summary>
/// Initializes a new instance of the <see cref="CreateAccessOpenidAuthurlRequest" /> class.
/// </summary>
[JsonConstructorAttribute]
protected CreateAccessOpenidAuthurlRequest() { }
/// <summary>
/// Initializes a new instance of the <see cref="CreateAccessOpenidAuthurlRequest" /> class.
/// </summary>
/// <param name="realm">realm (required).</param>
/// <param name="redirectUrl">redirectUrl (required).</param>
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;
}
/// <summary>
/// Gets or Sets Realm
/// </summary>
[DataMember(Name = "realm", IsRequired = true, EmitDefaultValue = true)]
public string Realm { get; set; }
/// <summary>
/// Gets or Sets RedirectUrl
/// </summary>
[DataMember(Name = "redirect-url", IsRequired = true, EmitDefaultValue = true)]
public string RedirectUrl { get; set; }
/// <summary>
/// Returns the string presentation of the object
/// </summary>
/// <returns>String presentation of the object</returns>
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();
}
/// <summary>
/// Returns the JSON string presentation of the object
/// </summary>
/// <returns>JSON string presentation of the object</returns>
public virtual string ToJson()
{
return Newtonsoft.Json.JsonConvert.SerializeObject(this, Newtonsoft.Json.Formatting.Indented);
}
/// <summary>
/// To validate all properties of the instance
/// </summary>
/// <param name="validationContext">Validation context</param>
/// <returns>Validation Result</returns>
IEnumerable<ValidationResult> IValidatableObject.Validate(ValidationContext validationContext)
{
yield break;
}
}
}