forked from Bandwidth/java-bandwidth-iris
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCallbackSubscription.java
More file actions
53 lines (41 loc) · 1.25 KB
/
CallbackSubscription.java
File metadata and controls
53 lines (41 loc) · 1.25 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
package com.bandwidth.iris.sdk.model;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
@XmlRootElement(name = "CallbackSubscription")
@XmlAccessorType(XmlAccessType.FIELD)
public class CallbackSubscription {
@XmlElement(name = "URL")
private String URL;
@XmlElement(name = "User")
private String user;
@XmlElement(name = "Expiry")
private String expiry;
@XmlElement(name = "CallbackCredentials")
private CallbackCredentials callbackCredentials;
public String getURL() {
return URL;
}
public void setURL(String URL) {
this.URL = URL;
}
public String getUser() {
return user;
}
public void setUser(String user) {
this.user = user;
}
public String getExpiry() {
return expiry;
}
public void setExpiry(String expiry) {
this.expiry = expiry;
}
public CallbackCredentials getCallbackCredentials() {
return callbackCredentials;
}
public void setCallbackCredentials(CallbackCredentials callbackCredentials) {
this.callbackCredentials = callbackCredentials;
}
}