Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
add getVerbs
  • Loading branch information
ckoegel committed Nov 7, 2025
commit b62cabe73ece7c69613b9cfb7da705aeded7905d
4 changes: 4 additions & 0 deletions src/main/java/com/bandwidth/sdk/model/bxml/Bxml.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ public class Bxml {

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

public List<Verb> getVerbs() {
return verbs;
}

public Bxml with(Verb verb) {
this.verbs.add(verb);
return this;
Expand Down
4 changes: 4 additions & 0 deletions src/main/java/com/bandwidth/sdk/model/bxml/Response.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ public class Response {

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

public List<Verb> getVerbs() {
return verbs;
}

public Response with(Verb verb) {
this.verbs.add(verb);
return this;
Expand Down
Loading