com.banxa.model.request.GetCountriesRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
The Java SDK for integration with Banxa's API
The newest version!
package com.banxa.model.request;
import com.banxa.model.response.GetCountriesResponse;
public class GetCountriesRequest extends GetRequest {
private GetCountriesRequest(GetCountriesRequest.Builder builder) {
}
public GetCountriesRequest() {
}
@Override
public String getUri() {
return "/api/countries";
}
@Override
public Class getResponseClass() {
return GetCountriesResponse.class;
}
public static class Builder {
public Builder() {
}
public GetCountriesRequest build() {
return new GetCountriesRequest(this);
}
}
}