github.com/twilio/twilio-go@v1.20.1/client/base_client.go (about)

     1  package client
     2  
     3  import (
     4  	"net/http"
     5  	"net/url"
     6  	"time"
     7  )
     8  
     9  type BaseClient interface {
    10  	AccountSid() string
    11  	SetTimeout(timeout time.Duration)
    12  	SendRequest(method string, rawURL string, data url.Values,
    13  		headers map[string]interface{}, body ...byte) (*http.Response, error)
    14  }