From 57e3b217786a8513419dfe2e861d9555a305de35 Mon Sep 17 00:00:00 2001 From: nextel Date: Sat, 21 Sep 2019 20:10:25 +0300 Subject: [PATCH] add pub modifcators for filds --- src/requests/get_user_profile_photos.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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> {