2 * Copyright (c) 2010-2023 Contributors to the openHAB project
4 * See the NOTICE file(s) distributed with this work for additional
7 * This program and the accompanying materials are made available under the
8 * terms of the Eclipse Public License 2.0 which is available at
9 * http://www.eclipse.org/legal/epl-2.0
11 * SPDX-License-Identifier: EPL-2.0
13 package org.openhab.binding.webexteams.internal.api;
15 import java.util.Date;
17 import org.eclipse.jdt.annotation.NonNullByDefault;
18 import org.eclipse.jdt.annotation.Nullable;
21 * a <code>Person</code> object that is received from the Webex API.
23 * @author Tom Deckers - Initial contribution
27 private @Nullable String id;
28 private @Nullable String displayName;
29 private @Nullable String firstName;
30 private @Nullable String lastName;
31 private @Nullable String avatar;
32 private @Nullable Date lastActivity;
33 private @Nullable String status;
34 private @Nullable String type;
37 public String getId() {
41 public void setId(String id) {
46 public String getDisplayName() {
50 public void setDisplayName(String displayName) {
51 this.displayName = displayName;
55 public String getFirstName() {
59 public void setFirstName(String firstName) {
60 this.firstName = firstName;
64 public String getLastName() {
68 public void setLastName(String lastName) {
69 this.lastName = lastName;
73 public String getAvatar() {
77 public void setAvatar(String avatar) {
82 public Date getLastActivity() {
86 public void setLastActivity(Date lastActivity) {
87 this.lastActivity = lastActivity;
91 public String getStatus() {
95 public void setStatus(String status) {
100 public String getType() {
104 public void setType(String type) {