/* * Service Collaborateur API * * Api du service Collaborateur, utilisée pour récupérer les données des collaborateurs d'Apside * * OpenAPI spec version: 1.1.3 * 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.Collections; using System.Collections.Generic; using System.Collections.ObjectModel; using System.ComponentModel.DataAnnotations; using System.Runtime.Serialization; using Newtonsoft.Json; namespace IO.Swagger.Models { /// /// Gets or Sets Statut /// [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] public enum Statut { /// /// Enum CADREEnum for CADRE /// [EnumMember(Value = "CADRE")] CADREEnum = 0, /// /// Enum NONCADREEnum for NON-CADRE /// [EnumMember(Value = "NON-CADRE")] NONCADREEnum = 1, /// /// Enum ALTERNANTEnum for ALTERNANT /// [EnumMember(Value = "ALTERNANT")] ALTERNANTEnum = 2, /// /// Enum STAGIAIREEnum for STAGIAIRE /// [EnumMember(Value = "STAGIAIRE")] STAGIAIREEnum = 3 } }