Interface SendCallRating

Sends a call rating. Request type for Tdjson#sendCallRating.

interface SendCallRating {
    @type: "sendCallRating";
    call_id: number;
    comment: string;
    problems: CallProblem[];
    rating: number;
}

Properties

@type: "sendCallRating"
call_id: number

Call identifier.

comment: string

An optional user comment if the rating is less than 5.

problems: CallProblem[]

List of the exact types of problems with the call, specified by the user.

rating: number

Call rating; 1-5.