We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85463f0 commit 5610456Copy full SHA for 5610456
modules/swagger-codegen/src/main/resources/objc/voidResponse.mustache
@@ -0,0 +1,14 @@
1
+ return [client stringWithCompletionBlock: requestUrl
2
+ method: @"{{httpMethod}}"
3
+ queryParams: queryParams
4
+ body: bodyDictionary
5
+ headerParams: headerParams
6
+ requestContentType: requestContentType
7
+ responseContentType: responseContentType
8
+ completionBlock: ^(NSString *data, NSError *error) {
9
+ if (error) {
10
+ completionBlock(error);
11
+ return;
12
+ }
13
+ completionBlock(nil);
14
+ }];
0 commit comments