-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathapi_service.go
35 lines (30 loc) · 963 Bytes
/
api_service.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* Twilio - Oauth
* This is the public Twilio REST API.
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package openapi
import (
twilio "github.com/twilio/twilio-go/client"
)
type ApiService struct {
baseURL string
requestHandler *twilio.RequestHandler
}
func NewApiService(requestHandler *twilio.RequestHandler) *ApiService {
return &ApiService{
requestHandler: requestHandler,
baseURL: "https://oauth.twilio.com",
}
}
func NewApiServiceWithClient(client twilio.BaseClient) *ApiService {
return NewApiService(twilio.NewRequestHandler(client))
}