-
Notifications
You must be signed in to change notification settings - Fork 0
/
IPInfoResult.h
53 lines (42 loc) · 1.05 KB
/
IPInfoResult.h
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//
// IPInfoResult.h
// Antideo
//
// Created by Panayot Panayotov on 08/02/2017.
// Copyright © 2017 Antideo. All rights reserved.
//
#import "AAObject.h"
@interface IPInfoResult : AAObject
/*!
* @brief IP address for the info result
*/
@property(nonatomic, retain) NSString *_Nullable ip;
/*!
* @brief hostname of IP address
*/
@property(nonatomic, retain) NSString *_Nullable host;
/*!
* @brief Iorganisation name
*/
@property(nonatomic, retain) NSString *_Nullable orgName;
/*!
* @brief Autonomous System Number
*/
@property(nonatomic, retain) NSString *_Nullable asn;
/*!
* @brief NSDate object of date ASN was assigned to this organisation
*/
@property(nonatomic, retain) NSDate *_Nullable asnAssigned;
/*!
* @brief Regstration country organisation behind this IP
*/
@property(nonatomic, retain) NSString *_Nullable country;
/*!
* @brief Registry issued this ASN
*/
@property(nonatomic, retain) NSString *_Nullable registry;
/*!
* @brief Category of ASN/Org/IP Address
*/
@property(nonatomic, retain) NSString *_Nullable category;
@end