linebot

package
v7.21.0 Latest Latest
Warning

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

Go to latest
Published: Sep 22, 2023 License: Apache-2.0 Imports: 19 Imported by: 154

Documentation

Index

Examples

Constants

View Source
const (
	APIEndpointBase     = "https://api.line.me"
	APIEndpointBaseData = "https://api-data.line.me"

	APIEndpointPushMessage                = "/v2/bot/message/push"
	APIEndpointBroadcastMessage           = "/v2/bot/message/broadcast"
	APIEndpointReplyMessage               = "/v2/bot/message/reply"
	APIEndpointMulticast                  = "/v2/bot/message/multicast"
	APIEndpointNarrowcast                 = "/v2/bot/message/narrowcast"
	APIEndpointValidatePushMessage        = "/v2/bot/message/validate/push"
	APIEndpointValidateBroadcastMessage   = "/v2/bot/message/validate/broadcast"
	APIEndpointValidateReplyMessage       = "/v2/bot/message/validate/reply"
	APIEndpointValidateMulticastMessage   = "/v2/bot/message/validate/multicast"
	APIEndpointValidateNarrowcastMessage  = "/v2/bot/message/validate/narrowcast"
	APIEndpointGetMessageContent          = "/v2/bot/message/%s/content"
	APIEndpointGetMessageQuota            = "/v2/bot/message/quota"
	APIEndpointGetMessageConsumption      = "/v2/bot/message/quota/consumption"
	APIEndpointGetMessageQuotaConsumption = "/v2/bot/message/quota/consumption"
	APIEndpointLeaveGroup                 = "/v2/bot/group/%s/leave"
	APIEndpointLeaveRoom                  = "/v2/bot/room/%s/leave"
	APIEndpointGetProfile                 = "/v2/bot/profile/%s"
	APIEndpointGetFollowerIDs             = "/v2/bot/followers/ids"
	APIEndpointGetGroupMemberProfile      = "/v2/bot/group/%s/member/%s"
	APIEndpointGetRoomMemberProfile       = "/v2/bot/room/%s/member/%s"
	APIEndpointGetGroupMemberIDs          = "/v2/bot/group/%s/members/ids"
	APIEndpointGetRoomMemberIDs           = "/v2/bot/room/%s/members/ids"
	APIEndpointGetGroupMemberCount        = "/v2/bot/group/%s/members/count"
	APIEndpointGetRoomMemberCount         = "/v2/bot/room/%s/members/count"
	APIEndpointGetGroupSummary            = "/v2/bot/group/%s/summary"
	APIEndpointCreateRichMenu             = "/v2/bot/richmenu"
	APIEndpointGetRichMenu                = "/v2/bot/richmenu/%s"
	APIEndpointListRichMenu               = "/v2/bot/richmenu/list"
	APIEndpointDeleteRichMenu             = "/v2/bot/richmenu/%s"
	APIEndpointGetUserRichMenu            = "/v2/bot/user/%s/richmenu"
	APIEndpointLinkUserRichMenu           = "/v2/bot/user/%s/richmenu/%s"
	APIEndpointUnlinkUserRichMenu         = "/v2/bot/user/%s/richmenu"
	APIEndpointSetDefaultRichMenu         = "/v2/bot/user/all/richmenu/%s"
	APIEndpointDefaultRichMenu            = "/v2/bot/user/all/richmenu"   // Get: GET / Delete: DELETE
	APIEndpointDownloadRichMenuImage      = "/v2/bot/richmenu/%s/content" // Download: GET / Upload: POST
	APIEndpointUploadRichMenuImage        = "/v2/bot/richmenu/%s/content" // Download: GET / Upload: POST
	APIEndpointBulkLinkRichMenu           = "/v2/bot/richmenu/bulk/link"
	APIEndpointBulkUnlinkRichMenu         = "/v2/bot/richmenu/bulk/unlink"
	APIEndpointValidateRichMenuObject     = "/v2/bot/richmenu/validate"

	APIEndpointCreateRichMenuAlias = "/v2/bot/richmenu/alias"
	APIEndpointGetRichMenuAlias    = "/v2/bot/richmenu/alias/%s"
	APIEndpointUpdateRichMenuAlias = "/v2/bot/richmenu/alias/%s"
	APIEndpointDeleteRichMenuAlias = "/v2/bot/richmenu/alias/%s"
	APIEndpointListRichMenuAlias   = "/v2/bot/richmenu/alias/list"

	APIEndpointGetAllLIFFApps = "/liff/v1/apps"
	APIEndpointAddLIFFApp     = "/liff/v1/apps"
	APIEndpointUpdateLIFFApp  = "/liff/v1/apps/%s/view"
	APIEndpointDeleteLIFFApp  = "/liff/v1/apps/%s"

	APIEndpointLinkToken = "/v2/bot/user/%s/linkToken"

	APIEndpointGetMessageDelivery = "/v2/bot/message/delivery/%s"
	APIEndpointGetMessageProgress = "/v2/bot/message/progress/%s"
	APIEndpointInsight            = "/v2/bot/insight/%s"
	APIEndpointGetBotInfo         = "/v2/bot/info"

	APIEndpointIssueAccessToken  = "/v2/oauth/accessToken"
	APIEndpointRevokeAccessToken = "/v2/oauth/revoke"
	APIEndpointVerifyAccessToken = "/v2/oauth/verify"

	APIEndpointIssueAccessTokenV2  = "/oauth2/v2.1/token"
	APIEndpointGetAccessTokensV2   = "/oauth2/v2.1/tokens/kid"
	APIEndpointRevokeAccessTokenV2 = "/oauth2/v2.1/revoke"

	APIEndpointGetWebhookInfo     = "/v2/bot/channel/webhook/endpoint"
	APIEndpointSetWebhookEndpoint = "/v2/bot/channel/webhook/endpoint"
	APIEndpointTestWebhook        = "/v2/bot/channel/webhook/test"

	APIAudienceGroupUpload            = "/v2/bot/audienceGroup/upload"
	APIAudienceGroupUploadByFile      = "/v2/bot/audienceGroup/upload/byFile"
	APIAudienceGroupClick             = "/v2/bot/audienceGroup/click"
	APIAudienceGroupIMP               = "/v2/bot/audienceGroup/imp"
	APIAudienceGroupUpdateDescription = "/v2/bot/audienceGroup/%d/updateDescription"
	APIAudienceGroupActivate          = "/v2/bot/audienceGroup/%d/activate"
	APIAudienceGroup                  = "/v2/bot/audienceGroup/%d"
	APIAudienceGroupList              = "/v2/bot/audienceGroup/list"
	APIAudienceGroupAuthorityLevel    = "/v2/bot/audienceGroup/authorityLevel"
)

APIEndpoint constants

Variables

View Source
var (
	ErrInvalidSignature = errors.New("invalid signature")
)

errors

Functions

func IntPtr

func IntPtr(v int) *int

IntPtr is a helper function for using *int values

Types

type APIError

type APIError struct {
	Code     int
	Response *ErrorResponse
}

APIError type

func (*APIError) Error

func (e *APIError) Error() string

Error method

type AccessTokenResponse

type AccessTokenResponse struct {
	AccessToken string `json:"access_token"`
	ExpiresIn   int64  `json:"expires_in"`
	TokenType   string `json:"token_type"`
	KeyID       string `json:"key_id"`
}

AccessTokenResponse type

type AccessTokensResponse

type AccessTokensResponse struct {
	KeyIDs []string `json:"kids"`
}

AccessTokensResponse type

type AccountLink struct {
	Result AccountLinkResult
	Nonce  string
}

AccountLink type

type AccountLinkResult

type AccountLinkResult string

AccountLinkResult type

const (
	AccountLinkResultOK     AccountLinkResult = "ok"
	AccountLinkResultFailed AccountLinkResult = "failed"
)

AccountLinkResult constants

type Action

type Action interface {
	json.Marshaler
}

Action interface

type ActionType

type ActionType string

ActionType type

const (
	ActionTypeURI            ActionType = "uri"
	ActionTypeMessage        ActionType = "message"
	ActionTypePostback       ActionType = "postback"
	ActionTypeDatetimePicker ActionType = "datetimepicker"
	ActionTypeCamera         ActionType = "camera"
	ActionTypeCameraRoll     ActionType = "cameraRoll"
	ActionTypeLocation       ActionType = "location"
)

ActionType constants

type ActivateAudienceGroupCall added in v7.13.0

type ActivateAudienceGroupCall struct {
	AudienceGroupID int `json:"-" validate:"required"`
	// contains filtered or unexported fields
}

ActivateAudienceGroupCall type

func (*ActivateAudienceGroupCall) Do added in v7.13.0

Do method

func (*ActivateAudienceGroupCall) WithContext added in v7.13.0

WithContext method

type AdAccount added in v7.13.0

type AdAccount struct {
	Name string `json:"name,omitempty"`
}

AdAccount type

type AddAudiencesByFileCall added in v7.13.0

type AddAudiencesByFileCall struct {
	AudienceGroupID   int      `json:"audienceGroupId,omitempty" validate:"required"`
	UploadDescription string   `json:"uploadDescription,omitempty"`
	Audiences         []string `json:"audiences,omitempty" validate:"required,max=1500000"`
	// contains filtered or unexported fields
}

AddAudiencesByFileCall type

func (*AddAudiencesByFileCall) Do added in v7.13.0

Do method

func (*AddAudiencesByFileCall) WithContext added in v7.13.0

WithContext method

type AddAudiencesCall added in v7.13.0

type AddAudiencesCall struct {
	AudienceGroupID   int `validate:"required"`
	UploadDescription string
	Audiences         []audience `validate:"required,max=10000"`
	// contains filtered or unexported fields
}

AddAudiencesCall type

func (*AddAudiencesCall) Do added in v7.13.0

func (call *AddAudiencesCall) Do() (*BasicResponse, error)

Do method

func (*AddAudiencesCall) WithContext added in v7.13.0

func (call *AddAudiencesCall) WithContext(ctx context.Context) *AddAudiencesCall

WithContext method

type AddLIFFCall

type AddLIFFCall struct {
	// contains filtered or unexported fields
}

AddLIFFCall type

func (*AddLIFFCall) Do

func (call *AddLIFFCall) Do() (*LIFFIDResponse, error)

Do method

func (*AddLIFFCall) WithContext

func (call *AddLIFFCall) WithContext(ctx context.Context) *AddLIFFCall

WithContext method

type AgeDetail

type AgeDetail struct {
	Age        string  `json:"age"`
	Percentage float64 `json:"percentage"`
}

AgeDetail type

type AgeFilter

type AgeFilter struct {
	Type string  `json:"type"`
	GTE  AgeType `json:"gte,omitempty"` // greater than or equal to
	LT   AgeType `json:"lt,omitempty"`  // less than
}

AgeFilter type

func NewAgeFilter

func NewAgeFilter(gte, lt AgeType) *AgeFilter

NewAgeFilter function

func (*AgeFilter) DemographicFilter

func (*AgeFilter) DemographicFilter()

DemographicFilter implements DemographicFilter interface

type AgeType

type AgeType string

AgeType type

const (
	AgeEmpty AgeType = ""
	Age15    AgeType = "age_15"
	Age20    AgeType = "age_20"
	Age25    AgeType = "age_25"
	Age30    AgeType = "age_30"
	Age35    AgeType = "age_35"
	Age40    AgeType = "age_40"
	Age45    AgeType = "age_45"
	Age50    AgeType = "age_50"
)

AgeType constants

type AppType

type AppType string

AppType type

const (
	AppTypeIOS     AppType = "ios"
	AppTypeAndroid AppType = "android"
)

AppType constants

type AppTypeDetail

type AppTypeDetail struct {
	AppType    string  `json:"appType"`
	Percentage float64 `json:"percentage"`
}

AppTypeDetail type

type AppTypeFilter

type AppTypeFilter struct {
	Type     string    `json:"type"`
	AppTypes []AppType `json:"oneOf"`
}

AppTypeFilter type

func NewAppTypeFilter

func NewAppTypeFilter(appTypes ...AppType) *AppTypeFilter

NewAppTypeFilter function

func (*AppTypeFilter) DemographicFilter

func (*AppTypeFilter) DemographicFilter()

DemographicFilter implements DemographicFilter interface

type AreaDetail

type AreaDetail struct {
	Bounds RichMenuBounds `json:"bounds"`
	Action RichMenuAction `json:"action"`
}

AreaDetail type for areas array

type AreaFilter

type AreaFilter struct {
	Type  string     `json:"type"`
	Areas []AreaType `json:"oneOf"`
}

AreaFilter type

func NewAreaFilter

func NewAreaFilter(areaTypes ...AreaType) *AreaFilter

NewAreaFilter function

func (*AreaFilter) DemographicFilter

func (*AreaFilter) DemographicFilter()

DemographicFilter implements DemographicFilter interface

type AreaType

type AreaType string

AreaType type

const (
	AreaJPHokkaido         AreaType = "jp_01"
	AreaJPAomori           AreaType = "jp_02"
	AreaJPIwate            AreaType = "jp_03"
	AreaJPMiyagi           AreaType = "jp_04"
	AreaJPAkita            AreaType = "jp_05"
	AreaJPYamagata         AreaType = "jp_06"
	AreaJPFukushima        AreaType = "jp_07"
	AreaJPIbaraki          AreaType = "jp_08"
	AreaJPTochigi          AreaType = "jp_09"
	AreaJPGunma            AreaType = "jp_10"
	AreaJPSaitama          AreaType = "jp_11"
	AreaJPChiba            AreaType = "jp_12"
	AreaJPTokyo            AreaType = "jp_13"
	AreaJPKanagawa         AreaType = "jp_14"
	AreaJPNiigata          AreaType = "jp_15"
	AreaJPToyama           AreaType = "jp_16"
	AreaJPIshikawa         AreaType = "jp_17"
	AreaJPFukui            AreaType = "jp_18"
	AreaJPYamanashi        AreaType = "jp_19"
	AreaJPNagano           AreaType = "jp_20"
	AreaJPGifu             AreaType = "jp_21"
	AreaJPShizuoka         AreaType = "jp_22"
	AreaJPAichi            AreaType = "jp_23"
	AreaJPMie              AreaType = "jp_24"
	AreaJPShiga            AreaType = "jp_25"
	AreaJPKyoto            AreaType = "jp_26"
	AreaJPOsaka            AreaType = "jp_27"
	AreaJPHyougo           AreaType = "jp_28"
	AreaJPNara             AreaType = "jp_29"
	AreaJPWakayama         AreaType = "jp_30"
	AreaJPTottori          AreaType = "jp_31"
	AreaJPShimane          AreaType = "jp_32"
	AreaJPOkayama          AreaType = "jp_33"
	AreaJPHiroshima        AreaType = "jp_34"
	AreaJPYamaguchi        AreaType = "jp_35"
	AreaJPTokushima        AreaType = "jp_36"
	AreaJPKagawa           AreaType = "jp_37"
	AreaJPEhime            AreaType = "jp_38"
	AreaJPKouchi           AreaType = "jp_39"
	AreaJPFukuoka          AreaType = "jp_40"
	AreaJPSaga             AreaType = "jp_41"
	AreaJPNagasaki         AreaType = "jp_42"
	AreaJPKumamoto         AreaType = "jp_43"
	AreaJPOita             AreaType = "jp_44"
	AreaJPMiyazaki         AreaType = "jp_45"
	AreaJPKagoshima        AreaType = "jp_46"
	AreaJPOkinawa          AreaType = "jp_47"
	AreaTWTaipeiCity       AreaType = "tw_01"
	AreaTWNewTaipeiCity    AreaType = "tw_02"
	AreaTWTaoyuanCity      AreaType = "tw_03"
	AreaTWTaichungCity     AreaType = "tw_04"
	AreaTWTainanCity       AreaType = "tw_05"
	AreaTWKaohsiungCity    AreaType = "tw_06"
	AreaTWKeelungCity      AreaType = "tw_07"
	AreaTWHsinchuCity      AreaType = "tw_08"
	AreaTWChiayiCity       AreaType = "tw_09"
	AreaTWHsinchuCounty    AreaType = "tw_10"
	AreaTWMiaoliCounty     AreaType = "tw_11"
	AreaTWChanghuaCounty   AreaType = "tw_12"
	AreaTWNantouCounty     AreaType = "tw_13"
	AreaTWYunlinCounty     AreaType = "tw_14"
	AreaTWChiayiCounty     AreaType = "tw_15"
	AreaTWPingtungCounty   AreaType = "tw_16"
	AreaTWYilanCounty      AreaType = "tw_17"
	AreaTWHualienCounty    AreaType = "tw_18"
	AreaTWTaitungCounty    AreaType = "tw_19"
	AreaTWPenghuCounty     AreaType = "tw_20"
	AreaTWKinmenCounty     AreaType = "tw_21"
	AreaTWLienchiangCounty AreaType = "tw_22"
	AreaTHBangkok          AreaType = "th_01"
	AreaTHPattaya          AreaType = "th_02"
	AreaTHNorthern         AreaType = "th_03"
	AreaTHCentral          AreaType = "th_04"
	AreaTHSouthern         AreaType = "th_05"
	AreaTHEastern          AreaType = "th_06"
	AreaTHNorthEastern     AreaType = "th_07"
	AreaTHWestern          AreaType = "th_08"
	AreaIDBali             AreaType = "id_01"
	AreaIDBandung          AreaType = "id_02"
	AreaIDBanjarmasin      AreaType = "id_03"
	AreaIDJabodetabek      AreaType = "id_04"
	AreaIDLainnya          AreaType = "id_05"
	AreaIDMakassar         AreaType = "id_06"
	AreaIDMedan            AreaType = "id_07"
	AreaIDPalembang        AreaType = "id_08"
	AreaIDSamarinda        AreaType = "id_09"
	AreaIDSemarang         AreaType = "id_10"
	AreaIDSurabaya         AreaType = "id_11"
	AreaIDYogyakarta       AreaType = "id_12"
)

AreaType constants

type AreasDetail

type AreasDetail struct {
	Area       string  `json:"area"`
	Percentage float64 `json:"percentage"`
}

AreasDetail type

type AudienceAuthorityLevelType added in v7.13.0

type AudienceAuthorityLevelType string

AudienceAuthorityLevelType type

const (
	// PUBLIC const
	PUBLIC AudienceAuthorityLevelType = "PUBLIC"
	// PRIVATE const
	PRIVATE AudienceAuthorityLevelType = "PRIVATE"
)

func (AudienceAuthorityLevelType) String added in v7.13.0

String method

type AudienceGroup added in v7.13.0

type AudienceGroup struct {
	AudienceGroupID      int    `json:"audienceGroupId,omitempty"`
	CreateRoute          string `json:"createRoute,omitempty"`
	Type                 string `json:"type,omitempty"`
	Description          string `json:"description,omitempty"`
	Status               string `json:"status,omitempty"`
	AudienceCount        int    `json:"audienceCount,omitempty"`
	Created              int64  `json:"created,omitempty"`
	Permission           string `json:"permission,omitempty"`
	IsIfaAudience        bool   `json:"isIfaAudience,omitempty"`
	RequestID            string `json:"requestId,omitempty"`
	ClickURL             string `json:"clickUrl,omitempty"`
	FailedType           string `json:"failedType,omitempty"`
	Activated            int64  `json:"activated,omitempty"`
	InactivatedTimestamp int64  `json:"inactivatedTimestamp,omitempty"`
	ExpireTimestamp      int64  `json:"expireTimestamp,omitempty"`
}

