001/* 002 * Copyright 2020 Vonage 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.apache.org/licenses/LICENSE-2.0 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016package com.vonage.client.numbers; 017 018import com.fasterxml.jackson.annotation.JsonIgnoreProperties; 019 020@JsonIgnoreProperties(ignoreUnknown = true) 021public class AvailableNumber { 022 private String country; 023 private String msisdn; 024 private String cost; 025 private String type; 026 private String[] features; 027 028 public String getCountry() { 029 return country; 030 } 031 032 public void setCountry(String country) { 033 this.country = country; 034 } 035 036 public String getMsisdn() { 037 return msisdn; 038 } 039 040 public void setMsisdn(String msisdn) { 041 this.msisdn = msisdn; 042 } 043 044 public String getCost() { 045 return cost; 046 } 047 048 public void setCost(String cost) { 049 this.cost = cost; 050 } 051 052 public String getType() { 053 return type; 054 } 055 056 public void setType(String type) { 057 this.type = type; 058 } 059 060 public String[] getFeatures() { 061 return features; 062 } 063 064 public void setFeatures(String[] features) { 065 this.features = features; 066 } 067}