func AnyifyMapValue(a map[string]*string) map[string]interface{}
func AssertAsArray(a interface{}) []interface{}
func AssertAsBoolean(a interface{}) *bool
func AssertAsBytes(a interface{}) []byte
func AssertAsMap(a interface{}) map[string]interface{}
func AssertAsNumber(a interface{}) *int
func AssertAsReadable(a interface{}) io.Reader
func AssertAsString(a interface{}) *string
func DefaultNumber(reaNum, defaultNum *int) *int
func DefaultString(reaStr, defaultStr *string) *string
func Empty(val *string) *bool
func EqualNumber(val1, val2 *int) *bool
func EqualString(val1, val2 *string) *bool
func GetDateUTCString() *string
func GetNonce() *string
func GetUserAgent(userAgent *string) *string
func Is2xx(code *int) *bool
func Is3xx(code *int) *bool
func Is4xx(code *int) *bool
func Is5xx(code *int) *bool
func IsUnset(val interface{}) *bool
func ParseJSON(a *string) interface{}
func ReadAsBytes(body io.Reader) ([]byte, error)
func ReadAsJSON(body io.Reader) (result interface{}, err error)
func ReadAsString(body io.Reader) (*string, error)
func Sleep(millisecond *int) error
func StringifyMapValue(a map[string]interface{}) map[string]*string
func ToArray(in interface{}) []map[string]interface{}
func ToBytes(a *string) []byte
func ToFormString(a map[string]interface{}) *string
func ToJSONString(a interface{}) *string
func ToMap(in interface{}) map[string]interface{}
func ToString(a []byte) *string
func ValidateModel(a interface{}) error
type RuntimeOptions struct { Autoretry *bool `json:"autoretry" xml:"autoretry"` IgnoreSSL *bool `json:"ignoreSSL" xml:"ignoreSSL"` MaxAttempts *int `json:"maxAttempts" xml:"maxAttempts"` BackoffPolicy *string `json:"backoffPolicy" xml:"backoffPolicy"` BackoffPeriod *int `json:"backoffPeriod" xml:"backoffPeriod"` ReadTimeout *int `json:"readTimeout" xml:"readTimeout"` ConnectTimeout *int `json:"connectTimeout" xml:"connectTimeout"` LocalAddr *string `json:"localAddr" xml:"localAddr"` HttpProxy *string `json:"httpProxy" xml:"httpProxy"` HttpsProxy *string `json:"httpsProxy" xml:"httpsProxy"` NoProxy *string `json:"noProxy" xml:"noProxy"` MaxIdleConns *int `json:"maxIdleConns" xml:"maxIdleConns"` Socks5Proxy *string `json:"socks5Proxy" xml:"socks5Proxy"` Socks5NetWork *string `json:"socks5NetWork" xml:"socks5NetWork"` KeepAlive *bool `json:"keepAlive" xml:"keepAlive"` }
func (s RuntimeOptions) GoString() string
func (s *RuntimeOptions) SetAutoretry(v bool) *RuntimeOptions
func (s *RuntimeOptions) SetBackoffPeriod(v int) *RuntimeOptions
func (s *RuntimeOptions) SetBackoffPolicy(v string) *RuntimeOptions
func (s *RuntimeOptions) SetConnectTimeout(v int) *RuntimeOptions
func (s *RuntimeOptions) SetHttpProxy(v string) *RuntimeOptions
func (s *RuntimeOptions) SetHttpsProxy(v string) *RuntimeOptions
func (s *RuntimeOptions) SetIgnoreSSL(v bool) *RuntimeOptions
func (s *RuntimeOptions) SetKeepAlive(v bool) *RuntimeOptions
func (s *RuntimeOptions) SetLocalAddr(v string) *RuntimeOptions
func (s *RuntimeOptions) SetMaxAttempts(v int) *RuntimeOptions
func (s *RuntimeOptions) SetMaxIdleConns(v int) *RuntimeOptions
func (s *RuntimeOptions) SetNoProxy(v string) *RuntimeOptions
func (s *RuntimeOptions) SetReadTimeout(v int) *RuntimeOptions
func (s *RuntimeOptions) SetSocks5NetWork(v string) *RuntimeOptions
func (s *RuntimeOptions) SetSocks5Proxy(v string) *RuntimeOptions
func (s RuntimeOptions) String() string
type UUID [16]byte