| Total Complexity | 5 |
| Total Lines | 49 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class BankCardInfo extends TdObject |
||
| 15 | { |
||
| 16 | public const TYPE_NAME = 'bankCardInfo'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Title of the bank card description. |
||
| 20 | * |
||
| 21 | * @var string |
||
| 22 | */ |
||
| 23 | protected string $title; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Actions that can be done with the bank card number. |
||
| 27 | * |
||
| 28 | * @var BankCardActionOpenUrl[] |
||
| 29 | */ |
||
| 30 | protected array $actions; |
||
| 31 | |||
| 32 | public function __construct(string $title, array $actions) |
||
| 33 | { |
||
| 34 | $this->title = $title; |
||
| 35 | $this->actions = $actions; |
||
| 36 | } |
||
| 37 | |||
| 38 | public static function fromArray(array $array): BankCardInfo |
||
| 39 | { |
||
| 40 | return new static( |
||
| 41 | $array['title'], |
||
| 42 | array_map(fn ($x) => TdSchemaRegistry::fromArray($x), $array['actions']), |
||
| 43 | ); |
||
| 44 | } |
||
| 45 | |||
| 46 | public function typeSerialize(): array |
||
| 47 | { |
||
| 48 | return [ |
||
| 49 | '@type' => static::TYPE_NAME, |
||
| 50 | 'title' => $this->title, |
||
| 51 | array_map(fn ($x) => $x->typeSerialize(), $this->actions), |
||
| 52 | ]; |
||
| 53 | } |
||
| 54 | |||
| 55 | public function getTitle(): string |
||
| 56 | { |
||
| 57 | return $this->title; |
||
| 58 | } |
||
| 59 | |||
| 60 | public function getActions(): array |
||
| 63 | } |
||
| 64 | } |
||
| 65 |