1
0
Fork 0
peertube/shared/models/activitypub/objects/abuse-object.ts

16 lines
259 B
TypeScript
Raw Normal View History

import { ActivityFlagReasonObject } from './common-objects'
2020-07-01 10:05:30 -04:00
export interface AbuseObject {
2020-01-31 10:56:52 -05:00
type: 'Flag'
2017-11-15 09:12:23 -05:00
content: string
mediaType: 'text/markdown'
2019-08-30 03:40:21 -04:00
object: string | string[]
2020-07-01 10:05:30 -04:00
tag?: ActivityFlagReasonObject[]
2020-07-01 10:05:30 -04:00
startAt?: number
endAt?: number
2017-11-15 09:12:23 -05:00
}