| Total Complexity | 8 |
| Total Lines | 97 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | package com.base.Models; |
||
| 3 | public class Invitation extends BaseModel { |
||
| 4 | |||
| 5 | /** |
||
| 6 | * Invitation email |
||
| 7 | */ |
||
| 8 | private String email; |
||
| 9 | /** |
||
| 10 | * Invitation message |
||
| 11 | */ |
||
| 12 | private String message; |
||
| 13 | /** |
||
| 14 | * Invitation is_accepted |
||
| 15 | */ |
||
| 16 | private String is_accepted; |
||
| 17 | /** |
||
| 18 | * Invitation team_id |
||
| 19 | */ |
||
| 20 | private String team_id; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Get Invitation Email |
||
| 24 | * |
||
| 25 | * @return Email |
||
| 26 | */ |
||
| 27 | public String getEmail() { |
||
| 28 | return email; |
||
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Set Invitation Email |
||
| 33 | * |
||
| 34 | * @param email |
||
| 35 | * @return |
||
| 36 | */ |
||
| 37 | public Invitation setEmail(String email) { |
||
| 38 | this.email = email; |
||
| 39 | return this; |
||
| 40 | } |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Get Invitation Message |
||
| 44 | * |
||
| 45 | * @return Message |
||
| 46 | */ |
||
| 47 | public String getMessage() { |
||
| 48 | return message; |
||
| 49 | } |
||
| 50 | |||
| 51 | /** |
||
| 52 | * Set Invitation Message |
||
| 53 | * |
||
| 54 | * @param message |
||
| 55 | * @return |
||
| 56 | */ |
||
| 57 | public Invitation setMessage(String message) { |
||
| 58 | this.message = message; |
||
| 59 | return this; |
||
| 60 | } |
||
| 61 | |||
| 62 | /** |
||
| 63 | * Get Invitation Is_accepted |
||
| 64 | * |
||
| 65 | * @return Is_accepted |
||
| 66 | */ |
||
| 67 | public String getIs_accepted() { |
||
|
|
|||
| 68 | return is_accepted; |
||
| 69 | } |
||
| 70 | |||
| 71 | /** |
||
| 72 | * Set Invitation Is_accepted |
||
| 73 | * |
||
| 74 | * @param is_accepted |
||
| 75 | * @return |
||
| 76 | */ |
||
| 77 | public Invitation setIs_accepted(String is_accepted) { |
||
| 78 | this.is_accepted = is_accepted; |
||
| 79 | return this; |
||
| 80 | } |
||
| 81 | |||
| 82 | /** |
||
| 83 | * Get Invitation Team_id |
||
| 84 | * |
||
| 85 | * @return Team_id |
||
| 86 | */ |
||
| 87 | public String getTeam_id() { |
||
| 88 | return team_id; |
||
| 89 | } |
||
| 90 | |||
| 91 | /** |
||
| 92 | * Set Invitation Team_id |
||
| 93 | * |
||
| 94 | * @param team_id |
||
| 95 | * @return |
||
| 96 | */ |
||
| 97 | public Invitation setTeam_id(String team_id) { |
||
| 98 | this.team_id = team_id; |
||
| 99 | return this; |
||
| 100 | } |
||
| 102 |