File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed
Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,15 @@ extension APIProtocol {
3535
3636/// Server URLs defined in the OpenAPI document.
3737public enum Servers {
38+ public enum Server1 {
39+ public static func url( ) throws -> Foundation . URL {
40+ try Foundation . URL (
41+ validatingOpenAPIServerURL: " https://api.github.com " ,
42+ variables: [ ]
43+ )
44+ }
45+ }
46+ @available ( * , deprecated, renamed: " Servers.Server1.url " )
3847 public static func server1( ) throws -> Foundation . URL {
3948 try Foundation . URL (
4049 validatingOpenAPIServerURL: " https://api.github.com " ,
@@ -169,6 +178,14 @@ public enum Operations {
169178 ///
170179 /// HTTP response code: `304 notModified`.
171180 case notModified( Components . Responses . not_modified )
181+ /// Not modified
182+ ///
183+ /// - Remark: Generated from `#/paths//emojis/get(emojis/get)/responses/304`.
184+ ///
185+ /// HTTP response code: `304 notModified`.
186+ public static var notModified : Self {
187+ . notModified( . init( ) )
188+ }
172189 /// The associated value of the enum case if `self` is `.notModified`.
173190 ///
174191 /// - Throws: An error if `self` is not `.notModified`.
You can’t perform that action at this time.
0 commit comments