mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-06-24 17:50:53 +00:00
32 lines
722 B
Objective-C
32 lines
722 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import "SWGObject.h"
|
|
|
|
|
|
@interface SWGApiTokenStatus : SWGObject
|
|
|
|
@property(nonatomic) NSNumber* valid;
|
|
|
|
@property(nonatomic) NSString* token;
|
|
|
|
@property(nonatomic) NSNumber* resetsInMillis;
|
|
|
|
@property(nonatomic) NSNumber* remainingCalls;
|
|
|
|
@property(nonatomic) NSNumber* expiresInMillis;
|
|
|
|
@property(nonatomic) NSNumber* totalRequests;
|
|
|
|
- (id) valid: (NSNumber*) valid
|
|
token: (NSString*) token
|
|
resetsInMillis: (NSNumber*) resetsInMillis
|
|
remainingCalls: (NSNumber*) remainingCalls
|
|
expiresInMillis: (NSNumber*) expiresInMillis
|
|
totalRequests: (NSNumber*) totalRequests;
|
|
|
|
- (id) initWithValues: (NSDictionary*)dict;
|
|
- (NSDictionary*) asDictionary;
|
|
|
|
|
|
@end
|
|
|