mirror of
https://github.com/tribufu/proxmox-sharp
synced 2026-05-18 09:35:45 +00:00
Auto generate api client
This commit is contained in:
parent
79236af76b
commit
f75e0275cc
712 changed files with 277698 additions and 885 deletions
107
src/ProxmoxSharp/Model/CreateAccessOpenidAuthurlRequest.cs
Normal file
107
src/ProxmoxSharp/Model/CreateAccessOpenidAuthurlRequest.cs
Normal file
|
|
@ -0,0 +1,107 @@
|
|||
/*
|
||||
* 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;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue