com.messagebird.objects.OutboundSmsPriceResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of messagebird-api Show documentation
Show all versions of messagebird-api Show documentation
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 +
'}';
}
}