com.moesif.api.Configuration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of moesifapi Show documentation
Show all versions of moesifapi Show documentation
Java API Library for Moesif
The newest version!
/*
* MoesifAPILib
*
*
*/
package com.moesif.api;
public class Configuration {
//The base Uri for API calls
public static String BaseUri = "https://api.moesif.net";
public static final String DateTimeFormat = "yyyy-MM-dd'T'HH:mm:ss.SSS";
//This token authenticates your API Calls
public String applicationId;
public String baseUri;
public boolean debug = false;
}