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