You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.7 KiB
58 lines
1.7 KiB
4 years ago
|
/*
|
||
|
* Service Collaborateur API
|
||
|
*
|
||
|
* Api du service Collaborateur, utilisée pour récupérer les données des collaborateurs d'Apside
|
||
|
*
|
||
4 years ago
|
* OpenAPI spec version: 1.1.3
|
||
4 years ago
|
* Contact: lilian.gayet@apside-groupe.com
|
||
|
* Generated by: https://github.com/swagger-api/swagger-codegen.git
|
||
|
*/
|
||
|
using System;
|
||
|
using System.Linq;
|
||
|
using System.IO;
|
||
|
using System.Text;
|
||
|
using System.Text.RegularExpressions;
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Collections.ObjectModel;
|
||
|
using System.Runtime.Serialization;
|
||
|
using Newtonsoft.Json;
|
||
|
using Newtonsoft.Json.Converters;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using SwaggerDateConverter = IO.Swagger.ClientCollaborateur.SwaggerDateConverter;
|
||
|
|
||
|
namespace IO.Swagger.ModelCollaborateur
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Defines IssuePE
|
||
|
/// </summary>
|
||
|
[JsonConverter(typeof(StringEnumConverter))]
|
||
|
public enum IssuePE
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Enum VALIDEE for value: VALIDEE
|
||
|
/// </summary>
|
||
|
[EnumMember(Value = "VALIDEE")]
|
||
|
VALIDEE = 1,
|
||
|
/// <summary>
|
||
|
/// Enum PROLONGEECOLLAB for value: PROLONGEE_COLLAB
|
||
|
/// </summary>
|
||
|
[EnumMember(Value = "PROLONGEE_COLLAB")]
|
||
|
PROLONGEECOLLAB = 2,
|
||
|
/// <summary>
|
||
|
/// Enum PROLONGEEAPSIDE for value: PROLONGEE_APSIDE
|
||
|
/// </summary>
|
||
|
[EnumMember(Value = "PROLONGEE_APSIDE")]
|
||
|
PROLONGEEAPSIDE = 3,
|
||
|
/// <summary>
|
||
|
/// Enum ARRETEECOLLAB for value: ARRETEE_COLLAB
|
||
|
/// </summary>
|
||
|
[EnumMember(Value = "ARRETEE_COLLAB")]
|
||
|
ARRETEECOLLAB = 4,
|
||
|
/// <summary>
|
||
|
/// Enum ARRETEEAPSIDE for value: ARRETEE_APSIDE
|
||
|
/// </summary>
|
||
|
[EnumMember(Value = "ARRETEE_APSIDE")]
|
||
|
ARRETEEAPSIDE = 5 }
|
||
|
}
|