Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

package com.spice.profitmandi.service.whatsapp;

/**
 * A single selectable row inside a {@link WhatsappListSection} of an
 * interactive list message (cpass WABA API).
 */
public class WhatsappListRow {
    private String id;
    private String title;
    private String description;

    public WhatsappListRow() {
    }

    public WhatsappListRow(String id, String title, String description) {
        this.id = id;
        this.title = title;
        this.description = description;
    }

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }
}