All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.auties.whatsapp.model.newsletter.NewsletterPictureBuilder Maven / Gradle / Ivy

package it.auties.whatsapp.model.newsletter;

public class NewsletterPictureBuilder {
    private java.lang.String id;
    private java.lang.String text;
    private java.lang.String directPath;

    public NewsletterPictureBuilder() {
        id = null;
        text = null;
        directPath = null;
    }

    public NewsletterPictureBuilder id(java.lang.String id) {
        this.id = id;
        return this;
    }
    public NewsletterPictureBuilder text(java.lang.String text) {
        this.text = text;
        return this;
    }
    public NewsletterPictureBuilder directPath(java.lang.String directPath) {
        this.directPath = directPath;
        return this;
    }

    public it.auties.whatsapp.model.newsletter.NewsletterPicture build() {
        return new it.auties.whatsapp.model.newsletter.NewsletterPicture(id, text, directPath);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy