001package com.plivo.api.models.campaign;
002import com.fasterxml.jackson.annotation.JsonProperty;
003
004import com.plivo.api.models.base.BaseResponse;
005import java.util.List;
006
007public class MnoMetadata  {
008    @JsonProperty("T-Mobile")
009    private OperatorDetail tMobile;
010    @JsonProperty("AT&T")
011    private OperatorDetail atandt;
012    @JsonProperty("US Cellular")
013    private OperatorDetail uSCellular;
014    @JsonProperty("Verizon Wireless")
015
016    /**
017     * @return OperatorDetail return the uSCellular
018     */
019    public OperatorDetail getUSCellular() {
020        return uSCellular;
021    }
022}