Subversion Repositories SmartDukaan

Rev

Rev 36957 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 36957 Rev 37027
Line 17... Line 17...
17
    private String mobile;
17
    private String mobile;
18
    private String city;
18
    private String city;
19
    private String outletName;
19
    private String outletName;
20
    private String remark;
20
    private String remark;
21
    private String status;
21
    private String status;
-
 
22
    private String recordingUrl;
22
 
23
 
23
    public String getFirstName() {
24
    public String getFirstName() {
24
        return firstName;
25
        return firstName;
25
    }
26
    }
26
 
27
 
Line 74... Line 75...
74
 
75
 
75
    public void setStatus(String status) {
76
    public void setStatus(String status) {
76
        this.status = status;
77
        this.status = status;
77
    }
78
    }
78
 
79
 
-
 
80
    public String getRecordingUrl() {
-
 
81
        return recordingUrl;
-
 
82
    }
-
 
83
 
-
 
84
    public void setRecordingUrl(String recordingUrl) {
-
 
85
        this.recordingUrl = recordingUrl;
-
 
86
    }
-
 
87
 
79
    @Override
88
    @Override
80
    public String toString() {
89
    public String toString() {
81
        return "AiLeadRequest{" +
90
        return "AiLeadRequest{" +
82
                "firstName='" + firstName + '\'' +
91
                "firstName='" + firstName + '\'' +
83
                ", lastName='" + lastName + '\'' +
92
                ", lastName='" + lastName + '\'' +
84
                ", mobile='" + mobile + '\'' +
93
                ", mobile='" + mobile + '\'' +
85
                ", city='" + city + '\'' +
94
                ", city='" + city + '\'' +
86
                ", outletName='" + outletName + '\'' +
95
                ", outletName='" + outletName + '\'' +
87
                ", remark='" + remark + '\'' +
96
                ", remark='" + remark + '\'' +
88
                ", status='" + status + '\'' +
97
                ", status='" + status + '\'' +
-
 
98
                ", recordingUrl='" + recordingUrl + '\'' +
89
                '}';
99
                '}';
90
    }
100
    }
91
}
101
}
92
102