| Total Complexity | 5 |
| Total Lines | 49 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class ImportedContacts extends TdObject |
||
| 15 | { |
||
| 16 | public const TYPE_NAME = 'importedContacts'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * User identifiers of the imported contacts in the same order as they were specified in the request; 0 if the contact is not yet a registered user. |
||
| 20 | * |
||
| 21 | * @var int[] |
||
| 22 | */ |
||
| 23 | protected array $userIds; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * The number of users that imported the corresponding contact; 0 for already registered users or if unavailable. |
||
| 27 | * |
||
| 28 | * @var int[] |
||
| 29 | */ |
||
| 30 | protected array $importerCount; |
||
| 31 | |||
| 32 | public function __construct(array $userIds, array $importerCount) |
||
| 33 | { |
||
| 34 | $this->userIds = $userIds; |
||
| 35 | $this->importerCount = $importerCount; |
||
| 36 | } |
||
| 37 | |||
| 38 | public static function fromArray(array $array): ImportedContacts |
||
| 39 | { |
||
| 40 | return new static( |
||
| 41 | $array['user_ids'], |
||
| 42 | $array['importer_count'], |
||
| 43 | ); |
||
| 44 | } |
||
| 45 | |||
| 46 | public function typeSerialize(): array |
||
| 47 | { |
||
| 48 | return [ |
||
| 49 | '@type' => static::TYPE_NAME, |
||
| 50 | 'user_ids' => $this->userIds, |
||
| 51 | 'importer_count' => $this->importerCount, |
||
| 52 | ]; |
||
| 53 | } |
||
| 54 | |||
| 55 | public function getUserIds(): array |
||
| 56 | { |
||
| 57 | return $this->userIds; |
||
| 58 | } |
||
| 59 | |||
| 60 | public function getImporterCount(): array |
||
| 63 | } |
||
| 64 | } |
||
| 65 |