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 OwnedNumber { 022 private String country; 023 private String msisdn; 024 private String moHttpUrl; 025 private String type; 026 private String[] features; 027 private String voiceCallbackType; 028 private String voiceCallbackValue; 029 030 public String getCountry() { 031 return country; 032 } 033 034 public void setCountry(String country) { 035 this.country = country; 036 } 037 038 public String getMsisdn() { 039 return msisdn; 040 } 041 042 public void setMsisdn(String msisdn) { 043 this.msisdn = msisdn; 044 } 045 046 public String getMoHttpUrl() { 047 return moHttpUrl; 048 } 049 050 public void setMoHttpUrl(String moHttpUrl) { 051 this.moHttpUrl = moHttpUrl; 052 } 053 054 public String getType() { 055 return type; 056 } 057 058 public void setType(String type) { 059 this.type = type; 060 } 061 062 public String[] getFeatures() { 063 return features; 064 } 065 066 public void setFeatures(String[] features) { 067 this.features = features; 068 } 069 070 public String getVoiceCallbackType() { 071 return voiceCallbackType; 072 } 073 074 public void setVoiceCallbackType(String voiceCallbackType) { 075 this.voiceCallbackType = voiceCallbackType; 076 } 077 078 public String getVoiceCallbackValue() { 079 return voiceCallbackValue; 080 } 081 082 public void setVoiceCallbackValue(String voiceCallbackValue) { 083 this.voiceCallbackValue = voiceCallbackValue; 084 } 085}