webhook

package
v0.7.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 9, 2020 License: Apache-2.0 Imports: 4 Imported by: 1

Documentation

Overview

Package webhook contains auto-generated files. DO NOT MODIFY

Package webhook contains auto-generated files. DO NOT MODIFY

Package webhook contains auto-generated files. DO NOT MODIFY

Package webhook 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 webhook resource See https://www.twilio.com/docs/conversations/api/conversation-scoped-webhook-resource for more details

func New

func New(client *client.Client, properties ClientProperties) *Client

New creates a new instance of the webhook client

func (Client) Delete

func (c Client) Delete() error

Delete removes a webhook resource from the account See https://www.twilio.com/docs/conversations/api/conversation-scoped-webhook-resource#delete-a-conversationscopedwebhook-resource for more details Context is defaulted to Background. See https://golang.org/pkg/context/#Background for more information

func (Client) DeleteWithContext

func (c Client) DeleteWithContext(context context.Context) error

DeleteWithContext removes a webhook resource from the account See https://www.twilio.com/docs/conversations/api/conversation-scoped-webhook-resource#delete-a-conversationscopedwebhook-resource for more details

func (Client) Fetch

func (c Client) Fetch() (*FetchWebhookResponse, error)

Fetch retrieves an webhook resource See https://www.twilio.com/docs/conversations/api/conversation-scoped-webhook-resource#fetch-a-conversationscopedwebhook-resource for more details 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) (*FetchWebhookResponse, error)

FetchWithContext retrieves an webhook resource See https://www.twilio.com/docs/conversations/api/conversation-scoped-webhook-resource#fetch-a-conversationscopedwebhook-resource for more details

func (Client) Update

Update modifies a webhook resource See https://www.twilio.com/docs/conversations/api/conversation-scoped-webhook-resource#update-a-conversationscopedwebhook-resource for more details Context is defaulted to Background. See https://golang.org/pkg/context/#Background for more information

type ClientProperties

type ClientProperties struct {
	ConversationSid string
	Sid             string
}

ClientProperties are the properties required to manage the webhook resources

type FetchWebhookConfigurationResponse added in v0.6.0

type FetchWebhookConfigurationResponse struct {
	Filters     *[]string `json:"filters,omitempty"`
	FlowSid     *string   `json:"flow_sid,omitempty"`
	Method      *string   `json:"method,omitempty"`
	ReplayAfter *int      `json:"replay_after,omitempty"`
	Triggers    *[]string `json:"triggers,omitempty"`
	URL         *string   `json:"url,omitempty"`
}

type FetchWebhookResponse added in v0.4.0

type FetchWebhookResponse struct {
	AccountSid      string                            `json:"account_sid"`
	Configuration   FetchWebhookConfigurationResponse `json:"configuration"`
	ConversationSid string                            `json:"conversation_sid"`
	DateCreated     time.Time                         `json:"date_created"`
	DateUpdated     *time.Time                        `json:"date_updated,omitempty"`
	Sid             string                            `json:"sid"`
	Target          string                            `json:"target"`
	URL             string                            `json:"url"`
}

FetchWebhookResponse defines the response fields for the retrieved webhook

type UpdateWebhookConfigurationInput added in v0.6.0

type UpdateWebhookConfigurationInput struct {
	Filters  *[]string `form:"Filters,omitempty"`
	FlowSid  *string   `form:"FlowSid,omitempty"`
	Method   *string   `form:"Method,omitempty"`
	Triggers *[]string `form:"Triggers,omitempty"`
	URL      *string   `form:"Url,omitempty"`
}

type UpdateWebhookConfigurationResponse added in v0.6.0

type UpdateWebhookConfigurationResponse struct {
	Filters     *[]string `json:"filters,omitempty"`
	FlowSid     *string   `json:"flow_sid,omitempty"`
	Method      *string   `json:"method,omitempty"`
	ReplayAfter *int      `json:"replay_after,omitempty"`
	Triggers    *[]string `json:"triggers,omitempty"`
	URL         *string   `json:"url,omitempty"`
}

type UpdateWebhookInput added in v0.4.0

type UpdateWebhookInput struct {
	Configuration *UpdateWebhookConfigurationInput `form:"Configuration,omitempty"`
}

UpdateWebhookInput defines input fields for updating an webhook resource

type UpdateWebhookResponse added in v0.4.0

type UpdateWebhookResponse struct {
	AccountSid      string                             `json:"account_sid"`
	Configuration   UpdateWebhookConfigurationResponse `json:"configuration"`
	ConversationSid string                             `json:"conversation_sid"`
	DateCreated     time.Time                          `json:"date_created"`
	DateUpdated     *time.Time                         `json:"date_updated,omitempty"`
	Sid             string                             `json:"sid"`
	Target          string                             `json:"target"`
	URL             string                             `json:"url"`
}

UpdateWebhookResponse defines the response fields for the updated webhook

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL