![JAR search and dependency download from the Maven repository](/logo.png)
com.bytebybyte.mapquest.geocoding.service.IResponse Maven / Gradle / Ivy
package com.bytebybyte.mapquest.geocoding.service;
import com.bytebybyte.mapquest.geocoding.service.response.Info;
import com.bytebybyte.mapquest.geocoding.service.response.Result;
public interface IResponse {
/**
* Matching results.
*
* @return Result[]
*/
Result[] getResults();
/**
* This field contains information about the response.
*
* The statuscode subfield is an integer return value. Refer to the status
* codes page for more details about our status codes and error messages.
*
* The messages subfield is an array of error messages that describe the
* status
*
* @return info
*/
Info getInfo();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy