ChapterLink - applebiter/gnatwriter GitHub Wiki
The ChapterLink class represents the relationship between a Chapter and a Link.
Attributes
The attributes associated with the chapters_links table in the database:
user_id: intThe ID of the User who created the ChapterLink entry in the databasestory_id: intThe Story IDchapter_id: intThe Chapter IDlink_id: intThe Link IDcreated: strThe creation datetime of the database entry, stored in 'yyyy-mm-dd hh:mm:ss.f' format
The complex attributes returned by the ORM:
user: UserThe user who created this database entry. The User is associated with theuserstable in the database.story: StoryThe Story to which this ChapterLink belongs.chapter: ChapterThe Chapter with which the Link is associatedlink: LinkThe Link with which the Chapter is associated. This attribute is eager-loaded.
serialize()
serialize ( ) -> dict Only the attributes mapped to the chapters_links table will be present in the returned dictionary.