mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-23 13:22:02 +03:00
24 lines
752 B
Objective-C
24 lines
752 B
Objective-C
//
|
|
// JWTClaimsSet.h
|
|
// JWT
|
|
//
|
|
// Created by Klaas Pieter Annema on 31-05-13.
|
|
// Copyright (c) 2013 Karma. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface JWTClaimsSet : NSObject<NSCopying>
|
|
|
|
@property (nonatomic, readwrite, copy) NSString *issuer;
|
|
@property (nonatomic, readwrite, copy) NSString *subject;
|
|
@property (nonatomic, readwrite, copy) NSString *audience;
|
|
@property (nonatomic, readwrite, copy) NSDate *expirationDate;
|
|
@property (nonatomic, readwrite, copy) NSDate *notBeforeDate;
|
|
@property (nonatomic, readwrite, copy) NSDate *issuedAt;
|
|
@property (nonatomic, readwrite, copy) NSString *identifier;
|
|
@property (nonatomic, readwrite, copy) NSString *type;
|
|
@property (nonatomic, readwrite, copy) NSString *scope;
|
|
|
|
@end
|