| 1 | <?php |
||
| 18 | class ImageElement implements SectionBlockElementInterface, ContextBlockElementInterface |
||
| 19 | { |
||
| 20 | use MessageJsonSerializeTrait; |
||
| 21 | |||
| 22 | /** @var string */ |
||
| 23 | private $type; |
||
| 24 | /** @var string */ |
||
| 25 | private $imageUrl; |
||
| 26 | /** @var string */ |
||
| 27 | private $altText; |
||
| 28 | |||
| 29 | 1 | public function __construct(string $imageUrl, string $altText) |
|
| 42 | } |
||
| 43 |