AudienceGroup type

type AudienceObject

type AudienceObject struct {
	Type    string `json:"type"`
	GroupID int    `json:"audienceGroupId"`
}

AudienceObject type is created to be used with specific recipient objects

func NewAudienceObject

func NewAudienceObject(groupID int) *AudienceObject

NewAudienceObject function

func (*AudienceObject) Recipient

func (*AudienceObject) Recipient()

Recipient implements Recipient interface

type AudienceStatusType added in v7.13.0

type AudienceStatusType string

AudienceStatusType type

const (
	// INPROGRESS const
	INPROGRESS AudienceStatusType = "IN_PROGRESS"
	// READY const
	READY AudienceStatusType = "READY"
	// FAILED const
	FAILED AudienceStatusType = "FAILED"
	// EXPIRED const
	EXPIRED AudienceStatusType = "EXPIRED"
	// INACTIVE const
	INACTIVE AudienceStatusType = "INACTIVE"
	// ACTIVATING const
	ACTIVATING AudienceStatusType = "ACTIVATING"
)

func (AudienceStatusType) String added in v7.13.0

func (a AudienceStatusType) String() string

String method

type AudioMessage

type AudioMessage struct {
	ID                 string
	OriginalContentURL string
	Duration           int
	ContentProvider    *ContentProvider
	// contains filtered or unexported fields
}

AudioMessage type

func NewAudioMessage

func NewAudioMessage(originalContentURL string, duration int) *AudioMessage

NewAudioMessage function

func (*AudioMessage) AddEmoji

func (m *AudioMessage) AddEmoji(*Emoji) SendingMessage

AddEmoji method of AudioMessage

func (*AudioMessage) MarshalJSON

func (m *AudioMessage) MarshalJSON() ([]byte, error)

MarshalJSON method of AudioMessage

func (*AudioMessage) Message

func (*AudioMessage) Message()

Message implements Message interface

func (*AudioMessage) Type added in v7.10.0

func (m *AudioMessage) Type() MessageType

Type implements Message interface

func (*AudioMessage) WithQuickReplies

func (m *AudioMessage) WithQuickReplies(items *QuickReplyItems) SendingMessage

WithQuickReplies method of AudioMessage

func (*AudioMessage) WithSender

func (m *AudioMessage) WithSender(sender *Sender) SendingMessage

WithSender method of AudioMessage

type BasicResponse

type BasicResponse struct {
	RequestID string
}

BasicResponse type

type Beacon

type Beacon struct {
	Hwid          string
	Type          BeaconEventType
	DeviceMessage []byte
}

Beacon type

type BeaconEventType

type BeaconEventType string

BeaconEventType type

const (
	BeaconEventTypeEnter  BeaconEventType = "enter"
	BeaconEventTypeLeave  BeaconEventType = "leave"
	BeaconEventTypeBanner BeaconEventType = "banner"
	BeaconEventTypeStay   BeaconEventType = "stay"
)

BeaconEventType constants

type BlockStyle

type BlockStyle struct {
	BackgroundColor string `json:"backgroundColor,omitempty"`
	Separator       bool   `json:"separator,omitempty"`
	SeparatorColor  string `json:"separatorColor,omitempty"`
}

BlockStyle type

type BotInfoResponse

type BotInfoResponse struct {
	UserID         string         `json:"userId"`
	BasicID        string         `json:"basicId"`
	PremiumID      string         `json:"premiumId"`
	DisplayName    string         `json:"displayName"`
	PictureURL     string         `json:"pictureUrl"`
	ChatMode       ChatMode       `json:"chatMode"`
	MarkAsReadMode MarkAsReadMode `json:"markAsReadMode"`
}

BotInfoResponse type

type BoxBackground

type BoxBackground struct {
	Type           FlexBoxBackgroundType `json:"type,omitempty"`
	Angle          string                `json:"angle,omitempty"`
	StartColor     string                `json:"startColor,omitempty"`
	EndColor       string                `json:"endColor,omitempty"`
	CenterColor    string                `json:"centerColor,omitempty"`
	CenterPosition string                `json:"centerPosition,omitempty"`
}

BoxBackground type

type BoxComponent

type BoxComponent struct {
	Type            FlexComponentType
	Layout          FlexBoxLayoutType
	Position        FlexComponentPositionType
	Contents        []FlexComponent
	Flex            *int
	Spacing         FlexComponentSpacingType
	Margin          FlexComponentMarginType
	Width           string
	MaxWidth        string
	Height          string
	MaxHeight       string
	CornerRadius    FlexComponentCornerRadiusType
	BackgroundColor string
	BorderColor     string
	BorderWidth     string
	Action          TemplateAction
	JustifyContent  FlexComponentJustifyContentType
	AlignItems      FlexComponentAlignItemsType
	Background      *BoxBackground
	OffsetTop       FlexComponentOffsetType
	OffsetBottom    FlexComponentOffsetType
	OffsetStart     FlexComponentOffsetType
	OffsetEnd       FlexComponentOffsetType
	PaddingAll      FlexComponentPaddingType
	PaddingTop      FlexComponentPaddingType
	PaddingBottom   FlexComponentPaddingType
	PaddingStart    FlexComponentPaddingType
	PaddingEnd      FlexComponentPaddingType
}

BoxComponent type

func (*BoxComponent) FlexComponent

func (*BoxComponent) FlexComponent()

FlexComponent implements FlexComponent interface

func (*BoxComponent) MarshalJSON

func (c *BoxComponent) MarshalJSON() ([]byte, error)

MarshalJSON method of BoxComponent

func (*BoxComponent) UnmarshalJSON

func (c *BoxComponent) UnmarshalJSON(data []byte) error

UnmarshalJSON method for BoxComponent

type BroadcastMessageCall

type BroadcastMessageCall struct {
	// contains filtered or unexported fields
}

BroadcastMessageCall type

func (*BroadcastMessageCall) Do

func (call *BroadcastMessageCall) Do() (*BasicResponse, error)

Do method

func (*BroadcastMessageCall) WithContext

func (call *BroadcastMessageCall) WithContext(ctx context.Context) *BroadcastMessageCall

WithContext method

func (*BroadcastMessageCall) WithRetryKey

func (call *BroadcastMessageCall) WithRetryKey(retryKey string) *BroadcastMessageCall

WithRetryKey method will set retry key string (UUID) on BroadcastMessage.

type BubbleContainer

type BubbleContainer struct {
	Type      FlexContainerType
	Size      FlexBubbleSizeType
	Direction FlexBubbleDirectionType
	Header    *BoxComponent
	Hero      FlexComponent
	Body      *BoxComponent
	Footer    *BoxComponent
	Styles    *BubbleStyle
}

BubbleContainer type

func (*BubbleContainer) FlexContainer

func (*BubbleContainer) FlexContainer()

FlexContainer implements FlexContainer interface

func (*BubbleContainer) MarshalJSON

func (c *BubbleContainer) MarshalJSON() ([]byte, error)

MarshalJSON method of BubbleContainer

func (*BubbleContainer) UnmarshalJSON

func (c *BubbleContainer) UnmarshalJSON(b []byte) error

UnmarshalJSON method of BubbleContainer

type BubbleStyle

type BubbleStyle struct {
	Header *BlockStyle `json:"header,omitempty"`
	Hero   *BlockStyle `json:"hero,omitempty"`
	Body   *BlockStyle `json:"body,omitempty"`
	Footer *BlockStyle `json:"footer,omitempty"`
}

BubbleStyle type

type BulkLinkRichMenuCall

type BulkLinkRichMenuCall struct {
	// contains filtered or unexported fields
}

BulkLinkRichMenuCall type

func (*BulkLinkRichMenuCall) Do

func (call *BulkLinkRichMenuCall) Do() (*BasicResponse, error)

Do method

func (*BulkLinkRichMenuCall) WithContext

func (call *BulkLinkRichMenuCall) WithContext(ctx context.Context) *BulkLinkRichMenuCall

WithContext method

type BulkUnlinkRichMenuCall

type BulkUnlinkRichMenuCall struct {
	// contains filtered or unexported fields
}

BulkUnlinkRichMenuCall type

func (*BulkUnlinkRichMenuCall) Do

Do method

func (*BulkUnlinkRichMenuCall) WithContext

WithContext method

type ButtonComponent

ButtonComponent type

func (*ButtonComponent) FlexComponent

func (*ButtonComponent) FlexComponent()

FlexComponent implements FlexComponent interface

func (*ButtonComponent) MarshalJSON

func (c *ButtonComponent) MarshalJSON() ([]byte, error)

MarshalJSON method of ButtonComponent

func (*ButtonComponent) UnmarshalJSON

func (c *ButtonComponent) UnmarshalJSON(data []byte) error

UnmarshalJSON method for ButtonComponent

type ButtonsTemplate

type ButtonsTemplate struct {
	ThumbnailImageURL    string
	ImageAspectRatio     ImageAspectRatioType
	ImageSize            ImageSizeType
	ImageBackgroundColor string
	Title                string
	Text                 string
	Actions              []TemplateAction
	DefaultAction        TemplateAction
}

ButtonsTemplate type

func NewButtonsTemplate

func NewButtonsTemplate(thumbnailImageURL, title, text string, actions ...TemplateAction) *ButtonsTemplate

NewButtonsTemplate function `thumbnailImageURL` and `title` are optional. they can be empty.

func (*ButtonsTemplate) MarshalJSON

func (t *ButtonsTemplate) MarshalJSON() ([]byte, error)

MarshalJSON method of ButtonsTemplate

func (*ButtonsTemplate) Template

func (*ButtonsTemplate) Template()

Template implements Template interface

func (*ButtonsTemplate) UnmarshalJSON added in v7.21.0

func (t *ButtonsTemplate) UnmarshalJSON(data []byte) error

UnmarshalJSON method for ButtonsTemplate

func (*ButtonsTemplate) WithDefaultAction

func (t *ButtonsTemplate) WithDefaultAction(defaultAction TemplateAction) *ButtonsTemplate

WithDefaultAction method, ButtonsTemplate can set defaultAction

func (*ButtonsTemplate) WithImageOptions

func (t *ButtonsTemplate) WithImageOptions(imageAspectRatio ImageAspectRatioType, imageSize ImageSizeType, imageBackgroundColor string) *ButtonsTemplate

WithImageOptions method, ButtonsTemplate can set imageAspectRatio, imageSize and imageBackgroundColor

type CameraAction

type CameraAction struct {
	Label string
}

CameraAction type

func NewCameraAction

func NewCameraAction(label string) *CameraAction

NewCameraAction function

func (*CameraAction) MarshalJSON

func (a *CameraAction) MarshalJSON() ([]byte, error)

MarshalJSON method of CameraAction

func (*CameraAction) QuickReplyAction

func (*CameraAction) QuickReplyAction()

QuickReplyAction implements QuickReplyAction interface

type CameraRollAction

type CameraRollAction struct {
	Label string
}

CameraRollAction type

func NewCameraRollAction

func NewCameraRollAction(label string) *CameraRollAction

NewCameraRollAction function

func (*CameraRollAction) MarshalJSON

func (a *CameraRollAction) MarshalJSON() ([]byte, error)

MarshalJSON method of CameraRollAction

func (*CameraRollAction) QuickReplyAction

func (*CameraRollAction) QuickReplyAction()

QuickReplyAction implements QuickReplyAction interface

type CancelDefaultRichMenuCall

type CancelDefaultRichMenuCall struct {
	// contains filtered or unexported fields
}

CancelDefaultRichMenuCall type

func (*CancelDefaultRichMenuCall) Do

Do method

func (*CancelDefaultRichMenuCall) WithContext

WithContext method

type CarouselColumn

type CarouselColumn struct {
	ThumbnailImageURL    string           `json:"thumbnailImageUrl,omitempty"`
	ImageBackgroundColor string           `json:"imageBackgroundColor,omitempty"`
	Title                string           `json:"title,omitempty"`
	Text                 string           `json:"text"`
	Actions              []TemplateAction `json:"actions"`
	DefaultAction        TemplateAction   `json:"defaultAction,omitempty"`
}

CarouselColumn type

func NewCarouselColumn

func NewCarouselColumn(thumbnailImageURL, title, text string, actions ...TemplateAction) *CarouselColumn

NewCarouselColumn function `thumbnailImageURL` and `title` are optional. they can be empty.

func (*CarouselColumn) WithDefaultAction

func (t *CarouselColumn) WithDefaultAction(defaultAction TemplateAction) *CarouselColumn

WithDefaultAction method, CarouselColumn can set defaultAction

func (*CarouselColumn) WithImageOptions

func (t *CarouselColumn) WithImageOptions(imageBackgroundColor string) *CarouselColumn

WithImageOptions method, CarouselColumn can set imageBackgroundColor

type CarouselContainer

type CarouselContainer struct {
	Type     FlexContainerType
	Contents []*BubbleContainer
}

CarouselContainer type

func (*CarouselContainer) FlexContainer

func (*CarouselContainer) FlexContainer()

FlexContainer implements FlexContainer interface

func (*CarouselContainer) MarshalJSON

func (c *CarouselContainer) MarshalJSON() ([]byte, error)

MarshalJSON method of CarouselContainer

type CarouselTemplate

type CarouselTemplate struct {
	Columns          []*CarouselColumn
	ImageAspectRatio ImageAspectRatioType
	ImageSize        ImageSizeType
}

CarouselTemplate type

func NewCarouselTemplate

func NewCarouselTemplate(columns ...*CarouselColumn) *CarouselTemplate

NewCarouselTemplate function

func (*CarouselTemplate) MarshalJSON

func (t *CarouselTemplate) MarshalJSON() ([]byte, error)

MarshalJSON method of CarouselTemplate

func (*CarouselTemplate) Template

func (*CarouselTemplate) Template()

Template implements Template interface

func (*CarouselTemplate) UnmarshalJSON added in v7.21.0

func (t *CarouselTemplate) UnmarshalJSON(data []byte) error

UnmarshalJSON method for CarouselTemplate

func (*CarouselTemplate) WithImageOptions

func (t *CarouselTemplate) WithImageOptions(imageAspectRatio ImageAspectRatioType, imageSize ImageSizeType) *CarouselTemplate

WithImageOptions method, CarouselTemplate can set imageAspectRatio and imageSize

type ChangeAudienceGroupAuthorityLevelCall added in v7.13.0

type ChangeAudienceGroupAuthorityLevelCall struct {
	AuthorityLevel AudienceAuthorityLevelType `validate:"required"`
	// contains filtered or unexported fields
}

ChangeAudienceGroupAuthorityLevelCall type

func (*ChangeAudienceGroupAuthorityLevelCall) Do added in v7.13.0

Do method

func (*ChangeAudienceGroupAuthorityLevelCall) WithContext added in v7.13.0

WithContext method

type ChatMode

type ChatMode string

ChatMode type

const (
	ChatModeChat ChatMode = "chat"
	ChatModeBot  ChatMode = "bot"
)

ChatMode constants

type ClickAudienceGroupCall added in v7.13.0

type ClickAudienceGroupCall struct {
	Description string `validate:"required,max=120"`
	RequestID   string `validate:"required"`
	ClickURL    string `validate:"max=2000"`
	// contains filtered or unexported fields
}

ClickAudienceGroupCall type

func (*ClickAudienceGroupCall) Do added in v7.13.0

Do method

func (*ClickAudienceGroupCall) WithContext added in v7.13.0

WithContext method

type ClickAudienceGroupResponse added in v7.13.0

type ClickAudienceGroupResponse struct {
	XRequestID        string `json:"-"` // from header X-Line-Request-Id
	AcceptedRequestID string `json:"-"`
	AudienceGroupID   int    `json:"audienceGroupId,omitempty"`
	CreateRoute       string `json:"createRoute,omitempty"`
	Type              string `json:"type,omitempty"`
	Description       string `json:"description,omitempty"`
	Created           int64  `json:"created,omitempty"`
	Permission        string `json:"permission,omitempty"`
	ExpireTimestamp   int64  `json:"expireTimestamp,omitempty"`
	IsIfaAudience     bool   `json:"isIfaAudience,omitempty"`
	RequestID         string `json:"requestId,omitempty"`
	ClickURL          string `json:"clickUrl,omitempty"`
}

ClickAudienceGroupResponse type

type ClickDetail

type ClickDetail struct {
	Seq                  int64  `json:"seq"`
	URL                  string `json:"url"`
	Click                int64  `json:"click"`
	UniqueClick          int64  `json:"uniqueClick"`
	UniqueClickOfRequest int64  `json:"uniqueClickOfRequest"`
}

ClickDetail type

type Client

type Client struct {
	// contains filtered or unexported fields
}

Client type

func New

func New(channelSecret, channelToken string, options ...ClientOption) (*Client, error)

New returns a new bot client instance.

func (*Client) ActivateAudienceGroup added in v7.13.0

func (client *Client) ActivateAudienceGroup(audienceGroupID int) *ActivateAudienceGroupCall

ActivateAudienceGroup method

func (*Client) AddAudiences added in v7.13.0

func (client *Client) AddAudiences(audienceGroupID int, audiences []string, options ...IAddAudiencesOption) *AddAudiencesCall

AddAudiences method

func (*Client) AddAudiencesByFile added in v7.13.0

func (client *Client) AddAudiencesByFile(audienceGroupID int, audiences []string, options ...IAddAudiencesByFileOption) *AddAudiencesByFileCall

AddAudiencesByFile method

func (*Client) AddLIFF

func (client *Client) AddLIFF(app LIFFApp) *AddLIFFCall

AddLIFF method

func (*Client) BroadcastMessage

func (client *Client) BroadcastMessage(messages ...SendingMessage) *BroadcastMessageCall

BroadcastMessage method

func (*Client) BulkLinkRichMenu

func (client *Client) BulkLinkRichMenu(richMenuID string, userIDs ...string) *BulkLinkRichMenuCall

BulkLinkRichMenu method

func (*Client) BulkUnlinkRichMenu

func (client *Client) BulkUnlinkRichMenu(userIDs ...string) *BulkUnlinkRichMenuCall

BulkUnlinkRichMenu method

func (*Client) CancelDefaultRichMenu

func (client *Client) CancelDefaultRichMenu() *CancelDefaultRichMenuCall

CancelDefaultRichMenu method

func (*Client) ChangeAudienceGroupAuthorityLevel added in v7.13.0

func (client *Client) ChangeAudienceGroupAuthorityLevel(authorityLevel AudienceAuthorityLevelType) *ChangeAudienceGroupAuthorityLevelCall

ChangeAudienceGroupAuthorityLevel method

func (*Client) ClickAudienceGroup added in v7.13.0

func (client *Client) ClickAudienceGroup(description, requestID string, options ...IClickAudienceGroupOption) *ClickAudienceGroupCall

ClickAudienceGroup method

func (*Client) CreateRichMenu

func (client *Client) CreateRichMenu(richMenu RichMenu) *CreateRichMenuCall

CreateRichMenu method

func (*Client) CreateRichMenuAlias added in v7.10.0

func (client *Client) CreateRichMenuAlias(richMenuAliasID, richMenuID string) *CreateRichMenuAliasCall

CreateRichMenuAlias method

func (*Client) DeleteAudienceGroup added in v7.13.0

func (client *Client) DeleteAudienceGroup(audienceGroupID int) *DeleteAudienceGroupCall

DeleteAudienceGroup method

func (*Client) DeleteLIFF

