
com.squareup.square.core.Environment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of square Show documentation
Show all versions of square Show documentation
Java client library for the Square API
The newest version!
/**
* This file was auto-generated by Fern from our API Definition.
*/
package com.squareup.square.core;
public final class Environment {
public static final Environment PRODUCTION = new Environment("https://connect.squareup.com");
public static final Environment SANDBOX = new Environment("https://connect.squareupsandbox.com");
private final String url;
private Environment(String url) {
this.url = url;
}
public String getUrl() {
return this.url;
}
public static Environment custom(String url) {
return new Environment(url);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy