|   |  | 1 |  | // <auto-generated> | 
|   |  | 2 |  | // Copyright (c) Microsoft Corporation. All rights reserved. | 
|   |  | 3 |  | // Licensed under the MIT License. See License.txt in the project root for | 
|   |  | 4 |  | // license information. | 
|   |  | 5 |  | // | 
|   |  | 6 |  | // Code generated by Microsoft (R) AutoRest Code Generator. | 
|   |  | 7 |  | // Changes may cause incorrect behavior and will be lost if the code is | 
|   |  | 8 |  | // regenerated. | 
|   |  | 9 |  | // </auto-generated> | 
|   |  | 10 |  |  | 
|   |  | 11 |  | namespace Microsoft.Azure.CognitiveServices.Vision.Face.Models | 
|   |  | 12 |  | { | 
|   |  | 13 |  |     using Newtonsoft.Json; | 
|   |  | 14 |  |     using Newtonsoft.Json.Converters; | 
|   |  | 15 |  |     using System.Runtime; | 
|   |  | 16 |  |     using System.Runtime.Serialization; | 
|   |  | 17 |  |  | 
|   |  | 18 |  |     /// <summary> | 
|   |  | 19 |  |     /// Defines values for FindSimilarMatchMode. | 
|   |  | 20 |  |     /// </summary> | 
|   |  | 21 |  |     [JsonConverter(typeof(StringEnumConverter))] | 
|   |  | 22 |  |     public enum FindSimilarMatchMode | 
|   |  | 23 |  |     { | 
|   |  | 24 |  |         [EnumMember(Value = "matchPerson")] | 
|   |  | 25 |  |         MatchPerson, | 
|   |  | 26 |  |         [EnumMember(Value = "matchFace")] | 
|   |  | 27 |  |         MatchFace | 
|   |  | 28 |  |     } | 
|   |  | 29 |  |     internal static class FindSimilarMatchModeEnumExtension | 
|   |  | 30 |  |     { | 
|   |  | 31 |  |         internal static string ToSerializedValue(this FindSimilarMatchMode? value) | 
|   |  | 32 |  |         { | 
|   | 0 | 33 |  |             return value == null ? null : ((FindSimilarMatchMode)value).ToSerializedValue(); | 
|   |  | 34 |  |         } | 
|   |  | 35 |  |  | 
|   |  | 36 |  |         internal static string ToSerializedValue(this FindSimilarMatchMode value) | 
|   |  | 37 |  |         { | 
|   |  | 38 |  |             switch( value ) | 
|   |  | 39 |  |             { | 
|   |  | 40 |  |                 case FindSimilarMatchMode.MatchPerson: | 
|   | 0 | 41 |  |                     return "matchPerson"; | 
|   |  | 42 |  |                 case FindSimilarMatchMode.MatchFace: | 
|   | 0 | 43 |  |                     return "matchFace"; | 
|   |  | 44 |  |             } | 
|   | 0 | 45 |  |             return null; | 
|   |  | 46 |  |         } | 
|   |  | 47 |  |  | 
|   |  | 48 |  |         internal static FindSimilarMatchMode? ParseFindSimilarMatchMode(this string value) | 
|   |  | 49 |  |         { | 
|   |  | 50 |  |             switch( value ) | 
|   |  | 51 |  |             { | 
|   |  | 52 |  |                 case "matchPerson": | 
|   | 0 | 53 |  |                     return FindSimilarMatchMode.MatchPerson; | 
|   |  | 54 |  |                 case "matchFace": | 
|   | 0 | 55 |  |                     return FindSimilarMatchMode.MatchFace; | 
|   |  | 56 |  |             } | 
|   | 0 | 57 |  |             return null; | 
|   |  | 58 |  |         } | 
|   |  | 59 |  |     } | 
|   |  | 60 |  | } |