func (client *Client) DeleteLIFF(liffID string) *DeleteLIFFCall

DeleteLIFF method

func (*Client) DeleteRichMenu

func (client *Client) DeleteRichMenu(richMenuID string) *DeleteRichMenuCall

DeleteRichMenu method

func (*Client) DeleteRichMenuAlias added in v7.10.0

func (client *Client) DeleteRichMenuAlias(richMenuAliasID string) *DeleteRichMenuAliasCall

DeleteRichMenuAlias method

func (*Client) DownloadRichMenuImage

func (client *Client) DownloadRichMenuImage(richMenuID string) *DownloadRichMenuImageCall

DownloadRichMenuImage method

func (*Client) GetAccessTokensV2

func (client *Client) GetAccessTokensV2(clientAssertion string) *GetAccessTokensV2Call

GetAccessTokensV2 method

func (*Client) GetAudienceGroup added in v7.13.0

func (client *Client) GetAudienceGroup(audienceGroupID int) *GetAudienceGroupCall

GetAudienceGroup method

func (*Client) GetAudienceGroupAuthorityLevel added in v7.13.0

func (client *Client) GetAudienceGroupAuthorityLevel() *GetAudienceGroupAuthorityLevelCall

GetAudienceGroupAuthorityLevel method

func (*Client) GetBotInfo

func (client *Client) GetBotInfo() *GetBotInfoCall

GetBotInfo method

func (*Client) GetDefaultRichMenu

func (client *Client) GetDefaultRichMenu() *GetDefaultRichMenuCall

GetDefaultRichMenu method

func (*Client) GetFollowerIDs

func (client *Client) GetFollowerIDs(continuationToken string) *GetFollowerIDsCall

GetFollowerIDs method

func (*Client) GetFriendDemographics

func (client *Client) GetFriendDemographics() *GetFriendDemographicsCall

GetFriendDemographics method

func (*Client) GetGroupMemberCount

func (client *Client) GetGroupMemberCount(groupID string) *GetGroupMemberCountCall

GetGroupMemberCount method

func (*Client) GetGroupMemberIDs

func (client *Client) GetGroupMemberIDs(groupID, continuationToken string) *GetGroupMemberIDsCall

GetGroupMemberIDs method

func (*Client) GetGroupMemberProfile

func (client *Client) GetGroupMemberProfile(groupID, userID string) *GetGroupMemberProfileCall

GetGroupMemberProfile method

func (*Client) GetGroupSummary

func (client *Client) GetGroupSummary(groupID string) *GetGroupSummaryCall

GetGroupSummary method

func (*Client) GetLIFF

func (client *Client) GetLIFF() *GetLIFFAllCall

GetLIFF method

func (*Client) GetMessageConsumption

func (client *Client) GetMessageConsumption() *GetMessageConsumptionCall

GetMessageConsumption method

func (*Client) GetMessageContent

func (client *Client) GetMessageContent(messageID string) *GetMessageContentCall

GetMessageContent method

func (*Client) GetMessageQuota

func (client *Client) GetMessageQuota() *GetMessageQuotaCall

GetMessageQuota method

func (*Client) GetMessageQuotaConsumption

func (client *Client) GetMessageQuotaConsumption() *GetMessageQuotaCall

GetMessageQuotaConsumption method

func (*Client) GetNumberBroadcastMessages

func (client *Client) GetNumberBroadcastMessages(date string) *GetNumberMessagesCall

GetNumberBroadcastMessages method

func (*Client) GetNumberFollowers

func (client *Client) GetNumberFollowers(date string) *GetNumberFollowersCall

GetNumberFollowers method

func (*Client) GetNumberMessagesDelivery

func (client *Client) GetNumberMessagesDelivery(date string) *GetNumberMessagesDeliveryCall

GetNumberMessagesDelivery method

func (*Client) GetNumberMulticastMessages

func (client *Client) GetNumberMulticastMessages(date string) *GetNumberMessagesCall

GetNumberMulticastMessages method

func (*Client) GetNumberPushMessages

func (client *Client) GetNumberPushMessages(date string) *GetNumberMessagesCall

GetNumberPushMessages method

func (*Client) GetNumberReplyMessages

func (client *Client) GetNumberReplyMessages(date string) *GetNumberMessagesCall

GetNumberReplyMessages method

func (*Client) GetProfile

func (client *Client) GetProfile(userID string) *GetProfileCall

GetProfile method

func (*Client) GetProgressNarrowcastMessages

func (client *Client) GetProgressNarrowcastMessages(requestID string) *GetProgressMessagesCall

GetProgressNarrowcastMessages method

func (*Client) GetRichMenu

func (client *Client) GetRichMenu(richMenuID string) *GetRichMenuCall

GetRichMenu method

func (*Client) GetRichMenuAlias added in v7.10.0

func (client *Client) GetRichMenuAlias(richMenuAliasID string) *GetRichMenuAliasCall

GetRichMenuAlias method

func (*Client) GetRichMenuAliasList added in v7.10.0

func (client *Client) GetRichMenuAliasList() *GetRichMenuAliasListCall

GetRichMenuAliasList method

func (*Client) GetRichMenuList

func (client *Client) GetRichMenuList() *GetRichMenuListCall

GetRichMenuList method

func (*Client) GetRoomMemberCount

func (client *Client) GetRoomMemberCount(roomID string) *GetRoomMemberCountCall

GetRoomMemberCount method

func (*Client) GetRoomMemberIDs

func (client *Client) GetRoomMemberIDs(roomID, continuationToken string) *GetRoomMemberIDsCall

GetRoomMemberIDs method

func (*Client) GetRoomMemberProfile

func (client *Client) GetRoomMemberProfile(roomID, userID string) *GetRoomMemberProfileCall

GetRoomMemberProfile method

func (*Client) GetUserInteractionStats

func (client *Client) GetUserInteractionStats(requestID string) *GetUserInteractionStatsCall

GetUserInteractionStats method

func (*Client) GetUserRichMenu

func (client *Client) GetUserRichMenu(userID string) *GetUserRichMenuCall

GetUserRichMenu method

func (*Client) GetWebhookInfo

func (client *Client) GetWebhookInfo() *GetWebhookInfo

GetWebhookInfo method

func (*Client) IMPAudienceGroup added in v7.13.0

func (client *Client) IMPAudienceGroup(description, requestID string) *IMPAudienceGroupCall

IMPAudienceGroup method

func (*Client) IssueAccessToken

func (client *Client) IssueAccessToken(channelID, channelSecret string) *IssueAccessTokenCall

IssueAccessToken method

func (*Client) IssueAccessTokenV2

func (client *Client) IssueAccessTokenV2(clientAssertion string) *IssueAccessTokenV2Call

IssueAccessTokenV2 method

func (*Client) IssueLinkToken

func (client *Client) IssueLinkToken(userID string) *IssueLinkTokenCall

IssueLinkToken method https://developers.line.me/en/reference/messaging-api/#issue-link-token

func (*Client) LeaveGroup

func (client *Client) LeaveGroup(groupID string) *LeaveGroupCall

LeaveGroup method

func (*Client) LeaveRoom

func (client *Client) LeaveRoom(roomID string) *LeaveRoomCall

LeaveRoom method

func (*Client) LinkUserRichMenu

func (client *Client) LinkUserRichMenu(userID, richMenuID string) *LinkUserRichMenuCall

LinkUserRichMenu method

func (*Client) ListAudienceGroup added in v7.13.0

func (client *Client) ListAudienceGroup(page int, options ...IListAudienceGroupOption) *ListAudienceGroupCall

ListAudienceGroup method

func (*Client) Multicast

func (client *Client) Multicast(to []string, messages ...SendingMessage) *MulticastCall

Multicast method

func (*Client) Narrowcast

func (client *Client) Narrowcast(messages ...SendingMessage) *NarrowcastCall

Narrowcast method

func (*Client) NewRawCall

func (client *Client) NewRawCall(method string, endpoint string) (*RawCall, error)

NewRawCall method

func (*Client) NewRawCallWithBody

func (client *Client) NewRawCallWithBody(method string, endpoint string, body io.Reader) (*RawCall, error)

NewRawCallWithBody method

func (*Client) ParseRequest

func (client *Client) ParseRequest(r *http.Request) ([]*Event, error)

ParseRequest method

func (*Client) PushMessage

func (client *Client) PushMessage(to string, messages ...SendingMessage) *PushMessageCall

PushMessage method

func (*Client) ReplyMessage

func (client *Client) ReplyMessage(replyToken string, messages ...SendingMessage) *ReplyMessageCall

ReplyMessage method

func (*Client) RevokeAccessToken

func (client *Client) RevokeAccessToken(accessToken string) *RevokeAccessTokenCall

RevokeAccessToken method

func (*Client) RevokeAccessTokenV2

func (client *Client) RevokeAccessTokenV2(channelID, channelSecret, accessToken string) *RevokeAccessTokenV2Call

RevokeAccessTokenV2 method

func (*Client) SetDefaultRichMenu

func (client *Client) SetDefaultRichMenu(richMenuID string) *SetDefaultRichMenuCall

SetDefaultRichMenu method

func (*Client) SetWebhookEndpointURL

func (client *Client) SetWebhookEndpointURL(webhookEndpoint string) *SetWebhookEndpointURLCall

SetWebhookEndpointURL method

func (*Client) TestWebhook

func (client *Client) TestWebhook() *TestWebhook

TestWebhook method

func (*Client) UnlinkUserRichMenu

func (client *Client) UnlinkUserRichMenu(userID string) *UnlinkUserRichMenuCall

UnlinkUserRichMenu method

func (*Client) UpdateAudienceGroupDescription added in v7.13.0

func (client *Client) UpdateAudienceGroupDescription(audienceGroupID int, description string) *UpdateAudienceGroupDescriptionCall

UpdateAudienceGroupDescription method

func (*Client) UpdateLIFF

func (client *Client) UpdateLIFF(liffID string, app LIFFApp) *UpdateLIFFCall

UpdateLIFF method

func (*Client) UpdateRichMenuAlias added in v7.10.0

func (client *Client) UpdateRichMenuAlias(richMenuAliasID, richMenuID string) *UpdateRichMenuAliasCall

UpdateRichMenuAlias method

func (*Client) UploadAudienceGroup added in v7.13.0

func (client *Client) UploadAudienceGroup(description string, options ...IUploadAudienceGroupOption) *UploadAudienceGroupCall

UploadAudienceGroup method

func (*Client) UploadAudienceGroupByFile added in v7.13.0

func (client *Client) UploadAudienceGroupByFile(description string, audiences []string, options ...IUploadAudienceGroupByFileOption) *UploadAudienceGroupByFileCall

UploadAudienceGroupByFile method

func (*Client) UploadRichMenuImage

func (client *Client) UploadRichMenuImage(richMenuID, imgPath string) *UploadRichMenuImageCall

UploadRichMenuImage method

func (*Client) ValidateBroadcastMessage added in v7.18.0

func (client *Client) ValidateBroadcastMessage(messages ...SendingMessage) *ValidateBroadcastMessageCall

ValidateBroadcastMessage method

func (*Client) ValidateMulticastMessage added in v7.18.0

func (client *Client) ValidateMulticastMessage(messages ...SendingMessage) *ValidateMulticastMessageCall

ValidateMulticastMessage method

func (*Client) ValidateNarrowcastMessage added in v7.18.0

func (client *Client) ValidateNarrowcastMessage(messages ...SendingMessage) *ValidateNarrowcastMessageCall

ValidateNarrowcastMessage method

func (*Client) ValidatePushMessage added in v7.18.0

func (client *Client) ValidatePushMessage(messages ...SendingMessage) *ValidatePushMessageCall

ValidatePushMessage method

func (*Client) ValidateReplyMessage added in v7.18.0

func (client *Client) ValidateReplyMessage(messages ...SendingMessage) *ValidateReplyMessageCall

ValidateReplyMessage method

func (*Client) ValidateRichMenuObject added in v7.17.0

func (client *Client) ValidateRichMenuObject(richMenu RichMenu) *ValidateRichMenuObjectCall

ValidateRichMenuObject method

func (*Client) VerifyAccessToken added in v7.19.0

func (client *Client) VerifyAccessToken(accessToken string) *VerifyAccessTokenCall

VerifyAccessToken method

type ClientOption

type ClientOption func(*Client) error

ClientOption type

func WithEndpointBase

func WithEndpointBase(endpointBase string) ClientOption

WithEndpointBase function

func WithEndpointBaseData

func WithEndpointBaseData(endpointBaseData string) ClientOption

WithEndpointBaseData function

func WithHTTPClient

func WithHTTPClient(c *http.Client) ClientOption

WithHTTPClient function

type ConfirmTemplate

type ConfirmTemplate struct {
	Text    string
	Actions []TemplateAction
}

ConfirmTemplate type

func NewConfirmTemplate

func NewConfirmTemplate(text string, left, right TemplateAction) *ConfirmTemplate

NewConfirmTemplate function

func (*ConfirmTemplate) MarshalJSON

func (t *ConfirmTemplate) MarshalJSON() ([]byte, error)

MarshalJSON method of ConfirmTemplate

func (*ConfirmTemplate) Template

func (*ConfirmTemplate) Template()

Template implements Template interface

func (*ConfirmTemplate) UnmarshalJSON added in v7.21.0

func (t *ConfirmTemplate) UnmarshalJSON(data []byte) error

UnmarshalJSON method for ConfirmTemplate

type ContentProvider added in v7.11.0

type ContentProvider struct {
	Type               ContentProviderType `json:"type"`
	OriginalContentURL string              `json:"originalContentUrl,omitempty"`
	PreviewImageURL    string              `json:"previewImageUrl,omitempty"`
}

ContentProvider type

type ContentProviderType added in v7.11.0

type ContentProviderType string

ContentProviderType type

const (
	ContentProviderTypeLINE     ContentProviderType = "line"
	ContentProviderTypeExternal ContentProviderType = "external"
)

ContentProviderType constants

type CreateRichMenuAliasCall added in v7.10.0

type CreateRichMenuAliasCall struct {
	// contains filtered or unexported fields
}

CreateRichMenuAliasCall type

func (*CreateRichMenuAliasCall) Do added in v7.10.0

Do method

func (*CreateRichMenuAliasCall) WithContext added in v7.10.0

WithContext method

type CreateRichMenuCall

type CreateRichMenuCall struct {
	// contains filtered or unexported fields
}

CreateRichMenuCall type

func (*CreateRichMenuCall) Do

Do method

func (*CreateRichMenuCall) WithContext

func (call *CreateRichMenuCall) WithContext(ctx context.Context) *CreateRichMenuCall

WithContext method

type DatetimePickerAction

type DatetimePickerAction struct {
	Label   string
	Data    string
	Mode    string
	Initial string
	Max     string
	Min     string
}

DatetimePickerAction type

func NewDatetimePickerAction

func NewDatetimePickerAction(label, data, mode, initial, max, min string) *DatetimePickerAction

NewDatetimePickerAction function

func (*DatetimePickerAction) MarshalJSON

func (a *DatetimePickerAction) MarshalJSON() ([]byte, error)

MarshalJSON method of DatetimePickerAction

func (*DatetimePickerAction) QuickReplyAction

func (*DatetimePickerAction) QuickReplyAction()

QuickReplyAction implements QuickReplyAction interface

func (*DatetimePickerAction) TemplateAction

func (*DatetimePickerAction) TemplateAction()

TemplateAction implements TemplateAction interface

type DeleteAudienceGroupCall added in v7.13.0

type DeleteAudienceGroupCall struct {
	AudienceGroupID int `json:"-" validate:"required"`
	// contains filtered or unexported fields
}

DeleteAudienceGroupCall type

func (*DeleteAudienceGroupCall) Do added in v7.13.0

Do method

func (*DeleteAudienceGroupCall) WithContext added in v7.13.0

WithContext method

type DeleteLIFFCall

type DeleteLIFFCall struct {
	// contains filtered or unexported fields
}

DeleteLIFFCall type

func (*DeleteLIFFCall) Do

func (call *DeleteLIFFCall) Do() (*BasicResponse, error)

Do method

func (*DeleteLIFFCall) WithContext

func (call *DeleteLIFFCall) WithContext(ctx context.Context) *DeleteLIFFCall

WithContext method

type DeleteRichMenuAliasCall added in v7.10.0

type DeleteRichMenuAliasCall struct {
	// contains filtered or unexported fields
}

DeleteRichMenuAliasCall type

func (*DeleteRichMenuAliasCall) Do added in v7.10.0

Do method

func (*DeleteRichMenuAliasCall) WithContext added in v7.10.0

WithContext method

type DeleteRichMenuCall

type DeleteRichMenuCall struct {
	// contains filtered or unexported fields
}

DeleteRichMenuCall type

func (*DeleteRichMenuCall) Do

func (call *DeleteRichMenuCall) Do() (*BasicResponse, error)

Do method

func (*DeleteRichMenuCall) WithContext

func (call *DeleteRichMenuCall) WithContext(ctx context.Context) *DeleteRichMenuCall

WithContext method

type DeliveryContext added in v7.15.0

type DeliveryContext struct {
	IsRedelivery bool `json:"isRedelivery"`
}

DeliveryContext type

type DeliveryType

type DeliveryType string

DeliveryType type

const (
	DeliveryTypeMulticast DeliveryType = "multicast"
	DeliveryTypePush      DeliveryType = "push"
	DeliveryTypeReply     DeliveryType = "reply"
	DeliveryTypeBroadcast DeliveryType = "broadcast"
)

DeliveryType constants

type DemographicFilter

type DemographicFilter interface {
	DemographicFilter()
}

DemographicFilter interface

type DemographicFilterOperator

type DemographicFilterOperator struct {
	ConditionAnd []DemographicFilter `json:"and,omitempty"`
	ConditionOr  []DemographicFilter `json:"or,omitempty"`
	ConditionNot DemographicFilter   `json:"not,omitempty"`
}

DemographicFilterOperator struct

func DemographicFilterOperatorAnd

func DemographicFilterOperatorAnd(conditions ...DemographicFilter) *DemographicFilterOperator

DemographicFilterOperatorAnd method

func DemographicFilterOperatorNot

func DemographicFilterOperatorNot(condition DemographicFilter) *DemographicFilterOperator

DemographicFilterOperatorNot method

func DemographicFilterOperatorOr

func DemographicFilterOperatorOr(conditions ...DemographicFilter) *DemographicFilterOperator

DemographicFilterOperatorOr method

func (*DemographicFilterOperator) DemographicFilter

func (*DemographicFilterOperator) DemographicFilter()

DemographicFilter implements DemographicFilter interface

func (*DemographicFilterOperator) MarshalJSON

func (o *DemographicFilterOperator) MarshalJSON() ([]byte, error)

MarshalJSON method of DemographicFilterOperator

type DownloadRichMenuImageCall

type DownloadRichMenuImageCall struct {
	// contains filtered or unexported fields
}

DownloadRichMenuImageCall type

func (*DownloadRichMenuImageCall) Do

Do method

func (*DownloadRichMenuImageCall) WithContext

WithContext method

type Emoji

type Emoji struct {
	Index     int    `json:"index"`
	Length    int    `json:"length,omitempty"`
	ProductID string `json:"productId,omitempty"`
	EmojiID   string `json:"emojiId,omitempty"`
}

Emoji type

func NewEmoji

func NewEmoji(index int, productID, emojiID string) *Emoji

NewEmoji function

type ErrorResponse

