add comment attribute to file channel settings
This commit is contained in:
parent
9ed2224eb6
commit
017341ea1a
1 changed files with 7 additions and 5 deletions
12
v1/types.go
12
v1/types.go
|
@ -105,11 +105,13 @@ type ChannelSettingsText struct {
|
|||
|
||||
// ChannelSettingsFilesBase struct
|
||||
type ChannelSettingsFilesBase struct {
|
||||
Creating string `json:"creating,omitempty"`
|
||||
Editing string `json:"editing,omitempty"`
|
||||
Quoting string `json:"quoting,omitempty"`
|
||||
Deleting string `json:"deleting,omitempty"`
|
||||
Max uint64 `json:"max_items_count,omitempty"`
|
||||
Creating string `json:"creating,omitempty"`
|
||||
Editing string `json:"editing,omitempty"`
|
||||
Quoting string `json:"quoting,omitempty"`
|
||||
Deleting string `json:"deleting,omitempty"`
|
||||
Max uint64 `json:"max_items_count,omitempty"`
|
||||
CommentAttribute string `json:"comment_attribute,omitempty"`
|
||||
CommentMaxCharsCount int `json:"comment_max_chars_count,omitempty"`
|
||||
}
|
||||
|
||||
// FullFileResponse uploaded file data
|
||||
|
|
Loading…
Add table
Reference in a new issue