-
-
Notifications
You must be signed in to change notification settings - Fork 44
iw4madminapplicationapimaster ApiInstance
RaidMax edited this page May 21, 2023
·
1 revision
Defines the structure of the IW4MAdmin instance for the master API
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph IW4MAdmin.Application.API.Master
IW4MAdmin.Application.API.Master.ApiInstance[[ApiInstance]]
end
Type | Name | Methods |
---|---|---|
string |
Id Unique ID of the instance |
get, set |
List <ApiServer > |
Servers List of servers the instance is monitoring |
get, set |
int |
Uptime Indicates how long the instance has been running |
get, set |
BuildNumber |
Version Specifies the version of the instance |
get, set |
string |
WebfrontUrl Url IW4MAdmin is listening on |
get, set |
Defines the structure of the IW4MAdmin instance for the master API
public ApiInstance()
public string Id { get; set; }
Unique ID of the instance
public int Uptime { get; set; }
Indicates how long the instance has been running
public BuildNumber Version { get; set; }
Specifies the version of the instance
public List<ApiServer> Servers { get; set; }
List of servers the instance is monitoring
public string WebfrontUrl { get; set; }
Url IW4MAdmin is listening on
Generated with ModularDoc