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

com.what3words.javawrapper.response.GridSection Maven / Gradle / Ivy

There is a newer version: 3.1.21
Show newest version
package com.what3words.javawrapper.response;

import java.util.List;

import com.google.gson.GsonBuilder;

public class GridSection extends Response {
    private List lines = null;

    public List getLines() {
        return lines;
    }
    
    public String toString() {
        return new GsonBuilder().setPrettyPrinting().create().toJson(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy