Created
February 2, 2015 09:36
-
-
Save ParthDesai/48da7acc38c2981c8048 to your computer and use it in GitHub Desktop.
channel.go
This file contains 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
package models | |
type Channel struct { | |
UserID string `json:"user_id" bson:"user_id"` | |
OrganizationID string `json:"org_id" bson:"org_id"` | |
ApplicationID string `json:"app_id" bson:"app_id"` | |
ChannelData interface{} `json:"channel_data" bson:"channel_data"` | |
Ident string `json:"ident" bson:"ident"` | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment