-
Notifications
You must be signed in to change notification settings - Fork 40
/
sip_domains.go
91 lines (74 loc) · 2.29 KB
/
sip_domains.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* Twilio - Routes
* 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 (
"encoding/json"
"net/url"
"strings"
)
//
func (c *ApiService) FetchSipDomain(SipDomain string) (*RoutesV2SipDomain, error) {
path := "/v2/SipDomains/{SipDomain}"
path = strings.Replace(path, "{"+"SipDomain"+"}", SipDomain, -1)
data := url.Values{}
headers := make(map[string]interface{})
resp, err := c.requestHandler.Get(c.baseURL+path, data, headers)
if err != nil {
return nil, err
}
defer resp.Body.Close()
ps := &RoutesV2SipDomain{}
if err := json.NewDecoder(resp.Body).Decode(ps); err != nil {
return nil, err
}
return ps, err
}
// Optional parameters for the method 'UpdateSipDomain'
type UpdateSipDomainParams struct {
//
VoiceRegion *string `json:"VoiceRegion,omitempty"`
//
FriendlyName *string `json:"FriendlyName,omitempty"`
}
func (params *UpdateSipDomainParams) SetVoiceRegion(VoiceRegion string) *UpdateSipDomainParams {
params.VoiceRegion = &VoiceRegion
return params
}
func (params *UpdateSipDomainParams) SetFriendlyName(FriendlyName string) *UpdateSipDomainParams {
params.FriendlyName = &FriendlyName
return params
}
//
func (c *ApiService) UpdateSipDomain(SipDomain string, params *UpdateSipDomainParams) (*RoutesV2SipDomain, error) {
path := "/v2/SipDomains/{SipDomain}"
path = strings.Replace(path, "{"+"SipDomain"+"}", SipDomain, -1)
data := url.Values{}
headers := make(map[string]interface{})
if params != nil && params.VoiceRegion != nil {
data.Set("VoiceRegion", *params.VoiceRegion)
}
if params != nil && params.FriendlyName != nil {
data.Set("FriendlyName", *params.FriendlyName)
}
resp, err := c.requestHandler.Post(c.baseURL+path, data, headers)
if err != nil {
return nil, err
}
defer resp.Body.Close()
ps := &RoutesV2SipDomain{}
if err := json.NewDecoder(resp.Body).Decode(ps); err != nil {
return nil, err
}
return ps, err
}