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