Class ServiceStatus#

Inheritance Relationships#

Base Type#

Class Documentation#

class xbe.sdk.Models.ServiceStatus : xbe.sdk.Object#

Describes the health status of a single platform service.

Public Functions

ServiceStatus ()#

Constructs a new ServiceStatus instance.

ServiceStatus (Object obj)

Constructs a new ServiceStatus instance with the given object.

Param obj:

The object to use for the new instance.

Properties

string Name { get; set; }#

The unique name of the service.

DateTime LastHeartbeat { get; set; }#

The date and time that the service was last known to be alive and well.

DateTime LastUpdate { get; set; }#

The date and time tha the service status was last checked.

bool Online { get; set; }#

Is true if the service is alive and healthy, otherwise false.

string Version { get; set; }#

The current version of the service.

Public Static Functions

new ServiceStatus Parse (string json)#

Parses the given JSON encoded string into a new ServiceStatus instance.

Param json:

Return: