You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package main |
|
|
|
// ConvOptions stores team specific options like custom servers |
|
type ConvOptions struct { |
|
ConvID string `json:"converation_id,omitempty"` |
|
NotificationsEnabled bool `json:"notifications_enabled,omitempty"` |
|
CustomURL string `json:"custom_url,omitempty"` |
|
}
|
|
|