func (g *GoInterface) ToInt() (int64, error) {
    v := g.v
    if v.Kind() == reflect.Ptr {
        v = v.Elem()
    }