Module TelegramApi.UserProfilePhotos

module UserProfilePhotos: sig .. end

type user_profile_photos = {
   total_count : int;
   photos : TelegramApi.PhotoSize.photo_size list list;
}
Represents a user's profile pictures, each in multiple sizes
val create : total_count:int ->
photos:TelegramApi.PhotoSize.photo_size list list ->
unit -> user_profile_photos
Create user_profile_photos in a concise manner

Read user_profile_photos out of some JSON

val read : Yojson.Safe.json -> user_profile_photos