type ErrorResponse struct {
	Message string                `json:"message"`
	Details []errorResponseDetail `json:"details"`
	// OAuth Errors
	Error            string `json:"error"`
	ErrorDescription string `json:"error_description"`
}

ErrorResponse type

type Event

type Event struct {
	ReplyToken        string
	Type              EventType
	Mode              EventMode
	Timestamp         time.Time
	Source            *EventSource
	Message           Message
	Joined            *Members
	Left              *Members
	Postback          *Postback
	Beacon            *Beacon
	AccountLink       *AccountLink
	Things            *Things
	Members           []*EventSource
	Unsend            *Unsend
	VideoPlayComplete *VideoPlayComplete
	WebhookEventID    string
	DeliveryContext   DeliveryContext
}

Event type

func ParseRequest

func ParseRequest(channelSecret string, r *http.Request) ([]*Event, error)

ParseRequest func

func (*Event) MarshalJSON

func (e *Event) MarshalJSON() ([]byte, error)

MarshalJSON method of Event

func (*Event) UnmarshalJSON

func (e *Event) UnmarshalJSON(body []byte) (err error)

UnmarshalJSON method of Event

type EventMode

type EventMode string

EventMode type

const (
	EventModeActive  EventMode = "active"
	EventModeStandby EventMode = "standby"
)

EventMode constants

type EventSource

type EventSource struct {
	Type    EventSourceType `json:"type"`
	UserID  string          `json:"userId,omitempty"`
	GroupID string          `json:"groupId,omitempty"`
	RoomID  string          `json:"roomId,omitempty"`
}

EventSource type

type EventSourceType

type EventSourceType string

EventSourceType type

const (
	EventSourceTypeUser  EventSourceType = "user"
	EventSourceTypeGroup EventSourceType = "group"
	EventSourceTypeRoom  EventSourceType = "room"
)

EventSourceType constants

type EventType

type EventType string

EventType type

const (
	EventTypeMessage           EventType = "message"
	EventTypeFollow            EventType = "follow"
	EventTypeUnfollow          EventType = "unfollow"
	EventTypeJoin              EventType = "join"
	EventTypeLeave             EventType = "leave"
	EventTypeMemberJoined      EventType = "memberJoined"
	EventTypeMemberLeft        EventType = "memberLeft"
	EventTypePostback          EventType = "postback"
	EventTypeBeacon            EventType = "beacon"
	EventTypeAccountLink       EventType = "accountLink"
	EventTypeThings            EventType = "things"
	EventTypeUnsend            EventType = "unsend"
	EventTypeVideoPlayComplete EventType = "videoPlayComplete"
)

EventType constants

type FileMessage

type FileMessage struct {
	ID       string
	FileName string
	FileSize int
	// contains filtered or unexported fields
}

FileMessage type

func (*FileMessage) Message

func (*FileMessage) Message()

Message implements Message interface

func (*FileMessage) Type added in v7.10.0

func (m *FileMessage) Type() MessageType

Type implements Message interface

type FillerComponent

type FillerComponent struct {
	Type FlexComponentType
	Flex *int
}

FillerComponent type

func (*FillerComponent) FlexComponent

func (*FillerComponent) FlexComponent()

FlexComponent implements FlexComponent interface

func (*FillerComponent) MarshalJSON

func (c *FillerComponent) MarshalJSON() ([]byte, error)

MarshalJSON method of FillerComponent

type Filter

type Filter struct {
	Demographic DemographicFilter `json:"demographic"`
}

Filter type

type FlexBoxBackgroundType

type FlexBoxBackgroundType string

FlexBoxBackgroundType type

const (
	FlexBoxBackgroundTypeLinearGradient FlexBoxBackgroundType = "linearGradient"
)

FlexBoxBackgroundType constants

type FlexBoxLayoutType

type FlexBoxLayoutType string

FlexBoxLayoutType type

const (
	FlexBoxLayoutTypeHorizontal FlexBoxLayoutType = "horizontal"
	FlexBoxLayoutTypeVertical   FlexBoxLayoutType = "vertical"
	FlexBoxLayoutTypeBaseline   FlexBoxLayoutType = "baseline"
)

FlexBoxLayoutType constants

type FlexBubbleDirectionType

type FlexBubbleDirectionType string

FlexBubbleDirectionType type

const (
	FlexBubbleDirectionTypeLTR FlexBubbleDirectionType = "ltr"
	FlexBubbleDirectionTypeRTL FlexBubbleDirectionType = "rtl"
)

FlexBubbleDirectionType constants

type FlexBubbleSizeType

type FlexBubbleSizeType string

FlexBubbleSizeType type

const (
	FlexBubbleSizeTypeNano  FlexBubbleSizeType = "nano"
	FlexBubbleSizeTypeMicro FlexBubbleSizeType = "micro"
	FlexBubbleSizeTypeKilo  FlexBubbleSizeType = "kilo"
	FlexBubbleSizeTypeMega  FlexBubbleSizeType = "mega"
	FlexBubbleSizeTypeGiga  FlexBubbleSizeType = "giga"
)

FlexBubbleSizeType constants

type FlexButtonHeightType

type FlexButtonHeightType string

FlexButtonHeightType type

const (
	FlexButtonHeightTypeMd FlexButtonHeightType = "md"
	FlexButtonHeightTypeSm FlexButtonHeightType = "sm"
)

FlexButtonHeightType constants

type FlexButtonStyleType

type FlexButtonStyleType string

FlexButtonStyleType type

const (
	FlexButtonStyleTypeLink      FlexButtonStyleType = "link"
	FlexButtonStyleTypePrimary   FlexButtonStyleType = "primary"
	FlexButtonStyleTypeSecondary FlexButtonStyleType = "secondary"
)

FlexButtonStyleType constants

type FlexComponent

type FlexComponent interface {
	FlexComponent()
}

FlexComponent interface

type FlexComponentAdjustModeType

type FlexComponentAdjustModeType string

FlexComponentAdjustModeType type

const (
	FlexComponentAdjustModeTypeShrinkToFit FlexComponentAdjustModeType = "shrink-to-fit"
)

FlexComponentAdjustModeType constants

type FlexComponentAlignItemsType

type FlexComponentAlignItemsType string

FlexComponentAlignItemsType type

const (
	FlexComponentAlignItemsTypeFlexStart FlexComponentAlignItemsType = "flex-start"
	FlexComponentAlignItemsTypeFlexEnd   FlexComponentAlignItemsType = "flex-end"
	FlexComponentAlignItemsTypeCenter    FlexComponentAlignItemsType = "center"
)

FlexComponentAlignItemsType constants

type FlexComponentAlignType

type FlexComponentAlignType string

FlexComponentAlignType type

const (
	FlexComponentAlignTypeStart  FlexComponentAlignType = "start"
	FlexComponentAlignTypeEnd    FlexComponentAlignType = "end"
	FlexComponentAlignTypeCenter FlexComponentAlignType = "center"
)

FlexComponentAlignType constants

type FlexComponentCornerRadiusType

type FlexComponentCornerRadiusType string

FlexComponentCornerRadiusType type

const (
	FlexComponentCornerRadiusTypeNone FlexComponentCornerRadiusType = "none"
	FlexComponentCornerRadiusTypeXs   FlexComponentCornerRadiusType = "xs"
	FlexComponentCornerRadiusTypeSm   FlexComponentCornerRadiusType = "sm"
	FlexComponentCornerRadiusTypeMd   FlexComponentCornerRadiusType = "md"
	FlexComponentCornerRadiusTypeLg   FlexComponentCornerRadiusType = "lg"
	FlexComponentCornerRadiusTypeXl   FlexComponentCornerRadiusType = "xl"
	FlexComponentCornerRadiusTypeXxl  FlexComponentCornerRadiusType = "xxl"
)

FlexComponentCornerRadius constants

type FlexComponentGravityType

type FlexComponentGravityType string

FlexComponentGravityType type

const (
	FlexComponentGravityTypeTop    FlexComponentGravityType = "top"
	FlexComponentGravityTypeBottom FlexComponentGravityType = "bottom"
	FlexComponentGravityTypeCenter FlexComponentGravityType = "center"
)

FlexComponentGravityType constants

type FlexComponentJustifyContentType

type FlexComponentJustifyContentType string

FlexComponentJustifyContentType type

const (
	FlexComponentJustifyContentTypeFlexStart    FlexComponentJustifyContentType = "flex-start"
	FlexComponentJustifyContentTypeFlexEnd      FlexComponentJustifyContentType = "flex-end"
	FlexComponentJustifyContentTypeCenter       FlexComponentJustifyContentType = "center"
	FlexComponentJustifyContentTypeSpaceBetween FlexComponentJustifyContentType = "space-between"
	FlexComponentJustifyContentTypeSpaceAround  FlexComponentJustifyContentType = "space-around"
	FlexComponentJustifyContentTypeSpaceEvenly  FlexComponentJustifyContentType = "space-evenly"
)

FlexComponentJustifyContentType constants

type FlexComponentMarginType

type FlexComponentMarginType string

FlexComponentMarginType type

const (
	FlexComponentMarginTypeNone FlexComponentMarginType = "none"
	FlexComponentMarginTypeXs   FlexComponentMarginType = "xs"
	FlexComponentMarginTypeSm   FlexComponentMarginType = "sm"
	FlexComponentMarginTypeMd   FlexComponentMarginType = "md"
	FlexComponentMarginTypeLg   FlexComponentMarginType = "lg"
	FlexComponentMarginTypeXl   FlexComponentMarginType = "xl"
	FlexComponentMarginTypeXxl  FlexComponentMarginType = "xxl"
)

FlexComponentMarginType constants

type FlexComponentOffsetType added in v7.10.0

type FlexComponentOffsetType string

FlexComponentOffsetType type

const (
	FlexComponentOffsetTypeNone FlexComponentOffsetType = "none"
	FlexComponentOffsetTypeXs   FlexComponentOffsetType = "xs"
	FlexComponentOffsetTypeSm   FlexComponentOffsetType = "sm"
	FlexComponentOffsetTypeMd   FlexComponentOffsetType = "md"
	FlexComponentOffsetTypeLg   FlexComponentOffsetType = "lg"
	FlexComponentOffsetTypeXl   FlexComponentOffsetType = "xl"
	FlexComponentOffsetTypeXxl  FlexComponentOffsetType = "xxl"
)

FlexComponentOffsetType constants

type FlexComponentPaddingType added in v7.10.0

type FlexComponentPaddingType string

FlexComponentPaddingType type

const (
	FlexComponentPaddingTypeNone FlexComponentPaddingType = "none"
	FlexComponentPaddingTypeXs   FlexComponentPaddingType = "xs"
	FlexComponentPaddingTypeSm   FlexComponentPaddingType = "sm"
	FlexComponentPaddingTypeMd   FlexComponentPaddingType = "md"
	FlexComponentPaddingTypeLg   FlexComponentPaddingType = "lg"
	FlexComponentPaddingTypeXl   FlexComponentPaddingType = "xl"
	FlexComponentPaddingTypeXxl  FlexComponentPaddingType = "xxl"
)

FlexComponentPaddingType constants

type FlexComponentPositionType added in v7.10.0

type FlexComponentPositionType string

FlexComponentPositionType type

const (
	FlexComponentPositionTypeRelative FlexComponentPositionType = "relative"
	FlexComponentPositionTypeAbsolute FlexComponentPositionType = "absolute"
)

FlexComponentPositionType constants

type FlexComponentSpacingType

type FlexComponentSpacingType string

FlexComponentSpacingType type

const (
	FlexComponentSpacingTypeNone FlexComponentSpacingType = "none"
	FlexComponentSpacingTypeXs   FlexComponentSpacingType = "xs"
	FlexComponentSpacingTypeSm   FlexComponentSpacingType = "sm"
	FlexComponentSpacingTypeMd   FlexComponentSpacingType = "md"
	FlexComponentSpacingTypeLg   FlexComponentSpacingType = "lg"
	FlexComponentSpacingTypeXl   FlexComponentSpacingType = "xl"
	FlexComponentSpacingTypeXxl  FlexComponentSpacingType = "xxl"
)

FlexComponentSpacingType constants

type FlexComponentType

type FlexComponentType string

FlexComponentType type

const (
	FlexComponentTypeBox       FlexComponentType = "box"
	FlexComponentTypeButton    FlexComponentType = "button"
	FlexComponentTypeFiller    FlexComponentType = "filler"
	FlexComponentTypeIcon      FlexComponentType = "icon"
	FlexComponentTypeImage     FlexComponentType = "image"
	FlexComponentTypeSeparator FlexComponentType = "separator"
	FlexComponentTypeSpacer    FlexComponentType = "spacer"
	FlexComponentTypeSpan      FlexComponentType = "span"
	FlexComponentTypeText      FlexComponentType = "text"
	FlexComponentTypeVideo     FlexComponentType = "video"
)

FlexComponentType constants

type FlexContainer

type FlexContainer interface {
	FlexContainer()
}

FlexContainer interface

func UnmarshalFlexMessageJSON

func UnmarshalFlexMessageJSON(data []byte) (FlexContainer, error)

UnmarshalFlexMessageJSON function

Example
package main

import (
	"github.com/line/line-bot-sdk-go/v7/linebot"
)

func main() {
	container, err := linebot.UnmarshalFlexMessageJSON([]byte(`{
    "type": "bubble",
    "body": {
      "type": "box",
      "layout": "vertical",
      "contents": [
        {
          "type": "text",
          "text": "hello"
        },
        {
          "type": "text",
          "text": "world"
        }
      ]
    }
  }`))
	if err != nil {
		panic(err)
	}

	linebot.NewFlexMessage("alt text", container)
}
Output:

type FlexContainerType

type FlexContainerType string

FlexContainerType type

const (
	FlexContainerTypeBubble   FlexContainerType = "bubble"
	FlexContainerTypeCarousel FlexContainerType = "carousel"
)

FlexContainerType constants

type FlexIconAspectRatioType

type FlexIconAspectRatioType string

FlexIconAspectRatioType type

const (
	FlexIconAspectRatioType1to1 FlexIconAspectRatioType = "1:1"
	FlexIconAspectRatioType2to1 FlexIconAspectRatioType = "2:1"
	FlexIconAspectRatioType3to1 FlexIconAspectRatioType = "3:1"
)

FlexIconAspectRatioType constants

type FlexIconSizeType

type FlexIconSizeType string

FlexIconSizeType type

const (
	FlexIconSizeTypeXxs FlexIconSizeType = "xxs"
	FlexIconSizeTypeXs  FlexIconSizeType = "xs"
	FlexIconSizeTypeSm  FlexIconSizeType = "sm"
	FlexIconSizeTypeMd  FlexIconSizeType = "md"
	FlexIconSizeTypeLg  FlexIconSizeType = "lg"
	FlexIconSizeTypeXl  FlexIconSizeType = "xl"
	FlexIconSizeTypeXxl FlexIconSizeType = "xxl"
	FlexIconSizeType3xl FlexIconSizeType = "3xl"
	FlexIconSizeType4xl FlexIconSizeType = "4xl"
	FlexIconSizeType5xl FlexIconSizeType = "5xl"
)

FlexIconSizeType constants

type FlexImageAspectModeType

type FlexImageAspectModeType string

FlexImageAspectModeType type

const (
	FlexImageAspectModeTypeCover FlexImageAspectModeType = "cover"
	FlexImageAspectModeTypeFit   FlexImageAspectModeType = "fit"
)

FlexImageAspectModeType constants

type FlexImageAspectRatioType

type FlexImageAspectRatioType string

FlexImageAspectRatioType type

const (
	FlexImageAspectRatioType1to1    FlexImageAspectRatioType = "1:1"
	FlexImageAspectRatioType1_51to1 FlexImageAspectRatioType = "1.51:1"
	FlexImageAspectRatioType1_91to1 FlexImageAspectRatioType = "1.91:1"
	FlexImageAspectRatioType4to3    FlexImageAspectRatioType = "4:3"
	FlexImageAspectRatioType16to9   FlexImageAspectRatioType = "16:9"
	FlexImageAspectRatioType20to13  FlexImageAspectRatioType = "20:13"
	FlexImageAspectRatioType2to1    FlexImageAspectRatioType = "2:1"
	FlexImageAspectRatioType3to1    FlexImageAspectRatioType = "3:1"
	FlexImageAspectRatioType3to4    FlexImageAspectRatioType = "3:4"
	FlexImageAspectRatioType9to16   FlexImageAspectRatioType = "9:16"
	FlexImageAspectRatioType1to2    FlexImageAspectRatioType = "1:2"
	FlexImageAspectRatioType1to3    FlexImageAspectRatioType = "1:3"
)

FlexImageAspectRatioType constants

type FlexImageSizeType

type FlexImageSizeType string

FlexImageSizeType type

const (
	FlexImageSizeTypeXxs  FlexImageSizeType = "xxs"
	FlexImageSizeTypeXs   FlexImageSizeType = "xs"
	FlexImageSizeTypeSm   FlexImageSizeType = "sm"
	FlexImageSizeTypeMd   FlexImageSizeType = "md"
	FlexImageSizeTypeLg   FlexImageSizeType = "lg"
	FlexImageSizeTypeXl   FlexImageSizeType = "xl"
	FlexImageSizeTypeXxl  FlexImageSizeType = "xxl"
	FlexImageSizeType3xl  FlexImageSizeType = "3xl"
	FlexImageSizeType4xl  FlexImageSizeType = "4xl"
	FlexImageSizeType5xl  FlexImageSizeType = "5xl"
	FlexImageSizeTypeFull FlexImageSizeType = "full"
)

FlexImageSizeType constants

type FlexMessage

type FlexMessage struct {
	AltText  string
	Contents FlexContainer
	// contains filtered or unexported fields
}

FlexMessage type

func NewFlexMessage

func NewFlexMessage(altText string, contents FlexContainer) *FlexMessage

NewFlexMessage function

func (*FlexMessage) AddEmoji

func (m *FlexMessage) AddEmoji(*Emoji) SendingMessage

AddEmoji method of FlexMessage

func (*FlexMessage) MarshalJSON

func (m *FlexMessage) MarshalJSON() ([]byte, error)

MarshalJSON method of FlexMessage

func (*FlexMessage) Message

func (*FlexMessage) Message()

Message implements Message interface

func (*FlexMessage) Type added in v7.10.0

func (m *FlexMessage) Type() MessageType

Type implements Message interface

func (*FlexMessage) WithQuickReplies

func (m *FlexMessage) WithQuickReplies(items *QuickReplyItems) SendingMessage

WithQuickReplies method of FlexMessage

func (*FlexMessage) WithSender

func (m *FlexMessage) WithSender(sender *Sender) SendingMessage

WithSender method of FlexMessage

type FlexSpacerSizeType

type FlexSpacerSizeType string

FlexSpacerSizeType type

const (
	FlexSpacerSizeTypeXs  FlexSpacerSizeType = "xs"
	FlexSpacerSizeTypeSm  FlexSpacerSizeType = "sm"
	FlexSpacerSizeTypeMd  FlexSpacerSizeType = "md"
	FlexSpacerSizeTypeLg  FlexSpacerSizeType = "lg"
	FlexSpacerSizeTypeXl  FlexSpacerSizeType = "xl"
	FlexSpacerSizeTypeXxl FlexSpacerSizeType = "xxl"
)

FlexSpacerSizeType constants

type FlexTextDecorationType

type FlexTextDecorationType string

FlexTextDecorationType type

