Type Alias RecordingRenamedEvent

RecordingRenamedEvent: Event<"recording.renamed"> & {
    event: string;
    event_ts: number;
    payload: {
        account_id: string;
        object: {
            host_id: string;
            id: number;
            topic: string;
            type: number;
            uuid: string;
        };
        old_object: {
            host_id: string;
            id: number;
            topic: string;
            type: number;
            uuid: string;
        };
        operator: string;
        operator_id: string;
        time_stamp: number;
    };
}