CallResult object - MatheusKlauck/BaseExchange GitHub Wiki

Located on (BaseExchange.Objects at CallResult.cs).

Contains the following properties:

  • T Data: corresponds to the data returned by the ExecuteRequest, in other words, the data who you requested and that server responded;

  • Error Error: corresponds to an error, and will appears only when an error is returned by the server;

  • bool Success: corresponds to the success/failure of the request, and only will be true if Error = false;