baseplugin
This file contains the BasePlugin object, which represents a Roblox plugin ID.
BasePlugin
¶
Bases: BaseAsset
Represents a Roblox plugin ID. Plugins are a form of Asset and as such this object derives from BaseAsset.
Attributes:
Name | Type | Description |
---|---|---|
id |
int
|
The plugin ID. |
Source code in roblox/bases/baseplugin.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
|
__init__(client, plugin_id)
¶
Parameters:
Name | Type | Description | Default |
---|---|---|---|
client |
Client
|
The Client this object belongs to. |
required |
plugin_id |
int
|
The plugin ID. |
required |
Source code in roblox/bases/baseplugin.py
25 26 27 28 29 30 31 32 33 34 35 |
|
update(name=None, description=None, comments_enabled=None)
async
¶
Updates the plugin's data.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
The new group name. |
None
|
description |
str
|
The new group description. |
None
|
comments_enabled |
str
|
Whether to enable comments. |
None
|
Source code in roblox/bases/baseplugin.py
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
|