const (
	FlexTextDecorationTypeNone        FlexTextDecorationType = "none"
	FlexTextDecorationTypeUnderline   FlexTextDecorationType = "underline"
	FlexTextDecorationTypeLineThrough FlexTextDecorationType = "line-through"
)

FlexTextDecorationType constants

type FlexTextSizeType

type FlexTextSizeType string

FlexTextSizeType type

const (
	FlexTextSizeTypeXxs FlexTextSizeType = "xxs"
	FlexTextSizeTypeXs  FlexTextSizeType = "xs"
	FlexTextSizeTypeSm  FlexTextSizeType = "sm"
	FlexTextSizeTypeMd  FlexTextSizeType = "md"
	FlexTextSizeTypeLg  FlexTextSizeType = "lg"
	FlexTextSizeTypeXl  FlexTextSizeType = "xl"
	FlexTextSizeTypeXxl FlexTextSizeType = "xxl"
	FlexTextSizeType3xl FlexTextSizeType = "3xl"
	FlexTextSizeType4xl FlexTextSizeType = "4xl"
	FlexTextSizeType5xl FlexTextSizeType = "5xl"
)

FlexTextSizeType constants

type FlexTextStyleType

type FlexTextStyleType string

FlexTextStyleType type

const (
	FlexTextStyleTypeNormal FlexTextStyleType = "normal"
	FlexTextStyleTypeItalic FlexTextStyleType = "italic"
)

FlexTextStyleType constants

type FlexTextWeightType

type FlexTextWeightType string

FlexTextWeightType type

const (
	FlexTextWeightTypeRegular FlexTextWeightType = "regular"
	FlexTextWeightTypeBold    FlexTextWeightType = "bold"
)

FlexTextWeightType constants

type FlexVideoAspectRatioType added in v7.14.0

type FlexVideoAspectRatioType string

FlexVideoAspectRatioType type

const (
	FlexVideoAspectRatioType1to1   FlexVideoAspectRatioType = "1:1"
	FlexVideoAspectRatioType4to3   FlexVideoAspectRatioType = "4:3"
	FlexVideoAspectRatioType16to9  FlexVideoAspectRatioType = "16:9"
	FlexVideoAspectRatioType20to13 FlexVideoAspectRatioType = "20:13"
	FlexVideoAspectRatioType21to9  FlexVideoAspectRatioType = "21:9"
	FlexVideoAspectRatioType3to4   FlexVideoAspectRatioType = "3:4"
	FlexVideoAspectRatioType9to16  FlexVideoAspectRatioType = "9:16"
	FlexVideoAspectRatioType13to20 FlexVideoAspectRatioType = "13:20"
	FlexVideoAspectRatioType9to21  FlexVideoAspectRatioType = "9:21"
)

FlexVideoAspectRatioType constants

type GenderDetail

type GenderDetail struct {
	Gender     string  `json:"gender"`
	Percentage float64 `json:"percentage"`
}

GenderDetail type

type GenderFilter

type GenderFilter struct {
	Type    string       `json:"type"`
	Genders []GenderType `json:"oneOf"`
}

GenderFilter type

func NewGenderFilter

func NewGenderFilter(genders ...GenderType) *GenderFilter

NewGenderFilter function

func (*GenderFilter) DemographicFilter

func (*GenderFilter) DemographicFilter()

DemographicFilter implements DemographicFilter interface

type GenderType

type GenderType string

GenderType type

const (
	GenderMale   GenderType = "male"
	GenderFemale GenderType = "female"
)

GenderType constants

type GetAccessTokensV2Call

type GetAccessTokensV2Call struct {
	// contains filtered or unexported fields
}

GetAccessTokensV2Call type

func (*GetAccessTokensV2Call) Do

Do method

func (*GetAccessTokensV2Call) WithContext

WithContext method

type GetAudienceGroupAuthorityLevelCall added in v7.13.0

type GetAudienceGroupAuthorityLevelCall struct {
	// contains filtered or unexported fields
}

GetAudienceGroupAuthorityLevelCall type

func (*GetAudienceGroupAuthorityLevelCall) Do added in v7.13.0

Do method

func (*GetAudienceGroupAuthorityLevelCall) WithContext added in v7.13.0

WithContext method

type GetAudienceGroupAuthorityLevelResponse added in v7.13.0

type GetAudienceGroupAuthorityLevelResponse struct {
	RequestID         string                     `json:"-"`
	AcceptedRequestID string                     `json:"-"`
	AuthorityLevel    AudienceAuthorityLevelType `json:"authorityLevel,omitempty"`
}

GetAudienceGroupAuthorityLevelResponse type

type GetAudienceGroupCall added in v7.13.0

type GetAudienceGroupCall struct {
	AudienceGroupID int `json:"-" validate:"required"`
	// contains filtered or unexported fields
}

GetAudienceGroupCall type

func (*GetAudienceGroupCall) Do added in v7.13.0

Do method

func (*GetAudienceGroupCall) WithContext added in v7.13.0

func (call *GetAudienceGroupCall) WithContext(ctx context.Context) *GetAudienceGroupCall

WithContext method

type GetAudienceGroupResponse added in v7.13.0

type GetAudienceGroupResponse struct {
	RequestID         string        `json:"-"`
	AcceptedRequestID string        `json:"-"`
	AudienceGroup     AudienceGroup `json:"audienceGroup,omitempty"`
	Jobs              []Job         `json:"jobs,omitempty"`
	AdAccount         *AdAccount    `json:"adaccount,omitempty"`
}

GetAudienceGroupResponse type

type GetBotInfoCall

type GetBotInfoCall struct {
	// contains filtered or unexported fields
}

GetBotInfoCall type

func (*GetBotInfoCall) Do

func (call *GetBotInfoCall) Do() (*BotInfoResponse, error)

Do method

func (*GetBotInfoCall) WithContext

func (call *GetBotInfoCall) WithContext(ctx context.Context) *GetBotInfoCall

WithContext method

type GetDefaultRichMenuCall

type GetDefaultRichMenuCall struct {
	// contains filtered or unexported fields
}

GetDefaultRichMenuCall type

func (*GetDefaultRichMenuCall) Do

Do method

func (*GetDefaultRichMenuCall) WithContext

WithContext method

type GetFollowerIDsCall

type GetFollowerIDsCall struct {
	// contains filtered or unexported fields
}

GetFollowerIDsCall type

func (*GetFollowerIDsCall) Do

func (call *GetFollowerIDsCall) Do() (*UserIDsResponse, error)

Do method

func (*GetFollowerIDsCall) NewScanner

func (call *GetFollowerIDsCall) NewScanner() *UserIDsScanner

NewScanner returns Group IDs scanner.

func (*GetFollowerIDsCall) WithContext

func (call *GetFollowerIDsCall) WithContext(ctx context.Context) *GetFollowerIDsCall

WithContext method

type GetFriendDemographicsCall

type GetFriendDemographicsCall struct {
	// contains filtered or unexported fields
}

GetFriendDemographicsCall type

func (*GetFriendDemographicsCall) Do

Do method

func (*GetFriendDemographicsCall) WithContext

WithContext method

type GetGroupMemberCountCall

type GetGroupMemberCountCall struct {
	// contains filtered or unexported fields
}

GetGroupMemberCountCall type

func (*GetGroupMemberCountCall) Do

Do method

func (*GetGroupMemberCountCall) WithContext

WithContext method

type GetGroupMemberIDsCall

type GetGroupMemberIDsCall struct {
	// contains filtered or unexported fields
}

GetGroupMemberIDsCall type

func (*GetGroupMemberIDsCall) Do

Do method

func (*GetGroupMemberIDsCall) NewScanner

func (call *GetGroupMemberIDsCall) NewScanner() *IDsScanner

NewScanner returns Group IDs scanner.

func (*GetGroupMemberIDsCall) WithContext

WithContext method

type GetGroupMemberProfileCall

type GetGroupMemberProfileCall struct {
	// contains filtered or unexported fields
}

GetGroupMemberProfileCall type

func (*GetGroupMemberProfileCall) Do

Do method

func (*GetGroupMemberProfileCall) WithContext

WithContext method

type GetGroupSummaryCall

type GetGroupSummaryCall struct {
	// contains filtered or unexported fields
}

GetGroupSummaryCall type

func (*GetGroupSummaryCall) Do

Do method

func (*GetGroupSummaryCall) WithContext

func (call *GetGroupSummaryCall) WithContext(ctx context.Context) *GetGroupSummaryCall

WithContext method

type GetLIFFAllCall

type GetLIFFAllCall struct {
	// contains filtered or unexported fields
}

GetLIFFAllCall type

func (*GetLIFFAllCall) Do

func (call *GetLIFFAllCall) Do() (*LIFFAppsResponse, error)

Do method

func (*GetLIFFAllCall) WithContext

func (call *GetLIFFAllCall) WithContext(ctx context.Context) *GetLIFFAllCall

WithContext method

type GetMessageConsumptionCall

type GetMessageConsumptionCall struct {
	// contains filtered or unexported fields
}

GetMessageConsumptionCall type

func (*GetMessageConsumptionCall) Do

Do method

func (*GetMessageConsumptionCall) WithContext

WithContext method

type GetMessageContentCall

type GetMessageContentCall struct {
	// contains filtered or unexported fields
}

GetMessageContentCall type

func (*GetMessageContentCall) Do

Do method

func (*GetMessageContentCall) WithContext

WithContext method

type GetMessageQuotaCall

type GetMessageQuotaCall struct {
	// contains filtered or unexported fields
}

GetMessageQuotaCall type

func (*GetMessageQuotaCall) Do

Do method

func (*GetMessageQuotaCall) WithContext

func (call *GetMessageQuotaCall) WithContext(ctx context.Context) *GetMessageQuotaCall

WithContext method

type GetNumberFollowersCall

type GetNumberFollowersCall struct {
	// contains filtered or unexported fields
}

GetNumberFollowersCall type

func (*GetNumberFollowersCall) Do

Do method

func (*GetNumberFollowersCall) WithContext

WithContext method

type GetNumberMessagesCall

type GetNumberMessagesCall struct {
	// contains filtered or unexported fields
}

GetNumberMessagesCall type

func (*GetNumberMessagesCall) Do

Do method

func (*GetNumberMessagesCall) WithContext

WithContext method

type GetNumberMessagesDeliveryCall

type GetNumberMessagesDeliveryCall struct {
	// contains filtered or unexported fields
}

GetNumberMessagesDeliveryCall type

func (*GetNumberMessagesDeliveryCall) Do

Do method

func (*GetNumberMessagesDeliveryCall) WithContext

WithContext method

type GetProfileCall

type GetProfileCall struct {
	// contains filtered or unexported fields
}

GetProfileCall type

func (*GetProfileCall) Do

func (call *GetProfileCall) Do() (*UserProfileResponse, error)

Do method

func (*GetProfileCall) WithContext

func (call *GetProfileCall) WithContext(ctx context.Context) *GetProfileCall

WithContext method

type GetProgressMessagesCall

type GetProgressMessagesCall struct {
	// contains filtered or unexported fields
}

GetProgressMessagesCall type

func (*GetProgressMessagesCall) Do

Do method

func (*GetProgressMessagesCall) WithContext

WithContext method

type GetRichMenuAliasCall added in v7.10.0

type GetRichMenuAliasCall struct {
	// contains filtered or unexported fields
}

GetRichMenuAliasCall type

func (*GetRichMenuAliasCall) Do added in v7.10.0

Do method

func (*GetRichMenuAliasCall) WithContext added in v7.10.0

func (call *GetRichMenuAliasCall) WithContext(ctx context.Context) *GetRichMenuAliasCall

WithContext method

type GetRichMenuAliasListCall added in v7.10.0

type GetRichMenuAliasListCall struct {
	// contains filtered or unexported fields
}

GetRichMenuAliasListCall type

func (*GetRichMenuAliasListCall) Do added in v7.10.0

Do method

func (*GetRichMenuAliasListCall) WithContext added in v7.10.0

WithContext method

type GetRichMenuCall

type GetRichMenuCall struct {
	// contains filtered or unexported fields
}

GetRichMenuCall type

func (*GetRichMenuCall) Do

func (call *GetRichMenuCall) Do() (*RichMenuResponse, error)

Do method

func (*GetRichMenuCall) WithContext

func (call *GetRichMenuCall) WithContext(ctx context.Context) *GetRichMenuCall

WithContext method

type GetRichMenuListCall

type GetRichMenuListCall struct {
	// contains filtered or unexported fields
}

GetRichMenuListCall type

func (*GetRichMenuListCall) Do

func (call *GetRichMenuListCall) Do() ([]*RichMenuResponse, error)

Do method

func (*GetRichMenuListCall) WithContext

func (call *GetRichMenuListCall) WithContext(ctx context.Context) *GetRichMenuListCall

WithContext method

type GetRoomMemberCountCall

type GetRoomMemberCountCall struct {
	// contains filtered or unexported fields
}

GetRoomMemberCountCall type

func (*GetRoomMemberCountCall) Do

Do method

func (*GetRoomMemberCountCall) WithContext

WithContext method

type GetRoomMemberIDsCall

type GetRoomMemberIDsCall struct {
	// contains filtered or unexported fields
}

GetRoomMemberIDsCall type

func (*GetRoomMemberIDsCall) Do

Do method

func (*GetRoomMemberIDsCall) NewScanner

func (call *GetRoomMemberIDsCall) NewScanner() *IDsScanner

NewScanner returns Room IDs scanner.

func (*GetRoomMemberIDsCall) WithContext

func (call *GetRoomMemberIDsCall) WithContext(ctx context.Context) *GetRoomMemberIDsCall

WithContext method

type GetRoomMemberProfileCall

type GetRoomMemberProfileCall struct {
	// contains filtered or unexported fields
}

GetRoomMemberProfileCall type

func (*GetRoomMemberProfileCall) Do

Do method

func (*GetRoomMemberProfileCall) WithContext

WithContext method

type GetUserInteractionStatsCall

type GetUserInteractionStatsCall struct {
	// contains filtered or unexported fields
}

GetUserInteractionStatsCall type

func (*GetUserInteractionStatsCall) Do

Do method, returns MessagesUserInteractionStatsResponse

func (*GetUserInteractionStatsCall) WithContext

WithContext method

type GetUserRichMenuCall

type GetUserRichMenuCall struct {
	// contains filtered or unexported fields
}

GetUserRichMenuCall type

func (*GetUserRichMenuCall) Do

Do method

func (*GetUserRichMenuCall) WithContext

func (call *GetUserRichMenuCall) WithContext(ctx context.Context) *GetUserRichMenuCall

WithContext method

type GetWebhookInfo

type GetWebhookInfo struct {
	// contains filtered or unexported fields
}

GetWebhookInfo type

func (*GetWebhookInfo) Do

func (call *GetWebhookInfo) Do() (*WebhookInfoResponse, error)

Do method

func (*GetWebhookInfo) WithContext

func (call *GetWebhookInfo) WithContext(ctx context.Context) *GetWebhookInfo

WithContext method

type GroupSummaryResponse

type GroupSummaryResponse struct {
	GroupID    string `json:"groupId"`
	GroupName  string `json:"groupName"`
	PictureURL string `json:"pictureUrl"`
}

GroupSummaryResponse type

type IAddAudiencesByFileOption added in v7.13.0

type IAddAudiencesByFileOption interface {
	Apply(call *AddAudiencesByFileCall)
}

IAddAudiencesByFileOption type

func WithAddAudiencesByFileCallUploadDescription added in v7.13.0

func WithAddAudiencesByFileCallUploadDescription(uploadDescription string) IAddAudiencesByFileOption

WithAddAudiencesByFileCallUploadDescription func

type IAddAudiencesOption added in v7.13.0

type IAddAudiencesOption interface {
	Apply(call *AddAudiencesCall)
}

IAddAudiencesOption type

func WithAddAudiencesCallUploadDescription added in v7.13.0

func WithAddAudiencesCallUploadDescription(uploadDescription string) IAddAudiencesOption

WithAddAudiencesCallUploadDescription type

type IClickAudienceGroupOption added in v7.13.0

type IClickAudienceGroupOption interface {
	Apply(call *ClickAudienceGroupCall)
}

IClickAudienceGroupOption type

func WithClickAudienceGroupCallClickURL added in v7.13.0

func WithClickAudienceGroupCallClickURL(clickURL string) IClickAudienceGroupOption

WithClickAudienceGroupCallClickURL func

type IDsScanner

type IDsScanner struct {
	// contains filtered or unexported fields
}

IDsScanner type

Example
package main

import (
	"fmt"
	"os"

	"github.com/line/line-bot-sdk-go/v7/linebot"
)

func main() {
	bot, err := linebot.New("secret", "token")
	if err != nil {
		fmt.Fprintln(os.Stderr, "linebot.New:", err)
	}
	s := bot.GetGroupMemberIDs("cxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", "").NewScanner()
	for s.Scan() {
		fmt.Fprintln(os.Stdout, s.ID())
	}
	if err := s.Err(); err != nil {
		fmt.Fprintln(os.Stderr, "GetGroupMemberIDs:", err)
	}
}
Output:

func (*IDsScanner) Err

func (s *IDsScanner) Err() error

Err returns scan error.

func (*IDsScanner) ID

func (s *IDsScanner) ID() string

ID returns member id.

func (*IDsScanner) Scan

func (s *IDsScanner) Scan() bool

Scan method

type IListAudienceGroupOption added in v7.13.0

type IListAudienceGroupOption interface {
	Apply(call *ListAudienceGroupCall)
}

IListAudienceGroupOption type

func WithListAudienceGroupCallCreateRoute added in v7.13.0

func WithListAudienceGroupCallCreateRoute(createRoute string) IListAudienceGroupOption

WithListAudienceGroupCallCreateRoute func

func WithListAudienceGroupCallDescription added in v7.13.0

func WithListAudienceGroupCallDescription(description string) IListAudienceGroupOption

WithListAudienceGroupCallDescription func

func WithListAudienceGroupCallIncludesExternalPublicGroups added in v7.13.0

func WithListAudienceGroupCallIncludesExternalPublicGroups(includesExternalPublicGroups bool) IListAudienceGroupOption

WithListAudienceGroupCallIncludesExternalPublicGroups func

func WithListAudienceGroupCallSize added in v7.13.0

func WithListAudienceGroupCallSize(size int) IListAudienceGroupOption

WithListAudienceGroupCallSize func

func WithListAudienceGroupCallStatus added in v7.13.0

func WithListAudienceGroupCallStatus(status AudienceStatusType) IListAudienceGroupOption

WithListAudienceGroupCallStatus func

type IMPAudienceGroupCall added in v7.13.0

type IMPAudienceGroupCall struct {
	Description string `validate:"required,max=120"`
	RequestID   string `validate:"required"`
	// contains filtered or unexported fields
}

IMPAudienceGroupCall type

func (*IMPAudienceGroupCall) Do added in v7.13.0

Do method

func (*IMPAudienceGroupCall) WithContext added in v7.13.0

func (call *IMPAudienceGroupCall) WithContext(ctx context.Context) *IMPAudienceGroupCall

WithContext method

type IMPAudienceGroupResponse added in v7.13.0

