-
Notifications
You must be signed in to change notification settings - Fork 24
Status
Miriam McMahon edited this page Apr 27, 2023
·
9 revisions
Publish a progress status message via the framework.
Parameter Name | Description | Type | Resolved Type | Required |
---|---|---|---|---|
Type |
|
string | Enum (StatusType) | Yes |
Percent | approximate indication of progress as a percentage | Integer | Integer | Yes |
Message | The message object to publish, see below | object | Message | n/a |
Parameter Name | Description | Type | Resolved Type | Required |
---|---|---|---|---|
Name | The symbolic name that represents a status message in the status string resource. This must be one of the predefined status message ids defined in Predefined Status Message List | String | Enum (MessageId) | Yes |
Parameters | The list of expected parameters to format the message identified by Name. | Array | Array | No |
Example:
{
"Status": {
"Type": "Checking",
"Percent": 10,
"Message": {
"Name": "AssetTestingConnectionWithAddress",
"Parameters": [ "Asset Name", "Asset Address" ]
}
}
}