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
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# Change Log

## [5.46.2](https://github.com/plivo/plivo-java/tree/v5.46.2)(2025-09-25)
**Feature - Add Campaign Error Desciption Field**
## [5.46.3](https://github.com/plivo/plivo-java/tree/v5.46.3) (2025-10-17)
**Feature - Compliance Application rejection_reason field**
- Add `rejection_reason` to Compliance Application GET/LIST/CREATE responses.

## [5.46.2](https://github.com/plivo/plivo-java/tree/v5.46.2) (2025-09-25)
**Feature - Add Campaign Error Description Field**

## [5.46.1](https://github.com/plivo/plivo-java/tree/v5.46.1)(2025-09-25)
**Feature - Campaign Error Desciption Field**
Expand Down
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.2</version>
<version>5.46.3</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
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.plivo.api.models.complianceapplication;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.plivo.api.models.base.BaseResource;


Expand All @@ -9,6 +10,7 @@ public class ComplianceApplication extends BaseResource {
private String createdAt;
private String numberType;
private String status;
private String rejectionReason;
private String countryIso2;
private String alias;
private String complianceApplicationId;
Expand Down Expand Up @@ -79,6 +81,11 @@ public String getStatus() {
return status;
}

@JsonInclude(JsonInclude.Include.NON_NULL)
public String getRejectionReason() {
return rejectionReason;
}

@Override
public String getId() {
return complianceApplicationId;
Expand Down
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.2
5.46.3
Loading