type IMPAudienceGroupResponse struct {
	XRequestID        string `json:"-"`
	AcceptedRequestID string `json:"-"`
	AudienceGroupID   int    `json:"audienceGroupId,omitempty"`
	CreateRoute       string `json:"createRoute,omitempty"`
	Type              string `json:"type,omitempty"`
	Description       string `json:"description,omitempty"`
	Created           int64  `json:"created,omitempty"`
	Permission        string `json:"permission,omitempty"`
	ExpireTimestamp   int64  `json:"expireTimestamp,omitempty"`
	IsIfaAudience     bool   `json:"isIfaAudience,omitempty"`
	RequestID         string `json:"requestId,omitempty"`
}

IMPAudienceGroupResponse type

type IUploadAudienceGroupByFileOption added in v7.13.0

type IUploadAudienceGroupByFileOption interface {
	Apply(call *UploadAudienceGroupByFileCall)
}

IUploadAudienceGroupByFileOption type

func WithUploadAudienceGroupByFileCallIsIfaAudience added in v7.13.0

func WithUploadAudienceGroupByFileCallIsIfaAudience(isIfaAudience bool) IUploadAudienceGroupByFileOption

WithUploadAudienceGroupByFileCallIsIfaAudience func

func WithUploadAudienceGroupByFileCallUploadDescription added in v7.13.0

func WithUploadAudienceGroupByFileCallUploadDescription(uploadDescription string) IUploadAudienceGroupByFileOption

WithUploadAudienceGroupByFileCallUploadDescription func

type IUploadAudienceGroupOption added in v7.13.0

type IUploadAudienceGroupOption interface {
	Apply(call *UploadAudienceGroupCall)
}

IUploadAudienceGroupOption type

func WithUploadAudienceGroupCallAudiences added in v7.13.0

func WithUploadAudienceGroupCallAudiences(audiences ...string) IUploadAudienceGroupOption

WithUploadAudienceGroupCallAudiences func

func WithUploadAudienceGroupCallIsIfaAudience added in v7.13.0

func WithUploadAudienceGroupCallIsIfaAudience(isIfaAudience bool) IUploadAudienceGroupOption

WithUploadAudienceGroupCallIsIfaAudience func

func WithUploadAudienceGroupCallUploadDescription added in v7.13.0

func WithUploadAudienceGroupCallUploadDescription(uploadDescription string) IUploadAudienceGroupOption

WithUploadAudienceGroupCallUploadDescription func

type IconComponent

type IconComponent struct {
	Type        FlexComponentType
	URL         string
	Margin      FlexComponentMarginType
	Size        FlexIconSizeType
	AspectRatio FlexIconAspectRatioType
}

IconComponent type

func (*IconComponent) FlexComponent

func (*IconComponent) FlexComponent()

FlexComponent implements FlexComponent interface

func (*IconComponent) MarshalJSON

func (c *IconComponent) MarshalJSON() ([]byte, error)

MarshalJSON method of IconComponent

type ImageAspectRatioType

type ImageAspectRatioType string

ImageAspectRatioType type

const (
	ImageAspectRatioTypeRectangle ImageAspectRatioType = "rectangle"
	ImageAspectRatioTypeSquare    ImageAspectRatioType = "square"
)

ImageAspectRatioType constants

type ImageCarouselColumn

type ImageCarouselColumn struct {
	ImageURL string         `json:"imageUrl"`
	Action   TemplateAction `json:"action"`
}

ImageCarouselColumn type

func NewImageCarouselColumn

func NewImageCarouselColumn(imageURL string, action TemplateAction) *ImageCarouselColumn

NewImageCarouselColumn function

type ImageCarouselTemplate

type ImageCarouselTemplate struct {
	Columns []*ImageCarouselColumn
}

ImageCarouselTemplate type

func NewImageCarouselTemplate

func NewImageCarouselTemplate(columns ...*ImageCarouselColumn) *ImageCarouselTemplate

NewImageCarouselTemplate function

func (*ImageCarouselTemplate) MarshalJSON

func (t *ImageCarouselTemplate) MarshalJSON() ([]byte, error)

MarshalJSON method of ImageCarouselTemplate

func (*ImageCarouselTemplate) Template

func (*ImageCarouselTemplate) Template()

Template implements Template interface

func (*ImageCarouselTemplate) UnmarshalJSON added in v7.21.0

func (t *ImageCarouselTemplate) UnmarshalJSON(data []byte) error

UnmarshalJSON method for ImageCarouselTemplate

type ImageComponent

ImageComponent type

func (*ImageComponent) FlexComponent

func (*ImageComponent) FlexComponent()

FlexComponent implements FlexComponent interface

func (*ImageComponent) MarshalJSON

func (c *ImageComponent) MarshalJSON() ([]byte, error)

MarshalJSON method of ImageComponent

func (*ImageComponent) UnmarshalJSON

func (c *ImageComponent) UnmarshalJSON(data []byte) error

UnmarshalJSON method for ImageComponent

type ImageMessage

type ImageMessage struct {
	ID                 string
	OriginalContentURL string
	PreviewImageURL    string
	ContentProvider    *ContentProvider
	ImageSet           *ImageSet
	// contains filtered or unexported fields
}

ImageMessage type

func NewImageMessage

func NewImageMessage(originalContentURL, previewImageURL string) *ImageMessage

NewImageMessage function

func (*ImageMessage) AddEmoji

func (m *ImageMessage) AddEmoji(*Emoji) SendingMessage

AddEmoji method of ImageMessage

func (*ImageMessage) MarshalJSON

func (m *ImageMessage) MarshalJSON() ([]byte, error)

MarshalJSON method of ImageMessage

func (*ImageMessage) Message

func (*ImageMessage) Message()

Message implements Message interface

func (*ImageMessage) Type added in v7.10.0

func (m *ImageMessage) Type() MessageType

Type implements Message interface

func (*ImageMessage) WithQuickReplies

func (m *ImageMessage) WithQuickReplies(items *QuickReplyItems) SendingMessage

WithQuickReplies method of ImageMessage

func (*ImageMessage) WithSender

func (m *ImageMessage) WithSender(sender *Sender) SendingMessage

WithSender method of ImageMessage

type ImageSet added in v7.11.0

type ImageSet struct {
	ID    string `json:"id"`
	Index int    `json:"index"`
	Total int    `json:"total"`
}

ImageSet type

func NewImageSet added in v7.11.0

func NewImageSet(ID string, index, total int) *ImageSet

NewImageSet function

type ImageSizeType

type ImageSizeType string

ImageSizeType type

const (
	ImageSizeTypeCover   ImageSizeType = "cover"
	ImageSizeTypeContain ImageSizeType = "contain"
)

ImageSizeType constants

type ImagemapAction

type ImagemapAction interface {
	json.Marshaler
	ImagemapAction()
}

ImagemapAction type

type ImagemapActionType

type ImagemapActionType string

ImagemapActionType type

const (
	ImagemapActionTypeURI     ImagemapActionType = "uri"
	ImagemapActionTypeMessage ImagemapActionType = "message"
)

ImagemapActionType constants

type ImagemapArea

type ImagemapArea struct {
	X      int `json:"x"`
	Y      int `json:"y"`
	Width  int `json:"width"`
	Height int `json:"height"`
}

ImagemapArea type

type ImagemapBaseSize

type ImagemapBaseSize struct {
	Width  int `json:"width"`
	Height int `json:"height"`
}

ImagemapBaseSize type

type ImagemapMessage

type ImagemapMessage struct {
	BaseURL  string
	AltText  string
	BaseSize ImagemapBaseSize
	Actions  []ImagemapAction
	Video    *ImagemapVideo
	// contains filtered or unexported fields
}

ImagemapMessage type

func NewImagemapMessage

func NewImagemapMessage(baseURL, altText string, baseSize ImagemapBaseSize, actions ...ImagemapAction) *ImagemapMessage

NewImagemapMessage function

func (*ImagemapMessage) AddEmoji

func (m *ImagemapMessage) AddEmoji(*Emoji) SendingMessage

AddEmoji method of ImagemapMessage

func (*ImagemapMessage) MarshalJSON

func (m *ImagemapMessage) MarshalJSON() ([]byte, error)

MarshalJSON method of ImagemapMessage

func (*ImagemapMessage) Message

func (*ImagemapMessage) Message()

Message implements Message interface

func (*ImagemapMessage) Type added in v7.10.0

func (m *ImagemapMessage) Type() MessageType

Type implements Message interface

func (*ImagemapMessage) WithQuickReplies

func (m *ImagemapMessage) WithQuickReplies(items *QuickReplyItems) SendingMessage

WithQuickReplies method of ImagemapMessage

func (*ImagemapMessage) WithSender

func (m *ImagemapMessage) WithSender(sender *Sender) SendingMessage

WithSender method of ImagemapMessage

func (*ImagemapMessage) WithVideo

func (m *ImagemapMessage) WithVideo(video *ImagemapVideo) *ImagemapMessage

WithVideo method

type ImagemapVideo

type ImagemapVideo struct {
	OriginalContentURL string                     `json:"originalContentUrl"`
	PreviewImageURL    string                     `json:"previewImageUrl"`
	Area               ImagemapArea               `json:"area"`
	ExternalLink       *ImagemapVideoExternalLink `json:"externalLink,omitempty"`
}

ImagemapVideo type

type ImagemapVideoExternalLink struct {
	LinkURI string `json:"linkUri"`
	Label   string `json:"label"`
}

ImagemapVideoExternalLink type

type InputOption added in v7.16.0

type InputOption string

InputOption type

const (
	InputOptionCloseRichMenu InputOption = "closeRichMenu"
	InputOptionOpenRichMenu  InputOption = "openRichMenu"
	InputOptionOpenKeyboard  InputOption = "openKeyboard"
	InputOptionOpenVoice     InputOption = "openVoice"
)

InputOption constants

type InsightType

type InsightType string

InsightType type

const (
	InsightTypeMessageDelivery      InsightType = "message/delivery"
	InsightTypeUserInteractionStats InsightType = "message/event"
	InsightTypeFollowers            InsightType = "followers"
	InsightTypeDemographic          InsightType = "demographic"
)

InsightType constants

type IssueAccessTokenCall

type IssueAccessTokenCall struct {
	// contains filtered or unexported fields
}

IssueAccessTokenCall type

func (*IssueAccessTokenCall) Do

Do method

func (*IssueAccessTokenCall) WithContext

func (call *IssueAccessTokenCall) WithContext(ctx context.Context) *IssueAccessTokenCall

WithContext method

type IssueAccessTokenV2Call

type IssueAccessTokenV2Call struct {
	// contains filtered or unexported fields
}

IssueAccessTokenV2Call type

func (*IssueAccessTokenV2Call) Do

Do method

func (*IssueAccessTokenV2Call) WithContext

WithContext method

type IssueLinkTokenCall

type IssueLinkTokenCall struct {
	// contains filtered or unexported fields
}

IssueLinkTokenCall type

func (*IssueLinkTokenCall) Do

Do method

func (*IssueLinkTokenCall) WithContext

func (call *IssueLinkTokenCall) WithContext(ctx context.Context) *IssueLinkTokenCall

WithContext method

type Job added in v7.13.0

type Job struct {
	AudienceGroupJobID int    `json:"audienceGroupJobId,omitempty"`
	AudienceGroupID    int    `json:"audienceGroupId,omitempty"`
	Description        string `json:"description,omitempty"`
	Type               string `json:"type,omitempty"`
	Status             string `json:"status,omitempty"`
	FailedType         string `json:"failedType,omitempty"`
	AudienceCount      int64  `json:"audienceCount,omitempty"`
	Created            int64  `json:"created,omitempty"`
	JobStatus          string `json:"jobStatus,omitempty"`
}

Job type

type LIFFApp

type LIFFApp struct {
	LIFFID               string              `json:"liffId"`
	View                 View                `json:"view"`
	Description          string              `json:"description,omitempty"`
	Features             *LIFFAppFeatures    `json:"features,omitempty"`
	PermanentLinkPattern string              `json:"permanentLinkPattern,omitempty"`
	Scope                []LIFFViewScopeType `json:"scope,omitempty"`
	BotPrompt            string              `json:"botprompt,omitempty"`
}

LIFFApp type

type LIFFAppFeatures added in v7.19.0

type LIFFAppFeatures struct {
	BLE    bool `json:"ble,omitempty"`
	QRCode bool `json:"qrCode,omitempty"`
}

LIFFAppFeatures type

type LIFFAppsResponse

type LIFFAppsResponse struct {
	Apps []LIFFApp `json:"apps"`
}

LIFFAppsResponse type

type LIFFIDResponse

type LIFFIDResponse struct {
	LIFFID string `json:"liffId"`
}

LIFFIDResponse type

type LIFFViewScopeType added in v7.19.0

type LIFFViewScopeType string

LIFFViewScopeType type

const (
	LIFFViewScopeTypeOpenID           LIFFViewScopeType = "openid"
	LIFFViewScopeTypeEmail            LIFFViewScopeType = "email"
	LIFFViewScopeTypeProfile          LIFFViewScopeType = "profile"
	LIFFViewScopeTypeChatMessageWrite LIFFViewScopeType = "chat_message.write"
)

LIFFViewScopeType constants

type LIFFViewType

type LIFFViewType string

LIFFViewType type

const (
	LIFFViewTypeCompact LIFFViewType = "compact"
	LIFFViewTypeTall    LIFFViewType = "tall"
	LIFFViewTypeFull    LIFFViewType = "full"
)

LIFFViewType constants

type LeaveGroupCall

type LeaveGroupCall struct {
	// contains filtered or unexported fields
}

LeaveGroupCall type

func (*LeaveGroupCall) Do

func (call *LeaveGroupCall) Do() (*BasicResponse, error)

Do method

func (*LeaveGroupCall) WithContext

func (call *LeaveGroupCall) WithContext(ctx context.Context) *LeaveGroupCall

WithContext method

type LeaveRoomCall

type LeaveRoomCall struct {
	// contains filtered or unexported fields
}

LeaveRoomCall type

func (*LeaveRoomCall) Do

func (call *LeaveRoomCall) Do() (*BasicResponse, error)

Do method

func (*LeaveRoomCall) WithContext

func (call *LeaveRoomCall) WithContext(ctx context.Context) *LeaveRoomCall

WithContext method

type LinkTokenResponse

type LinkTokenResponse struct {
	LinkToken string `json:"linkToken"`
}

LinkTokenResponse type

type LinkUserRichMenuCall

type LinkUserRichMenuCall struct {
	// contains filtered or unexported fields
}

LinkUserRichMenuCall type

func (*LinkUserRichMenuCall) Do

func (call *LinkUserRichMenuCall) Do() (*BasicResponse, error)

Do method

func (*LinkUserRichMenuCall) WithContext

func (call *LinkUserRichMenuCall) WithContext(ctx context.Context) *LinkUserRichMenuCall

WithContext method

type ListAudienceGroupCall added in v7.13.0

type ListAudienceGroupCall struct {
	Page                         int                `json:"-" validate:"required,min=1"`
	Description                  string             `json:"-"`
	Status                       AudienceStatusType `json:"-"`
	Size                         int                `json:"-" validate:"min=1,max=40"`
	IncludesExternalPublicGroups bool               `json:"-"`
	CreateRoute                  string             `json:"-"`
	// contains filtered or unexported fields
}

ListAudienceGroupCall type

func (*ListAudienceGroupCall) Do added in v7.13.0

Do method

func (*ListAudienceGroupCall) WithContext added in v7.13.0

WithContext method

type ListAudienceGroupResponse added in v7.13.0

type ListAudienceGroupResponse struct {
	RequestID                        string          `json:"-"`
	AcceptedRequestID                string          `json:"-"`
	AudienceGroups                   []AudienceGroup `json:"audienceGroups,omitempty"`
	HasNextPage                      bool            `json:"hasNextPage,omitempty"`
	TotalCount                       int             `json:"totalCount,omitempty"`
	ReadWriteAudienceGroupTotalCount int             `json:"readWriteAudienceGroupTotalCount,omitempty"`
	Page                             int             `json:"page,omitempty"`
	Size                             int             `json:"size,omitempty"`
}

ListAudienceGroupResponse type

type LocationAction

type LocationAction struct {
	Label string
}

LocationAction type

func NewLocationAction

func NewLocationAction(label string) *LocationAction

NewLocationAction function

func (*LocationAction) MarshalJSON

func (a *LocationAction) MarshalJSON() ([]byte, error)

MarshalJSON method of LocationAction

func (*LocationAction) QuickReplyAction

func (*LocationAction) QuickReplyAction()

QuickReplyAction implements QuickReplyAction interface

type LocationMessage

type LocationMessage struct {
	ID        string
	Title     string
	Address   string
	Latitude  float64
	Longitude float64
	// contains filtered or unexported fields
}

LocationMessage type

func NewLocationMessage

func NewLocationMessage(title, address string, latitude, longitude float64) *LocationMessage

NewLocationMessage function

func (*LocationMessage) AddEmoji

func (m *LocationMessage) AddEmoji(*Emoji) SendingMessage

AddEmoji method of LocationMessage

func (*LocationMessage) MarshalJSON

func (m *LocationMessage) MarshalJSON() ([]byte, error)

MarshalJSON method of LocationMessage

func (*LocationMessage) Message

func (*LocationMessage) Message()

Message implements Message interface

func (*LocationMessage) Type added in v7.10.0

func (m *LocationMessage) Type() MessageType

Type implements Message interface

func (*LocationMessage) WithQuickReplies

func (m *LocationMessage) WithQuickReplies(items *QuickReplyItems) SendingMessage

WithQuickReplies method of LocationMessage

func (*LocationMessage) WithSender

func (m *LocationMessage) WithSender(sender *Sender) SendingMessage

WithSender method of LocationMessage

type MarkAsReadMode

type MarkAsReadMode string

MarkAsReadMode type

const (
	MarkAsReadModeManual MarkAsReadMode = "manual"
	MarkAsReadModeAuto   MarkAsReadMode = "auto"
)

MarkAsReadMode constants

type MemberCountResponse

type MemberCountResponse struct {
	Count int `json:"count"`
}

MemberCountResponse type

type MemberIDsResponse

type MemberIDsResponse struct {
	MemberIDs []string `json:"memberIds"`
	Next      string   `json:"next"`
}

MemberIDsResponse type

type Members

type Members struct {
	Members []EventSource `json:"members"`
}

Members type

type Mention

type Mention struct {
	Mentionees []*Mentionee `json:"mentionees"`
}

Mention type

type MentionedTargetType added in v7.20.0

type MentionedTargetType string

MentionedTargetType type

const (
	MentionedTargetTypeUser MentionedTargetType = "user"
	MentionedTargetTypeAll  MentionedTargetType = "all"
)

MentionedTargetType constants

type Mentionee

type Mentionee struct {
	Index  int                 `json:"index"`
	Length int                 `json:"length"`
	Type   MentionedTargetType `json:"type"`
	UserID string              `json:"userId,omitempty"`
}

Mentionee type

type Message

type Message interface {
	Message()
	Type() MessageType
}

Message interface

type MessageAction

type MessageAction struct {
	Label string
	Text  string
}

MessageAction type

func NewMessageAction

func NewMessageAction(label, text string) *MessageAction

NewMessageAction function

func (*MessageAction) MarshalJSON

func (a *MessageAction) MarshalJSON() ([]byte, error)

MarshalJSON method of MessageAction

func (*MessageAction) QuickReplyAction

func (*MessageAction) QuickReplyAction()

QuickReplyAction implements QuickReplyAction interface

func (*MessageAction) TemplateAction

func (*MessageAction) TemplateAction()

TemplateAction implements TemplateAction interface

type MessageConsumptionResponse

