/* * * * Copyright 2015 Van Shu * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * * * * http://www.apache.org/licenses/LICENSE-2.0 * * * * Unless required by applicable law or agreed to in writing, software * * distributed under the License is distributed on an "AS IS" BASIS, * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and * * limitations under the License. * */ package com.mobimvp.cliques.model; import com.google.gson.annotations.SerializedName; /** * Created by Van on 2015/2/16. */ public class Follower { @SerializedName("id") public String id; @SerializedName("name") public String name; @SerializedName("username") public String username; @SerializedName("html_url") public String htmlUrl; @SerializedName("avatar_url") public String avatarUrl; @SerializedName("bio") public String bio; @SerializedName("location") public String location; @SerializedName("links") public Links links; @SerializedName("buckets_count") public String bucketsCount; @SerializedName("comments_received_count") public int commentsReceivedCount; @SerializedName("followers_count") public String followersCount; @SerializedName("followings_count") public String followingsCount; @SerializedName("likes_count") public String likesCount; @SerializedName("likes_received_count") public int likesReceivedCount; @SerializedName("projects_count") public int projectsCount; @SerializedName("rebounds_received_count") public int reboundsReceivedCount; @SerializedName("shots_count") public int shotsCount; @SerializedName("teams_count") public int teamsCount; @SerializedName("type") public String type; @SerializedName("pro") public boolean pro; @SerializedName("buckets_url") public String bucketsUrl; @SerializedName("followers_url") public String followersUrl; @SerializedName("following_url") public String followingUrl; @SerializedName("likes_url") public String likesUrl; @SerializedName("projects_url") public String projectUrl; @SerializedName("shots_url") public String shotsUrl; @SerializedName("teams_url") public String teamsUrl; @SerializedName("created_at") public String createdAt; @SerializedName("updated_at") public String updatedAt; public class FollowerRequestData { @SerializedName("id") public String id; @SerializedName("created_at") public String createdAt; @SerializedName("follower") public Follower follower; @SerializedName("followee") public Follower followee; } }