1234567891011121314151617181920212223 |
- package model
- type PostFormat struct {
- Name string
- Type string
- }
- type PostContext struct {
- DefaultVisibility string
- DefaultFormat string
- ReplyContext *ReplyContext
- Formats []PostFormat
- }
- type ReplyContext struct {
- InReplyToID string
- InReplyToName string
- QuickReply bool
- ReplySpoiler string
- ReplyContent string
- ForceVisibility bool
- ReplyLanguage string
- }
|