File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
src/main/java/com/twilio/oai Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -135,6 +135,9 @@ public void updateHttpMethod(CodegenOperation co) {
135135 case "PUT" :
136136 co .vendorExtensions .put (HTTP_METHOD , CsharpHttpMethod .PUT .getValue ());
137137 break ;
138+ case "PATCH" :
139+ co .vendorExtensions .put (HTTP_METHOD , CsharpHttpMethod .PATCH .getValue ());
140+ break ;
138141 case "DELETE" :
139142 co .vendorExtensions .put (HTTP_METHOD , CsharpHttpMethod .DELETE .getValue ());
140143 break ;
Original file line number Diff line number Diff line change @@ -128,6 +128,7 @@ public enum CsharpHttpMethod {
128128 GET ("HttpMethod.Get" ),
129129 POST ("HttpMethod.Post" ),
130130 PUT ("HttpMethod.Put" ),
131+ PATCH ("HttpMethod.Patch" ),
131132 DELETE ("HttpMethod.Delete" );
132133
133134 private final String value ;
You can’t perform that action at this time.
0 commit comments