HOME


Mini Shell 1.0
La Pieza.DO | Todo lo que buscas!

Bienvenido de nuevo!

Acceso Cuenta Delivery
DIR: /var/www/devs.lapieza.net/app/Classes/
Upload File :
Current File : /var/www/devs.lapieza.net/app/Classes/WhatsAppMessage.php
<?php



namespace App\Classes;

class WhatsAppMessage {

    public string $messaging_product;

    public string $to;

    public string $type;

    public mixed $template;



    public function __construct(mixed $fillable){

        $this->messaging_product = $fillable['messaging_product'];

        $this->to = $fillable['to'];

        $this->type = $fillable['type'];

        $this->template = new Template($fillable['template']['language'], $fillable['template']['components'], $fillable['template']['name']);

    }



    public function toJson(): string {

        return json_encode($this);

    }





}