コード例 #1
0
ファイル: PlacesMethods.cs プロジェクト: zerozxw/InTouch
 /// <summary>
 /// Returns a list of user check-ins at locations according to the set parameters.
 /// </summary>
 /// <param name="methodParams">A <see cref="PlacesGetCheckinsParams"/> object with the params.</param>
 /// <returns>Returns a <see cref="List{T}"/> of <see cref="Checkin"/> objects.</returns>
 public async Task <Response <ItemsList <Checkin> > > GetCheckins(PlacesGetCheckinsParams methodParams)
 => await Request <ItemsList <Checkin> >("getCheckins", methodParams);
コード例 #2
0
ファイル: PlacesMethods.cs プロジェクト: RomanGL/InTouch
 /// <summary>
 /// Returns a list of user check-ins at locations according to the set parameters.
 /// </summary>
 /// <param name="methodParams">A <see cref="PlacesGetCheckinsParams"/> object with the params.</param>
 /// <returns>Returns a <see cref="List{T}"/> of <see cref="Checkin"/> objects.</returns>
 public async Task<Response<ItemsList<Checkin>>> GetCheckins(PlacesGetCheckinsParams methodParams)
     => await Request<ItemsList<Checkin>>("getCheckins", methodParams);