Fix Balance Field
The termii docs shows that the balance field in the auto-generated message response is an integer while in "real life", a float is returned. Rather than change the field to float, I decided to use the interface type so the user can use type assertion to convert the type to int/float rather than getting an error if termii decides to return an integer.