blob: 04094546370a8cc24ef709b3b1e0017d2bfda8ac [file] [log] [blame]
/**
* 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 org.apache.pulsar.manager.entity;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
/**
* Github user information entity.
*/
@Getter
@Setter
@NoArgsConstructor
@Data
public class GithubUserInfoEntity {
private String login;
private Long id;
@SerializedName("node_id")
private String nodeId;
@SerializedName("avatar_url")
private String avatarUrl;
@SerializedName("gravatar_id")
private String gravatarId;
private String url;
@SerializedName("html_url")
private String htmlUrl;
@SerializedName("followers_url")
private String followersUrl;
@SerializedName("following_url")
private String followingUrl;
@SerializedName("gists_url")
private String gistsUrl;
@SerializedName("starred_url")
private String starredUrl;
@SerializedName("subscriptions_url")
private String subscriptionsUrl;
@SerializedName("organizations_url")
private String organizationsUrl;
@SerializedName("repos_url")
private String reposUrl;
@SerializedName("events_url")
private String eventsUrl;
@SerializedName("received_events_url")
private String receivedEventsUrl;
private String type;
@SerializedName("site_admin")
private String siteAdmin;
private String name;
private String company;
private String blog;
private String location;
private String email;
private String hireable;
private String bio;
@SerializedName("public_repos")
private Integer publicRepos;
@SerializedName("public_gists")
private Integer publicGists;
private Long followers;
private Long following;
@SerializedName("created_at")
private String createdAt;
@SerializedName("updated_at")
private String updatedAt;
}