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

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

Go to download

The MessageBird API provides an API to the MessageBird SMS, Chat and Voice services located at https://www.messagebird.com.

There is a newer version: 6.2.2
Show newest version
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