pixano.features.schemas.views.text
Text(created_at=None, updated_at=None, **data)
Bases: View
Text view.
Attributes:
Name | Type | Description |
---|---|---|
content |
str
|
The text content. |
Raises ValidationError
if the input data cannot be
validated to form a valid model.
self
is explicitly positional-only to allow self
as a field name.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
created_at
|
datetime | None
|
The creation date of the object. |
None
|
updated_at
|
datetime | None
|
The last modification date of the object. |
None
|
data
|
Any
|
The data of the object validated by Pydantic. |
{}
|
Source code in pixano/features/schemas/base_schema.py
create_text(content, id='', item_ref=ItemRef.none(), parent_ref=ViewRef.none())
Create a Text
instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
content
|
str
|
The text content. |
required |
id
|
str
|
Text ID. |
''
|
item_ref
|
ItemRef
|
Item reference. |
none()
|
parent_ref
|
ViewRef
|
Parent view reference. |
none()
|
Returns:
Type | Description |
---|---|
Text
|
The created |