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

com.messagebird.objects.OutboundSmsPriceResponse 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.util.List;

public class OutboundSmsPriceResponse {
    private int gateway;
    private String currencyCode;
    private int totalCount;
    private List prices;

    public int getGateway() {
        return gateway;
    }

    public String getCurrencyCode() {
        return currencyCode;
    }

    public int getTotalCount() {
        return totalCount;
    }

    public List getPrices() {
        return prices;
    }

    @Override
    public String toString() {
        return "OutboundSmsPriceResponse{" +
                "gateway=" + gateway +
                ", currencyCode='" + currencyCode + '\'' +
                ", totalCount=" + totalCount +
                ", prices=" + prices +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy