pub type TwilioResp<T> = Result<T, TwilioErr>;
enum TwilioResp<T> { Ok(T), Err(TwilioErr), }
Contains the success value
Contains the error value