mirror of
https://github.com/tribufu/tribufu-dotnet
synced 2026-02-04 02:36:55 +00:00
49 lines
1.1 KiB
C#
49 lines
1.1 KiB
C#
/*
|
|
* Tribufu API
|
|
*
|
|
* API to access Tribufu services.
|
|
*
|
|
* The version of the OpenAPI document: 1.2.6
|
|
* Contact: contact@tribufu.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 = Tribufu.Client.OpenAPIDateConverter;
|
|
|
|
namespace Tribufu.Model
|
|
{
|
|
/// <summary>
|
|
/// Defines CodeChallengeMethod
|
|
/// </summary>
|
|
[JsonConverter(typeof(StringEnumConverter))]
|
|
public enum CodeChallengeMethod
|
|
{
|
|
/// <summary>
|
|
/// Enum Plain for value: plain
|
|
/// </summary>
|
|
[EnumMember(Value = "plain")]
|
|
Plain,
|
|
|
|
/// <summary>
|
|
/// Enum S256 for value: S256
|
|
/// </summary>
|
|
[EnumMember(Value = "S256")]
|
|
S256
|
|
}
|
|
|
|
}
|