type MessageConsumptionResponse struct {
	TotalUsage int64
}

MessageConsumptionResponse type

type MessageContentResponse

type MessageContentResponse struct {
	Content       io.ReadCloser
	ContentLength int64
	ContentType   string
}

MessageContentResponse type

type MessageDetail

type MessageDetail struct {
	Seq                         int64 `json:"seq"`
	Impression                  int64 `json:"impression"`
	MediaPlayed                 int64 `json:"mediaPlayed"`
	MediaPlayed25Percent        int64 `json:"mediaPlayed25Percent"`
	MediaPlayed50Percent        int64 `json:"mediaPlayed50Percent"`
	MediaPlayed75Percent        int64 `json:"mediaPlayed75Percent"`
	MediaPlayed100Percent       int64 `json:"mediaPlayed100Percent"`
	UniqueMediaPlayed           int64 `json:"uniqueMediaPlayed"`
	UniqueMediaPlayed25Percent  int64 `json:"uniqueMediaPlayed25Percent"`
	UniqueMediaPlayed50Percent  int64 `json:"uniqueMediaPlayed50Percent"`
	UniqueMediaPlayed75Percent  int64 `json:"uniqueMediaPlayed75Percent"`
	UniqueMediaPlayed100Percent int64 `json:"uniqueMediaPlayed100Percent"`
}

MessageDetail type

type MessageImagemapAction

type MessageImagemapAction struct {
	Label string
	Text  string
	Area  ImagemapArea
}

MessageImagemapAction type

func NewMessageImagemapAction

func NewMessageImagemapAction(label, text string, area ImagemapArea) *MessageImagemapAction

NewMessageImagemapAction function

func (*MessageImagemapAction) ImagemapAction

func (a *MessageImagemapAction) ImagemapAction()

ImagemapAction implements ImagemapAction interface

func (*MessageImagemapAction) MarshalJSON

func (a *MessageImagemapAction) MarshalJSON() ([]byte, error)

MarshalJSON method of MessageImagemapAction

type MessageQuotaResponse

type MessageQuotaResponse struct {
	Type       string
	Value      int64
	TotalUsage int64 `json:"totalUsage"`
}

MessageQuotaResponse type

type MessageType

type MessageType string

MessageType type

const (
	MessageTypeText     MessageType = "text"
	MessageTypeImage    MessageType = "image"
	MessageTypeVideo    MessageType = "video"
	MessageTypeAudio    MessageType = "audio"
	MessageTypeFile     MessageType = "file"
	MessageTypeLocation MessageType = "location"
	MessageTypeSticker  MessageType = "sticker"
	MessageTypeTemplate MessageType = "template"
	MessageTypeImagemap MessageType = "imagemap"
	MessageTypeFlex     MessageType = "flex"
)

MessageType constants

type MessagesFriendDemographicsResponse

type MessagesFriendDemographicsResponse struct {
	Available           bool                       `json:"available"`
	Genders             []GenderDetail             `json:"genders"`
	Ages                []AgeDetail                `json:"ages"`
	Areas               []AreasDetail              `json:"areas"`
	AppTypes            []AppTypeDetail            `json:"appTypes"`
	SubscriptionPeriods []SubscriptionPeriodDetail `json:"subscriptionPeriods"`
}

MessagesFriendDemographicsResponse type

type MessagesNumberDeliveryResponse

type MessagesNumberDeliveryResponse struct {
	Status          string `json:"status"`
	Broadcast       int64  `json:"broadcast"`
	Targeting       int64  `json:"targeting"`
	AutoResponse    int64  `json:"autoResponse"`
	WelcomeResponse int64  `json:"welcomeResponse"`
	Chat            int64  `json:"chat"`
	APIBroadcast    int64  `json:"apiBroadcast"`
	APIPush         int64  `json:"apiPush"`
	APIMulticast    int64  `json:"apiMulticast"`
	APINarrowcast   int64  `json:"apiNarrowcast"`
	APIReply        int64  `json:"apiReply"`
}

MessagesNumberDeliveryResponse type

type MessagesNumberFollowersResponse

type MessagesNumberFollowersResponse struct {
	Status          string `json:"status"`
	Followers       int64  `json:"followers"`
	TargetedReaches int64  `json:"targetedReaches"`
	Blocks          int64  `json:"blocks"`
}

MessagesNumberFollowersResponse type

type MessagesNumberResponse

type MessagesNumberResponse struct {
	Status  string
	Success int64
}

MessagesNumberResponse type

type MessagesProgressResponse

type MessagesProgressResponse struct {
	Phase             string `json:"phase"`
	SuccessCount      int64  `json:"successCount"`
	FailureCount      int64  `json:"failureCount"`
	TargetCount       int64  `json:"targetCount"`
	FailedDescription string `json:"failedDescription"`
	ErrorCode         int    `json:"errorCode"`
	AcceptedTime      string `json:"acceptedTime"`
	CompletedTime     string `json:"completedTime,omitempty"`
}

MessagesProgressResponse type

type MessagesUserInteractionStatsResponse

type MessagesUserInteractionStatsResponse struct {
	Overview OverviewDetail  `json:"overview"`
	Messages []MessageDetail `json:"messages"`
	Clicks   []ClickDetail   `json:"clicks"`
}

MessagesUserInteractionStatsResponse type

type MulticastCall

type MulticastCall struct {
	// contains filtered or unexported fields
}

MulticastCall type

func (*MulticastCall) Do

func (call *MulticastCall) Do() (*BasicResponse, error)

Do method

func (*MulticastCall) WithContext

func (call *MulticastCall) WithContext(ctx context.Context) *MulticastCall

WithContext method

func (*MulticastCall) WithNotificationDisabled

func (call *MulticastCall) WithNotificationDisabled() *MulticastCall

WithNotificationDisabled method will disable push notification

func (*MulticastCall) WithRetryKey

func (call *MulticastCall) WithRetryKey(retryKey string) *MulticastCall

WithRetryKey method will set retry key string (UUID) on Multicast.

type NarrowcastCall

type NarrowcastCall struct {
	// contains filtered or unexported fields
}

NarrowcastCall type

func (*NarrowcastCall) Do

func (call *NarrowcastCall) Do() (*BasicResponse, error)

Do method

func (*NarrowcastCall) WithContext

func (call *NarrowcastCall) WithContext(ctx context.Context) *NarrowcastCall

WithContext method

func (*NarrowcastCall) WithDemographic

func (call *NarrowcastCall) WithDemographic(demographic DemographicFilter) *NarrowcastCall

WithDemographic method will send to specific recipients filter by demographic

func (*NarrowcastCall) WithLimitMax

func (call *NarrowcastCall) WithLimitMax(max int) *NarrowcastCall

WithLimitMax method will set maximum number of recipients

func (*NarrowcastCall) WithLimitMaxUpToRemainingQuota

func (call *NarrowcastCall) WithLimitMaxUpToRemainingQuota(max int, upToRemainingQuota bool) *NarrowcastCall

WithLimitMaxUpToRemainingQuota method will set maximum number of recipients but not over remaining quota.

func (*NarrowcastCall) WithRecipient

func (call *NarrowcastCall) WithRecipient(recipient Recipient) *NarrowcastCall

WithRecipient method will send to specific recipient objects

func (*NarrowcastCall) WithRetryKey

func (call *NarrowcastCall) WithRetryKey(retryKey string) *NarrowcastCall

WithRetryKey method will set retry key string (UUID) on narrowcast.

type NarrowcastMessageLimit

type NarrowcastMessageLimit struct {
	Max                int  `json:"max"`
	UpToRemainingQuota bool `json:"upToRemainingQuota,omitempty"`
}

NarrowcastMessageLimit type

type OverviewDetail

type OverviewDetail struct {
	RequestID                   string `json:"requestId"`
	Timestamp                   int64  `json:"timestamp"`
	Delivered                   int64  `json:"delivered"`
	UniqueImpression            int64  `json:"uniqueImpression"`
	UniqueClick                 int64  `json:"uniqueClick"`
	UniqueMediaPlayed           int64  `json:"uniqueMediaPlayed"`
	UniqueMediaPlayed100Percent int64  `json:"uniqueMediaPlayed100Percent"`
}

OverviewDetail type

type Params

type Params struct {
	Date               string `json:"date,omitempty"`
	Time               string `json:"time,omitempty"`
	Datetime           string `json:"datetime,omitempty"`
	NewRichMenuAliasID string `json:"newRichMenuAliasId,omitempty"`
	Status             string `json:"status,omitempty"`
}

Params type

type PeriodType

type PeriodType string

PeriodType type

const (
	PeriodEmpty  PeriodType = ""
	PeriodDay7   PeriodType = "day_7"
	PeriodDay30  PeriodType = "day_30"
	PeriodDay90  PeriodType = "day_90"
	PeriodDay180 PeriodType = "day_180"
	PeriodDay365 PeriodType = "day_365"
)

PeriodType constants

type Postback

type Postback struct {
	Data   string  `json:"data"`
	Params *Params `json:"params,omitempty"`
}

Postback type

type PostbackAction

type PostbackAction struct {
	Label       string
	Data        string
	Text        string
	DisplayText string
	InputOption InputOption
	FillInText  string
}

PostbackAction type

func NewPostbackAction

func NewPostbackAction(label, data, text, displayText string, inputOption InputOption, fillInText string) *PostbackAction

NewPostbackAction function

func (*PostbackAction) MarshalJSON

func (a *PostbackAction) MarshalJSON() ([]byte, error)

MarshalJSON method of PostbackAction

func (*PostbackAction) QuickReplyAction

func (*PostbackAction) QuickReplyAction()

QuickReplyAction implements QuickReplyAction interface

func (*PostbackAction) TemplateAction

func (*PostbackAction) TemplateAction()

TemplateAction implements TemplateAction interface

type ProgressType

type ProgressType string

ProgressType type

const (
	ProgressTypeNarrowcast ProgressType = "narrowcast"
)

ProgressType constants

type PushMessageCall

type PushMessageCall struct {
	// contains filtered or unexported fields
}

PushMessageCall type

func (*PushMessageCall) Do

func (call *PushMessageCall) Do() (*BasicResponse, error)

Do method

func (*PushMessageCall) WithContext

func (call *PushMessageCall) WithContext(ctx context.Context) *PushMessageCall

WithContext method

func (*PushMessageCall) WithNotificationDisabled

func (call *PushMessageCall) WithNotificationDisabled() *PushMessageCall

WithNotificationDisabled method will disable push notification

func (*PushMessageCall) WithRetryKey

func (call *PushMessageCall) WithRetryKey(retryKey string) *PushMessageCall

WithRetryKey method will set retry key string (UUID) on PushMessage.

type QuickReplyAction

type QuickReplyAction interface {
	Action
	QuickReplyAction()
}

QuickReplyAction type

type QuickReplyButton

type QuickReplyButton struct {
	ImageURL string
	Action   QuickReplyAction
}

QuickReplyButton type

func NewQuickReplyButton

func NewQuickReplyButton(imageURL string, action QuickReplyAction) *QuickReplyButton

NewQuickReplyButton function

func (*QuickReplyButton) MarshalJSON

func (b *QuickReplyButton) MarshalJSON() ([]byte, error)

MarshalJSON method of QuickReplyButton

type QuickReplyItems

type QuickReplyItems struct {
	Items []*QuickReplyButton `json:"items"`
}

QuickReplyItems struct

func NewQuickReplyItems

func NewQuickReplyItems(buttons ...*QuickReplyButton) *QuickReplyItems

NewQuickReplyItems function

type RawCall

type RawCall struct {
	// contains filtered or unexported fields
}

RawCall type

func (*RawCall) AddHeader

func (call *RawCall) AddHeader(key string, value string)

AddHeader method

func (*RawCall) Do

func (call *RawCall) Do() (*http.Response, error)

Do method. Callee must close response object.

func (*RawCall) WithContext

func (call *RawCall) WithContext(ctx context.Context) *RawCall

WithContext method

type Recipient

type Recipient interface {
	Recipient()
}

Recipient interface

type RecipientOperator

type RecipientOperator struct {
	ConditionAnd []Recipient `json:"and,omitempty"`
	ConditionOr  []Recipient `json:"or,omitempty"`
	ConditionNot Recipient   `json:"not,omitempty"`
}

RecipientOperator struct

func RecipientOperatorAnd

func RecipientOperatorAnd(conditions ...Recipient) *RecipientOperator

RecipientOperatorAnd method

func RecipientOperatorNot

func RecipientOperatorNot(condition Recipient) *RecipientOperator

RecipientOperatorNot method

func RecipientOperatorOr

func RecipientOperatorOr(conditions ...Recipient) *RecipientOperator

RecipientOperatorOr method

func (*RecipientOperator) MarshalJSON

func (o *RecipientOperator) MarshalJSON() ([]byte, error)

MarshalJSON method of Operator

func (*RecipientOperator) Recipient

func (*RecipientOperator) Recipient()

Recipient implements Recipient interface

type RedeliveryObject

type RedeliveryObject struct {
	Type      string `json:"type"`
	RequestID string `json:"requestId"`
}

RedeliveryObject type is created to be used with specific recipient objects

func NewRedeliveryObject

func NewRedeliveryObject(requestID string) *RedeliveryObject

NewRedeliveryObject function

func (*RedeliveryObject) Recipient

func (*RedeliveryObject) Recipient()

Recipient implements Recipient interface

type ReplyMessageCall

type ReplyMessageCall struct {
	// contains filtered or unexported fields
}

ReplyMessageCall type

func (*ReplyMessageCall) Do

func (call *ReplyMessageCall) Do() (*BasicResponse, error)

Do method

func (*ReplyMessageCall) WithContext

func (call *ReplyMessageCall) WithContext(ctx context.Context) *ReplyMessageCall

WithContext method

func (*ReplyMessageCall) WithNotificationDisabled

func (call *ReplyMessageCall) WithNotificationDisabled() *ReplyMessageCall

WithNotificationDisabled method will disable push notification

type RevokeAccessTokenCall

type RevokeAccessTokenCall struct {
	// contains filtered or unexported fields
}

RevokeAccessTokenCall type

func (*RevokeAccessTokenCall) Do

func (call *RevokeAccessTokenCall) Do() (*BasicResponse, error)

Do method

func (*RevokeAccessTokenCall) WithContext

WithContext method

type RevokeAccessTokenV2Call

type RevokeAccessTokenV2Call struct {
	// contains filtered or unexported fields
}

RevokeAccessTokenV2Call type

func (*RevokeAccessTokenV2Call) Do

Do method

func (*RevokeAccessTokenV2Call) WithContext

WithContext method

type RichMenu

type RichMenu struct {
	Size        RichMenuSize
	Selected    bool
	Name        string
	ChatBarText string
	Areas       []AreaDetail
}

RichMenu type

type RichMenuAction

type RichMenuAction struct {
	Type            RichMenuActionType `json:"type"`
	URI             string             `json:"uri,omitempty"`
	Text            string             `json:"text,omitempty"`
	DisplayText     string             `json:"displayText,omitempty"`
	Label           string             `json:"label,omitempty"`
	Data            string             `json:"data,omitempty"`
	Mode            string             `json:"mode,omitempty"`
	Initial         string             `json:"initial,omitempty"`
	Max             string             `json:"max,omitempty"`
	Min             string             `json:"min,omitempty"`
	RichMenuAliasID string             `json:"richMenuAliasId,omitempty"`
	InputOption     InputOption        `json:"inputOption,omitempty"`
	FillInText      string             `json:"fillInText,omitempty"`
}

RichMenuAction with type

type RichMenuActionType

type RichMenuActionType string

RichMenuActionType type

const (
	RichMenuActionTypeURI            RichMenuActionType = "uri"
	RichMenuActionTypeMessage        RichMenuActionType = "message"
	RichMenuActionTypePostback       RichMenuActionType = "postback"
	RichMenuActionTypeDatetimePicker RichMenuActionType = "datetimepicker"
	RichMenuActionTypeRichMenuSwitch RichMenuActionType = "richmenuswitch"
)

RichMenuActionType constants

type RichMenuAliasResponse added in v7.10.0

type RichMenuAliasResponse struct {
	RichMenuAliasID string `json:"richMenuAliasId"`
	RichMenuID      string `json:"richMenuId"`
}

RichMenuAliasResponse type

type RichMenuBounds

type RichMenuBounds struct {
	X      int `json:"x"`
	Y      int `json:"y"`
	Width  int `json:"width"`
	Height int `json:"height"`
}

RichMenuBounds type

type RichMenuIDResponse

type RichMenuIDResponse struct {
	RichMenuID string `json:"richMenuId"`
}

RichMenuIDResponse type

type RichMenuResponse

type RichMenuResponse struct {
	RichMenuID  string       `json:"richMenuId"`
	Size        RichMenuSize `json:"size"`
	Selected    bool         `json:"selected"`
	Name        string       `json:"name"`
	ChatBarText string       `json:"chatBarText"`
	Areas       []AreaDetail `json:"areas"`
}

RichMenuResponse type

type RichMenuSize

type RichMenuSize struct {
	Width  int `json:"width"`
	Height int `json:"height"`
}

RichMenuSize type

type Sender

type Sender struct {
	Name    string
	IconURL string
}

Sender type

func NewSender

func NewSender(name, iconURL string) *Sender

NewSender function

func (*Sender) MarshalJSON

func (s *Sender) MarshalJSON() ([]byte, error)

MarshalJSON method of QuickReplyButton

type SendingMessage

type SendingMessage interface {
	Message
	WithQuickReplies(*QuickReplyItems) SendingMessage
	WithSender(*Sender) SendingMessage
	AddEmoji(emoji *Emoji) SendingMessage
}

SendingMessage interface

type SeparatorComponent

type SeparatorComponent struct {
	Type   FlexComponentType
	Margin FlexComponentMarginType
	Color  string
}

SeparatorComponent type

func (*SeparatorComponent) FlexComponent

func (*SeparatorComponent) FlexComponent()

FlexComponent implements FlexComponent interface

func (*SeparatorComponent) MarshalJSON

func (c *SeparatorComponent) MarshalJSON() ([]byte, error)

MarshalJSON method of SeparatorComponent

type SetDefaultRichMenuCall

type SetDefaultRichMenuCall struct {
	// contains filtered or unexported fields
}

SetDefaultRichMenuCall type

func (*SetDefaultRichMenuCall) Do

Do method

func (*SetDefaultRichMenuCall) WithContext

WithContext method

type SetWebhookEndpointURLCall

type SetWebhookEndpointURLCall struct {
	// contains filtered or unexported fields
}

SetWebhookEndpointURLCall type

func (*SetWebhookEndpointURLCall) Do

Do method

func (*SetWebhookEndpointURLCall) WithContext

WithContext method

type SpacerComponent

type SpacerComponent struct {
	Type FlexComponentType
	Size FlexSpacerSizeType
}

SpacerComponent type

func (*SpacerComponent) FlexComponent

func (*SpacerComponent) FlexComponent()

FlexComponent implements FlexComponent interface

func (*SpacerComponent) MarshalJSON

func (c *SpacerComponent) MarshalJSON() ([]byte, error)

MarshalJSON method of SpacerComponent

type SpanComponent

type SpanComponent struct {
	Type       FlexComponentType
	Text       string
	Size       FlexTextSizeType
	Weight     FlexTextWeightType
	Color      string
	Style      FlexTextStyleType
	Decoration FlexTextDecorationType
}

SpanComponent type

