com.messagebird.objects.PhoneNumbersResponse 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 an API to the MessageBird SMS, Chat and Voice services located at https://www.messagebird.com.
package com.messagebird.objects;
import com.messagebird.objects.PhoneNumber;
import java.util.List;
import java.io.Serializable;
public class PhoneNumbersResponse implements Serializable {
/**
*
*/
private static final long serialVersionUID = 6177098534499444839L;
private Number limit;
private Number offset;
private List items;
public Number getLimit() {
return this.limit;
}
public Number getOffset() {
return this.offset;
}
public List getItems() {
return this.items;
}
@Override
public String toString() {
return "PhoneNumbersResponse{" +
"limit=" + limit +
", offset=" + offset +
", items=" + items +
"}";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy