Files File Set

The FilesFilesSet class represents the Files list.

class newsbinpro_client.filesfileset.FilesFileSet(data: str)

Bases: object

Represents a file with metadata extracted from a tab-separated string.

Attributes:

item_id (int): Identifier of the file. subject (str): Subject or description of the file. file_size (int): Size of the file in bytes. time_stamp (datetime): Timestamp of the file creation or modification based on seconds since the epoch. poster (str): Name or identifier of the person who posted the file. file_name (str): Name of the file.

Methods:
__init__(data):

Initializes the FilesFileSet object by parsing a tab-separated string to populate attributes.

__str__():

Returns a string representation of the FilesFileSet highlighting its attribute values.

property file_name: str
property file_size: int
property item_id: int
property poster: str
property subject: str
property time_stamp: datetime