com.plivo.api.models.campaign.CampaignDeleteResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plivo-java Show documentation
Show all versions of plivo-java Show documentation
A Java SDK to make voice calls & send SMS using Plivo and to generate Plivo XML
package com.plivo.api.models.campaign;
import com.plivo.api.models.base.BaseResource;
public class CampaignDeleteResponse extends BaseResource{
private String campaignId;
private String message;
public String getCampaignId(){
return this.campaignId;
}
public String getMessage(){
return this.message;
}
@Override
public String getId(){
return this.campaignId;
}
}