001package com.plivo.api.models.verify_session; 002 003import java.util.List; 004 005public class Charges { 006 private String totalCharge; 007 private String validationCharge; 008 private List<AttemptCharge> attemptCharges; 009 010 public Charges(String totalCharge, String validationCharge, List<AttemptCharge> attemptCharges) { 011 this.totalCharge = totalCharge; 012 this.validationCharge = validationCharge; 013 this.attemptCharges = attemptCharges; 014 } 015 016 public Charges(){} 017 public String getTotalCharge(){ 018 return totalCharge; 019 } 020 public String getValidationCharge(){ 021 return validationCharge; 022 } 023 public List<AttemptCharge> getAttemptCharges(){ 024 return attemptCharges; 025 } 026}