chronulus_core.types.attribute
Pdf
Bases: BaseModel
Attribute to upload a PDF from a base64 encoded string
The PDF should be provided as a base64 encoded string
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
str
|
The base64 encoded PDF |
required |
Attributes:
Name | Type | Description |
---|---|---|
data |
str
|
The base64 encoded PDF |
Source code in src2/chronulus_core/types/attribute.py
PdfFromFile
Bases: BaseModel
Attribute to upload PDF from a local file
The PDF should be accessible in your local file system by the client
Parameters:
Name | Type | Description | Default |
---|---|---|---|
file_path
|
str
|
Path to PDF file, e.g., '/path/to/doc.pdf' |
required |
Attributes:
Name | Type | Description |
---|---|---|
file_path |
str
|
Path to PDF file, e.g., '/path/to/doc.pdf' |
data |
Optional[str]
|
The base64 encoded PDF |