Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
34882 aman 1
package com.spice.profitmandi.web.controller;
2
 
3
public class OtpLoginRequest {
4
    private String mobile;
5
    private int referenceId;
6
    private String otp;
7
 
8
    public OtpLoginRequest() {
9
 
10
    }
11
 
12
    public String getMobile() {
13
        return mobile;
14
    }
15
 
16
    public void setMobile(String mobile) {
17
        this.mobile = mobile;
18
    }
19
 
20
    public int getReferenceId() {
21
        return referenceId;
22
    }
23
 
24
    public void setReferenceId(int referenceId) {
25
        this.referenceId = referenceId;
26
    }
27
 
28
    public String getOtp() {
29
        return otp;
30
    }
31
 
32
    public void setOtp(String otp) {
33
        this.otp = otp;
34
    }
35
 
36
    @Override
37
    public String toString() {
38
        return "OtpLoginRequest{" +
39
                "mobile='" + mobile + '\'' +
40
                ", referenceId=" + referenceId +
41
                ", otp='" + otp + '\'' +
42
                '}';
43
    }
44
}