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

it.auties.whatsapp.model.button.interactive.InteractiveShopBuilder Maven / Gradle / Ivy

package it.auties.whatsapp.model.button.interactive;

public class InteractiveShopBuilder {
    private java.lang.String id;
    private it.auties.whatsapp.model.button.interactive.InteractiveShop.SurfaceType surfaceType;
    private int version;

    public InteractiveShopBuilder() {
        id = null;
        surfaceType = null;
        version = 0;
    }

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

    public InteractiveShopBuilder surfaceType(it.auties.whatsapp.model.button.interactive.InteractiveShop.SurfaceType surfaceType) {
        this.surfaceType = surfaceType;
        return this;
    }

    public InteractiveShopBuilder version(int version) {
        this.version = version;
        return this;
    }

    public it.auties.whatsapp.model.button.interactive.InteractiveShop build() {
        return new it.auties.whatsapp.model.button.interactive.InteractiveShop(id, surfaceType, version);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy