Passed
Push — master ( 3e738c...e6b434 )
by Kunal
02:56
created

com.base.Models.Invitation.getEmail()   A

Complexity

Conditions 1

Size

Total Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 2
rs 10
cc 1
1
package com.base.Models;
2
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() {
0 ignored issues
show
Coding Style introduced by
As per the Java conventions, method names should start with a lowercase letter followed by lower and upper case letters and digits. Use camel case to denote new words in the method name.
Loading history...
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) {
0 ignored issues
show
Coding Style introduced by
As per the Java conventions, method names should start with a lowercase letter followed by lower and upper case letters and digits. Use camel case to denote new words in the method name.
Loading history...
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() {
0 ignored issues
show
Coding Style introduced by
As per the Java conventions, method names should start with a lowercase letter followed by lower and upper case letters and digits. Use camel case to denote new words in the method name.
Loading history...
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) {
0 ignored issues
show
Coding Style introduced by
As per the Java conventions, method names should start with a lowercase letter followed by lower and upper case letters and digits. Use camel case to denote new words in the method name.
Loading history...
98
        this.team_id = team_id;
99
        return this;
100
    }
101
}
102