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

it.auties.whatsapp.model.chat.CommunityLinkedGroupBuilder Maven / Gradle / Ivy

package it.auties.whatsapp.model.chat;

public class CommunityLinkedGroupBuilder {
    private it.auties.whatsapp.model.jid.Jid jid;
    private java.lang.Integer participants;

    public CommunityLinkedGroupBuilder() {
        jid = null;
        participants = null;
    }

    public CommunityLinkedGroupBuilder jid(it.auties.whatsapp.model.jid.Jid jid) {
        this.jid = jid;
        return this;
    }

    public CommunityLinkedGroupBuilder participants(java.lang.Integer participants) {
        this.participants = participants;
        return this;
    }

    public it.auties.whatsapp.model.chat.CommunityLinkedGroup build() {
        return new it.auties.whatsapp.model.chat.CommunityLinkedGroup(jid, participants);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy