
com.plivo.api.models.verify_session.AttemptCharge 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.verify_session;
public class AttemptCharge {
private String attemptUuid;
private String channel;
private String charge;
public AttemptCharge( String attemptUuid, String channel, String charge) {
this.attemptUuid = attemptUuid;
this.channel = channel;
this.charge = charge;
}
public AttemptCharge(){}
public String getAttemptUuid(){
return attemptUuid;
}
public String getChannel(){
return channel;
}
public String getCharge(){
return charge;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy