mirror of
https://github.com/LukeHagar/discoursejs.git
synced 2025-12-07 12:27:48 +00:00
19 lines
582 B
Markdown
19 lines
582 B
Markdown
# FileT
|
|
|
|
## Example Usage
|
|
|
|
```typescript
|
|
import { FileT } from "@lukehagar/discoursejs/sdk/models/operations";
|
|
|
|
let value: FileT = {
|
|
content: new TextEncoder().encode("0x79ac3d1a9D"),
|
|
fileName: "your_file_here",
|
|
};
|
|
```
|
|
|
|
## Fields
|
|
|
|
| Field | Type | Required | Description |
|
|
| ------------------ | ------------------ | ------------------ | ------------------ |
|
|
| `content` | *Uint8Array* | :heavy_check_mark: | N/A |
|
|
| `fileName` | *string* | :heavy_check_mark: | N/A | |