()
| 332 | } |
| 333 | |
| 334 | func (doc *Document) IsDeleted() bool { |
| 335 | return doc.hasFlag(channels.Deleted) |
| 336 | } |
| 337 | |
| 338 | func (doc *Document) BodyWithSpecialProperties(ctx context.Context) ([]byte, error) { |
| 339 | bodyBytes, err := doc.BodyBytes(ctx) |
no test coverage detected