[Swift] responses: schema: type: object --> RequestBuilder<Inline_response_200> ?
#2 093 ouverte le 10 févr. 2016
Métriques du dépôt
- Stars
- (12 701 stars)
- Métriques de merge PR
- (Aucune PR mergée en 30 j)
Description
When I feed an API with the following responses definition:
responses:
'200':
description: Request was successful
schema:
type: object
the codegen generates something like the following client-side code:
public class func usercount(Swaggerwhere Swaggerwhere: String?) -> RequestBuilder<Inline_response_200> {
where I don't understand how to handle the returned object value...?
I would expect an plain object is mapped to a dictionary so that access key-value pairs can be read...
Would you kindly tell me if I'm mistaking something?
When I tried Obj-C and it also behaves in a similar manner:
-(NSNumber*) userCountWithCompletionBlock :(NSString*) where
completionHandler: (void (^)(XXInlineResponse200* output, NSError* error))completionBlock;
So, there might be some design decision already discussed and it has been decided to generate Inline_response_200 thing for object response type. But I still don't see how to handle the returned object. Any help would be much appreciated! (@bajtos wanted to keep informed about this too)