pub type BotResult<T> = Result<T, ApiError>;
Default result type retruned by API calls.
pub enum BotResult<T> { Ok(T), Err(ApiError), }
Contains the success value
Contains the error value