2019-12-21 10:36:44 +02:00
|
|
|
package model
|
|
|
|
|
2019-12-26 13:25:29 +02:00
|
|
|
type PostFormat struct {
|
|
|
|
Name string
|
|
|
|
Type string
|
|
|
|
}
|
|
|
|
|
2019-12-21 15:26:31 +02:00
|
|
|
type PostContext struct {
|
|
|
|
DefaultVisibility string
|
2020-10-19 09:51:23 +03:00
|
|
|
DefaultFormat string
|
2019-12-21 15:26:31 +02:00
|
|
|
ReplyContext *ReplyContext
|
2019-12-26 13:25:29 +02:00
|
|
|
Formats []PostFormat
|
2019-12-21 15:26:31 +02:00
|
|
|
}
|
|
|
|
|
2019-12-21 10:36:44 +02:00
|
|
|
type ReplyContext struct {
|
2020-06-18 08:02:45 +03:00
|
|
|
InReplyToID string
|
|
|
|
InReplyToName string
|
2021-09-05 20:17:59 +03:00
|
|
|
QuickReply bool
|
2020-06-18 08:02:45 +03:00
|
|
|
ReplyContent string
|
|
|
|
ForceVisibility bool
|
2019-12-21 10:36:44 +02:00
|
|
|
}
|