001package com.plivo.api.models.verify_session;
002
003public class AttemptDetail {
004  private String channel;
005  private String attemptUuid;
006  private String status;
007  private String time;
008
009  public AttemptDetail(String channel, String attemptUuid, String status, String time) {
010    this.channel = channel;
011    this.attemptUuid = attemptUuid;
012    this.status = status;
013    this.time = time;
014  }
015
016  public AttemptDetail(){}
017
018  public String getChannel(){
019    return channel;
020  }
021  public String getAttemptUuid(){
022    return attemptUuid;
023  }
024  public String getStatus(){
025    return status;
026  }
027  public String getTime(){
028    return time;
029  }
030}