mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-04 21:27:48 +01:00
736 B
736 B
title | description |
---|---|
cdnPublicKey | cdnPublicKey attributes, type and example |
Constructor: cdnPublicKey
Attributes:
Name | Type | Required |
---|---|---|
dc_id | int | Yes |
public_key | string | Yes |
Type: CdnPublicKey
Example:
$cdnPublicKey = ['_' => 'cdnPublicKey', 'dc_id' => int, 'public_key' => string, ];
PWRTelegram json-encoded version:
{"_":"cdnPublicKey","dc_id":"int","public_key":"string"}
Or, if you're into Lua:
cdnPublicKey={_='cdnPublicKey', dc_id=int, public_key=string, }