Skip to content

Commit b62cabe

Browse files
committed
add getVerbs
1 parent 8b5b165 commit b62cabe

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

src/main/java/com/bandwidth/sdk/model/bxml/Bxml.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,10 @@ public class Bxml {
6060

6161
private List<Verb> verbs = new ArrayList<>();
6262

63+
public List<Verb> getVerbs() {
64+
return verbs;
65+
}
66+
6367
public Bxml with(Verb verb) {
6468
this.verbs.add(verb);
6569
return this;

src/main/java/com/bandwidth/sdk/model/bxml/Response.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@ public class Response {
5858

5959
private List<Verb> verbs = new ArrayList<>();
6060

61+
public List<Verb> getVerbs() {
62+
return verbs;
63+
}
64+
6165
public Response with(Verb verb) {
6266
this.verbs.add(verb);
6367
return this;

0 commit comments

Comments
 (0)