func (*SpanComponent) FlexComponent

func (*SpanComponent) FlexComponent()

FlexComponent implements FlexComponent interface

func (*SpanComponent) MarshalJSON

func (c *SpanComponent) MarshalJSON() ([]byte, error)

MarshalJSON method of SpanComponent

type StickerMessage

type StickerMessage struct {
	ID                  string
	PackageID           string
	StickerID           string
	StickerResourceType StickerResourceType
	Keywords            []string
	Text                string
	// contains filtered or unexported fields
}

StickerMessage type

func NewStickerMessage

func NewStickerMessage(packageID, stickerID string) *StickerMessage

NewStickerMessage function

func (*StickerMessage) AddEmoji

func (m *StickerMessage) AddEmoji(*Emoji) SendingMessage

AddEmoji method of StickerMessage

func (*StickerMessage) MarshalJSON

func (m *StickerMessage) MarshalJSON() ([]byte, error)

MarshalJSON method of StickerMessage

func (*StickerMessage) Message

func (*StickerMessage) Message()

Message implements Message interface

func (*StickerMessage) Type added in v7.10.0

func (m *StickerMessage) Type() MessageType

Type implements Message interface

func (*StickerMessage) WithQuickReplies

func (m *StickerMessage) WithQuickReplies(items *QuickReplyItems) SendingMessage

WithQuickReplies method of StickerMessage

func (*StickerMessage) WithSender

func (m *StickerMessage) WithSender(sender *Sender) SendingMessage

WithSender method of StickerMessage

type StickerResourceType

type StickerResourceType string

StickerResourceType type

const (
	StickerResourceTypeStatic         StickerResourceType = "STATIC"
	StickerResourceTypeAnimation      StickerResourceType = "ANIMATION"
	StickerResourceTypeSound          StickerResourceType = "SOUND"
	StickerResourceTypeAnimationSound StickerResourceType = "ANIMATION_SOUND"
	StickerResourceTypePerStickerText StickerResourceType = "MESSAGE"
	StickerResourceTypePopup          StickerResourceType = "POPUP"
	StickerResourceTypePopupSound     StickerResourceType = "POPUP_SOUND"
	StickerResourceTypeNameText       StickerResourceType = "CUSTOM"
)

StickerResourceType constants

type SubscriptionPeriodDetail

type SubscriptionPeriodDetail struct {
	SubscriptionPeriod string  `json:"subscriptionPeriod"`
	Percentage         float64 `json:"percentage"`
}

SubscriptionPeriodDetail type

type SubscriptionPeriodFilter

type SubscriptionPeriodFilter struct {
	Type string     `json:"type"`
	GTE  PeriodType `json:"gte,omitempty"` // greater than or equal to
	LT   PeriodType `json:"lt,omitempty"`  // less than
}

SubscriptionPeriodFilter type

func NewSubscriptionPeriodFilter

func NewSubscriptionPeriodFilter(gte, lt PeriodType) *SubscriptionPeriodFilter

NewSubscriptionPeriodFilter function

func (*SubscriptionPeriodFilter) DemographicFilter

func (*SubscriptionPeriodFilter) DemographicFilter()

DemographicFilter implements DemographicFilter interface

type Template

type Template interface {
	json.Marshaler
	Template()
}

Template interface

func UnmarshalTemplateJSON added in v7.21.0

func UnmarshalTemplateJSON(data []byte) (Template, error)

UnmarshalTemplateJSON function

type TemplateAction

type TemplateAction interface {
	Action
	TemplateAction()
}

TemplateAction interface

type TemplateMessage

type TemplateMessage struct {
	AltText  string
	Template Template
	// contains filtered or unexported fields
}

TemplateMessage type

func NewTemplateMessage

func NewTemplateMessage(altText string, template Template) *TemplateMessage

NewTemplateMessage function

func (*TemplateMessage) AddEmoji

func (m *TemplateMessage) AddEmoji(*Emoji) SendingMessage

AddEmoji method of TemplateMessage

func (*TemplateMessage) MarshalJSON

func (m *TemplateMessage) MarshalJSON() ([]byte, error)

MarshalJSON method of TemplateMessage

func (*TemplateMessage) Message

func (*TemplateMessage) Message()

Message implements Message interface

func (*TemplateMessage) Type added in v7.10.0

func (m *TemplateMessage) Type() MessageType

Type implements Message interface

func (*TemplateMessage) WithQuickReplies

func (m *TemplateMessage) WithQuickReplies(items *QuickReplyItems) SendingMessage

WithQuickReplies method of TemplateMessage

func (*TemplateMessage) WithSender

func (m *TemplateMessage) WithSender(sender *Sender) SendingMessage

WithSender method of TemplateMessage

type TemplateType

type TemplateType string

TemplateType type

const (
	TemplateTypeButtons       TemplateType = "buttons"
	TemplateTypeConfirm       TemplateType = "confirm"
	TemplateTypeCarousel      TemplateType = "carousel"
	TemplateTypeImageCarousel TemplateType = "image_carousel"
)

TemplateType constants

type TestWebhook

type TestWebhook struct {
	// contains filtered or unexported fields
}

TestWebhook type

func (*TestWebhook) Do

func (call *TestWebhook) Do() (*TestWebhookResponse, error)

Do method

func (*TestWebhook) WithContext

func (call *TestWebhook) WithContext(ctx context.Context) *TestWebhook

WithContext method

type TestWebhookResponse

type TestWebhookResponse struct {
	Success    bool      `json:"success"`
	Timestamp  time.Time `json:"timestamp"`
	StatusCode int       `json:"statusCode"`
	Reason     string    `json:"reason"`
	Detail     string    `json:"detail"`
}

TestWebhookResponse type

type TextComponent

TextComponent type

func (*TextComponent) FlexComponent

func (*TextComponent) FlexComponent()

FlexComponent implements FlexComponent interface

func (*TextComponent) MarshalJSON

func (c *TextComponent) MarshalJSON() ([]byte, error)

MarshalJSON method of TextComponent

func (*TextComponent) UnmarshalJSON

func (c *TextComponent) UnmarshalJSON(data []byte) error

UnmarshalJSON method for TextComponent

type TextMessage

type TextMessage struct {
	ID     string
	Text   string
	Emojis []*Emoji

	Mention *Mention
	// contains filtered or unexported fields
}

TextMessage type

func NewTextMessage

func NewTextMessage(content string) *TextMessage

NewTextMessage function

func (*TextMessage) AddEmoji

func (m *TextMessage) AddEmoji(emoji *Emoji) SendingMessage

AddEmoji method of TextMessage

func (*TextMessage) MarshalJSON

func (m *TextMessage) MarshalJSON() ([]byte, error)

MarshalJSON method of TextMessage

func (*TextMessage) Message

func (*TextMessage) Message()

Message implements Message interface

func (*TextMessage) Type added in v7.10.0

func (m *TextMessage) Type() MessageType

Type implements Message interface

func (*TextMessage) WithQuickReplies

func (m *TextMessage) WithQuickReplies(items *QuickReplyItems) SendingMessage

WithQuickReplies method of TextMessage

func (*TextMessage) WithSender

func (m *TextMessage) WithSender(sender *Sender) SendingMessage

WithSender method of TextMessage

type Things

type Things struct {
	DeviceID string
	Type     string
	Result   *ThingsResult
}

Things type

type ThingsActionResult

type ThingsActionResult struct {
	Type ThingsActionResultType
	Data []byte
}

ThingsActionResult type

type ThingsActionResultType

type ThingsActionResultType string

ThingsActionResultType type

const (
	ThingsActionResultTypeBinary ThingsActionResultType = "binary"
	ThingsActionResultTypeVoid   ThingsActionResultType = "void"
)

ThingsActionResultType constants

type ThingsResult

type ThingsResult struct {
	ScenarioID             string
	Revision               int
	StartTime              int64
	EndTime                int64
	ResultCode             ThingsResultCode
	ActionResults          []*ThingsActionResult
	BLENotificationPayload []byte
	ErrorReason            string
}

ThingsResult type

type ThingsResultCode

type ThingsResultCode string

ThingsResultCode type

const (
	ThingsResultCodeSuccess      ThingsResultCode = "success"
	ThingsResultCodeGattError    ThingsResultCode = "gatt_error"
	ThingsResultCodeRuntimeError ThingsResultCode = "runtime_error"
)

ThingsResultCode constants

type URIAction

type URIAction struct {
	Label  string
	URI    string
	AltURI *URIActionAltURI
}

URIAction type

func NewURIAction

func NewURIAction(label, uri string) *URIAction

NewURIAction function

func (*URIAction) MarshalJSON

func (a *URIAction) MarshalJSON() ([]byte, error)

MarshalJSON method of URIAction

func (*URIAction) QuickReplyAction

func (*URIAction) QuickReplyAction()

QuickReplyAction implements URI's QuickReplyAction interface

func (*URIAction) TemplateAction

func (*URIAction) TemplateAction()

TemplateAction implements TemplateAction interface

type URIActionAltURI

type URIActionAltURI struct {
	Desktop string `json:"desktop"`
}

URIActionAltURI type

type URIImagemapAction

type URIImagemapAction struct {
	Label   string
	LinkURL string
	Area    ImagemapArea
}

URIImagemapAction type

func NewURIImagemapAction

func NewURIImagemapAction(label, linkURL string, area ImagemapArea) *URIImagemapAction

NewURIImagemapAction function

func (*URIImagemapAction) ImagemapAction

func (a *URIImagemapAction) ImagemapAction()

ImagemapAction implements ImagemapAction interface

func (*URIImagemapAction) MarshalJSON

func (a *URIImagemapAction) MarshalJSON() ([]byte, error)

MarshalJSON method of URIImagemapAction

type UnlinkUserRichMenuCall

type UnlinkUserRichMenuCall struct {
	// contains filtered or unexported fields
}

UnlinkUserRichMenuCall type

func (*UnlinkUserRichMenuCall) Do

Do method

func (*UnlinkUserRichMenuCall) WithContext

WithContext method

type Unsend

type Unsend struct {
	MessageID string `json:"messageId"`
}

Unsend type

type UpdateAudienceGroupDescriptionCall added in v7.13.0

type UpdateAudienceGroupDescriptionCall struct {
	AudienceGroupID int    `json:"-" validate:"required"`
	Description     string `validate:"required,max=120"`
	// contains filtered or unexported fields
}

UpdateAudienceGroupDescriptionCall type

func (*UpdateAudienceGroupDescriptionCall) Do added in v7.13.0

Do method

func (*UpdateAudienceGroupDescriptionCall) WithContext added in v7.13.0

WithContext method

type UpdateLIFFCall

type UpdateLIFFCall struct {
	// contains filtered or unexported fields
}

UpdateLIFFCall type

func (*UpdateLIFFCall) Do

func (call *UpdateLIFFCall) Do() (*BasicResponse, error)

Do method

func (*UpdateLIFFCall) WithContext

func (call *UpdateLIFFCall) WithContext(ctx context.Context) *UpdateLIFFCall

WithContext method

type UpdateRichMenuAliasCall added in v7.10.0

type UpdateRichMenuAliasCall struct {
	// contains filtered or unexported fields
}

UpdateRichMenuAliasCall type

func (*UpdateRichMenuAliasCall) Do added in v7.10.0

Do method

func (*UpdateRichMenuAliasCall) WithContext added in v7.10.0

WithContext method

type UploadAudienceGroupByFileCall added in v7.13.0

type UploadAudienceGroupByFileCall struct {
	Description       string   `json:"description,omitempty" validate:"required,max=120"`
	IsIfaAudience     bool     `json:"isIfaAudience,omitempty"`
	UploadDescription string   `json:"uploadDescription,omitempty"`
	Audiences         []string `json:"audiences,omitempty" validate:"max=1500000"`
	// contains filtered or unexported fields
}

UploadAudienceGroupByFileCall type

func (*UploadAudienceGroupByFileCall) Do added in v7.13.0

Do method

func (*UploadAudienceGroupByFileCall) WithContext added in v7.13.0

WithContext method

type UploadAudienceGroupCall added in v7.13.0

type UploadAudienceGroupCall struct {
	Description       string `validate:"required,max=120"`
	IsIfaAudience     bool
	UploadDescription string
	Audiences         []audience `validate:"max=10000"`
	// contains filtered or unexported fields
}

UploadAudienceGroupCall type

func (*UploadAudienceGroupCall) Do added in v7.13.0

Do method

func (*UploadAudienceGroupCall) WithContext added in v7.13.0

WithContext method

type UploadAudienceGroupResponse added in v7.13.0

type UploadAudienceGroupResponse struct {
	RequestID         string `json:"-"`
	AcceptedRequestID string `json:"-"`
	AudienceGroupID   int    `json:"audienceGroupId,omitempty"`
	CreateRoute       string `json:"createRoute,omitempty"`
	Type              string `json:"type,omitempty"`
	Description       string `json:"description,omitempty"`
	Created           int64  `json:"created,omitempty"`
	Permission        string `json:"permission,omitempty"`
	ExpireTimestamp   int64  `json:"expireTimestamp,omitempty"`
	IsIfaAudience     bool   `json:"isIfaAudience,omitempty"`
}

UploadAudienceGroupResponse type

type UploadRichMenuImageCall

type UploadRichMenuImageCall struct {
	// contains filtered or unexported fields
}

UploadRichMenuImageCall type

func (*UploadRichMenuImageCall) Do

Do method

func (*UploadRichMenuImageCall) WithContext

WithContext method

type UserIDsResponse

type UserIDsResponse struct {
	UserIDs []string `json:"userIds"`
	Next    string   `json:"next"`
}

UserIDsResponse type

type UserIDsScanner

type UserIDsScanner struct {
	// contains filtered or unexported fields
}

UserIDsScanner type

func (*UserIDsScanner) Err

func (s *UserIDsScanner) Err() error

Err returns scan error.

func (*UserIDsScanner) ID

func (s *UserIDsScanner) ID() string

ID returns member id.

func (*UserIDsScanner) Scan

func (s *UserIDsScanner) Scan() bool

Scan method

type UserProfileResponse

type UserProfileResponse struct {
	UserID        string `json:"userId"`
	DisplayName   string `json:"displayName"`
	PictureURL    string `json:"pictureUrl"`
	StatusMessage string `json:"statusMessage"`
	Language      string `json:"language"`
}

UserProfileResponse type

type ValidateBroadcastMessageCall added in v7.18.0

type ValidateBroadcastMessageCall struct {
	// contains filtered or unexported fields
}

ValidateBroadcastMessageCall type

func (*ValidateBroadcastMessageCall) Do added in v7.18.0

Do method

func (*ValidateBroadcastMessageCall) WithContext added in v7.18.0

WithContext method

type ValidateMulticastMessageCall added in v7.18.0

type ValidateMulticastMessageCall struct {
	// contains filtered or unexported fields
}

ValidateMulticastMessageCall type

func (*ValidateMulticastMessageCall) Do added in v7.18.0

Do method

func (*ValidateMulticastMessageCall) WithContext added in v7.18.0

WithContext method

type ValidateNarrowcastMessageCall added in v7.18.0

type ValidateNarrowcastMessageCall struct {
	// contains filtered or unexported fields
}

ValidateNarrowcastMessageCall type

func (*ValidateNarrowcastMessageCall) Do added in v7.18.0

Do method

func (*ValidateNarrowcastMessageCall) WithContext added in v7.18.0

WithContext method

type ValidatePushMessageCall added in v7.18.0

type ValidatePushMessageCall struct {
	// contains filtered or unexported fields
}

ValidatePushMessageCall type

func (*ValidatePushMessageCall) Do added in v7.18.0

Do method

func (*ValidatePushMessageCall) WithContext added in v7.18.0

WithContext method

type ValidateReplyMessageCall added in v7.18.0

type ValidateReplyMessageCall struct {
	// contains filtered or unexported fields
}

ValidateReplyMessageCall type

func (*ValidateReplyMessageCall) Do added in v7.18.0

Do method

func (*ValidateReplyMessageCall) WithContext added in v7.18.0

WithContext method

type ValidateRichMenuObjectCall added in v7.17.0

type ValidateRichMenuObjectCall struct {
	// contains filtered or unexported fields
}

ValidateRichMenuObjectCall type

func (*ValidateRichMenuObjectCall) Do added in v7.17.0

Do method

func (*ValidateRichMenuObjectCall) WithContext added in v7.17.0

WithContext method

type VerifiedAccessTokenResponse added in v7.19.0

type VerifiedAccessTokenResponse struct {
	ClientID  string `json:"client_id"`
	ExpiresIn int64  `json:"expires_in"`
	Scope     string `json:"scope"`
}

VerifiedAccessTokenResponse type

type VerifyAccessTokenCall added in v7.19.0

type VerifyAccessTokenCall struct {
	// contains filtered or unexported fields
}

VerifyAccessTokenCall type

func (*VerifyAccessTokenCall) Do added in v7.19.0

Do method

func (*VerifyAccessTokenCall) WithContext added in v7.19.0

WithContext method

type VideoComponent added in v7.14.0

type VideoComponent struct {
	Type        FlexComponentType
	URL         string
	PreviewURL  string
	AltContent  FlexComponent
	AspectRatio FlexVideoAspectRatioType
	Action      *URIAction
}

VideoComponent type

func (*VideoComponent) FlexComponent added in v7.14.0

func (*VideoComponent) FlexComponent()

FlexComponent implements FlexComponent interface

func (*VideoComponent) MarshalJSON added in v7.14.0

func (c *VideoComponent) MarshalJSON() ([]byte, error)

MarshalJSON method of VideoComponent

func (*VideoComponent) UnmarshalJSON added in v7.14.0

func (c *VideoComponent) UnmarshalJSON(data []byte) error

UnmarshalJSON method for VideoComponent

type VideoMessage

type VideoMessage struct {
	ID                 string
	OriginalContentURL string
	PreviewImageURL    string
	Duration           int
	ContentProvider    *ContentProvider
	// contains filtered or unexported fields
}

VideoMessage type

func NewVideoMessage

func NewVideoMessage(originalContentURL, previewImageURL string) *VideoMessage

NewVideoMessage function

func (*VideoMessage) AddEmoji

func (m *VideoMessage) AddEmoji(*Emoji) SendingMessage

AddEmoji method of VideoMessage

func (*VideoMessage) MarshalJSON

func (m *VideoMessage) MarshalJSON() ([]byte, error)

MarshalJSON method of VideoMessage

func (*VideoMessage) Message

func (*VideoMessage) Message()

Message implements Message interface

func (*VideoMessage) Type added in v7.10.0

func (m *VideoMessage) Type() MessageType

Type implements Message interface

func (*VideoMessage) WithQuickReplies

func (m *VideoMessage) WithQuickReplies(items *QuickReplyItems) SendingMessage

WithQuickReplies method of VideoMessage

func (*VideoMessage) WithSender

func (m *VideoMessage) WithSender(sender *Sender) SendingMessage

WithSender method of VideoMessage

type VideoPlayComplete

type VideoPlayComplete struct {
	TrackingID string `json:"trackingId"`
}

VideoPlayComplete type

type View

type View struct {
	Type       LIFFViewType `json:"type"`
	URL        string       `json:"url"`
	ModlueMode bool         `json:"moduleMode,omitempty"`
}

View type

type WebhookInfoResponse

type WebhookInfoResponse struct {
	Endpoint string `json:"endpoint"`
	Active   bool   `json:"active"`
}

WebhookInfoResponse type

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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