Documentation
¶
Overview ¶
Package phone_number contains auto-generated files. DO NOT MODIFY
Package phone_number contains auto-generated files. DO NOT MODIFY
Package phone_number contains auto-generated files. DO NOT MODIFY
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client for managing a specific phone number resource See https://www.twilio.com/docs/sip-trunking/api/phonenumber-resource for more details
func New ¶
func New(client *client.Client, properties ClientProperties) *Client
New creates a new instance of the phone number client
func (Client) Delete ¶
Delete removes a phone number resource from the SIP trunk See https://www.twilio.com/docs/sip-trunking/api/phonenumber-resource#delete-a-phonenumber-resource for more details Context is defaulted to Background. See https://golang.org/pkg/context/#Background for more information
func (Client) DeleteWithContext ¶
DeleteWithContext removes a phone number resource from the SIP trunk See https://www.twilio.com/docs/sip-trunking/api/phonenumber-resource#delete-a-phonenumber-resource for more details
func (Client) Fetch ¶
func (c Client) Fetch() (*FetchPhoneNumberResponse, error)
Fetch retrieves a phone number resource Context is defaulted to Background. See https://golang.org/pkg/context/#Background for more information
func (Client) FetchWithContext ¶
func (c Client) FetchWithContext(context context.Context) (*FetchPhoneNumberResponse, error)
FetchWithContext retrieves a phone number resource
type ClientProperties ¶
ClientProperties are the properties required to manage the phone number resources
type FetchPhoneNumberResponse ¶
type FetchPhoneNumberResponse struct { APIVersion string `json:"api_version"` AccountSid string `json:"account_sid"` AddressRequirements string `json:"address_requirements"` Beta bool `json:"beta"` Capabilities FetchPhoneNumberCapabilitiesResponse `json:"capabilities"` DateCreated time.Time `json:"date_created"` DateUpdated *time.Time `json:"date_updated,omitempty"` FriendlyName *string `json:"friendly_name,omitempty"` PhoneNumber string `json:"phone_number"` Sid string `json:"sid"` SmsApplicationSid *string `json:"sms_application_sid,omitempty"` SmsFallbackMethod string `json:"sms_fallback_method"` SmsFallbackURL *string `json:"sms_fallback_url,omitempty"` SmsMethod string `json:"sms_method"` SmsURL *string `json:"sms_url,omitempty"` StatusCallback *string `json:"status_callback,omitempty"` StatusCallbackMethod string `json:"status_callback_method"` TrunkSid string `json:"trunk_sid"` URL string `json:"url"` VoiceApplicationSid *string `json:"voice_application_sid,omitempty"` VoiceCallerIDLookup bool `json:"voice_caller_id_lookup"` VoiceFallbackMethod string `json:"voice_fallback_method"` VoiceFallbackURL *string `json:"voice_fallback_url,omitempty"` VoiceMethod string `json:"voice_method"` VoiceReceiveMode *string `json:"voice_receive_mode,omitempty"` VoiceURL *string `json:"voice_url,omitempty"` }
FetchPhoneNumberResponse defines the response fields for the retrieved phone number resource