37 lines
607 B
Markdown
37 lines
607 B
Markdown
---
|
|
title: cdnPublicKey
|
|
description: cdnPublicKey attributes, type and example
|
|
---
|
|
## Constructor: cdnPublicKey
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required |
|
|
|----------|:-------------:|---------:|
|
|
|dc\_id|[int](../types/int.md) | Yes|
|
|
|public\_key|[string](../types/string.md) | Yes|
|
|
|
|
|
|
|
|
### Type: [CdnPublicKey](../types/CdnPublicKey.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```
|
|
$cdnPublicKey = ['_' => 'cdnPublicKey', 'dc_id' => int, 'public_key' => string, ];
|
|
```
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
```
|
|
cdnPublicKey={_='cdnPublicKey', dc_id=int, public_key=string, }
|
|
|
|
```
|
|
|
|
|