2024-03-29 12:39:29 -05:00
|
|
|
namespace AAIntegration.SimmonsBank.API.Configs;
|
|
|
|
|
|
|
|
public class PuppeteerConfig
|
|
|
|
{
|
|
|
|
public int KeepAliveIntervalMinutes { get; set; }
|
|
|
|
public int CheckForNewDataIntervalMinutes { get; set; }
|
|
|
|
public int TaskCheckIntervalMinutes { get; set; }
|
2024-04-02 21:52:01 -05:00
|
|
|
public string SimmonsBankBaseUrl { get; set; }
|
|
|
|
public int BrowserOperationTimeoutSeconds { get; set; }
|
2024-04-03 15:36:27 -05:00
|
|
|
public bool Headless { get; set; }
|
2024-03-29 12:39:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public class PuppeteerConfigConstants
|
|
|
|
{
|
|
|
|
public const string KeepAliveIntervalMinutes = "KeepAliveIntervalMinutes";
|
|
|
|
public const string CheckForNewDataIntervalMinutes = "CheckForNewDataIntervalMinutes";
|
|
|
|
public const string TaskCheckIntervalMinutes = "TaskCheckIntervalMinutes";
|
2024-04-02 21:52:01 -05:00
|
|
|
public const string SimmonsBankBaseUrl = "SimmonsBankBaseUrl";
|
|
|
|
public const string BrowserOperationTimeoutSeconds = "BrowserOperationTimeoutSeconds";
|
2024-04-03 15:36:27 -05:00
|
|
|
public const string Headless = "Headless";
|
2024-04-02 22:28:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public class PuppeteerConstants
|
|
|
|
{
|
|
|
|
public const string BROWSER_CACHE_KEY = "BrowserCacheKey";
|
|
|
|
public const string USER_SB_ID = "UserSimmonsBankId";
|
2024-03-29 12:39:29 -05:00
|
|
|
}
|