Skip to content

Commit

Permalink
Update DeviceApiVersionEnum.cs (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmulford-bw authored Jun 15, 2021
1 parent 5431cc6 commit 072b2e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Bandwidth.Standard/WebRtc/Models/DeviceApiVersionEnum.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public enum DeviceApiVersionEnum
public static class DeviceApiVersionEnumHelper
{
//string values corresponding the enum elements
private static List<string> stringValues = new List<string> { "v3", "v2" };
private static List<string> stringValues = new List<string> { "V3", "V2" };

/// <summary>
/// Converts a DeviceApiVersionEnum value to a corresponding string value
Expand Down Expand Up @@ -76,4 +76,4 @@ public static DeviceApiVersionEnum ParseString(string value)
return (DeviceApiVersionEnum) index;
}
}
}
}

0 comments on commit 072b2e4

Please sign in to comment.