All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.plivo.api.models.verify_session.AttemptCharge Maven / Gradle / Ivy

Go to download

A Java SDK to make voice calls & send SMS using Plivo and to generate Plivo XML

There is a newer version: 5.46.0
Show newest version
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