001package com.plivo.api.models.profile;
002
003public class ProfileAuthorizedContact {
004  private String firstName;
005  private String lastName;
006  private String phone;
007  private String email;
008  private String title;
009  private String seniority;
010
011  public ProfileAuthorizedContact(String firstName, String lastName, String phone, String email, String title, String seniority) {
012    this.firstName = firstName;
013    this.lastName = lastName;
014    this.phone = phone;
015    this.email = email;
016    this.title = title;
017    this.seniority =seniority;
018  }
019
020  public ProfileAuthorizedContact() {
021  }
022
023  public String getFirstName() {
024    return firstName;
025  }
026  public String getLastName(){
027    return lastName;
028  }
029  public String getPhone() {
030    return phone;
031  }
032
033  public String getEmail() {
034    return email;
035  }
036
037  public String getTitle(){
038    return title;
039  }
040
041  public String getSeniority() {
042    return seniority;
043  }
044}