diff --git a/src/requests/get_user_profile_photos.rs b/src/requests/get_user_profile_photos.rs index 9e84d935..722b919a 100644 --- a/src/requests/get_user_profile_photos.rs +++ b/src/requests/get_user_profile_photos.rs @@ -9,15 +9,15 @@ pub struct GetUserProfilePhotos<'a> { #[serde(skip_serializing)] ctx: RequestContext<'a>, /// Unique identifier of the target user - user_id: i32, + pub user_id: i32, /// Sequential number of the first photo to be returned. By default, all /// photos are returned. #[serde(skip_serializing_if = "Option::is_none")] - offset: Option, + pub offset: Option, ///Limits the number of photos to be retrieved. Values between 1—100 are /// accepted. Defaults to 100. #[serde(skip_serializing_if = "Option::is_none")] - limit: Option, + pub limit: Option, } impl<'a> Request<'a> for GetUserProfilePhotos<'a> {