All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.messagebird.objects.OutboundSmsPrice Maven / Gradle / Ivy

Go to download

The MessageBird API provides a API to the MessageBird SMS and voicemail services located at https://www.messagebird.com.

The newest version!
package com.messagebird.objects;

import java.math.BigDecimal;

public class OutboundSmsPrice {
    private BigDecimal price;
    private String currencyCode;
    private String mccmnc;
    private String mcc;
    private String mnc;
    private String countryName;
    private String countryIsoCode;
    private String operatorName;

    public BigDecimal getPrice() {
        return price;
    }

    public String getCurrencyCode() {
        return currencyCode;
    }

    public String getMccmnc() {
        return mccmnc;
    }

    public String getMcc() {
        return mcc;
    }

    public String getMnc() {
        return mnc;
    }

    public String getCountryName() {
        return countryName;
    }

    public String getCountryIsoCode() {
        return countryIsoCode;
    }

    public String getOperatorName() {
        return operatorName;
    }

    @Override
    public String toString() {
        return "OutboundSmsPrice{" +
                "price=" + price +
                ", currencyCode='" + currencyCode + '\'' +
                ", mccmnc='" + mccmnc + '\'' +
                ", mcc='" + mcc + '\'' +
                ", mnc='" + mnc + '\'' +
                ", countryName='" + countryName + '\'' +
                ", countryIsoCode='" + countryIsoCode + '\'' +
                ", operatorName='" + operatorName + '\'' +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy