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 type;
    private java.lang.String directPath;

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

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

    public NewsletterPictureBuilder type(java.lang.String type) {
        this.type = type;
        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, type, directPath);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy