namespace Plugins.Countly.Services
{
public interface IOptionalParametersCountlyService
{
string CountryCode { get; }
string City { get; }
string Location { get; }
string IPAddress { get; }
///
/// Sets Country Code to be used for future requests. Takes ISO Country code as input parameter
///
///
void SetCountryCode(string country_code);
///
/// Sets City to be used for future requests.
///
///
void SetCity(string city);
///
/// Sets Location to be used for future requests.
///
///
///
void SetLocation(double latitude, double longitude);
///
/// Sets IP address to be used for future requests.
///
///
void SetIPAddress(string ip_address);
///
/// Disabled the location tracking on the Countly server
///
void DisableLocation();
}
}