-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathAbuse.java
More file actions
62 lines (53 loc) · 1.34 KB
/
Abuse.java
File metadata and controls
62 lines (53 loc) · 1.34 KB
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
54
55
56
57
58
59
60
61
62
package io.ipinfo.api.model;
public class Abuse {
private final String address;
private final String country;
private final String email;
private final String name;
private final String network;
private final String phone;
public Abuse(
String address,
String country,
String email,
String name,
String network,
String phone
) {
this.address = address;
this.country = country;
this.email = email;
this.name = name;
this.network = network;
this.phone = phone;
}
public String getAddress() {
return address;
}
public String getCountry() {
return country;
}
public String getEmail() {
return email;
}
public String getName() {
return name;
}
public String getNetwork() {
return network;
}
public String getPhone() {
return phone;
}
@Override
public String toString() {
return "Abuse{" +
"address='" + address + '\'' +
", country='" + country + '\'' +
", email='" + email + '\'' +
", name='" + name + '\'' +
", network='" + network + '\'' +
", phone='" + phone + '\'' +
'}';
}
}