Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

package com.spice.profitmandi.web.controller;

public class OtpLoginRequest {
    private String mobile;
    private int referenceId;
    private String otp;

    public OtpLoginRequest() {

    }

    public String getMobile() {
        return mobile;
    }

    public void setMobile(String mobile) {
        this.mobile = mobile;
    }

    public int getReferenceId() {
        return referenceId;
    }

    public void setReferenceId(int referenceId) {
        this.referenceId = referenceId;
    }

    public String getOtp() {
        return otp;
    }

    public void setOtp(String otp) {
        this.otp = otp;
    }

    @Override
    public String toString() {
        return "OtpLoginRequest{" +
                "mobile='" + mobile + '\'' +
                ", referenceId=" + referenceId +
                ", otp='" + otp + '\'' +
                '}';
    }
}