Status
Definition
Status {
bool Success,
string ErrorMessage,
double CreditsRemaining
}
Description:
Represents the success or failure of a service call.
The Success field indicates if the call succeeded. If this is true, the result of the service call can be retrieved and used as normal. If it is false, the result of the service call should be disregarded and the ErrorMessage can be retrieved to understand why the call failed.
The CreditsRemaining field indicates how many credits are left on the account used to make the call. If the call failed, this field will always be zero.
View all common types