001package com.plivo.api.models.message; 002 003import java.util.List; 004import java.util.ArrayList; 005 006public class Currency { 007 private String fallback_value; 008 private String currency_code; 009 private Integer amount_1000; 010 011 public Currency() { 012 } 013 014 public String getFallback_value() { 015 return fallback_value; 016 } 017 018 public void setFallback_value(String fallback_value) { 019 this.fallback_value = fallback_value; 020 } 021 022 public String getCurrency_code() { 023 return currency_code; 024 } 025 026 public void setCurrency_code(String currency_code) { 027 this.currency_code = currency_code; 028 } 029 030 public Integer getAmount_1000() { 031 return amount_1000; 032 } 033 034 public void setAmount_1000(Integer amount_1000) { 035 this.amount_1000 = amount_1000; 036 } 037}