mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-06-06 08:50:52 +00:00
12 lines
288 B
Objective-C
12 lines
288 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@interface SWGQueryParamCollection : NSObject
|
|
|
|
@property(nonatomic, readonly) NSArray* values;
|
|
@property(nonatomic, readonly) NSString* format;
|
|
|
|
- (id) initWithValuesAndFormat: (NSArray*) values
|
|
format: (NSString*) format;
|
|
|
|
@end
|