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