Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AlternativeTitle ¶
AlternativeTitle is entity for alternative title.
type GetAllRequest ¶ added in v0.2.0
type GetAllRequest struct { Mode SearchMode Title string Type Type Status Status StartDate *time.Time EndDate *time.Time AuthorID int64 MagazineID int64 GenreID int64 NSFW *bool Sort string Page int Limit int }
GetAllRequest is get all request model.
type Manga ¶
type Manga struct { ID int64 Title string AlternativeTitles AlternativeTitle Picture string StartDate Date EndDate Date Synopsis string Background string NSFW bool Type Type Status Status Chapter int Volume int Mean float64 Rank int Popularity int Member int Voter int Favorite int Genres []Genre Pictures []string Related []Related Authors []Author Serialization []Magazine UpdatedAt time.Time }
Manga is entity for manga.
type Relation ¶
type Relation string
Relation is manga relation type.
const ( RelationSequel Relation = "SEQUEL" RelationPrequel Relation = "PREQUEL" RelationAlternativeSetting Relation = "ALTERNATIVE_SETTING" RelationAlternativeVersion Relation = "ALTERNATIVE_VERSION" RelationSideStory Relation = "SIDE_STORY" RelationParentStory Relation = "PARENT_STORY" RelationSummary Relation = "SUMMARY" RelationFullStory Relation = "FULL_STORY" RelationSpinOff Relation = "SPIN_OFF" RelationAdaptation Relation = "ADAPTATION" RelationCharacter Relation = "CHARACTER" RelationOther Relation = "OTHER" )
Available manga relation.
type SearchMode ¶ added in v0.2.0
type SearchMode string
SearchMode is search mode.
const ( SearchModeAll SearchMode = "ALL" SearchModeSimple SearchMode = "SIMPLE" )
Available search mode.
Click to show internal directories.
Click to hide internal directories.