Skip to content

Commit

Permalink
adding default constructor in Shortcode class
Browse files Browse the repository at this point in the history
  • Loading branch information
Sajal Singhal authored and Sajal Singhal committed Jan 19, 2024
1 parent b17d5fa commit ab25018
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/com/plivo/api/models/powerpack/Shortcode.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ public class Shortcode extends BaseResource {
public Shortcode(String uuid) {
this.uuid = uuid;
}

public Shortcode() {
//Introducing the dummy constructor
}

@JsonIgnore
public Shortcode getter() {
Expand Down

0 comments on commit ab25018

Please sign in to comment.