Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
36964 vikas 1
package com.spice.profitmandi.service.whatsapp;
2
 
3
/**
4
 * A single selectable row inside a {@link WhatsappListSection} of an
5
 * interactive list message (cpass WABA API).
6
 */
7
public class WhatsappListRow {
8
    private String id;
9
    private String title;
10
    private String description;
11
 
12
    public WhatsappListRow() {
13
    }
14
 
15
    public WhatsappListRow(String id, String title, String description) {
16
        this.id = id;
17
        this.title = title;
18
        this.description = description;
19
    }
20
 
21
    public String getId() {
22
        return id;
23
    }
24
 
25
    public void setId(String id) {
26
        this.id = id;
27
    }
28
 
29
    public String getTitle() {
30
        return title;
31
    }
32
 
33
    public void setTitle(String title) {
34
        this.title = title;
35
    }
36
 
37
    public String getDescription() {
38
        return description;
39
    }
40
 
41
    public void setDescription(String description) {
42
        this.description = description;
43
    }
44
}