Interface GetUserProfilePhotos

Returns the profile photos of a user. Personal and public photo aren't returned. Request type for Tdjson#getUserProfilePhotos.

interface GetUserProfilePhotos {
    @type: "getUserProfilePhotos";
    limit: number;
    offset: number;
    user_id: number;
}

Properties

@type: "getUserProfilePhotos"
limit: number

The maximum number of photos to be returned; up to 100.

offset: number

The number of photos to skip; must be non-negative.

user_id: number

User identifier.