Created
March 27, 2018 14:05
-
-
Save depado/8ebf1682d6b9442ae05388dbdf579b57 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Platform is a simple type intended to be used with responses | |
type Platform string | |
// Platform constants, used in the webhook responses | |
const ( | |
Unspecified Platform = "PLATFORM_UNSPECIFIED" | |
Facebook Platform = "FACEBOOK" | |
Slack Platform = "SLACK" | |
Telegram Platform = "TELEGRAM" | |
Kik Platform = "KIK" | |
Skype Platform = "SKYPE" | |
Line Platform = "LINE" | |
Viber Platform = "VIBER" | |
ActionsOnGoogle Platform = "ACTIONS_ON_GOOGLE" | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment