diff --git a/src/Microsoft.Graph/Exceptions/GeneratedErrorConstants.cs b/src/Microsoft.Graph/Exceptions/GeneratedErrorConstants.cs index 3c1c0ed7844..0f6ac09e59a 100644 --- a/src/Microsoft.Graph/Exceptions/GeneratedErrorConstants.cs +++ b/src/Microsoft.Graph/Exceptions/GeneratedErrorConstants.cs @@ -4,17 +4,17 @@ namespace Microsoft.Graph { - internal static class GeneratedErrorConstants + public static class GeneratedErrorConstants { - internal static class Codes + public static class Codes { - internal static string NotAllowed = "notAllowed"; + public static string NotAllowed = "notAllowed"; } - internal static class Messages + public static class Messages { - internal static string ResponseObjectUsedForUpdate = "Do not use objects returned in a response for updating an object in Microsoft Graph. " + + public static string ResponseObjectUsedForUpdate = "Do not use objects returned in a response for updating an object in Microsoft Graph. " + "Create a new {0} object and only set the updated properties on it."; } } -} \ No newline at end of file +}