com.botscrew.messengercdk.model.incomming.Profile Maven / Gradle / Ivy
/*
* Copyright 2018 BotsCrew
*
* 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.botscrew.messengercdk.model.incomming;
import com.fasterxml.jackson.annotation.JsonProperty;
public class Profile {
@JsonProperty("first_name")
private String firstName;
@JsonProperty("last_name")
private String lastName;
@JsonProperty("profile_pic")
private String profilePicture;
private String gender;
private String locale;
private Integer timezone;
@JsonProperty("last_ad_referral")
private AdvertisementReferral lastAdReferral;
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public String getProfilePicture() {
return profilePicture;
}
public void setProfilePicture(String profilePicture) {
this.profilePicture = profilePicture;
}
public String getGender() {
return gender;
}
public void setGender(String gender) {
this.gender = gender;
}
public String getLocale() {
return locale;
}
public void setLocale(String locale) {
this.locale = locale;
}
public Integer getTimezone() {
return timezone;
}
public void setTimezone(Integer timezone) {
this.timezone = timezone;
}
public AdvertisementReferral getLastAdReferral() {
return lastAdReferral;
}
public void setLastAdReferral(AdvertisementReferral lastAdReferral) {
this.lastAdReferral = lastAdReferral;
}
@Override
public String toString() {
return "Profile{" +
"firstName='" + firstName + '\'' +
", lastName='" + lastName + '\'' +
", profilePicture='" + profilePicture + '\'' +
", gender='" + gender + '\'' +
", locale='" + locale + '\'' +
", timezone=" + timezone +
", lastAdReferral=" + lastAdReferral +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy