-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathIRWebAPICredentials.h
More file actions
32 lines (22 loc) · 1012 Bytes
/
IRWebAPICredentials.h
File metadata and controls
32 lines (22 loc) · 1012 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//
// IRWebAPICredentials.h
// IRWebAPIKit
//
// Created by Evadne Wu on 11/21/10.
// Copyright 2010 Iridia Productions. All rights reserved.
//
#import "IRWebAPIKit.h"
@interface IRWebAPICredentials : NSObject <NSCopying, NSCoding> {
}
@property (nonatomic, readwrite, retain) NSString *identifier;
@property (nonatomic, readwrite, retain) NSString *identifierPlaceholder;
@property (nonatomic, readwrite, retain) NSString *identifierLabelText;
@property (nonatomic, readwrite, retain) NSString *qualifier;
@property (nonatomic, readwrite, retain) NSString *qualifierPlaceholder;
@property (nonatomic, readwrite, retain) NSString *qualifierLabelText;
@property (nonatomic, readwrite, retain) NSString *displayName;
@property (nonatomic, readwrite, retain) NSString *notes;
@property (nonatomic, readwrite, retain) NSMutableDictionary *userInfo;
@property (nonatomic, readwrite, assign) BOOL authenticated;
- (id) initWithIdentifier:(NSString *)inIdentifier qualifier:(NSString *)inQualifier;
@end