Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

## [5.46.1](https://github.com/plivo/plivo-java/tree/v5.46.1)(2025-09-25)
**Feature - Campaign Error Desciption Field**

## [5.46.0](https://github.com/plivo/plivo-java/tree/v5.46.0) (2025-04-30)
**Feature - New Param added for Start Recording API.**
- Support `record_channel_type` in Start Recording API and `recordChannelType` in Record XML.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The Plivo Java SDK makes it simpler to integrate communications into your Java a

### To Install Stable release

You can use this SDK by adding it as a dependency in your dependency management tool. Alternatively, you can use the [JAR file](https://search.maven.org/remotecontent?filepath=com/plivo/plivo-java/5.46.0/plivo-java-5.46.0.jar).
You can use this SDK by adding it as a dependency in your dependency management tool. Alternatively, you can use the [JAR file](https://search.maven.org/remotecontent?filepath=com/plivo/plivo-java/5.46.1/plivo-java-5.46.1.jar).


If you are using Maven, use the following XML to include the Plivo SDK as a dependency.
Expand All @@ -19,7 +19,7 @@ If you are using Maven, use the following XML to include the Plivo SDK as a depe
<dependency>
<groupId>com.plivo</groupId>
<artifactId>plivo-java</artifactId>
<version>5.46.0</version>
<version>5.46.1</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Written manually.

version=5.46.0
version=5.46.1
groupId=com.plivo
artifactId=plivo-java

2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.plivo</groupId>
<artifactId>plivo-java</artifactId>
<version>5.46.0</version>
<version>5.46.1</version>
<name>plivo-java</name>
<description>A Java SDK to make voice calls &amp; send SMS using Plivo and to generate Plivo XML</description>
<licenses>
Expand Down
7 changes: 6 additions & 1 deletion src/main/java/com/plivo/api/models/campaign/Campaign.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ public class Campaign extends BaseResource {
private String errorCode;
private String vertical;
private String campaignAlias;
private String errorDescription;



Expand Down Expand Up @@ -141,6 +142,10 @@ public String getErrorReason() {
return errorReason;
}

public String getErrorDescription() {
return errorDescription;
}

/**
* @return MnoMetadata return the mnoMetadata
*/
Expand Down Expand Up @@ -190,4 +195,4 @@ public String getCampaignAlias() {
public String getId() {
return this.campaignID;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ public class CampaignResponse extends BaseResource{
private CampaignAttributes campaignAttributes;
private String vertical;
private String campaignAlias;
private String errorDescription;



Expand Down Expand Up @@ -179,9 +180,14 @@ public String getErrorReason() {
return errorReason;
}

public String getErrorDescription() {
return errorDescription;
}



@Override
public String getId() {
return this.campaignID;
}
}
}
2 changes: 1 addition & 1 deletion src/main/resources/com/plivo/api/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.46.0
5.46.1
Loading