001package com.plivo.api.models.campaign; 002 003import com.plivo.api.models.base.BaseResponse; 004import java.util.List; 005 006public class OperatorDetail { 007 private String brandTier; 008 private String tpm; 009 /** 010 * @return String return the brandTier 011 */ 012 public String getBrandTier() { 013 return brandTier; 014 } 015 016 /** 017 * @return String return the tpm 018 */ 019 public String getTpm() { 020 return tpm; 021 } 022}