2017-07-10 13:43:21 -04:00
|
|
|
import { RemoteVideoRequest } from './remote-video-request.model'
|
|
|
|
|
|
|
|
export interface RemoteVideoReportAbuseData {
|
2017-07-11 10:01:56 -04:00
|
|
|
videoUUID: string
|
2017-07-10 13:43:21 -04:00
|
|
|
reporterUsername: string
|
|
|
|
reportReason: string
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface RemoteVideoReportAbuseRequest extends RemoteVideoRequest {
|
|
|
|
type: 'report-abuse'
|
|
|
|
data: RemoteVideoReportAbuseData
|
|
|
|
}
|