openapi

package
v0.0.0-...-7641ad8 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 2, 2023 License: MIT Imports: 20 Imported by: 0

README ¶

Go API client for openapi

This API powers our website. Most API functions are public and do not require an account. For user-based functions, you must register an account. Currently, user registration must be done through our main website and is disabled via this API.

Download OpenAPI Specification: openapi.yaml

Please contact us at the following emails if you have questions:

Warranties

MangaUpdates makes no warranties about service availability, correctness of the data, or anything else. The service is provided as is, and may change at any time.

Acceptable Use Policy

  • You will credit MangaUpdates when using data provided by this API.
  • You will use reasonable spacing between requests so as not to overwhelm the MangaUpdates servers, and employ caching mechanisms when accessing data.
  • You will NOT use MangaUpdates data or API in a way that will:
    • Deceive or defraud users
    • Assist or perform an illegal action
    • Create spam
    • Damage the database

We reserve the right to change this policy at any time.

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

  • API version: 1.0.0
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

go get github.com/stretchr/testify/assert
go get golang.org/x/net/context

Put the package under your project folder and add the following in import:

import openapi "github.com/GIT_USER_ID/GIT_REPO_ID"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value sw.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), openapi.ContextServerIndex, 1)
Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value sw.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), openapi.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using sw.ContextOperationServerIndices and sw.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), openapi.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), openapi.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to https://api.mangaupdates.com/v1

Class Method HTTP request Description
AboutusAPI AddAboutusCategory Post /aboutus/category add a category
AboutusAPI AddAboutusCategoryUser Post /aboutus/category/{category_id}/users add a user to a category
AboutusAPI DeleteAboutusCategory Delete /aboutus/category/{category_id} remove a category
AboutusAPI DeleteAboutusCategoryUser Delete /aboutus/category/{category_id}/users/{entry_id} remove a user from a category
AboutusAPI ReorderAboutus Post /aboutus/reorder reorder aboutus
AboutusAPI RetrieveAboutusCategoriesAndUsers Get /aboutus/users returns categories and users
AboutusAPI RetrieveAboutusCategory Get /aboutus/category/{category_id} returns a single category
AboutusAPI RetrieveAboutusDescription Get /aboutus returns description of site
AboutusAPI UpdateAboutusCategory Patch /aboutus/category/{category_id} update a category
AboutusAPI UpdateAboutusDescription Post /aboutus update description of site
AccountAPI Captcha Get /account/captcha retrieve the public captcha key
AccountAPI ConfirmAndChangePassword Post /account/forgotpass/confirm/{auth_hash} update a password change using an auth hash
AccountAPI ConfirmDeleteAccount Post /account/delete/confirm/{auth_hash} confirm deletion of your account
AccountAPI ConfirmRegistration Post /account/register/confirm/{auth_hash} confirm a new member registration
AccountAPI DeleteAccount Post /account/delete/{captcha_response} delete your account
AccountAPI ForgotPassword Post /account/forgotpass/{captcha_response} send a forgotten password email
AccountAPI Login Put /account/login create a session token
AccountAPI Logout Post /account/logout remove a session token
AccountAPI Profile Get /account/profile get the profile for the current user
AccountAPI RegisterMember Post /account/register/{captcha_response} register a new member
AccountAPI ResendAuthEmail Post /account/resendauth/{id} send an auth email to a user
AccountAPI SendForgotEmail Post /account/sendforgot/{id} send a forgotten password email to a user
AuthorsAPI AddAuthor Post /authors add an author
AuthorsAPI DeleteAuthor Delete /authors/{id} delete an author
AuthorsAPI DeleteImage Delete /authors/{id}/image delete the image of an author
AuthorsAPI LockAuthorField Post /authors/{id}/locks/{item}/lock lock a field of an author
AuthorsAPI RetrieveAuthor Get /authors/{id} get a specific author
AuthorsAPI RetrieveAuthorLocks Get /authors/{id}/locks get locks for a specific author
AuthorsAPI RetrieveAuthorSeries Post /authors/{id}/series get the list of series for a specific author
AuthorsAPI SearchAuthorsPost Post /authors/search search authors
AuthorsAPI UnlockAuthorField Post /authors/{id}/locks/{item}/unlock unlock a field of an author
AuthorsAPI UpdateAuthor Patch /authors/{id} update an author
AuthorsAPI UpdateImage Post /authors/{id}/image update the image of an author
CategoriesAPI BulkCombineSeriesCategories Post /categories/bulk/combine combine two categories across the database
CategoriesAPI BulkDeleteSeriesCategories Post /categories/bulk/delete delete a category across the database
CategoriesAPI FindCategoryByExact Post /categories/findByExact find a category by name
CategoriesAPI FindCategoryByPrefix Post /categories/findByPrefix find a category by prefix
CategoriesAPI SearchCategoriesPost Post /categories/search search categories
ConvoAPI AbandonConvo Post /convo/{id}/abandon abandon a convo
ConvoAPI AbandonConvoBulk Post /convo/bulk/abandon abandon convos in bulk
ConvoAPI AddConvo Post /convo add an convo
ConvoAPI AddConvoMessage Post /convo/{id}/messages add a message to a convo
ConvoAPI ConvoInbox Get /convo/inbox display unread messages
ConvoAPI ConvoInboxCount Get /convo/inbox/count retrieve number of unread messages
ConvoAPI ConvoReceived Post /convo/received display received (and read) messages
ConvoAPI ConvoSent Post /convo/sent display sent messages
ConvoAPI DeleteConvo Delete /convo/{id} delete a convo
ConvoAPI DeleteConvoBulk Post /convo/bulk/delete delete convos in bulk
ConvoAPI IgnoreUser Post /convo/ignore/{user_id} ignore a user
ConvoAPI InviteUserToConvo Post /convo/{id}/invite invite a user to a convo
ConvoAPI IsUserIgnored Get /convo/ignore/{user_id} return whether the user is ignored
ConvoAPI JoinConvo Post /convo/{id}/join join a convo
ConvoAPI KickUserFromConvo Post /convo/{id}/kick/{user_id} kick a user from a convo
ConvoAPI ListConvoMessages Post /convo/{id}/messages/list list convo messages
ConvoAPI RetrieveConvo Get /convo/{id} get a specific convo
ConvoAPI RetrieveConvoMessage Get /convo/{id}/messages/{message_id} get a specific convo message
ConvoAPI RetrieveConvoMessageLocation Get /convo/{id}/messages/{message_id}/location get a specific convo message location
ConvoAPI RetrieveConvoParticipants Get /convo/{id}/participants get list of convo participants
ConvoAPI SearchConvoMessagesPost Post /convo/{id}/messages/search search convo
ConvoAPI SearchConvoPost Post /convo/search search convo
ConvoAPI UnIgnoreUser Delete /convo/ignore/{user_id} remove ignore for a user
ConvoAPI UpdateConvo Patch /convo/{id} update a convo
ConvoAPI UpdateConvoMessage Patch /convo/{id}/messages/{message_id} update a convo message
FaqAPI AddFaqCategory Post /faq add a faq category
FaqAPI AddFaqQuestion Post /faq/{category_id}/questions add a faq question
FaqAPI DeleteFaqCategory Delete /faq/{category_id} delete a faq category
FaqAPI DeleteFaqQuestion Delete /faq/{category_id}/questions/{question_id} delete an faq
FaqAPI ReorderFaq Post /faq/reorder reorder faq
FaqAPI RetrieveAllFaqCategoriesAndQuestions Get /faq retrieve all categories and questions
FaqAPI RetrieveAllFaqCategoryQuestions Get /faq/{category_id}/questions retrieve all quesitons for a category
FaqAPI RetrieveFaqCategory Get /faq/{category_id} get a specific category
FaqAPI RetrieveFaqQuestion Get /faq/{category_id}/questions/{question_id} get a specific question for a category
FaqAPI UpdateFaqCategory Patch /faq/{category_id} update a faq category
FaqAPI UpdateFaqQuestion Patch /faq/{category_id}/questions/{question_id} update a faq question
ForumAPI AddForumAdmin Put /forums/{forum_id}/admins/{user_id} add a forum admin
ForumAPI AddPollVote Post /forums/{forum_id}/topics/{topic_id}/poll/vote/{choice_id} add a vote to a forum poll
ForumAPI AddPost Post /forums/{forum_id}/topics/{topic_id} add a forum post
ForumAPI AddTemporaryPollImage Post /forums/temp_poll_images add a temporary poll image
ForumAPI AddTopic Post /forums/{forum_id} add a forum topic
ForumAPI DeletePost Delete /forums/{forum_id}/topics/{topic_id}/posts/{post_id} delete a post
ForumAPI DeletePostReport Delete /forums/{forum_id}/topics/{topic_id}/posts/{post_id}/report delete a post report
ForumAPI DeleteTopic Delete /forums/{forum_id}/topics/{topic_id} delete a topic
ForumAPI GetCurrentWarnForUser Get /forums/warn/{user_id} gets the current warn status for user
ForumAPI ListCategories Get /forums show forum categories and forums
ForumAPI ListGlobalTopics Get /forums/global list global topics
ForumAPI ListPopularForums Get /forums/popular show popular forums
ForumAPI ListPosts Post /forums/{forum_id}/topics/{topic_id}/list list posts in topic
ForumAPI ListPostsByMe Get /forums/{forum_id}/topics/{topic_id}/my_posts list posts in topic that I made
ForumAPI ListReportedPosts Get /forums/report show reported posts
ForumAPI ListTopics Post /forums/{forum_id}/list list topics
ForumAPI ListWarnHistoryForUser Get /forums/warn/{user_id}/history show warn history for a user
ForumAPI LookupPost Get /forums/lookup/post/{post_id} lookup a post to find the forum and topic id
ForumAPI LookupSeries Get /forums/lookup/series/{series_id} lookup a series to find the forum id
ForumAPI LookupTopic Get /forums/lookup/topic/{topic_id} lookup a topic to find the forum id
ForumAPI RemoveForumAdmin Delete /forums/{forum_id}/admins/{user_id} remove a forum admin
ForumAPI ReportPost Post /forums/{forum_id}/topics/{topic_id}/posts/{post_id}/report report a forum post
ForumAPI RetrieveForum Get /forums/{forum_id} retrieve a forum
ForumAPI RetrievePost Get /forums/{forum_id}/topics/{topic_id}/posts/{post_id} retrieve a forum post
ForumAPI RetrievePostLocation Get /forums/{forum_id}/topics/{topic_id}/posts/{post_id}/location retrieve a forum post location within topic
ForumAPI RetrieveTemporaryPollImages Get /forums/temp_poll_images retrieve temporary poll images
ForumAPI RetrieveTopic Get /forums/{forum_id}/topics/{topic_id} retrieve a forum topic
ForumAPI RetrieveVote Get /forums/{forum_id}/topics/{topic_id}/poll/vote retrieve my vote from the poll
ForumAPI SearchForumPost Post /forums/search search forum
ForumAPI SearchSpecificForumPost Post /forums/{forum_id}/search search specific forum
ForumAPI SearchSpecificTopicPost Post /forums/{forum_id}/topics/{topic_id}/search search specific topic
ForumAPI ShowLogPost Post /forums/log show forum admin log
ForumAPI UpdatePost Patch /forums/{forum_id}/topics/{topic_id}/posts/{post_id} update a forum post
ForumAPI UpdateTopic Patch /forums/{forum_id}/topics/{topic_id} update a forum topic
ForumAPI UpdateTopicPoll Patch /forums/{forum_id}/topics/{topic_id}/poll update a forum topic poll (if present)
ForumAPI UpdateUserWarnLevel Put /forums/warn/{user_id} update a user warn level
GenreAPI AddGenre Post /genres add a genre
GenreAPI DeleteGenre Delete /genres/{id} delete a genre
GenreAPI RetrieveGenreById Get /genres/{id} get genres
GenreAPI RetrieveGenres Get /genres get genres
GenreAPI UpdateGenre Patch /genres/{id} update a genre
GroupsAPI AddGroup Post /groups add an group
GroupsAPI DeleteGroup Delete /groups/{id} delete a group
GroupsAPI RejectGroup Post /groups/{id}/reject reject and delete a group
GroupsAPI RetrieveGroup Get /groups/{id} get a specific group
GroupsAPI RetrieveGroupSeries Get /groups/{id}/series get the list of series and release frequency for a specific group
GroupsAPI SearchGroupsPost Post /groups/search search groups
GroupsAPI UpdateGroup Patch /groups/{id} update an group
ListsAPI AddCustomList Post /lists add a custom user list
ListsAPI AddListSeries Post /lists/series add a series to a list
ListsAPI AddListSeriesBulk Post /lists/{id}/series/bulk add a list of series to a list
ListsAPI DeleteCustomList Delete /lists/{id} remove a custom list
ListsAPI DeleteListSeries Post /lists/series/delete remove a series from a list
ListsAPI RetrieveListById Get /lists/{id} retrieve list metadata and options
ListsAPI RetrieveListSeries Get /lists/series/{series_id} retrieve list series item
ListsAPI RetrieveLists Get /lists retrieve list of user lists
ListsAPI RetrievePublicListStats Get /lists/public/{user_id}/stats retrieve stats for user public lists
ListsAPI RetrievePublicLists Get /lists/public/{user_id} retrieve list of user lists
ListsAPI RetrieveSimilarUsersBySeries Get /lists/similar/{list_name}/{series_id} retrieve users who have similar interests based on series
ListsAPI SearchListsPost Post /lists/{id}/search search lists
ListsAPI SearchPublicListsPost Post /lists/public/{user_id}/search/{id} search lists
ListsAPI UpdateList Patch /lists/{id} update a user list
ListsAPI UpdateListSeries Post /lists/series/update update a series list item
MembersAPI AddMember Post /members add a member
MembersAPI AddMemberAvatar Post /members/{id}/avatar add a new member avatar
MembersAPI AddMemberChangeRequest Post /members/{id}/requests add a change request
MembersAPI AddMemberGenreFilter Post /members/{id}/genre/{genre_id}/filter filter a genre for a user
MembersAPI AddMemberGenreHighlight Post /members/{id}/genre/{genre_id}/highlight highlight a genre for a user
MembersAPI AddOrUpdateUserGroup Put /membergroups/{id} add or update a user group
MembersAPI AddUserGroupFilter Post /members/{id}/group/{group_id}/filter filter a group for a user
MembersAPI AddUserTopicSubscription Post /members/{id}/topics/{topic_id} add a topic subscription for a user
MembersAPI ApproveMemberUpgrade Post /members/{id}/upgrade/approve upgrade a member
MembersAPI DeleteMember Delete /members/{id} delete a member
MembersAPI DeleteMemberAvatar Delete /members/{id}/avatar/{avatar_id} delete a member avatar
MembersAPI DeleteMemberChangeRequest Delete /members/{id}/requests/{request_id} add a change request
MembersAPI DeleteUserGroup Delete /membergroups/{id} delete a user group
MembersAPI RejectMemberUpgrade Post /members/{id}/upgrade/reject reject a member upgrade
MembersAPI RemoveMemberGenreFilter Delete /members/{id}/genre/{genre_id}/filter remove a filter for a genre for a user
MembersAPI RemoveMemberGenreHighlight Delete /members/{id}/genre/{genre_id}/highlight remove a highlight for a genre for a user
MembersAPI RemoveUserGroupFilter Delete /members/{id}/group/{group_id}/filter remove a filter for a group for a user
MembersAPI RemoveUserTopicSubscription Delete /members/{id}/topics/{topic_id} remove a topic subscription for a user
MembersAPI ResetGenreSettings Post /members/{id}/genre/reset reset genre highlights and filters for a user
MembersAPI RetrieveMember Get /members/{id} get a specific members
MembersAPI RetrieveMemberAvatars Get /members/{id}/avatars get avatars for a specific user
MembersAPI RetrieveMemberChangeRequest Get /members/{id}/requests/{request_id} get change requests for a specific user
MembersAPI RetrieveMemberGenreFilters Get /members/{id}/genre/filters get genre filters for a specific user
MembersAPI RetrieveMemberGenreHighlights Get /members/{id}/genre/highlights get highlights for a specific user
MembersAPI RetrieveMemberGroupFilters Get /members/{id}/group/filters get group filters for a specific user
MembersAPI RetrieveMemberTopicSubscription Get /members/{id}/topics/{topic_id} get a subscription to a specific topic for a user
MembersAPI RetrieveMemberTopicSubscriptions Get /members/{id}/topics get topic subscriptions for a specific user
MembersAPI RetrieveUserGroupById Get /membergroups/{id} get user group
MembersAPI RetrieveUserGroups Get /membergroups get user groups
MembersAPI SearchMemberChangeRequests Get /members/{id}/requests search change requests for a specific user
MembersAPI SearchMembersPost Post /members/search search members
MembersAPI UpdateMember Patch /members/{id} update a member
MembersAPI UpdateMemberChangeRequest Patch /members/{id}/requests/{request_id} update a change request
MiscAPI ListOnlineUsers Get /misc/online list online users
MiscAPI RetrieveSlowTransactionStatus Get /misc/slow-transaction-status/{transaction_id} get the status of a bulk transaction
MiscAPI SiteStats Get /misc/stats show various site stats
MiscAPI Time Get /misc/time get the current time
PollAPI AddPoll Post /poll add a new poll
PollAPI ArchivePoll Delete /poll archive the active poll
PollAPI RetrieveOldPolls Get /poll/old get old polls
PollAPI RetrievePoll Get /poll get the active poll
PollAPI RetrieveVoteStatus Get /poll/vote/status get information about whether the user has voted
PollAPI VotePollAnswer Post /poll/vote/{answer_id} vote in a poll answer
PollAPI VotePollNoAnswer Post /poll/vote vote in a poll
PublishersAPI AddPublisher Post /publishers add an publisher
PublishersAPI DeletePublisher Delete /publishers/{id} delete a publisher
PublishersAPI RetrievePublicationSeries Get /publishers/publication get the list of series for a specific publication
PublishersAPI RetrievePublisher Get /publishers/{id} get a specific publisher
PublishersAPI RetrievePublisherSeries Get /publishers/{id}/series get the list of series for a specific publisher
PublishersAPI SearchPublishersPost Post /publishers/search search publishers
PublishersAPI UpdatePublisher Patch /publishers/{id} update a publisher
ReleasesAPI AddRelease Post /releases add an release
ReleasesAPI DeleteRelease Delete /releases/{id} delete a release
ReleasesAPI ListReleasesByDay Get /releases/days show releases by day
ReleasesAPI ModerateReleasesPost Post /releases/moderate search releases to moderate
ReleasesAPI ReleaseRssFeed Get /releases/rss releases rss feed
ReleasesAPI RetrieveRelease Get /releases/{id} get a specific release
ReleasesAPI SearchReleasesPost Post /releases/search search releases
ReleasesAPI UpdateRelease Patch /releases/{id} update an release
ReviewsAPI AddReview Post /reviews add a review
ReviewsAPI AddReviewComment Post /reviews/{id}/comments add a review comment
ReviewsAPI DeleteReview Delete /reviews/{id} delete a review
ReviewsAPI DeleteReviewComment Delete /reviews/{id}/comments/{comment_id} delete a review comment
ReviewsAPI RetrieveReview Get /reviews/{id} get a specific review
ReviewsAPI RetrieveReviewComment Get /reviews/{id}/comments/{comment_id} get a specific review comment
ReviewsAPI ReviewCommentsModerationPost Post /reviews/comments/moderation moderate review comments
ReviewsAPI SearchReviewCommentsPost Post /reviews/{id}/comments/search search review comments
ReviewsAPI SearchReviewsPost Post /reviews/search search reviews
ReviewsAPI UpdateReview Patch /reviews/{id} update a review
ReviewsAPI UpdateReviewComment Patch /reviews/{id}/comments/{comment_id} update a review comment
SeriesAPI AddSeries Post /series add an series
SeriesAPI AddSeriesCategoryVote Post /series/{id}/categories/vote add a vote for a category on a series
SeriesAPI AddSeriesComment Post /series/{id}/comments add a series comment
SeriesAPI AddSeriesCommentUsefulFlag Put /series/{id}/comments/{comment_id}/useful set usefulness of a series comment
SeriesAPI CombineSeriesCategories Post /series/{id}/categories/combine combine two series categories
SeriesAPI DeleteSeries Delete /series/{id} delete a series
SeriesAPI DeleteSeriesCategory Post /series/{id}/categories/delete deletes a series category
SeriesAPI DeleteSeriesComment Delete /series/{id}/comments/{comment_id} delete a series comment
SeriesAPI DeleteSeriesImage Delete /series/{id}/image delete the image of an series
SeriesAPI DeleteUserSeriesRating Delete /series/{id}/rating delete a series rating for a user
SeriesAPI LockSeriesField Post /series/{id}/locks/{item}/lock lock a field of an series
SeriesAPI RemoveSeriesCategoryVote Post /series/{id}/categories/vote/delete remove series category vote for user
SeriesAPI RemoveSeriesCommentUsefulFlag Delete /series/{id}/comments/{comment_id}/useful remove usefulness of a series comment
SeriesAPI RenameSeriesCategory Post /series/{id}/categories/rename renames a series category
SeriesAPI ReportSeriesComment Post /series/{id}/comments/{comment_id}/report report a series comment
SeriesAPI RetrieveMySeriesComment Get /series/{id}/comments/my_comment get my series comment
SeriesAPI RetrieveSeries Get /series/{id} get a specific series
SeriesAPI RetrieveSeriesCategoryVotes Get /series/{id}/categories/votes get category votes for the current user
SeriesAPI RetrieveSeriesComment Get /series/{id}/comments/{comment_id} get a specific series comment
SeriesAPI RetrieveSeriesCommentLocation Get /series/{id}/comments/{comment_id}/location get a specific series comment location
SeriesAPI RetrieveSeriesGroups Get /series/{id}/groups get the list of groups scanlating a specific series
SeriesAPI RetrieveSeriesLocks Get /series/{id}/locks get a specific series lock
SeriesAPI RetrieveSeriesRankLocation Get /series/{id}/rank/{type} get a specific series rank location
SeriesAPI RetrieveSeriesRatingRainbow Get /series/{id}/ratingrainbow get a the series rating rainbow
SeriesAPI RetrieveUserSeriesRating Get /series/{id}/rating get a specific series rating for a user
SeriesAPI SearchSeriesCommentsPost Post /series/{id}/comments/search search series comments
SeriesAPI SearchSeriesHistoryPost Post /series/{id}/history search series history
SeriesAPI SearchSeriesPost Post /series/search search series
SeriesAPI SeriesCommentsModerationPost Post /series/comments/moderation moderate series comments
SeriesAPI SeriesReleaseRssFeed Get /series/{id}/rss releases rss feed for a specific series
SeriesAPI UnlockSeriesField Post /series/{id}/locks/{item}/unlock unlock a field of an series
SeriesAPI UpdateSeries Patch /series/{id} update an series
SeriesAPI UpdateSeriesComment Patch /series/{id}/comments/{comment_id} update a series comment
SeriesAPI UpdateSeriesImage Post /series/{id}/image update the image of an series
SeriesAPI UpdateUserSeriesRating Put /series/{id}/rating update the user rating for a series

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

bearerAuth
  • Type: HTTP Bearer token authentication

Example

auth := context.WithValue(context.Background(), sw.ContextAccessToken, "BEARER_TOKEN_STRING")
r, err := client.Service.Operation(auth, args)

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

Documentation ¶

Index ¶

Constants ¶

This section is empty.

Variables ¶

View Source
var (
	// ContextAccessToken takes a string oauth2 access token as authentication for the request.
	ContextAccessToken = contextKey("accesstoken")

	// ContextServerIndex uses a server configuration from the index.
	ContextServerIndex = contextKey("serverIndex")

	// ContextOperationServerIndices uses a server configuration from the index mapping.
	ContextOperationServerIndices = contextKey("serverOperationIndices")

	// ContextServerVariables overrides a server configuration variables.
	ContextServerVariables = contextKey("serverVariables")

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)

Functions ¶

func CacheExpires ¶

func CacheExpires(r *http.Response) time.Time

CacheExpires helper function to determine remaining time before repeating a request.

func IsNil ¶

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool ¶

func PtrBool(v bool) *bool

PtrBool is a helper routine that returns a pointer to given boolean value.

func PtrFloat32 ¶

func PtrFloat32(v float32) *float32

PtrFloat32 is a helper routine that returns a pointer to given float value.

func PtrFloat64 ¶

func PtrFloat64(v float64) *float64

PtrFloat64 is a helper routine that returns a pointer to given float value.

func PtrInt ¶

func PtrInt(v int) *int

PtrInt is a helper routine that returns a pointer to given integer value.

func PtrInt32 ¶

func PtrInt32(v int32) *int32

PtrInt32 is a helper routine that returns a pointer to given integer value.

func PtrInt64 ¶

func PtrInt64(v int64) *int64

PtrInt64 is a helper routine that returns a pointer to given integer value.

func PtrString ¶

func PtrString(v string) *string

PtrString is a helper routine that returns a pointer to given string value.

func PtrTime ¶

func PtrTime(v time.Time) *time.Time

PtrTime is helper routine that returns a pointer to given Time value.

Types ¶

type APIClient ¶

type APIClient struct {
	AboutusAPI *AboutusAPIService

	AccountAPI *AccountAPIService

	AuthorsAPI *AuthorsAPIService

	CategoriesAPI *CategoriesAPIService

	ConvoAPI *ConvoAPIService

	FaqAPI *FaqAPIService

	ForumAPI *ForumAPIService

	GenreAPI *GenreAPIService

	GroupsAPI *GroupsAPIService

	ListsAPI *ListsAPIService

	MembersAPI *MembersAPIService

	MiscAPI *MiscAPIService

	PollAPI *PollAPIService

	PublishersAPI *PublishersAPIService

	ReleasesAPI *ReleasesAPIService

	ReviewsAPI *ReviewsAPIService

	SeriesAPI *SeriesAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the MangaUpdates API API v1.0.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient ¶

func NewAPIClient(cfg *Configuration) *APIClient

NewAPIClient creates a new API client. Requires a userAgent string describing your application. optionally a custom http.Client to allow for advanced features such as caching.

func (*APIClient) GetConfig ¶

func (c *APIClient) GetConfig() *Configuration

Allow modification of underlying config for alternate implementations and testing Caution: modifying the configuration while live can cause data races and potentially unwanted behavior

type APIKey ¶

type APIKey struct {
	Key    string
	Prefix string
}

APIKey provides API key based authentication to a request passed via context using ContextAPIKey

type APIResponse ¶

type APIResponse struct {
	*http.Response `json:"-"`
	Message        string `json:"message,omitempty"`
	// Operation is the name of the OpenAPI operation.
	Operation string `json:"operation,omitempty"`
	// RequestURL is the request URL. This value is always available, even if the
	// embedded *http.Response is nil.
	RequestURL string `json:"url,omitempty"`
	// Method is the HTTP method used for the request.  This value is always
	// available, even if the embedded *http.Response is nil.
	Method string `json:"method,omitempty"`
	// Payload holds the contents of the response body (which may be nil or empty).
	// This is provided here as the raw response.Body() reader will have already
	// been drained.
	Payload []byte `json:"-"`
}

APIResponse stores the API response returned by the server.

func NewAPIResponse ¶

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError ¶

func NewAPIResponseWithError(errorMessage string) *APIResponse

NewAPIResponseWithError returns a new APIResponse object with the provided error message.

type AboutusAPIService ¶

type AboutusAPIService service

AboutusAPIService AboutusAPI service

func (*AboutusAPIService) AddAboutusCategory ¶

AddAboutusCategory add a category

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAddAboutusCategoryRequest

func (*AboutusAPIService) AddAboutusCategoryExecute ¶

func (a *AboutusAPIService) AddAboutusCategoryExecute(r ApiAddAboutusCategoryRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*AboutusAPIService) AddAboutusCategoryUser ¶

func (a *AboutusAPIService) AddAboutusCategoryUser(ctx context.Context, categoryId int64) ApiAddAboutusCategoryUserRequest

AddAboutusCategoryUser add a user to a category

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param categoryId Aboutus Category id
@return ApiAddAboutusCategoryUserRequest

func (*AboutusAPIService) AddAboutusCategoryUserExecute ¶

func (a *AboutusAPIService) AddAboutusCategoryUserExecute(r ApiAddAboutusCategoryUserRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*AboutusAPIService) DeleteAboutusCategory ¶

func (a *AboutusAPIService) DeleteAboutusCategory(ctx context.Context, categoryId int64) ApiDeleteAboutusCategoryRequest

DeleteAboutusCategory remove a category

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param categoryId Aboutus Category id
@return ApiDeleteAboutusCategoryRequest

func (*AboutusAPIService) DeleteAboutusCategoryExecute ¶

func (a *AboutusAPIService) DeleteAboutusCategoryExecute(r ApiDeleteAboutusCategoryRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*AboutusAPIService) DeleteAboutusCategoryUser ¶

func (a *AboutusAPIService) DeleteAboutusCategoryUser(ctx context.Context, categoryId int64, entryId int64) ApiDeleteAboutusCategoryUserRequest

DeleteAboutusCategoryUser remove a user from a category

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param categoryId Aboutus Category id
@param entryId Aboutus Category User Entry id
@return ApiDeleteAboutusCategoryUserRequest

func (*AboutusAPIService) DeleteAboutusCategoryUserExecute ¶

func (a *AboutusAPIService) DeleteAboutusCategoryUserExecute(r ApiDeleteAboutusCategoryUserRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*AboutusAPIService) ReorderAboutus ¶

ReorderAboutus reorder aboutus

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiReorderAboutusRequest

func (*AboutusAPIService) ReorderAboutusExecute ¶

func (a *AboutusAPIService) ReorderAboutusExecute(r ApiReorderAboutusRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*AboutusAPIService) RetrieveAboutusCategoriesAndUsers ¶

func (a *AboutusAPIService) RetrieveAboutusCategoriesAndUsers(ctx context.Context) ApiRetrieveAboutusCategoriesAndUsersRequest

RetrieveAboutusCategoriesAndUsers returns categories and users

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiRetrieveAboutusCategoriesAndUsersRequest

func (*AboutusAPIService) RetrieveAboutusCategoriesAndUsersExecute ¶

func (a *AboutusAPIService) RetrieveAboutusCategoriesAndUsersExecute(r ApiRetrieveAboutusCategoriesAndUsersRequest) ([]AboutusCategoryModelV1, *http.Response, error)

Execute executes the request

@return []AboutusCategoryModelV1

func (*AboutusAPIService) RetrieveAboutusCategory ¶

func (a *AboutusAPIService) RetrieveAboutusCategory(ctx context.Context, categoryId int64) ApiRetrieveAboutusCategoryRequest

RetrieveAboutusCategory returns a single category

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param categoryId Aboutus Category id
@return ApiRetrieveAboutusCategoryRequest

func (*AboutusAPIService) RetrieveAboutusCategoryExecute ¶

Execute executes the request

@return AboutusCategoryModelV1

func (*AboutusAPIService) RetrieveAboutusDescription ¶

func (a *AboutusAPIService) RetrieveAboutusDescription(ctx context.Context) ApiRetrieveAboutusDescriptionRequest

RetrieveAboutusDescription returns description of site

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiRetrieveAboutusDescriptionRequest

func (*AboutusAPIService) RetrieveAboutusDescriptionExecute ¶

Execute executes the request

@return AboutusDescriptionModelV1

func (*AboutusAPIService) UpdateAboutusCategory ¶

func (a *AboutusAPIService) UpdateAboutusCategory(ctx context.Context, categoryId int64) ApiUpdateAboutusCategoryRequest

UpdateAboutusCategory update a category

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param categoryId id of category
@return ApiUpdateAboutusCategoryRequest

func (*AboutusAPIService) UpdateAboutusCategoryExecute ¶

func (a *AboutusAPIService) UpdateAboutusCategoryExecute(r ApiUpdateAboutusCategoryRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*AboutusAPIService) UpdateAboutusDescription ¶

func (a *AboutusAPIService) UpdateAboutusDescription(ctx context.Context) ApiUpdateAboutusDescriptionRequest

UpdateAboutusDescription update description of site

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUpdateAboutusDescriptionRequest

func (*AboutusAPIService) UpdateAboutusDescriptionExecute ¶

func (a *AboutusAPIService) UpdateAboutusDescriptionExecute(r ApiUpdateAboutusDescriptionRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

type AboutusCategoryModelUpdateV1 ¶

type AboutusCategoryModelUpdateV1 struct {
	Title *string `json:"title,omitempty"`
}

AboutusCategoryModelUpdateV1 struct for AboutusCategoryModelUpdateV1

func NewAboutusCategoryModelUpdateV1 ¶

func NewAboutusCategoryModelUpdateV1() *AboutusCategoryModelUpdateV1

NewAboutusCategoryModelUpdateV1 instantiates a new AboutusCategoryModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAboutusCategoryModelUpdateV1WithDefaults ¶

func NewAboutusCategoryModelUpdateV1WithDefaults() *AboutusCategoryModelUpdateV1

NewAboutusCategoryModelUpdateV1WithDefaults instantiates a new AboutusCategoryModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AboutusCategoryModelUpdateV1) GetTitle ¶

func (o *AboutusCategoryModelUpdateV1) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*AboutusCategoryModelUpdateV1) GetTitleOk ¶

func (o *AboutusCategoryModelUpdateV1) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AboutusCategoryModelUpdateV1) HasTitle ¶

func (o *AboutusCategoryModelUpdateV1) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (AboutusCategoryModelUpdateV1) MarshalJSON ¶

func (o AboutusCategoryModelUpdateV1) MarshalJSON() ([]byte, error)

func (*AboutusCategoryModelUpdateV1) SetTitle ¶

func (o *AboutusCategoryModelUpdateV1) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (AboutusCategoryModelUpdateV1) ToMap ¶

func (o AboutusCategoryModelUpdateV1) ToMap() (map[string]interface{}, error)

type AboutusCategoryModelV1 ¶

type AboutusCategoryModelV1 struct {
	CategoryId int64                `json:"category_id"`
	Position   *int64               `json:"position,omitempty"`
	Title      *string              `json:"title,omitempty"`
	Users      []AboutusUserModelV1 `json:"users,omitempty"`
}

AboutusCategoryModelV1 struct for AboutusCategoryModelV1

func NewAboutusCategoryModelV1 ¶

func NewAboutusCategoryModelV1(categoryId int64) *AboutusCategoryModelV1

NewAboutusCategoryModelV1 instantiates a new AboutusCategoryModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAboutusCategoryModelV1WithDefaults ¶

func NewAboutusCategoryModelV1WithDefaults() *AboutusCategoryModelV1

NewAboutusCategoryModelV1WithDefaults instantiates a new AboutusCategoryModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AboutusCategoryModelV1) GetCategoryId ¶

func (o *AboutusCategoryModelV1) GetCategoryId() int64

GetCategoryId returns the CategoryId field value

func (*AboutusCategoryModelV1) GetCategoryIdOk ¶

func (o *AboutusCategoryModelV1) GetCategoryIdOk() (*int64, bool)

GetCategoryIdOk returns a tuple with the CategoryId field value and a boolean to check if the value has been set.

func (*AboutusCategoryModelV1) GetPosition ¶

func (o *AboutusCategoryModelV1) GetPosition() int64

GetPosition returns the Position field value if set, zero value otherwise.

func (*AboutusCategoryModelV1) GetPositionOk ¶

func (o *AboutusCategoryModelV1) GetPositionOk() (*int64, bool)

GetPositionOk returns a tuple with the Position field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AboutusCategoryModelV1) GetTitle ¶

func (o *AboutusCategoryModelV1) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*AboutusCategoryModelV1) GetTitleOk ¶

func (o *AboutusCategoryModelV1) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AboutusCategoryModelV1) GetUsers ¶

GetUsers returns the Users field value if set, zero value otherwise.

func (*AboutusCategoryModelV1) GetUsersOk ¶

func (o *AboutusCategoryModelV1) GetUsersOk() ([]AboutusUserModelV1, bool)

GetUsersOk returns a tuple with the Users field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AboutusCategoryModelV1) HasPosition ¶

func (o *AboutusCategoryModelV1) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (*AboutusCategoryModelV1) HasTitle ¶

func (o *AboutusCategoryModelV1) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*AboutusCategoryModelV1) HasUsers ¶

func (o *AboutusCategoryModelV1) HasUsers() bool

HasUsers returns a boolean if a field has been set.

func (AboutusCategoryModelV1) MarshalJSON ¶

func (o AboutusCategoryModelV1) MarshalJSON() ([]byte, error)

func (*AboutusCategoryModelV1) SetCategoryId ¶

func (o *AboutusCategoryModelV1) SetCategoryId(v int64)

SetCategoryId sets field value

func (*AboutusCategoryModelV1) SetPosition ¶

func (o *AboutusCategoryModelV1) SetPosition(v int64)

SetPosition gets a reference to the given int64 and assigns it to the Position field.

func (*AboutusCategoryModelV1) SetTitle ¶

func (o *AboutusCategoryModelV1) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*AboutusCategoryModelV1) SetUsers ¶

func (o *AboutusCategoryModelV1) SetUsers(v []AboutusUserModelV1)

SetUsers gets a reference to the given []AboutusUserModelV1 and assigns it to the Users field.

func (AboutusCategoryModelV1) ToMap ¶

func (o AboutusCategoryModelV1) ToMap() (map[string]interface{}, error)

type AboutusCategoryReorderModelV1 ¶

type AboutusCategoryReorderModelV1 struct {
	CategoryId int64                       `json:"category_id"`
	Position   *int64                      `json:"position,omitempty"`
	Users      []AboutusUserReorderModelV1 `json:"users,omitempty"`
}

AboutusCategoryReorderModelV1 struct for AboutusCategoryReorderModelV1

func NewAboutusCategoryReorderModelV1 ¶

func NewAboutusCategoryReorderModelV1(categoryId int64) *AboutusCategoryReorderModelV1

NewAboutusCategoryReorderModelV1 instantiates a new AboutusCategoryReorderModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAboutusCategoryReorderModelV1WithDefaults ¶

func NewAboutusCategoryReorderModelV1WithDefaults() *AboutusCategoryReorderModelV1

NewAboutusCategoryReorderModelV1WithDefaults instantiates a new AboutusCategoryReorderModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AboutusCategoryReorderModelV1) GetCategoryId ¶

func (o *AboutusCategoryReorderModelV1) GetCategoryId() int64

GetCategoryId returns the CategoryId field value

func (*AboutusCategoryReorderModelV1) GetCategoryIdOk ¶

func (o *AboutusCategoryReorderModelV1) GetCategoryIdOk() (*int64, bool)

GetCategoryIdOk returns a tuple with the CategoryId field value and a boolean to check if the value has been set.

func (*AboutusCategoryReorderModelV1) GetPosition ¶

func (o *AboutusCategoryReorderModelV1) GetPosition() int64

GetPosition returns the Position field value if set, zero value otherwise.

func (*AboutusCategoryReorderModelV1) GetPositionOk ¶

func (o *AboutusCategoryReorderModelV1) GetPositionOk() (*int64, bool)

GetPositionOk returns a tuple with the Position field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AboutusCategoryReorderModelV1) GetUsers ¶

GetUsers returns the Users field value if set, zero value otherwise.

func (*AboutusCategoryReorderModelV1) GetUsersOk ¶

GetUsersOk returns a tuple with the Users field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AboutusCategoryReorderModelV1) HasPosition ¶

func (o *AboutusCategoryReorderModelV1) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (*AboutusCategoryReorderModelV1) HasUsers ¶

func (o *AboutusCategoryReorderModelV1) HasUsers() bool

HasUsers returns a boolean if a field has been set.

func (AboutusCategoryReorderModelV1) MarshalJSON ¶

func (o AboutusCategoryReorderModelV1) MarshalJSON() ([]byte, error)

func (*AboutusCategoryReorderModelV1) SetCategoryId ¶

func (o *AboutusCategoryReorderModelV1) SetCategoryId(v int64)

SetCategoryId sets field value

func (*AboutusCategoryReorderModelV1) SetPosition ¶

func (o *AboutusCategoryReorderModelV1) SetPosition(v int64)

SetPosition gets a reference to the given int64 and assigns it to the Position field.

func (*AboutusCategoryReorderModelV1) SetUsers ¶

SetUsers gets a reference to the given []AboutusUserReorderModelV1 and assigns it to the Users field.

func (AboutusCategoryReorderModelV1) ToMap ¶

func (o AboutusCategoryReorderModelV1) ToMap() (map[string]interface{}, error)

type AboutusDescriptionModelV1 ¶

type AboutusDescriptionModelV1 struct {
	Description *string `json:"description,omitempty"`
}

AboutusDescriptionModelV1 struct for AboutusDescriptionModelV1

func NewAboutusDescriptionModelV1 ¶

func NewAboutusDescriptionModelV1() *AboutusDescriptionModelV1

NewAboutusDescriptionModelV1 instantiates a new AboutusDescriptionModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAboutusDescriptionModelV1WithDefaults ¶

func NewAboutusDescriptionModelV1WithDefaults() *AboutusDescriptionModelV1

NewAboutusDescriptionModelV1WithDefaults instantiates a new AboutusDescriptionModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AboutusDescriptionModelV1) GetDescription ¶

func (o *AboutusDescriptionModelV1) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*AboutusDescriptionModelV1) GetDescriptionOk ¶

func (o *AboutusDescriptionModelV1) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AboutusDescriptionModelV1) HasDescription ¶

func (o *AboutusDescriptionModelV1) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (AboutusDescriptionModelV1) MarshalJSON ¶

func (o AboutusDescriptionModelV1) MarshalJSON() ([]byte, error)

func (*AboutusDescriptionModelV1) SetDescription ¶

func (o *AboutusDescriptionModelV1) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (AboutusDescriptionModelV1) ToMap ¶

func (o AboutusDescriptionModelV1) ToMap() (map[string]interface{}, error)

type AboutusUserModelUpdateV1 ¶

type AboutusUserModelUpdateV1 struct {
	Username *string `json:"username,omitempty"`
}

AboutusUserModelUpdateV1 struct for AboutusUserModelUpdateV1

func NewAboutusUserModelUpdateV1 ¶

func NewAboutusUserModelUpdateV1() *AboutusUserModelUpdateV1

NewAboutusUserModelUpdateV1 instantiates a new AboutusUserModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAboutusUserModelUpdateV1WithDefaults ¶

func NewAboutusUserModelUpdateV1WithDefaults() *AboutusUserModelUpdateV1

NewAboutusUserModelUpdateV1WithDefaults instantiates a new AboutusUserModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AboutusUserModelUpdateV1) GetUsername ¶

func (o *AboutusUserModelUpdateV1) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*AboutusUserModelUpdateV1) GetUsernameOk ¶

func (o *AboutusUserModelUpdateV1) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AboutusUserModelUpdateV1) HasUsername ¶

func (o *AboutusUserModelUpdateV1) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (AboutusUserModelUpdateV1) MarshalJSON ¶

func (o AboutusUserModelUpdateV1) MarshalJSON() ([]byte, error)

func (*AboutusUserModelUpdateV1) SetUsername ¶

func (o *AboutusUserModelUpdateV1) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (AboutusUserModelUpdateV1) ToMap ¶

func (o AboutusUserModelUpdateV1) ToMap() (map[string]interface{}, error)

type AboutusUserModelV1 ¶

type AboutusUserModelV1 struct {
	EntryId  int64   `json:"entry_id"`
	Position *int64  `json:"position,omitempty"`
	Username *string `json:"username,omitempty"`
	UserId   *int64  `json:"user_id,omitempty"`
}

AboutusUserModelV1 struct for AboutusUserModelV1

func NewAboutusUserModelV1 ¶

func NewAboutusUserModelV1(entryId int64) *AboutusUserModelV1

NewAboutusUserModelV1 instantiates a new AboutusUserModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAboutusUserModelV1WithDefaults ¶

func NewAboutusUserModelV1WithDefaults() *AboutusUserModelV1

NewAboutusUserModelV1WithDefaults instantiates a new AboutusUserModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AboutusUserModelV1) GetEntryId ¶

func (o *AboutusUserModelV1) GetEntryId() int64

GetEntryId returns the EntryId field value

func (*AboutusUserModelV1) GetEntryIdOk ¶

func (o *AboutusUserModelV1) GetEntryIdOk() (*int64, bool)

GetEntryIdOk returns a tuple with the EntryId field value and a boolean to check if the value has been set.

func (*AboutusUserModelV1) GetPosition ¶

func (o *AboutusUserModelV1) GetPosition() int64

GetPosition returns the Position field value if set, zero value otherwise.

func (*AboutusUserModelV1) GetPositionOk ¶

func (o *AboutusUserModelV1) GetPositionOk() (*int64, bool)

GetPositionOk returns a tuple with the Position field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AboutusUserModelV1) GetUserId ¶

func (o *AboutusUserModelV1) GetUserId() int64

GetUserId returns the UserId field value if set, zero value otherwise.

func (*AboutusUserModelV1) GetUserIdOk ¶

func (o *AboutusUserModelV1) GetUserIdOk() (*int64, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AboutusUserModelV1) GetUsername ¶

func (o *AboutusUserModelV1) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*AboutusUserModelV1) GetUsernameOk ¶

func (o *AboutusUserModelV1) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AboutusUserModelV1) HasPosition ¶

func (o *AboutusUserModelV1) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (*AboutusUserModelV1) HasUserId ¶

func (o *AboutusUserModelV1) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (*AboutusUserModelV1) HasUsername ¶

func (o *AboutusUserModelV1) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (AboutusUserModelV1) MarshalJSON ¶

func (o AboutusUserModelV1) MarshalJSON() ([]byte, error)

func (*AboutusUserModelV1) SetEntryId ¶

func (o *AboutusUserModelV1) SetEntryId(v int64)

SetEntryId sets field value

func (*AboutusUserModelV1) SetPosition ¶

func (o *AboutusUserModelV1) SetPosition(v int64)

SetPosition gets a reference to the given int64 and assigns it to the Position field.

func (*AboutusUserModelV1) SetUserId ¶

func (o *AboutusUserModelV1) SetUserId(v int64)

SetUserId gets a reference to the given int64 and assigns it to the UserId field.

func (*AboutusUserModelV1) SetUsername ¶

func (o *AboutusUserModelV1) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (AboutusUserModelV1) ToMap ¶

func (o AboutusUserModelV1) ToMap() (map[string]interface{}, error)

type AboutusUserReorderModelV1 ¶

type AboutusUserReorderModelV1 struct {
	EntryId  int64  `json:"entry_id"`
	Position *int64 `json:"position,omitempty"`
}

AboutusUserReorderModelV1 struct for AboutusUserReorderModelV1

func NewAboutusUserReorderModelV1 ¶

func NewAboutusUserReorderModelV1(entryId int64) *AboutusUserReorderModelV1

NewAboutusUserReorderModelV1 instantiates a new AboutusUserReorderModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAboutusUserReorderModelV1WithDefaults ¶

func NewAboutusUserReorderModelV1WithDefaults() *AboutusUserReorderModelV1

NewAboutusUserReorderModelV1WithDefaults instantiates a new AboutusUserReorderModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AboutusUserReorderModelV1) GetEntryId ¶

func (o *AboutusUserReorderModelV1) GetEntryId() int64

GetEntryId returns the EntryId field value

func (*AboutusUserReorderModelV1) GetEntryIdOk ¶

func (o *AboutusUserReorderModelV1) GetEntryIdOk() (*int64, bool)

GetEntryIdOk returns a tuple with the EntryId field value and a boolean to check if the value has been set.

func (*AboutusUserReorderModelV1) GetPosition ¶

func (o *AboutusUserReorderModelV1) GetPosition() int64

GetPosition returns the Position field value if set, zero value otherwise.

func (*AboutusUserReorderModelV1) GetPositionOk ¶

func (o *AboutusUserReorderModelV1) GetPositionOk() (*int64, bool)

GetPositionOk returns a tuple with the Position field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AboutusUserReorderModelV1) HasPosition ¶

func (o *AboutusUserReorderModelV1) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (AboutusUserReorderModelV1) MarshalJSON ¶

func (o AboutusUserReorderModelV1) MarshalJSON() ([]byte, error)

func (*AboutusUserReorderModelV1) SetEntryId ¶

func (o *AboutusUserReorderModelV1) SetEntryId(v int64)

SetEntryId sets field value

func (*AboutusUserReorderModelV1) SetPosition ¶

func (o *AboutusUserReorderModelV1) SetPosition(v int64)

SetPosition gets a reference to the given int64 and assigns it to the Position field.

func (AboutusUserReorderModelV1) ToMap ¶

func (o AboutusUserReorderModelV1) ToMap() (map[string]interface{}, error)

type AccountAPIService ¶

type AccountAPIService service

AccountAPIService AccountAPI service

func (*AccountAPIService) Captcha ¶

Captcha retrieve the public captcha key

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCaptchaRequest

func (*AccountAPIService) CaptchaExecute ¶

Execute executes the request

@return ApiResponseV1

func (*AccountAPIService) ConfirmAndChangePassword ¶

func (a *AccountAPIService) ConfirmAndChangePassword(ctx context.Context, authHash string) ApiConfirmAndChangePasswordRequest

ConfirmAndChangePassword update a password change using an auth hash

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param authHash auth hash from email confirmation
@return ApiConfirmAndChangePasswordRequest

func (*AccountAPIService) ConfirmAndChangePasswordExecute ¶

func (a *AccountAPIService) ConfirmAndChangePasswordExecute(r ApiConfirmAndChangePasswordRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*AccountAPIService) ConfirmDeleteAccount ¶

func (a *AccountAPIService) ConfirmDeleteAccount(ctx context.Context, authHash string) ApiConfirmDeleteAccountRequest

ConfirmDeleteAccount confirm deletion of your account

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param authHash auth hash from email confirmation
@return ApiConfirmDeleteAccountRequest

func (*AccountAPIService) ConfirmDeleteAccountExecute ¶

func (a *AccountAPIService) ConfirmDeleteAccountExecute(r ApiConfirmDeleteAccountRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*AccountAPIService) ConfirmRegistration ¶

func (a *AccountAPIService) ConfirmRegistration(ctx context.Context, authHash string) ApiConfirmRegistrationRequest

ConfirmRegistration confirm a new member registration

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param authHash auth hash from email confirmation
@return ApiConfirmRegistrationRequest

func (*AccountAPIService) ConfirmRegistrationExecute ¶

func (a *AccountAPIService) ConfirmRegistrationExecute(r ApiConfirmRegistrationRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*AccountAPIService) DeleteAccount ¶

func (a *AccountAPIService) DeleteAccount(ctx context.Context, captchaResponse string) ApiDeleteAccountRequest

DeleteAccount delete your account

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param captchaResponse response of captcha
@return ApiDeleteAccountRequest

func (*AccountAPIService) DeleteAccountExecute ¶

func (a *AccountAPIService) DeleteAccountExecute(r ApiDeleteAccountRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*AccountAPIService) ForgotPassword ¶

func (a *AccountAPIService) ForgotPassword(ctx context.Context, captchaResponse string) ApiForgotPasswordRequest

ForgotPassword send a forgotten password email

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param captchaResponse response of captcha
@return ApiForgotPasswordRequest

func (*AccountAPIService) ForgotPasswordExecute ¶

func (a *AccountAPIService) ForgotPasswordExecute(r ApiForgotPasswordRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*AccountAPIService) Login ¶

Login create a session token

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiLoginRequest

func (*AccountAPIService) LoginExecute ¶

Execute executes the request

@return ApiResponseV1

func (*AccountAPIService) Logout ¶

Logout remove a session token

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiLogoutRequest

func (*AccountAPIService) LogoutExecute ¶

Execute executes the request

@return ApiResponseV1

func (*AccountAPIService) Profile ¶

Profile get the profile for the current user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiProfileRequest

func (*AccountAPIService) ProfileExecute ¶

Execute executes the request

@return UserModelV1

func (*AccountAPIService) RegisterMember ¶

func (a *AccountAPIService) RegisterMember(ctx context.Context, captchaResponse string) ApiRegisterMemberRequest

RegisterMember register a new member

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param captchaResponse response of captcha
@return ApiRegisterMemberRequest

func (*AccountAPIService) RegisterMemberExecute ¶

func (a *AccountAPIService) RegisterMemberExecute(r ApiRegisterMemberRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*AccountAPIService) ResendAuthEmail ¶

func (a *AccountAPIService) ResendAuthEmail(ctx context.Context, id int64) ApiResendAuthEmailRequest

ResendAuthEmail send an auth email to a user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Member id
@return ApiResendAuthEmailRequest

func (*AccountAPIService) ResendAuthEmailExecute ¶

func (a *AccountAPIService) ResendAuthEmailExecute(r ApiResendAuthEmailRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*AccountAPIService) SendForgotEmail ¶

func (a *AccountAPIService) SendForgotEmail(ctx context.Context, id int64) ApiSendForgotEmailRequest

SendForgotEmail send a forgotten password email to a user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Member id
@return ApiSendForgotEmailRequest

func (*AccountAPIService) SendForgotEmailExecute ¶

func (a *AccountAPIService) SendForgotEmailExecute(r ApiSendForgotEmailRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

type AccountForgotPassModelV1 ¶

type AccountForgotPassModelV1 struct {
	Email *string `json:"email,omitempty"`
}

AccountForgotPassModelV1 struct for AccountForgotPassModelV1

func NewAccountForgotPassModelV1 ¶

func NewAccountForgotPassModelV1() *AccountForgotPassModelV1

NewAccountForgotPassModelV1 instantiates a new AccountForgotPassModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAccountForgotPassModelV1WithDefaults ¶

func NewAccountForgotPassModelV1WithDefaults() *AccountForgotPassModelV1

NewAccountForgotPassModelV1WithDefaults instantiates a new AccountForgotPassModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AccountForgotPassModelV1) GetEmail ¶

func (o *AccountForgotPassModelV1) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*AccountForgotPassModelV1) GetEmailOk ¶

func (o *AccountForgotPassModelV1) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AccountForgotPassModelV1) HasEmail ¶

func (o *AccountForgotPassModelV1) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (AccountForgotPassModelV1) MarshalJSON ¶

func (o AccountForgotPassModelV1) MarshalJSON() ([]byte, error)

func (*AccountForgotPassModelV1) SetEmail ¶

func (o *AccountForgotPassModelV1) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (AccountForgotPassModelV1) ToMap ¶

func (o AccountForgotPassModelV1) ToMap() (map[string]interface{}, error)

type AccountLoginModelV1 ¶

type AccountLoginModelV1 struct {
	Username *string `json:"username,omitempty"`
	Password *string `json:"password,omitempty"`
}

AccountLoginModelV1 struct for AccountLoginModelV1

func NewAccountLoginModelV1 ¶

func NewAccountLoginModelV1() *AccountLoginModelV1

NewAccountLoginModelV1 instantiates a new AccountLoginModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAccountLoginModelV1WithDefaults ¶

func NewAccountLoginModelV1WithDefaults() *AccountLoginModelV1

NewAccountLoginModelV1WithDefaults instantiates a new AccountLoginModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AccountLoginModelV1) GetPassword ¶

func (o *AccountLoginModelV1) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*AccountLoginModelV1) GetPasswordOk ¶

func (o *AccountLoginModelV1) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AccountLoginModelV1) GetUsername ¶

func (o *AccountLoginModelV1) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*AccountLoginModelV1) GetUsernameOk ¶

func (o *AccountLoginModelV1) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AccountLoginModelV1) HasPassword ¶

func (o *AccountLoginModelV1) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*AccountLoginModelV1) HasUsername ¶

func (o *AccountLoginModelV1) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (AccountLoginModelV1) MarshalJSON ¶

func (o AccountLoginModelV1) MarshalJSON() ([]byte, error)

func (*AccountLoginModelV1) SetPassword ¶

func (o *AccountLoginModelV1) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*AccountLoginModelV1) SetUsername ¶

func (o *AccountLoginModelV1) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (AccountLoginModelV1) ToMap ¶

func (o AccountLoginModelV1) ToMap() (map[string]interface{}, error)

type ApiAbandonConvoBulkRequest ¶

type ApiAbandonConvoBulkRequest struct {
	ApiService *ConvoAPIService
	// contains filtered or unexported fields
}

func (ApiAbandonConvoBulkRequest) ConvoBulkModelV1 ¶

func (r ApiAbandonConvoBulkRequest) ConvoBulkModelV1(convoBulkModelV1 ConvoBulkModelV1) ApiAbandonConvoBulkRequest

func (ApiAbandonConvoBulkRequest) Execute ¶

type ApiAbandonConvoRequest ¶

type ApiAbandonConvoRequest struct {
	ApiService *ConvoAPIService
	// contains filtered or unexported fields
}

func (ApiAbandonConvoRequest) Execute ¶

type ApiAddAboutusCategoryRequest ¶

type ApiAddAboutusCategoryRequest struct {
	ApiService *AboutusAPIService
	// contains filtered or unexported fields
}

func (ApiAddAboutusCategoryRequest) AboutusCategoryModelUpdateV1 ¶

func (r ApiAddAboutusCategoryRequest) AboutusCategoryModelUpdateV1(aboutusCategoryModelUpdateV1 AboutusCategoryModelUpdateV1) ApiAddAboutusCategoryRequest

func (ApiAddAboutusCategoryRequest) Execute ¶

type ApiAddAboutusCategoryUserRequest ¶

type ApiAddAboutusCategoryUserRequest struct {
	ApiService *AboutusAPIService
	// contains filtered or unexported fields
}

func (ApiAddAboutusCategoryUserRequest) AboutusUserModelUpdateV1 ¶

func (r ApiAddAboutusCategoryUserRequest) AboutusUserModelUpdateV1(aboutusUserModelUpdateV1 AboutusUserModelUpdateV1) ApiAddAboutusCategoryUserRequest

func (ApiAddAboutusCategoryUserRequest) Execute ¶

type ApiAddAuthorRequest ¶

type ApiAddAuthorRequest struct {
	ApiService *AuthorsAPIService
	// contains filtered or unexported fields
}

func (ApiAddAuthorRequest) AuthorsModelUpdateV1 ¶

func (r ApiAddAuthorRequest) AuthorsModelUpdateV1(authorsModelUpdateV1 AuthorsModelUpdateV1) ApiAddAuthorRequest

func (ApiAddAuthorRequest) Execute ¶

type ApiAddConvoMessageRequest ¶

type ApiAddConvoMessageRequest struct {
	ApiService *ConvoAPIService
	// contains filtered or unexported fields
}

func (ApiAddConvoMessageRequest) ConvoMessageModelUpdateV1 ¶

func (r ApiAddConvoMessageRequest) ConvoMessageModelUpdateV1(convoMessageModelUpdateV1 ConvoMessageModelUpdateV1) ApiAddConvoMessageRequest

func (ApiAddConvoMessageRequest) Execute ¶

type ApiAddConvoRequest ¶

type ApiAddConvoRequest struct {
	ApiService *ConvoAPIService
	// contains filtered or unexported fields
}

func (ApiAddConvoRequest) ConvoModelAddV1 ¶

func (r ApiAddConvoRequest) ConvoModelAddV1(convoModelAddV1 ConvoModelAddV1) ApiAddConvoRequest

func (ApiAddConvoRequest) Execute ¶

type ApiAddCustomListRequest ¶

type ApiAddCustomListRequest struct {
	ApiService *ListsAPIService
	// contains filtered or unexported fields
}

func (ApiAddCustomListRequest) Execute ¶

func (ApiAddCustomListRequest) ListsModelUpdateV1 ¶

func (r ApiAddCustomListRequest) ListsModelUpdateV1(listsModelUpdateV1 ListsModelUpdateV1) ApiAddCustomListRequest

type ApiAddFaqCategoryRequest ¶

type ApiAddFaqCategoryRequest struct {
	ApiService *FaqAPIService
	// contains filtered or unexported fields
}

func (ApiAddFaqCategoryRequest) Execute ¶

func (ApiAddFaqCategoryRequest) FaqCategoryModelUpdateV1 ¶

func (r ApiAddFaqCategoryRequest) FaqCategoryModelUpdateV1(faqCategoryModelUpdateV1 FaqCategoryModelUpdateV1) ApiAddFaqCategoryRequest

type ApiAddFaqQuestionRequest ¶

type ApiAddFaqQuestionRequest struct {
	ApiService *FaqAPIService
	// contains filtered or unexported fields
}

func (ApiAddFaqQuestionRequest) Execute ¶

func (ApiAddFaqQuestionRequest) FaqQuestionModelUpdateV1 ¶

func (r ApiAddFaqQuestionRequest) FaqQuestionModelUpdateV1(faqQuestionModelUpdateV1 FaqQuestionModelUpdateV1) ApiAddFaqQuestionRequest

type ApiAddForumAdminRequest ¶

type ApiAddForumAdminRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiAddForumAdminRequest) Execute ¶

type ApiAddGenreRequest ¶

type ApiAddGenreRequest struct {
	ApiService *GenreAPIService
	// contains filtered or unexported fields
}

func (ApiAddGenreRequest) Execute ¶

func (ApiAddGenreRequest) GenreModelUpdateV1 ¶

func (r ApiAddGenreRequest) GenreModelUpdateV1(genreModelUpdateV1 GenreModelUpdateV1) ApiAddGenreRequest

type ApiAddGroupRequest ¶

type ApiAddGroupRequest struct {
	ApiService *GroupsAPIService
	// contains filtered or unexported fields
}

func (ApiAddGroupRequest) Execute ¶

func (ApiAddGroupRequest) GroupsModelUpdateV1 ¶

func (r ApiAddGroupRequest) GroupsModelUpdateV1(groupsModelUpdateV1 GroupsModelUpdateV1) ApiAddGroupRequest

type ApiAddListSeriesBulkRequest ¶

type ApiAddListSeriesBulkRequest struct {
	ApiService *ListsAPIService
	// contains filtered or unexported fields
}

func (ApiAddListSeriesBulkRequest) Execute ¶

func (ApiAddListSeriesBulkRequest) ListsBulkAddModelV1 ¶

func (r ApiAddListSeriesBulkRequest) ListsBulkAddModelV1(listsBulkAddModelV1 []ListsBulkAddModelV1) ApiAddListSeriesBulkRequest

type ApiAddListSeriesRequest ¶

type ApiAddListSeriesRequest struct {
	ApiService *ListsAPIService
	// contains filtered or unexported fields
}

func (ApiAddListSeriesRequest) Execute ¶

func (r ApiAddListSeriesRequest) Execute() (*http.Response, error)

func (ApiAddListSeriesRequest) ListsSeriesModelUpdateV1 ¶

func (r ApiAddListSeriesRequest) ListsSeriesModelUpdateV1(listsSeriesModelUpdateV1 []ListsSeriesModelUpdateV1) ApiAddListSeriesRequest

type ApiAddMemberAvatarRequest ¶

type ApiAddMemberAvatarRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiAddMemberAvatarRequest) Execute ¶

func (ApiAddMemberAvatarRequest) Image ¶

Image to update

func (ApiAddMemberAvatarRequest) Title ¶

Title of the new avatar

type ApiAddMemberChangeRequestRequest ¶

type ApiAddMemberChangeRequestRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiAddMemberChangeRequestRequest) Execute ¶

func (ApiAddMemberChangeRequestRequest) UserChangeRequestModelUpdateV1 ¶

func (r ApiAddMemberChangeRequestRequest) UserChangeRequestModelUpdateV1(userChangeRequestModelUpdateV1 UserChangeRequestModelUpdateV1) ApiAddMemberChangeRequestRequest

type ApiAddMemberGenreFilterRequest ¶

type ApiAddMemberGenreFilterRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiAddMemberGenreFilterRequest) Execute ¶

type ApiAddMemberGenreHighlightRequest ¶

type ApiAddMemberGenreHighlightRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiAddMemberGenreHighlightRequest) Execute ¶

func (ApiAddMemberGenreHighlightRequest) UserGenreHighlightModelUpdateV1 ¶

func (r ApiAddMemberGenreHighlightRequest) UserGenreHighlightModelUpdateV1(userGenreHighlightModelUpdateV1 UserGenreHighlightModelUpdateV1) ApiAddMemberGenreHighlightRequest

type ApiAddMemberRequest ¶

type ApiAddMemberRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiAddMemberRequest) Execute ¶

func (ApiAddMemberRequest) UserModelUpdateV1 ¶

func (r ApiAddMemberRequest) UserModelUpdateV1(userModelUpdateV1 UserModelUpdateV1) ApiAddMemberRequest

type ApiAddOrUpdateUserGroupRequest ¶

type ApiAddOrUpdateUserGroupRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiAddOrUpdateUserGroupRequest) Execute ¶

func (ApiAddOrUpdateUserGroupRequest) UserGroupModelUpdateV1 ¶

func (r ApiAddOrUpdateUserGroupRequest) UserGroupModelUpdateV1(userGroupModelUpdateV1 UserGroupModelUpdateV1) ApiAddOrUpdateUserGroupRequest

type ApiAddPollRequest ¶

type ApiAddPollRequest struct {
	ApiService *PollAPIService
	// contains filtered or unexported fields
}

func (ApiAddPollRequest) Execute ¶

func (ApiAddPollRequest) PollModelUpdateV1 ¶

func (r ApiAddPollRequest) PollModelUpdateV1(pollModelUpdateV1 PollModelUpdateV1) ApiAddPollRequest

type ApiAddPollVoteRequest ¶

type ApiAddPollVoteRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiAddPollVoteRequest) Execute ¶

type ApiAddPostRequest ¶

type ApiAddPostRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiAddPostRequest) Execute ¶

func (ApiAddPostRequest) ForumPostModelUpdateV1 ¶

func (r ApiAddPostRequest) ForumPostModelUpdateV1(forumPostModelUpdateV1 ForumPostModelUpdateV1) ApiAddPostRequest

type ApiAddPublisherRequest ¶

type ApiAddPublisherRequest struct {
	ApiService *PublishersAPIService
	// contains filtered or unexported fields
}

func (ApiAddPublisherRequest) Execute ¶

func (ApiAddPublisherRequest) PublishersModelUpdateV1 ¶

func (r ApiAddPublisherRequest) PublishersModelUpdateV1(publishersModelUpdateV1 PublishersModelUpdateV1) ApiAddPublisherRequest

type ApiAddReleaseRequest ¶

type ApiAddReleaseRequest struct {
	ApiService *ReleasesAPIService
	// contains filtered or unexported fields
}

func (ApiAddReleaseRequest) Execute ¶

func (ApiAddReleaseRequest) ReleaseModelUpdateV1 ¶

func (r ApiAddReleaseRequest) ReleaseModelUpdateV1(releaseModelUpdateV1 []ReleaseModelUpdateV1) ApiAddReleaseRequest

type ApiAddReviewCommentRequest ¶

type ApiAddReviewCommentRequest struct {
	ApiService *ReviewsAPIService
	// contains filtered or unexported fields
}

func (ApiAddReviewCommentRequest) Execute ¶

func (ApiAddReviewCommentRequest) ReviewCommentModelUpdateV1 ¶

func (r ApiAddReviewCommentRequest) ReviewCommentModelUpdateV1(reviewCommentModelUpdateV1 ReviewCommentModelUpdateV1) ApiAddReviewCommentRequest

type ApiAddReviewRequest ¶

type ApiAddReviewRequest struct {
	ApiService *ReviewsAPIService
	// contains filtered or unexported fields
}

func (ApiAddReviewRequest) Execute ¶

func (ApiAddReviewRequest) ReviewModelUpdateV1 ¶

func (r ApiAddReviewRequest) ReviewModelUpdateV1(reviewModelUpdateV1 ReviewModelUpdateV1) ApiAddReviewRequest

type ApiAddSeriesCategoryVoteRequest ¶

type ApiAddSeriesCategoryVoteRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiAddSeriesCategoryVoteRequest) Execute ¶

func (ApiAddSeriesCategoryVoteRequest) SeriesCategoryVoteModelV1 ¶

func (r ApiAddSeriesCategoryVoteRequest) SeriesCategoryVoteModelV1(seriesCategoryVoteModelV1 SeriesCategoryVoteModelV1) ApiAddSeriesCategoryVoteRequest

type ApiAddSeriesCommentRequest ¶

type ApiAddSeriesCommentRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiAddSeriesCommentRequest) Execute ¶

func (ApiAddSeriesCommentRequest) SeriesCommentModelUpdateV1 ¶

func (r ApiAddSeriesCommentRequest) SeriesCommentModelUpdateV1(seriesCommentModelUpdateV1 SeriesCommentModelUpdateV1) ApiAddSeriesCommentRequest

type ApiAddSeriesCommentUsefulFlagRequest ¶

type ApiAddSeriesCommentUsefulFlagRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiAddSeriesCommentUsefulFlagRequest) Execute ¶

func (ApiAddSeriesCommentUsefulFlagRequest) SeriesCommentUsefulModelV1 ¶

func (r ApiAddSeriesCommentUsefulFlagRequest) SeriesCommentUsefulModelV1(seriesCommentUsefulModelV1 SeriesCommentUsefulModelV1) ApiAddSeriesCommentUsefulFlagRequest

type ApiAddSeriesRequest ¶

type ApiAddSeriesRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiAddSeriesRequest) Execute ¶

func (ApiAddSeriesRequest) SeriesModelUpdateV1 ¶

func (r ApiAddSeriesRequest) SeriesModelUpdateV1(seriesModelUpdateV1 SeriesModelUpdateV1) ApiAddSeriesRequest

type ApiAddTemporaryPollImageRequest ¶

type ApiAddTemporaryPollImageRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiAddTemporaryPollImageRequest) Caption ¶

Image caption

func (ApiAddTemporaryPollImageRequest) Execute ¶

func (ApiAddTemporaryPollImageRequest) Image ¶

Image to update

type ApiAddTopicRequest ¶

type ApiAddTopicRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiAddTopicRequest) Execute ¶

func (ApiAddTopicRequest) ForumTopicModelAddV1 ¶

func (r ApiAddTopicRequest) ForumTopicModelAddV1(forumTopicModelAddV1 ForumTopicModelAddV1) ApiAddTopicRequest

type ApiAddUserGroupFilterRequest ¶

type ApiAddUserGroupFilterRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiAddUserGroupFilterRequest) Execute ¶

type ApiAddUserTopicSubscriptionRequest ¶

type ApiAddUserTopicSubscriptionRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiAddUserTopicSubscriptionRequest) Execute ¶

type ApiApproveMemberUpgradeRequest ¶

type ApiApproveMemberUpgradeRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiApproveMemberUpgradeRequest) Execute ¶

type ApiArchivePollRequest ¶

type ApiArchivePollRequest struct {
	ApiService *PollAPIService
	// contains filtered or unexported fields
}

func (ApiArchivePollRequest) Execute ¶

type ApiBulkCombineSeriesCategoriesRequest ¶

type ApiBulkCombineSeriesCategoriesRequest struct {
	ApiService *CategoriesAPIService
	// contains filtered or unexported fields
}

func (ApiBulkCombineSeriesCategoriesRequest) Execute ¶

func (ApiBulkCombineSeriesCategoriesRequest) SeriesCategoryUpdateModelV1 ¶

func (r ApiBulkCombineSeriesCategoriesRequest) SeriesCategoryUpdateModelV1(seriesCategoryUpdateModelV1 SeriesCategoryUpdateModelV1) ApiBulkCombineSeriesCategoriesRequest

type ApiBulkDeleteSeriesCategoriesRequest ¶

type ApiBulkDeleteSeriesCategoriesRequest struct {
	ApiService *CategoriesAPIService
	// contains filtered or unexported fields
}

func (ApiBulkDeleteSeriesCategoriesRequest) CategoriesModelUpdateV1 ¶

func (ApiBulkDeleteSeriesCategoriesRequest) Execute ¶

type ApiCaptchaRequest ¶

type ApiCaptchaRequest struct {
	ApiService *AccountAPIService
	// contains filtered or unexported fields
}

func (ApiCaptchaRequest) Execute ¶

type ApiCombineSeriesCategoriesRequest ¶

type ApiCombineSeriesCategoriesRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiCombineSeriesCategoriesRequest) Execute ¶

func (ApiCombineSeriesCategoriesRequest) SeriesCategoryUpdateModelV1 ¶

func (r ApiCombineSeriesCategoriesRequest) SeriesCategoryUpdateModelV1(seriesCategoryUpdateModelV1 SeriesCategoryUpdateModelV1) ApiCombineSeriesCategoriesRequest

type ApiConfirmAndChangePasswordRequest ¶

type ApiConfirmAndChangePasswordRequest struct {
	ApiService *AccountAPIService
	// contains filtered or unexported fields
}

func (ApiConfirmAndChangePasswordRequest) Execute ¶

func (ApiConfirmAndChangePasswordRequest) UserModelUpdatePasswordV1 ¶

func (r ApiConfirmAndChangePasswordRequest) UserModelUpdatePasswordV1(userModelUpdatePasswordV1 UserModelUpdatePasswordV1) ApiConfirmAndChangePasswordRequest

type ApiConfirmDeleteAccountRequest ¶

type ApiConfirmDeleteAccountRequest struct {
	ApiService *AccountAPIService
	// contains filtered or unexported fields
}

func (ApiConfirmDeleteAccountRequest) Execute ¶

type ApiConfirmRegistrationRequest ¶

type ApiConfirmRegistrationRequest struct {
	ApiService *AccountAPIService
	// contains filtered or unexported fields
}

func (ApiConfirmRegistrationRequest) Execute ¶

type ApiConvoInboxCountRequest ¶

type ApiConvoInboxCountRequest struct {
	ApiService *ConvoAPIService
	// contains filtered or unexported fields
}

func (ApiConvoInboxCountRequest) Execute ¶

type ApiConvoInboxRequest ¶

type ApiConvoInboxRequest struct {
	ApiService *ConvoAPIService
	// contains filtered or unexported fields
}

func (ApiConvoInboxRequest) Execute ¶

type ApiConvoReceivedRequest ¶

type ApiConvoReceivedRequest struct {
	ApiService *ConvoAPIService
	// contains filtered or unexported fields
}

func (ApiConvoReceivedRequest) Execute ¶

func (ApiConvoReceivedRequest) PerPageSearchRequestV1 ¶

func (r ApiConvoReceivedRequest) PerPageSearchRequestV1(perPageSearchRequestV1 PerPageSearchRequestV1) ApiConvoReceivedRequest

type ApiConvoSentRequest ¶

type ApiConvoSentRequest struct {
	ApiService *ConvoAPIService
	// contains filtered or unexported fields
}

func (ApiConvoSentRequest) Execute ¶

func (ApiConvoSentRequest) PerPageSearchRequestV1 ¶

func (r ApiConvoSentRequest) PerPageSearchRequestV1(perPageSearchRequestV1 PerPageSearchRequestV1) ApiConvoSentRequest

type ApiDeleteAboutusCategoryRequest ¶

type ApiDeleteAboutusCategoryRequest struct {
	ApiService *AboutusAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteAboutusCategoryRequest) Execute ¶

type ApiDeleteAboutusCategoryUserRequest ¶

type ApiDeleteAboutusCategoryUserRequest struct {
	ApiService *AboutusAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteAboutusCategoryUserRequest) Execute ¶

type ApiDeleteAccountRequest ¶

type ApiDeleteAccountRequest struct {
	ApiService *AccountAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteAccountRequest) Execute ¶

type ApiDeleteAuthorRequest ¶

type ApiDeleteAuthorRequest struct {
	ApiService *AuthorsAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteAuthorRequest) Execute ¶

type ApiDeleteConvoBulkRequest ¶

type ApiDeleteConvoBulkRequest struct {
	ApiService *ConvoAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteConvoBulkRequest) ConvoBulkModelV1 ¶

func (r ApiDeleteConvoBulkRequest) ConvoBulkModelV1(convoBulkModelV1 ConvoBulkModelV1) ApiDeleteConvoBulkRequest

func (ApiDeleteConvoBulkRequest) Execute ¶

type ApiDeleteConvoRequest ¶

type ApiDeleteConvoRequest struct {
	ApiService *ConvoAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteConvoRequest) Execute ¶

type ApiDeleteCustomListRequest ¶

type ApiDeleteCustomListRequest struct {
	ApiService *ListsAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteCustomListRequest) Execute ¶

type ApiDeleteFaqCategoryRequest ¶

type ApiDeleteFaqCategoryRequest struct {
	ApiService *FaqAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteFaqCategoryRequest) Execute ¶

type ApiDeleteFaqQuestionRequest ¶

type ApiDeleteFaqQuestionRequest struct {
	ApiService *FaqAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteFaqQuestionRequest) Execute ¶

type ApiDeleteGenreRequest ¶

type ApiDeleteGenreRequest struct {
	ApiService *GenreAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteGenreRequest) Execute ¶

type ApiDeleteGroupRequest ¶

type ApiDeleteGroupRequest struct {
	ApiService *GroupsAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteGroupRequest) Execute ¶

type ApiDeleteImageRequest ¶

type ApiDeleteImageRequest struct {
	ApiService *AuthorsAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteImageRequest) Execute ¶

type ApiDeleteListSeriesRequest ¶

type ApiDeleteListSeriesRequest struct {
	ApiService *ListsAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteListSeriesRequest) Execute ¶

func (ApiDeleteListSeriesRequest) RequestBody ¶

func (r ApiDeleteListSeriesRequest) RequestBody(requestBody []int64) ApiDeleteListSeriesRequest

type ApiDeleteMemberAvatarRequest ¶

type ApiDeleteMemberAvatarRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteMemberAvatarRequest) Execute ¶

type ApiDeleteMemberChangeRequestRequest ¶

type ApiDeleteMemberChangeRequestRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteMemberChangeRequestRequest) Execute ¶

type ApiDeleteMemberRequest ¶

type ApiDeleteMemberRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteMemberRequest) Execute ¶

type ApiDeletePostReportRequest ¶

type ApiDeletePostReportRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiDeletePostReportRequest) Execute ¶

type ApiDeletePostRequest ¶

type ApiDeletePostRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiDeletePostRequest) Execute ¶

type ApiDeletePublisherRequest ¶

type ApiDeletePublisherRequest struct {
	ApiService *PublishersAPIService
	// contains filtered or unexported fields
}

func (ApiDeletePublisherRequest) Execute ¶

type ApiDeleteReleaseRequest ¶

type ApiDeleteReleaseRequest struct {
	ApiService *ReleasesAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteReleaseRequest) Execute ¶

type ApiDeleteReviewCommentRequest ¶

type ApiDeleteReviewCommentRequest struct {
	ApiService *ReviewsAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteReviewCommentRequest) Execute ¶

type ApiDeleteReviewRequest ¶

type ApiDeleteReviewRequest struct {
	ApiService *ReviewsAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteReviewRequest) Execute ¶

type ApiDeleteSeriesCategoryRequest ¶

type ApiDeleteSeriesCategoryRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteSeriesCategoryRequest) CategoriesModelUpdateV1 ¶

func (r ApiDeleteSeriesCategoryRequest) CategoriesModelUpdateV1(categoriesModelUpdateV1 CategoriesModelUpdateV1) ApiDeleteSeriesCategoryRequest

func (ApiDeleteSeriesCategoryRequest) Execute ¶

type ApiDeleteSeriesCommentRequest ¶

type ApiDeleteSeriesCommentRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteSeriesCommentRequest) Execute ¶

type ApiDeleteSeriesImageRequest ¶

type ApiDeleteSeriesImageRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteSeriesImageRequest) Execute ¶

type ApiDeleteSeriesRequest ¶

type ApiDeleteSeriesRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteSeriesRequest) Execute ¶

type ApiDeleteTopicRequest ¶

type ApiDeleteTopicRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteTopicRequest) Execute ¶

type ApiDeleteUserGroupRequest ¶

type ApiDeleteUserGroupRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteUserGroupRequest) Execute ¶

type ApiDeleteUserSeriesRatingRequest ¶

type ApiDeleteUserSeriesRatingRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteUserSeriesRatingRequest) Execute ¶

type ApiFindCategoryByExactRequest ¶

type ApiFindCategoryByExactRequest struct {
	ApiService *CategoriesAPIService
	// contains filtered or unexported fields
}

func (ApiFindCategoryByExactRequest) CategoriesModelUpdateV1 ¶

func (r ApiFindCategoryByExactRequest) CategoriesModelUpdateV1(categoriesModelUpdateV1 CategoriesModelUpdateV1) ApiFindCategoryByExactRequest

func (ApiFindCategoryByExactRequest) Execute ¶

type ApiFindCategoryByPrefixRequest ¶

type ApiFindCategoryByPrefixRequest struct {
	ApiService *CategoriesAPIService
	// contains filtered or unexported fields
}

func (ApiFindCategoryByPrefixRequest) CategoriesModelUpdateV1 ¶

func (r ApiFindCategoryByPrefixRequest) CategoriesModelUpdateV1(categoriesModelUpdateV1 CategoriesModelUpdateV1) ApiFindCategoryByPrefixRequest

func (ApiFindCategoryByPrefixRequest) Execute ¶

type ApiForgotPasswordRequest ¶

type ApiForgotPasswordRequest struct {
	ApiService *AccountAPIService
	// contains filtered or unexported fields
}

func (ApiForgotPasswordRequest) AccountForgotPassModelV1 ¶

func (r ApiForgotPasswordRequest) AccountForgotPassModelV1(accountForgotPassModelV1 AccountForgotPassModelV1) ApiForgotPasswordRequest

func (ApiForgotPasswordRequest) Execute ¶

type ApiGetCurrentWarnForUserRequest ¶

type ApiGetCurrentWarnForUserRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiGetCurrentWarnForUserRequest) Execute ¶

type ApiIgnoreUserRequest ¶

type ApiIgnoreUserRequest struct {
	ApiService *ConvoAPIService
	// contains filtered or unexported fields
}

func (ApiIgnoreUserRequest) Execute ¶

type ApiInviteUserToConvoRequest ¶

type ApiInviteUserToConvoRequest struct {
	ApiService *ConvoAPIService
	// contains filtered or unexported fields
}

func (ApiInviteUserToConvoRequest) ConvoParticipantModelAddV1 ¶

func (r ApiInviteUserToConvoRequest) ConvoParticipantModelAddV1(convoParticipantModelAddV1 []ConvoParticipantModelAddV1) ApiInviteUserToConvoRequest

func (ApiInviteUserToConvoRequest) Execute ¶

type ApiIsUserIgnoredRequest ¶

type ApiIsUserIgnoredRequest struct {
	ApiService *ConvoAPIService
	// contains filtered or unexported fields
}

func (ApiIsUserIgnoredRequest) Execute ¶

type ApiJoinConvoRequest ¶

type ApiJoinConvoRequest struct {
	ApiService *ConvoAPIService
	// contains filtered or unexported fields
}

func (ApiJoinConvoRequest) Execute ¶

type ApiKickUserFromConvoRequest ¶

type ApiKickUserFromConvoRequest struct {
	ApiService *ConvoAPIService
	// contains filtered or unexported fields
}

func (ApiKickUserFromConvoRequest) Execute ¶

type ApiListCategoriesRequest ¶

type ApiListCategoriesRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiListCategoriesRequest) Execute ¶

type ApiListConvoMessagesRequest ¶

type ApiListConvoMessagesRequest struct {
	ApiService *ConvoAPIService
	// contains filtered or unexported fields
}

func (ApiListConvoMessagesRequest) ConvoMessageListRequestV1 ¶

func (r ApiListConvoMessagesRequest) ConvoMessageListRequestV1(convoMessageListRequestV1 ConvoMessageListRequestV1) ApiListConvoMessagesRequest

func (ApiListConvoMessagesRequest) Execute ¶

type ApiListGlobalTopicsRequest ¶

type ApiListGlobalTopicsRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiListGlobalTopicsRequest) Execute ¶

type ApiListOnlineUsersRequest ¶

type ApiListOnlineUsersRequest struct {
	ApiService *MiscAPIService
	// contains filtered or unexported fields
}

func (ApiListOnlineUsersRequest) Execute ¶

type ApiListPopularForumsRequest ¶

type ApiListPopularForumsRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiListPopularForumsRequest) Execute ¶

type ApiListPostsByMeRequest ¶

type ApiListPostsByMeRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiListPostsByMeRequest) Execute ¶

type ApiListPostsRequest ¶

type ApiListPostsRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiListPostsRequest) Execute ¶

func (ApiListPostsRequest) PerPageSearchRequestV1 ¶

func (r ApiListPostsRequest) PerPageSearchRequestV1(perPageSearchRequestV1 PerPageSearchRequestV1) ApiListPostsRequest

type ApiListReleasesByDayRequest ¶

type ApiListReleasesByDayRequest struct {
	ApiService *ReleasesAPIService
	// contains filtered or unexported fields
}

func (ApiListReleasesByDayRequest) Execute ¶

func (ApiListReleasesByDayRequest) IncludeMetadata ¶

func (r ApiListReleasesByDayRequest) IncludeMetadata(includeMetadata bool) ApiListReleasesByDayRequest

Include series metadata (if available)

func (ApiListReleasesByDayRequest) Page ¶

Start page

type ApiListReportedPostsRequest ¶

type ApiListReportedPostsRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiListReportedPostsRequest) Execute ¶

type ApiListTopicsRequest ¶

type ApiListTopicsRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiListTopicsRequest) Execute ¶

func (ApiListTopicsRequest) ForumTopicListRequestV1 ¶

func (r ApiListTopicsRequest) ForumTopicListRequestV1(forumTopicListRequestV1 ForumTopicListRequestV1) ApiListTopicsRequest

func (ApiListTopicsRequest) WithFirstPost ¶

func (r ApiListTopicsRequest) WithFirstPost(withFirstPost bool) ApiListTopicsRequest

Also return the first post of each topic

type ApiListWarnHistoryForUserRequest ¶

type ApiListWarnHistoryForUserRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiListWarnHistoryForUserRequest) Execute ¶

type ApiLockAuthorFieldRequest ¶

type ApiLockAuthorFieldRequest struct {
	ApiService *AuthorsAPIService
	// contains filtered or unexported fields
}

func (ApiLockAuthorFieldRequest) AuthorsLockModelUpdateV1 ¶

func (r ApiLockAuthorFieldRequest) AuthorsLockModelUpdateV1(authorsLockModelUpdateV1 AuthorsLockModelUpdateV1) ApiLockAuthorFieldRequest

func (ApiLockAuthorFieldRequest) Execute ¶

type ApiLockSeriesFieldRequest ¶

type ApiLockSeriesFieldRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiLockSeriesFieldRequest) Execute ¶

func (ApiLockSeriesFieldRequest) SeriesLockModelUpdateV1 ¶

func (r ApiLockSeriesFieldRequest) SeriesLockModelUpdateV1(seriesLockModelUpdateV1 SeriesLockModelUpdateV1) ApiLockSeriesFieldRequest

type ApiLoginRequest ¶

type ApiLoginRequest struct {
	ApiService *AccountAPIService
	// contains filtered or unexported fields
}

func (ApiLoginRequest) AccountLoginModelV1 ¶

func (r ApiLoginRequest) AccountLoginModelV1(accountLoginModelV1 AccountLoginModelV1) ApiLoginRequest

func (ApiLoginRequest) Execute ¶

func (r ApiLoginRequest) Execute() (*ApiResponseV1, *http.Response, error)

type ApiLogoutRequest ¶

type ApiLogoutRequest struct {
	ApiService *AccountAPIService
	// contains filtered or unexported fields
}

func (ApiLogoutRequest) Execute ¶

func (r ApiLogoutRequest) Execute() (*ApiResponseV1, *http.Response, error)

type ApiLookupPostRequest ¶

type ApiLookupPostRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiLookupPostRequest) Execute ¶

type ApiLookupSeriesRequest ¶

type ApiLookupSeriesRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiLookupSeriesRequest) Execute ¶

type ApiLookupTopicRequest ¶

type ApiLookupTopicRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiLookupTopicRequest) Execute ¶

type ApiModerateReleasesPostRequest ¶

type ApiModerateReleasesPostRequest struct {
	ApiService *ReleasesAPIService
	// contains filtered or unexported fields
}

func (ApiModerateReleasesPostRequest) Execute ¶

func (ApiModerateReleasesPostRequest) ReleaseModerateRequestV1 ¶

func (r ApiModerateReleasesPostRequest) ReleaseModerateRequestV1(releaseModerateRequestV1 ReleaseModerateRequestV1) ApiModerateReleasesPostRequest

type ApiProfileRequest ¶

type ApiProfileRequest struct {
	ApiService *AccountAPIService
	// contains filtered or unexported fields
}

func (ApiProfileRequest) Execute ¶

func (r ApiProfileRequest) Execute() (*UserModelV1, *http.Response, error)

type ApiRegisterMemberRequest ¶

type ApiRegisterMemberRequest struct {
	ApiService *AccountAPIService
	// contains filtered or unexported fields
}

func (ApiRegisterMemberRequest) Execute ¶

func (ApiRegisterMemberRequest) UserModelRegisterV1 ¶

func (r ApiRegisterMemberRequest) UserModelRegisterV1(userModelRegisterV1 UserModelRegisterV1) ApiRegisterMemberRequest

type ApiRejectGroupRequest ¶

type ApiRejectGroupRequest struct {
	ApiService *GroupsAPIService
	// contains filtered or unexported fields
}

func (ApiRejectGroupRequest) Execute ¶

type ApiRejectMemberUpgradeRequest ¶

type ApiRejectMemberUpgradeRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiRejectMemberUpgradeRequest) Execute ¶

type ApiReleaseRssFeedRequest ¶

type ApiReleaseRssFeedRequest struct {
	ApiService *ReleasesAPIService
	// contains filtered or unexported fields
}

func (ApiReleaseRssFeedRequest) Execute ¶

type ApiRemoveForumAdminRequest ¶

type ApiRemoveForumAdminRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiRemoveForumAdminRequest) Execute ¶

type ApiRemoveMemberGenreFilterRequest ¶

type ApiRemoveMemberGenreFilterRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiRemoveMemberGenreFilterRequest) Execute ¶

type ApiRemoveMemberGenreHighlightRequest ¶

type ApiRemoveMemberGenreHighlightRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiRemoveMemberGenreHighlightRequest) Execute ¶

type ApiRemoveSeriesCategoryVoteRequest ¶

type ApiRemoveSeriesCategoryVoteRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiRemoveSeriesCategoryVoteRequest) Execute ¶

func (ApiRemoveSeriesCategoryVoteRequest) SeriesCategoryVoteDeleteModelV1 ¶

func (r ApiRemoveSeriesCategoryVoteRequest) SeriesCategoryVoteDeleteModelV1(seriesCategoryVoteDeleteModelV1 SeriesCategoryVoteDeleteModelV1) ApiRemoveSeriesCategoryVoteRequest

type ApiRemoveSeriesCommentUsefulFlagRequest ¶

type ApiRemoveSeriesCommentUsefulFlagRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiRemoveSeriesCommentUsefulFlagRequest) Execute ¶

type ApiRemoveUserGroupFilterRequest ¶

type ApiRemoveUserGroupFilterRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiRemoveUserGroupFilterRequest) Execute ¶

type ApiRemoveUserTopicSubscriptionRequest ¶

type ApiRemoveUserTopicSubscriptionRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiRemoveUserTopicSubscriptionRequest) Execute ¶

type ApiRenameSeriesCategoryRequest ¶

type ApiRenameSeriesCategoryRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiRenameSeriesCategoryRequest) Execute ¶

func (ApiRenameSeriesCategoryRequest) SeriesCategoryUpdateModelV1 ¶

func (r ApiRenameSeriesCategoryRequest) SeriesCategoryUpdateModelV1(seriesCategoryUpdateModelV1 SeriesCategoryUpdateModelV1) ApiRenameSeriesCategoryRequest

type ApiReorderAboutusRequest ¶

type ApiReorderAboutusRequest struct {
	ApiService *AboutusAPIService
	// contains filtered or unexported fields
}

func (ApiReorderAboutusRequest) AboutusCategoryReorderModelV1 ¶

func (r ApiReorderAboutusRequest) AboutusCategoryReorderModelV1(aboutusCategoryReorderModelV1 []AboutusCategoryReorderModelV1) ApiReorderAboutusRequest

func (ApiReorderAboutusRequest) Execute ¶

type ApiReorderFaqRequest ¶

type ApiReorderFaqRequest struct {
	ApiService *FaqAPIService
	// contains filtered or unexported fields
}

func (ApiReorderFaqRequest) Execute ¶

func (ApiReorderFaqRequest) FaqCategoryReorderModelV1 ¶

func (r ApiReorderFaqRequest) FaqCategoryReorderModelV1(faqCategoryReorderModelV1 []FaqCategoryReorderModelV1) ApiReorderFaqRequest

type ApiReportPostRequest ¶

type ApiReportPostRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiReportPostRequest) Execute ¶

func (ApiReportPostRequest) ForumPostReportModelUpdateV1 ¶

func (r ApiReportPostRequest) ForumPostReportModelUpdateV1(forumPostReportModelUpdateV1 ForumPostReportModelUpdateV1) ApiReportPostRequest

type ApiReportSeriesCommentRequest ¶

type ApiReportSeriesCommentRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiReportSeriesCommentRequest) Execute ¶

func (ApiReportSeriesCommentRequest) SeriesCommentReportModelV1 ¶

func (r ApiReportSeriesCommentRequest) SeriesCommentReportModelV1(seriesCommentReportModelV1 SeriesCommentReportModelV1) ApiReportSeriesCommentRequest

type ApiResendAuthEmailRequest ¶

type ApiResendAuthEmailRequest struct {
	ApiService *AccountAPIService
	// contains filtered or unexported fields
}

func (ApiResendAuthEmailRequest) Execute ¶

type ApiResetGenreSettingsRequest ¶

type ApiResetGenreSettingsRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiResetGenreSettingsRequest) Execute ¶

type ApiResponseV1 ¶

type ApiResponseV1 struct {
	Status  string                 `json:"status"`
	Reason  string                 `json:"reason"`
	Context map[string]interface{} `json:"context,omitempty"`
}

ApiResponseV1 struct for ApiResponseV1

func NewApiResponseV1 ¶

func NewApiResponseV1(status string, reason string) *ApiResponseV1

NewApiResponseV1 instantiates a new ApiResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewApiResponseV1WithDefaults ¶

func NewApiResponseV1WithDefaults() *ApiResponseV1

NewApiResponseV1WithDefaults instantiates a new ApiResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ApiResponseV1) GetContext ¶

func (o *ApiResponseV1) GetContext() map[string]interface{}

GetContext returns the Context field value if set, zero value otherwise.

func (*ApiResponseV1) GetContextOk ¶

func (o *ApiResponseV1) GetContextOk() (map[string]interface{}, bool)

GetContextOk returns a tuple with the Context field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiResponseV1) GetReason ¶

func (o *ApiResponseV1) GetReason() string

GetReason returns the Reason field value

func (*ApiResponseV1) GetReasonOk ¶

func (o *ApiResponseV1) GetReasonOk() (*string, bool)

GetReasonOk returns a tuple with the Reason field value and a boolean to check if the value has been set.

func (*ApiResponseV1) GetStatus ¶

func (o *ApiResponseV1) GetStatus() string

GetStatus returns the Status field value

func (*ApiResponseV1) GetStatusOk ¶

func (o *ApiResponseV1) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*ApiResponseV1) HasContext ¶

func (o *ApiResponseV1) HasContext() bool

HasContext returns a boolean if a field has been set.

func (ApiResponseV1) MarshalJSON ¶

func (o ApiResponseV1) MarshalJSON() ([]byte, error)

func (*ApiResponseV1) SetContext ¶

func (o *ApiResponseV1) SetContext(v map[string]interface{})

SetContext gets a reference to the given map[string]interface{} and assigns it to the Context field.

func (*ApiResponseV1) SetReason ¶

func (o *ApiResponseV1) SetReason(v string)

SetReason sets field value

func (*ApiResponseV1) SetStatus ¶

func (o *ApiResponseV1) SetStatus(v string)

SetStatus sets field value

func (ApiResponseV1) ToMap ¶

func (o ApiResponseV1) ToMap() (map[string]interface{}, error)

type ApiRetrieveAboutusCategoriesAndUsersRequest ¶

type ApiRetrieveAboutusCategoriesAndUsersRequest struct {
	ApiService *AboutusAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveAboutusCategoriesAndUsersRequest) Execute ¶

type ApiRetrieveAboutusCategoryRequest ¶

type ApiRetrieveAboutusCategoryRequest struct {
	ApiService *AboutusAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveAboutusCategoryRequest) Execute ¶

func (ApiRetrieveAboutusCategoryRequest) UnrenderedFields ¶

func (r ApiRetrieveAboutusCategoryRequest) UnrenderedFields(unrenderedFields bool) ApiRetrieveAboutusCategoryRequest

Output fields in unrendered form for editing

type ApiRetrieveAboutusDescriptionRequest ¶

type ApiRetrieveAboutusDescriptionRequest struct {
	ApiService *AboutusAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveAboutusDescriptionRequest) Execute ¶

func (ApiRetrieveAboutusDescriptionRequest) UnrenderedFields ¶

Output fields in unrendered form for editing

type ApiRetrieveAllFaqCategoriesAndQuestionsRequest ¶

type ApiRetrieveAllFaqCategoriesAndQuestionsRequest struct {
	ApiService *FaqAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveAllFaqCategoriesAndQuestionsRequest) Execute ¶

type ApiRetrieveAllFaqCategoryQuestionsRequest ¶

type ApiRetrieveAllFaqCategoryQuestionsRequest struct {
	ApiService *FaqAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveAllFaqCategoryQuestionsRequest) Execute ¶

type ApiRetrieveAuthorLocksRequest ¶

type ApiRetrieveAuthorLocksRequest struct {
	ApiService *AuthorsAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveAuthorLocksRequest) Execute ¶

type ApiRetrieveAuthorRequest ¶

type ApiRetrieveAuthorRequest struct {
	ApiService *AuthorsAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveAuthorRequest) Execute ¶

func (ApiRetrieveAuthorRequest) UnrenderedFields ¶

func (r ApiRetrieveAuthorRequest) UnrenderedFields(unrenderedFields bool) ApiRetrieveAuthorRequest

Output fields in unrendered form for editing

type ApiRetrieveAuthorSeriesRequest ¶

type ApiRetrieveAuthorSeriesRequest struct {
	ApiService *AuthorsAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveAuthorSeriesRequest) AuthorsSeriesListRequestV1 ¶

func (r ApiRetrieveAuthorSeriesRequest) AuthorsSeriesListRequestV1(authorsSeriesListRequestV1 AuthorsSeriesListRequestV1) ApiRetrieveAuthorSeriesRequest

func (ApiRetrieveAuthorSeriesRequest) Execute ¶

type ApiRetrieveConvoMessageLocationRequest ¶

type ApiRetrieveConvoMessageLocationRequest struct {
	ApiService *ConvoAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveConvoMessageLocationRequest) Execute ¶

type ApiRetrieveConvoMessageRequest ¶

type ApiRetrieveConvoMessageRequest struct {
	ApiService *ConvoAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveConvoMessageRequest) Execute ¶

func (ApiRetrieveConvoMessageRequest) UnrenderedFields ¶

func (r ApiRetrieveConvoMessageRequest) UnrenderedFields(unrenderedFields bool) ApiRetrieveConvoMessageRequest

Output fields in unrendered form for editing

type ApiRetrieveConvoParticipantsRequest ¶

type ApiRetrieveConvoParticipantsRequest struct {
	ApiService *ConvoAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveConvoParticipantsRequest) Execute ¶

type ApiRetrieveConvoRequest ¶

type ApiRetrieveConvoRequest struct {
	ApiService *ConvoAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveConvoRequest) Execute ¶

func (ApiRetrieveConvoRequest) UnrenderedFields ¶

func (r ApiRetrieveConvoRequest) UnrenderedFields(unrenderedFields bool) ApiRetrieveConvoRequest

Output fields in unrendered form for editing

type ApiRetrieveFaqCategoryRequest ¶

type ApiRetrieveFaqCategoryRequest struct {
	ApiService *FaqAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveFaqCategoryRequest) Execute ¶

func (ApiRetrieveFaqCategoryRequest) UnrenderedFields ¶

func (r ApiRetrieveFaqCategoryRequest) UnrenderedFields(unrenderedFields bool) ApiRetrieveFaqCategoryRequest

Output fields in unrendered form for editing

type ApiRetrieveFaqQuestionRequest ¶

type ApiRetrieveFaqQuestionRequest struct {
	ApiService *FaqAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveFaqQuestionRequest) Execute ¶

func (ApiRetrieveFaqQuestionRequest) UnrenderedFields ¶

func (r ApiRetrieveFaqQuestionRequest) UnrenderedFields(unrenderedFields bool) ApiRetrieveFaqQuestionRequest

Output fields in unrendered form for editing

type ApiRetrieveForumRequest ¶

type ApiRetrieveForumRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveForumRequest) Execute ¶

func (ApiRetrieveForumRequest) UnrenderedFields ¶

func (r ApiRetrieveForumRequest) UnrenderedFields(unrenderedFields bool) ApiRetrieveForumRequest

Output fields in unrendered form for editing

type ApiRetrieveGenreByIdRequest ¶

type ApiRetrieveGenreByIdRequest struct {
	ApiService *GenreAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveGenreByIdRequest) Execute ¶

func (ApiRetrieveGenreByIdRequest) UnrenderedFields ¶

func (r ApiRetrieveGenreByIdRequest) UnrenderedFields(unrenderedFields bool) ApiRetrieveGenreByIdRequest

Output fields in unrendered form for editing

type ApiRetrieveGenresRequest ¶

type ApiRetrieveGenresRequest struct {
	ApiService *GenreAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveGenresRequest) Execute ¶

type ApiRetrieveGroupRequest ¶

type ApiRetrieveGroupRequest struct {
	ApiService *GroupsAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveGroupRequest) Execute ¶

func (ApiRetrieveGroupRequest) UnrenderedFields ¶

func (r ApiRetrieveGroupRequest) UnrenderedFields(unrenderedFields bool) ApiRetrieveGroupRequest

Output fields in unrendered form for editing

type ApiRetrieveGroupSeriesRequest ¶

type ApiRetrieveGroupSeriesRequest struct {
	ApiService *GroupsAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveGroupSeriesRequest) Execute ¶

type ApiRetrieveListByIdRequest ¶

type ApiRetrieveListByIdRequest struct {
	ApiService *ListsAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveListByIdRequest) Execute ¶

func (ApiRetrieveListByIdRequest) UnrenderedFields ¶

func (r ApiRetrieveListByIdRequest) UnrenderedFields(unrenderedFields bool) ApiRetrieveListByIdRequest

Output fields in unrendered form for editing

type ApiRetrieveListSeriesRequest ¶

type ApiRetrieveListSeriesRequest struct {
	ApiService *ListsAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveListSeriesRequest) Execute ¶

func (ApiRetrieveListSeriesRequest) UnrenderedFields ¶

func (r ApiRetrieveListSeriesRequest) UnrenderedFields(unrenderedFields bool) ApiRetrieveListSeriesRequest

Output fields in unrendered form for editing

type ApiRetrieveListsRequest ¶

type ApiRetrieveListsRequest struct {
	ApiService *ListsAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveListsRequest) Execute ¶

type ApiRetrieveMemberAvatarsRequest ¶

type ApiRetrieveMemberAvatarsRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveMemberAvatarsRequest) Execute ¶

type ApiRetrieveMemberChangeRequestRequest ¶

type ApiRetrieveMemberChangeRequestRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveMemberChangeRequestRequest) Execute ¶

type ApiRetrieveMemberGenreFiltersRequest ¶

type ApiRetrieveMemberGenreFiltersRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveMemberGenreFiltersRequest) Execute ¶

type ApiRetrieveMemberGenreHighlightsRequest ¶

type ApiRetrieveMemberGenreHighlightsRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveMemberGenreHighlightsRequest) Execute ¶

type ApiRetrieveMemberGroupFiltersRequest ¶

type ApiRetrieveMemberGroupFiltersRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveMemberGroupFiltersRequest) Execute ¶

type ApiRetrieveMemberRequest ¶

type ApiRetrieveMemberRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveMemberRequest) Execute ¶

func (ApiRetrieveMemberRequest) UnrenderedFields ¶

func (r ApiRetrieveMemberRequest) UnrenderedFields(unrenderedFields bool) ApiRetrieveMemberRequest

Output fields in unrendered form for editing

type ApiRetrieveMemberTopicSubscriptionRequest ¶

type ApiRetrieveMemberTopicSubscriptionRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveMemberTopicSubscriptionRequest) Execute ¶

type ApiRetrieveMemberTopicSubscriptionsRequest ¶

type ApiRetrieveMemberTopicSubscriptionsRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveMemberTopicSubscriptionsRequest) Execute ¶

type ApiRetrieveMySeriesCommentRequest ¶

type ApiRetrieveMySeriesCommentRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveMySeriesCommentRequest) Execute ¶

func (ApiRetrieveMySeriesCommentRequest) UnrenderedFields ¶

func (r ApiRetrieveMySeriesCommentRequest) UnrenderedFields(unrenderedFields bool) ApiRetrieveMySeriesCommentRequest

Output fields in unrendered form for editing

type ApiRetrieveOldPollsRequest ¶

type ApiRetrieveOldPollsRequest struct {
	ApiService *PollAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveOldPollsRequest) Execute ¶

type ApiRetrievePollRequest ¶

type ApiRetrievePollRequest struct {
	ApiService *PollAPIService
	// contains filtered or unexported fields
}

func (ApiRetrievePollRequest) Execute ¶

type ApiRetrievePostLocationRequest ¶

type ApiRetrievePostLocationRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiRetrievePostLocationRequest) Execute ¶

type ApiRetrievePostRequest ¶

type ApiRetrievePostRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiRetrievePostRequest) Execute ¶

func (ApiRetrievePostRequest) UnrenderedFields ¶

func (r ApiRetrievePostRequest) UnrenderedFields(unrenderedFields bool) ApiRetrievePostRequest

Output fields in unrendered form for editing

type ApiRetrievePublicListStatsRequest ¶

type ApiRetrievePublicListStatsRequest struct {
	ApiService *ListsAPIService
	// contains filtered or unexported fields
}

func (ApiRetrievePublicListStatsRequest) Execute ¶

type ApiRetrievePublicListsRequest ¶

type ApiRetrievePublicListsRequest struct {
	ApiService *ListsAPIService
	// contains filtered or unexported fields
}

func (ApiRetrievePublicListsRequest) Execute ¶

type ApiRetrievePublicationSeriesRequest ¶

type ApiRetrievePublicationSeriesRequest struct {
	ApiService *PublishersAPIService
	// contains filtered or unexported fields
}

func (ApiRetrievePublicationSeriesRequest) Execute ¶

func (ApiRetrievePublicationSeriesRequest) Pubname ¶

Publication name

type ApiRetrievePublisherRequest ¶

type ApiRetrievePublisherRequest struct {
	ApiService *PublishersAPIService
	// contains filtered or unexported fields
}

func (ApiRetrievePublisherRequest) Execute ¶

func (ApiRetrievePublisherRequest) UnrenderedFields ¶

func (r ApiRetrievePublisherRequest) UnrenderedFields(unrenderedFields bool) ApiRetrievePublisherRequest

Output fields in unrendered form for editing

type ApiRetrievePublisherSeriesRequest ¶

type ApiRetrievePublisherSeriesRequest struct {
	ApiService *PublishersAPIService
	// contains filtered or unexported fields
}

func (ApiRetrievePublisherSeriesRequest) Execute ¶

type ApiRetrieveReleaseRequest ¶

type ApiRetrieveReleaseRequest struct {
	ApiService *ReleasesAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveReleaseRequest) Execute ¶

func (ApiRetrieveReleaseRequest) UnrenderedFields ¶

func (r ApiRetrieveReleaseRequest) UnrenderedFields(unrenderedFields bool) ApiRetrieveReleaseRequest

Output fields in unrendered form for editing

type ApiRetrieveReviewCommentRequest ¶

type ApiRetrieveReviewCommentRequest struct {
	ApiService *ReviewsAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveReviewCommentRequest) Execute ¶

func (ApiRetrieveReviewCommentRequest) UnrenderedFields ¶

func (r ApiRetrieveReviewCommentRequest) UnrenderedFields(unrenderedFields bool) ApiRetrieveReviewCommentRequest

Output fields in unrendered form for editing

type ApiRetrieveReviewRequest ¶

type ApiRetrieveReviewRequest struct {
	ApiService *ReviewsAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveReviewRequest) Execute ¶

func (ApiRetrieveReviewRequest) UnrenderedFields ¶

func (r ApiRetrieveReviewRequest) UnrenderedFields(unrenderedFields bool) ApiRetrieveReviewRequest

Output fields in unrendered form for editing

type ApiRetrieveSeriesCategoryVotesRequest ¶

type ApiRetrieveSeriesCategoryVotesRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveSeriesCategoryVotesRequest) Execute ¶

type ApiRetrieveSeriesCommentLocationRequest ¶

type ApiRetrieveSeriesCommentLocationRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveSeriesCommentLocationRequest) Execute ¶

type ApiRetrieveSeriesCommentRequest ¶

type ApiRetrieveSeriesCommentRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveSeriesCommentRequest) Execute ¶

func (ApiRetrieveSeriesCommentRequest) UnrenderedFields ¶

func (r ApiRetrieveSeriesCommentRequest) UnrenderedFields(unrenderedFields bool) ApiRetrieveSeriesCommentRequest

Output fields in unrendered form for editing

type ApiRetrieveSeriesGroupsRequest ¶

type ApiRetrieveSeriesGroupsRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveSeriesGroupsRequest) Execute ¶

type ApiRetrieveSeriesLocksRequest ¶

type ApiRetrieveSeriesLocksRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveSeriesLocksRequest) Execute ¶

type ApiRetrieveSeriesRankLocationRequest ¶

type ApiRetrieveSeriesRankLocationRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveSeriesRankLocationRequest) Execute ¶

type ApiRetrieveSeriesRatingRainbowRequest ¶

type ApiRetrieveSeriesRatingRainbowRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveSeriesRatingRainbowRequest) Execute ¶

type ApiRetrieveSeriesRequest ¶

type ApiRetrieveSeriesRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveSeriesRequest) Execute ¶

func (ApiRetrieveSeriesRequest) UnrenderedFields ¶

func (r ApiRetrieveSeriesRequest) UnrenderedFields(unrenderedFields bool) ApiRetrieveSeriesRequest

Output fields in unrendered form for editing

type ApiRetrieveSimilarUsersBySeriesRequest ¶

type ApiRetrieveSimilarUsersBySeriesRequest struct {
	ApiService *ListsAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveSimilarUsersBySeriesRequest) Execute ¶

type ApiRetrieveSlowTransactionStatusRequest ¶

type ApiRetrieveSlowTransactionStatusRequest struct {
	ApiService *MiscAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveSlowTransactionStatusRequest) Execute ¶

type ApiRetrieveTemporaryPollImagesRequest ¶

type ApiRetrieveTemporaryPollImagesRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveTemporaryPollImagesRequest) Execute ¶

type ApiRetrieveTopicRequest ¶

type ApiRetrieveTopicRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveTopicRequest) Execute ¶

func (ApiRetrieveTopicRequest) UnrenderedFields ¶

func (r ApiRetrieveTopicRequest) UnrenderedFields(unrenderedFields bool) ApiRetrieveTopicRequest

Output fields in unrendered form for editing

type ApiRetrieveUserGroupByIdRequest ¶

type ApiRetrieveUserGroupByIdRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveUserGroupByIdRequest) Execute ¶

func (ApiRetrieveUserGroupByIdRequest) UnrenderedFields ¶

func (r ApiRetrieveUserGroupByIdRequest) UnrenderedFields(unrenderedFields bool) ApiRetrieveUserGroupByIdRequest

Output fields in unrendered form for editing

type ApiRetrieveUserGroupsRequest ¶

type ApiRetrieveUserGroupsRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveUserGroupsRequest) Execute ¶

type ApiRetrieveUserSeriesRatingRequest ¶

type ApiRetrieveUserSeriesRatingRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveUserSeriesRatingRequest) Execute ¶

type ApiRetrieveVoteRequest ¶

type ApiRetrieveVoteRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveVoteRequest) Execute ¶

type ApiRetrieveVoteStatusRequest ¶

type ApiRetrieveVoteStatusRequest struct {
	ApiService *PollAPIService
	// contains filtered or unexported fields
}

func (ApiRetrieveVoteStatusRequest) Execute ¶

type ApiReviewCommentsModerationPostRequest ¶

type ApiReviewCommentsModerationPostRequest struct {
	ApiService *ReviewsAPIService
	// contains filtered or unexported fields
}

func (ApiReviewCommentsModerationPostRequest) Execute ¶

func (ApiReviewCommentsModerationPostRequest) ReviewCommentSearchRequestV1 ¶

func (r ApiReviewCommentsModerationPostRequest) ReviewCommentSearchRequestV1(reviewCommentSearchRequestV1 ReviewCommentSearchRequestV1) ApiReviewCommentsModerationPostRequest

type ApiSearchAuthorsPostRequest ¶

type ApiSearchAuthorsPostRequest struct {
	ApiService *AuthorsAPIService
	// contains filtered or unexported fields
}

func (ApiSearchAuthorsPostRequest) AuthorsSearchRequestV1 ¶

func (r ApiSearchAuthorsPostRequest) AuthorsSearchRequestV1(authorsSearchRequestV1 AuthorsSearchRequestV1) ApiSearchAuthorsPostRequest

func (ApiSearchAuthorsPostRequest) Execute ¶

type ApiSearchCategoriesPostRequest ¶

type ApiSearchCategoriesPostRequest struct {
	ApiService *CategoriesAPIService
	// contains filtered or unexported fields
}

func (ApiSearchCategoriesPostRequest) CategoriesSearchRequestV1 ¶

func (r ApiSearchCategoriesPostRequest) CategoriesSearchRequestV1(categoriesSearchRequestV1 CategoriesSearchRequestV1) ApiSearchCategoriesPostRequest

func (ApiSearchCategoriesPostRequest) Execute ¶

type ApiSearchConvoMessagesPostRequest ¶

type ApiSearchConvoMessagesPostRequest struct {
	ApiService *ConvoAPIService
	// contains filtered or unexported fields
}

func (ApiSearchConvoMessagesPostRequest) ConvoMessageSearchRequestV1 ¶

func (r ApiSearchConvoMessagesPostRequest) ConvoMessageSearchRequestV1(convoMessageSearchRequestV1 ConvoMessageSearchRequestV1) ApiSearchConvoMessagesPostRequest

func (ApiSearchConvoMessagesPostRequest) Execute ¶

type ApiSearchConvoPostRequest ¶

type ApiSearchConvoPostRequest struct {
	ApiService *ConvoAPIService
	// contains filtered or unexported fields
}

func (ApiSearchConvoPostRequest) ConvoSearchRequestV1 ¶

func (r ApiSearchConvoPostRequest) ConvoSearchRequestV1(convoSearchRequestV1 ConvoSearchRequestV1) ApiSearchConvoPostRequest

func (ApiSearchConvoPostRequest) Execute ¶

type ApiSearchForumPostRequest ¶

type ApiSearchForumPostRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiSearchForumPostRequest) Execute ¶

func (ApiSearchForumPostRequest) ForumSearchRequestV1 ¶

func (r ApiSearchForumPostRequest) ForumSearchRequestV1(forumSearchRequestV1 ForumSearchRequestV1) ApiSearchForumPostRequest

type ApiSearchGroupsPostRequest ¶

type ApiSearchGroupsPostRequest struct {
	ApiService *GroupsAPIService
	// contains filtered or unexported fields
}

func (ApiSearchGroupsPostRequest) Execute ¶

func (ApiSearchGroupsPostRequest) GroupsSearchRequestV1 ¶

func (r ApiSearchGroupsPostRequest) GroupsSearchRequestV1(groupsSearchRequestV1 GroupsSearchRequestV1) ApiSearchGroupsPostRequest

type ApiSearchListsPostRequest ¶

type ApiSearchListsPostRequest struct {
	ApiService *ListsAPIService
	// contains filtered or unexported fields
}

func (ApiSearchListsPostRequest) Execute ¶

func (ApiSearchListsPostRequest) ListsSearchRequestV1 ¶

func (r ApiSearchListsPostRequest) ListsSearchRequestV1(listsSearchRequestV1 ListsSearchRequestV1) ApiSearchListsPostRequest

type ApiSearchMemberChangeRequestsRequest ¶

type ApiSearchMemberChangeRequestsRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiSearchMemberChangeRequestsRequest) Asc ¶

Direction of results

func (ApiSearchMemberChangeRequestsRequest) Execute ¶

func (ApiSearchMemberChangeRequestsRequest) Orderby ¶

order by field

func (ApiSearchMemberChangeRequestsRequest) Page ¶

Start page

func (ApiSearchMemberChangeRequestsRequest) Perpage ¶

Items per page

type ApiSearchMembersPostRequest ¶

type ApiSearchMembersPostRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiSearchMembersPostRequest) Execute ¶

func (ApiSearchMembersPostRequest) UserSearchRequestV1 ¶

func (r ApiSearchMembersPostRequest) UserSearchRequestV1(userSearchRequestV1 UserSearchRequestV1) ApiSearchMembersPostRequest

type ApiSearchPublicListsPostRequest ¶

type ApiSearchPublicListsPostRequest struct {
	ApiService *ListsAPIService
	// contains filtered or unexported fields
}

func (ApiSearchPublicListsPostRequest) Execute ¶

func (ApiSearchPublicListsPostRequest) ListsSearchRequestV1 ¶

func (r ApiSearchPublicListsPostRequest) ListsSearchRequestV1(listsSearchRequestV1 ListsSearchRequestV1) ApiSearchPublicListsPostRequest

type ApiSearchPublishersPostRequest ¶

type ApiSearchPublishersPostRequest struct {
	ApiService *PublishersAPIService
	// contains filtered or unexported fields
}

func (ApiSearchPublishersPostRequest) Execute ¶

func (ApiSearchPublishersPostRequest) PublishersSearchRequestV1 ¶

func (r ApiSearchPublishersPostRequest) PublishersSearchRequestV1(publishersSearchRequestV1 PublishersSearchRequestV1) ApiSearchPublishersPostRequest

type ApiSearchReleasesPostRequest ¶

type ApiSearchReleasesPostRequest struct {
	ApiService *ReleasesAPIService
	// contains filtered or unexported fields
}

func (ApiSearchReleasesPostRequest) Execute ¶

func (ApiSearchReleasesPostRequest) ReleaseSearchRequestV1 ¶

func (r ApiSearchReleasesPostRequest) ReleaseSearchRequestV1(releaseSearchRequestV1 ReleaseSearchRequestV1) ApiSearchReleasesPostRequest

type ApiSearchReviewCommentsPostRequest ¶

type ApiSearchReviewCommentsPostRequest struct {
	ApiService *ReviewsAPIService
	// contains filtered or unexported fields
}

func (ApiSearchReviewCommentsPostRequest) Execute ¶

func (ApiSearchReviewCommentsPostRequest) ReviewCommentSearchRequestV1 ¶

func (r ApiSearchReviewCommentsPostRequest) ReviewCommentSearchRequestV1(reviewCommentSearchRequestV1 ReviewCommentSearchRequestV1) ApiSearchReviewCommentsPostRequest

type ApiSearchReviewsPostRequest ¶

type ApiSearchReviewsPostRequest struct {
	ApiService *ReviewsAPIService
	// contains filtered or unexported fields
}

func (ApiSearchReviewsPostRequest) Execute ¶

func (ApiSearchReviewsPostRequest) ReviewSearchRequestV1 ¶

func (r ApiSearchReviewsPostRequest) ReviewSearchRequestV1(reviewSearchRequestV1 ReviewSearchRequestV1) ApiSearchReviewsPostRequest

type ApiSearchSeriesCommentsPostRequest ¶

type ApiSearchSeriesCommentsPostRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiSearchSeriesCommentsPostRequest) Execute ¶

func (ApiSearchSeriesCommentsPostRequest) SeriesCommentSearchRequestV1 ¶

func (r ApiSearchSeriesCommentsPostRequest) SeriesCommentSearchRequestV1(seriesCommentSearchRequestV1 SeriesCommentSearchRequestV1) ApiSearchSeriesCommentsPostRequest

type ApiSearchSeriesHistoryPostRequest ¶

type ApiSearchSeriesHistoryPostRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiSearchSeriesHistoryPostRequest) Execute ¶

func (ApiSearchSeriesHistoryPostRequest) PerPageSearchRequestV1 ¶

func (r ApiSearchSeriesHistoryPostRequest) PerPageSearchRequestV1(perPageSearchRequestV1 PerPageSearchRequestV1) ApiSearchSeriesHistoryPostRequest

type ApiSearchSeriesPostRequest ¶

type ApiSearchSeriesPostRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiSearchSeriesPostRequest) Execute ¶

func (ApiSearchSeriesPostRequest) SeriesSearchRequestV1 ¶

func (r ApiSearchSeriesPostRequest) SeriesSearchRequestV1(seriesSearchRequestV1 SeriesSearchRequestV1) ApiSearchSeriesPostRequest

type ApiSearchSpecificForumPostRequest ¶

type ApiSearchSpecificForumPostRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiSearchSpecificForumPostRequest) Execute ¶

func (ApiSearchSpecificForumPostRequest) ForumSearchRequestV1 ¶

type ApiSearchSpecificTopicPostRequest ¶

type ApiSearchSpecificTopicPostRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiSearchSpecificTopicPostRequest) Execute ¶

func (ApiSearchSpecificTopicPostRequest) ForumSearchRequestV1 ¶

type ApiSendForgotEmailRequest ¶

type ApiSendForgotEmailRequest struct {
	ApiService *AccountAPIService
	// contains filtered or unexported fields
}

func (ApiSendForgotEmailRequest) Execute ¶

type ApiSeriesCommentsModerationPostRequest ¶

type ApiSeriesCommentsModerationPostRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiSeriesCommentsModerationPostRequest) Execute ¶

func (ApiSeriesCommentsModerationPostRequest) SeriesCommentSearchRequestV1 ¶

func (r ApiSeriesCommentsModerationPostRequest) SeriesCommentSearchRequestV1(seriesCommentSearchRequestV1 SeriesCommentSearchRequestV1) ApiSeriesCommentsModerationPostRequest

type ApiSeriesReleaseRssFeedRequest ¶

type ApiSeriesReleaseRssFeedRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiSeriesReleaseRssFeedRequest) Execute ¶

type ApiShowLogPostRequest ¶

type ApiShowLogPostRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiShowLogPostRequest) Execute ¶

func (ApiShowLogPostRequest) ForumAdminHistorySearchRequestV1 ¶

func (r ApiShowLogPostRequest) ForumAdminHistorySearchRequestV1(forumAdminHistorySearchRequestV1 ForumAdminHistorySearchRequestV1) ApiShowLogPostRequest

type ApiSiteStatsRequest ¶

type ApiSiteStatsRequest struct {
	ApiService *MiscAPIService
	// contains filtered or unexported fields
}

func (ApiSiteStatsRequest) Execute ¶

type ApiTimeRequest ¶

type ApiTimeRequest struct {
	ApiService *MiscAPIService
	// contains filtered or unexported fields
}

func (ApiTimeRequest) Execute ¶

func (r ApiTimeRequest) Execute() (*TimeV1, *http.Response, error)

type ApiUnIgnoreUserRequest ¶

type ApiUnIgnoreUserRequest struct {
	ApiService *ConvoAPIService
	// contains filtered or unexported fields
}

func (ApiUnIgnoreUserRequest) Execute ¶

type ApiUnlockAuthorFieldRequest ¶

type ApiUnlockAuthorFieldRequest struct {
	ApiService *AuthorsAPIService
	// contains filtered or unexported fields
}

func (ApiUnlockAuthorFieldRequest) Execute ¶

type ApiUnlockSeriesFieldRequest ¶

type ApiUnlockSeriesFieldRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiUnlockSeriesFieldRequest) Execute ¶

type ApiUpdateAboutusCategoryRequest ¶

type ApiUpdateAboutusCategoryRequest struct {
	ApiService *AboutusAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateAboutusCategoryRequest) AboutusCategoryModelUpdateV1 ¶

func (r ApiUpdateAboutusCategoryRequest) AboutusCategoryModelUpdateV1(aboutusCategoryModelUpdateV1 AboutusCategoryModelUpdateV1) ApiUpdateAboutusCategoryRequest

func (ApiUpdateAboutusCategoryRequest) Execute ¶

type ApiUpdateAboutusDescriptionRequest ¶

type ApiUpdateAboutusDescriptionRequest struct {
	ApiService *AboutusAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateAboutusDescriptionRequest) AboutusDescriptionModelV1 ¶

func (r ApiUpdateAboutusDescriptionRequest) AboutusDescriptionModelV1(aboutusDescriptionModelV1 AboutusDescriptionModelV1) ApiUpdateAboutusDescriptionRequest

func (ApiUpdateAboutusDescriptionRequest) Execute ¶

type ApiUpdateAuthorRequest ¶

type ApiUpdateAuthorRequest struct {
	ApiService *AuthorsAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateAuthorRequest) AuthorsModelUpdateV1 ¶

func (r ApiUpdateAuthorRequest) AuthorsModelUpdateV1(authorsModelUpdateV1 AuthorsModelUpdateV1) ApiUpdateAuthorRequest

func (ApiUpdateAuthorRequest) Execute ¶

type ApiUpdateConvoMessageRequest ¶

type ApiUpdateConvoMessageRequest struct {
	ApiService *ConvoAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateConvoMessageRequest) ConvoMessageModelUpdateV1 ¶

func (r ApiUpdateConvoMessageRequest) ConvoMessageModelUpdateV1(convoMessageModelUpdateV1 ConvoMessageModelUpdateV1) ApiUpdateConvoMessageRequest

func (ApiUpdateConvoMessageRequest) Execute ¶

type ApiUpdateConvoRequest ¶

type ApiUpdateConvoRequest struct {
	ApiService *ConvoAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateConvoRequest) ConvoModelUpdateV1 ¶

func (r ApiUpdateConvoRequest) ConvoModelUpdateV1(convoModelUpdateV1 ConvoModelUpdateV1) ApiUpdateConvoRequest

func (ApiUpdateConvoRequest) Execute ¶

type ApiUpdateFaqCategoryRequest ¶

type ApiUpdateFaqCategoryRequest struct {
	ApiService *FaqAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateFaqCategoryRequest) Execute ¶

func (ApiUpdateFaqCategoryRequest) FaqCategoryModelUpdateV1 ¶

func (r ApiUpdateFaqCategoryRequest) FaqCategoryModelUpdateV1(faqCategoryModelUpdateV1 FaqCategoryModelUpdateV1) ApiUpdateFaqCategoryRequest

type ApiUpdateFaqQuestionRequest ¶

type ApiUpdateFaqQuestionRequest struct {
	ApiService *FaqAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateFaqQuestionRequest) Execute ¶

func (ApiUpdateFaqQuestionRequest) FaqQuestionModelUpdateV1 ¶

func (r ApiUpdateFaqQuestionRequest) FaqQuestionModelUpdateV1(faqQuestionModelUpdateV1 FaqQuestionModelUpdateV1) ApiUpdateFaqQuestionRequest

type ApiUpdateGenreRequest ¶

type ApiUpdateGenreRequest struct {
	ApiService *GenreAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateGenreRequest) Execute ¶

func (ApiUpdateGenreRequest) GenreModelUpdateV1 ¶

func (r ApiUpdateGenreRequest) GenreModelUpdateV1(genreModelUpdateV1 GenreModelUpdateV1) ApiUpdateGenreRequest

type ApiUpdateGroupRequest ¶

type ApiUpdateGroupRequest struct {
	ApiService *GroupsAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateGroupRequest) Execute ¶

func (ApiUpdateGroupRequest) GroupsModelUpdateV1 ¶

func (r ApiUpdateGroupRequest) GroupsModelUpdateV1(groupsModelUpdateV1 GroupsModelUpdateV1) ApiUpdateGroupRequest

type ApiUpdateImageRequest ¶

type ApiUpdateImageRequest struct {
	ApiService *AuthorsAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateImageRequest) Execute ¶

func (ApiUpdateImageRequest) Image ¶

Image to update

type ApiUpdateListRequest ¶

type ApiUpdateListRequest struct {
	ApiService *ListsAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateListRequest) Execute ¶

func (ApiUpdateListRequest) ListsModelUpdateV1 ¶

func (r ApiUpdateListRequest) ListsModelUpdateV1(listsModelUpdateV1 ListsModelUpdateV1) ApiUpdateListRequest

type ApiUpdateListSeriesRequest ¶

type ApiUpdateListSeriesRequest struct {
	ApiService *ListsAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateListSeriesRequest) Execute ¶

func (ApiUpdateListSeriesRequest) ListsSeriesModelUpdateV1 ¶

func (r ApiUpdateListSeriesRequest) ListsSeriesModelUpdateV1(listsSeriesModelUpdateV1 []ListsSeriesModelUpdateV1) ApiUpdateListSeriesRequest

type ApiUpdateMemberChangeRequestRequest ¶

type ApiUpdateMemberChangeRequestRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateMemberChangeRequestRequest) Execute ¶

func (ApiUpdateMemberChangeRequestRequest) UserChangeRequestModelUpdateV1 ¶

func (r ApiUpdateMemberChangeRequestRequest) UserChangeRequestModelUpdateV1(userChangeRequestModelUpdateV1 UserChangeRequestModelUpdateV1) ApiUpdateMemberChangeRequestRequest

type ApiUpdateMemberRequest ¶

type ApiUpdateMemberRequest struct {
	ApiService *MembersAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateMemberRequest) Execute ¶

func (ApiUpdateMemberRequest) UserModelUpdateV1 ¶

func (r ApiUpdateMemberRequest) UserModelUpdateV1(userModelUpdateV1 UserModelUpdateV1) ApiUpdateMemberRequest

type ApiUpdatePostRequest ¶

type ApiUpdatePostRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiUpdatePostRequest) Execute ¶

func (ApiUpdatePostRequest) ForumPostModelUpdateV1 ¶

func (r ApiUpdatePostRequest) ForumPostModelUpdateV1(forumPostModelUpdateV1 ForumPostModelUpdateV1) ApiUpdatePostRequest

type ApiUpdatePublisherRequest ¶

type ApiUpdatePublisherRequest struct {
	ApiService *PublishersAPIService
	// contains filtered or unexported fields
}

func (ApiUpdatePublisherRequest) Execute ¶

func (ApiUpdatePublisherRequest) PublishersModelUpdateV1 ¶

func (r ApiUpdatePublisherRequest) PublishersModelUpdateV1(publishersModelUpdateV1 PublishersModelUpdateV1) ApiUpdatePublisherRequest

type ApiUpdateReleaseRequest ¶

type ApiUpdateReleaseRequest struct {
	ApiService *ReleasesAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateReleaseRequest) Execute ¶

func (ApiUpdateReleaseRequest) ReleaseModelUpdateV1 ¶

func (r ApiUpdateReleaseRequest) ReleaseModelUpdateV1(releaseModelUpdateV1 ReleaseModelUpdateV1) ApiUpdateReleaseRequest

type ApiUpdateReviewCommentRequest ¶

type ApiUpdateReviewCommentRequest struct {
	ApiService *ReviewsAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateReviewCommentRequest) Execute ¶

func (ApiUpdateReviewCommentRequest) ReviewCommentModelUpdateV1 ¶

func (r ApiUpdateReviewCommentRequest) ReviewCommentModelUpdateV1(reviewCommentModelUpdateV1 ReviewCommentModelUpdateV1) ApiUpdateReviewCommentRequest

type ApiUpdateReviewRequest ¶

type ApiUpdateReviewRequest struct {
	ApiService *ReviewsAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateReviewRequest) Execute ¶

func (ApiUpdateReviewRequest) ReviewModelUpdateV1 ¶

func (r ApiUpdateReviewRequest) ReviewModelUpdateV1(reviewModelUpdateV1 ReviewModelUpdateV1) ApiUpdateReviewRequest

type ApiUpdateSeriesCommentRequest ¶

type ApiUpdateSeriesCommentRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateSeriesCommentRequest) Execute ¶

func (ApiUpdateSeriesCommentRequest) SeriesCommentModelUpdateV1 ¶

func (r ApiUpdateSeriesCommentRequest) SeriesCommentModelUpdateV1(seriesCommentModelUpdateV1 SeriesCommentModelUpdateV1) ApiUpdateSeriesCommentRequest

type ApiUpdateSeriesImageRequest ¶

type ApiUpdateSeriesImageRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateSeriesImageRequest) Execute ¶

func (ApiUpdateSeriesImageRequest) Image ¶

Image to update

type ApiUpdateSeriesRequest ¶

type ApiUpdateSeriesRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateSeriesRequest) Execute ¶

func (ApiUpdateSeriesRequest) SeriesModelUpdateV1 ¶

func (r ApiUpdateSeriesRequest) SeriesModelUpdateV1(seriesModelUpdateV1 SeriesModelUpdateV1) ApiUpdateSeriesRequest

type ApiUpdateTopicPollRequest ¶

type ApiUpdateTopicPollRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateTopicPollRequest) Execute ¶

func (ApiUpdateTopicPollRequest) ForumPollModelUpdateV1 ¶

func (r ApiUpdateTopicPollRequest) ForumPollModelUpdateV1(forumPollModelUpdateV1 ForumPollModelUpdateV1) ApiUpdateTopicPollRequest

type ApiUpdateTopicRequest ¶

type ApiUpdateTopicRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateTopicRequest) Execute ¶

func (ApiUpdateTopicRequest) ForumTopicModelUpdateV1 ¶

func (r ApiUpdateTopicRequest) ForumTopicModelUpdateV1(forumTopicModelUpdateV1 ForumTopicModelUpdateV1) ApiUpdateTopicRequest

type ApiUpdateUserSeriesRatingRequest ¶

type ApiUpdateUserSeriesRatingRequest struct {
	ApiService *SeriesAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateUserSeriesRatingRequest) Execute ¶

func (ApiUpdateUserSeriesRatingRequest) SeriesRatingModelV1 ¶

type ApiUpdateUserWarnLevelRequest ¶

type ApiUpdateUserWarnLevelRequest struct {
	ApiService *ForumAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateUserWarnLevelRequest) Execute ¶

func (ApiUpdateUserWarnLevelRequest) ForumWarnModelUpdateV1 ¶

func (r ApiUpdateUserWarnLevelRequest) ForumWarnModelUpdateV1(forumWarnModelUpdateV1 ForumWarnModelUpdateV1) ApiUpdateUserWarnLevelRequest

type ApiVotePollAnswerRequest ¶

type ApiVotePollAnswerRequest struct {
	ApiService *PollAPIService
	// contains filtered or unexported fields
}

func (ApiVotePollAnswerRequest) Execute ¶

type ApiVotePollNoAnswerRequest ¶

type ApiVotePollNoAnswerRequest struct {
	ApiService *PollAPIService
	// contains filtered or unexported fields
}

func (ApiVotePollNoAnswerRequest) Execute ¶

type AuthorsAPIService ¶

type AuthorsAPIService service

AuthorsAPIService AuthorsAPI service

func (*AuthorsAPIService) AddAuthor ¶

AddAuthor add an author

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAddAuthorRequest

func (*AuthorsAPIService) AddAuthorExecute ¶

Execute executes the request

@return ApiResponseV1

func (*AuthorsAPIService) DeleteAuthor ¶

DeleteAuthor delete an author

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of author
@return ApiDeleteAuthorRequest

func (*AuthorsAPIService) DeleteAuthorExecute ¶

func (a *AuthorsAPIService) DeleteAuthorExecute(r ApiDeleteAuthorRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*AuthorsAPIService) DeleteImage ¶

DeleteImage delete the image of an author

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of author
@return ApiDeleteImageRequest

func (*AuthorsAPIService) DeleteImageExecute ¶

Execute executes the request

@return ApiResponseV1

func (*AuthorsAPIService) LockAuthorField ¶

func (a *AuthorsAPIService) LockAuthorField(ctx context.Context, id int64, item string) ApiLockAuthorFieldRequest

LockAuthorField lock a field of an author

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of author
@param item field name
@return ApiLockAuthorFieldRequest

func (*AuthorsAPIService) LockAuthorFieldExecute ¶

func (a *AuthorsAPIService) LockAuthorFieldExecute(r ApiLockAuthorFieldRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*AuthorsAPIService) RetrieveAuthor ¶

func (a *AuthorsAPIService) RetrieveAuthor(ctx context.Context, id int64) ApiRetrieveAuthorRequest

RetrieveAuthor get a specific author

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Author id
@return ApiRetrieveAuthorRequest

func (*AuthorsAPIService) RetrieveAuthorExecute ¶

func (a *AuthorsAPIService) RetrieveAuthorExecute(r ApiRetrieveAuthorRequest) (*AuthorsModelV1, *http.Response, error)

Execute executes the request

@return AuthorsModelV1

func (*AuthorsAPIService) RetrieveAuthorLocks ¶

func (a *AuthorsAPIService) RetrieveAuthorLocks(ctx context.Context, id int64) ApiRetrieveAuthorLocksRequest

RetrieveAuthorLocks get locks for a specific author

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Author id
@return ApiRetrieveAuthorLocksRequest

func (*AuthorsAPIService) RetrieveAuthorLocksExecute ¶

func (a *AuthorsAPIService) RetrieveAuthorLocksExecute(r ApiRetrieveAuthorLocksRequest) ([]AuthorsLockModelV1, *http.Response, error)

Execute executes the request

@return []AuthorsLockModelV1

func (*AuthorsAPIService) RetrieveAuthorSeries ¶

func (a *AuthorsAPIService) RetrieveAuthorSeries(ctx context.Context, id int64) ApiRetrieveAuthorSeriesRequest

RetrieveAuthorSeries get the list of series for a specific author

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Author id
@return ApiRetrieveAuthorSeriesRequest

func (*AuthorsAPIService) RetrieveAuthorSeriesExecute ¶

Execute executes the request

@return AuthorsSeriesListResponseV1

func (*AuthorsAPIService) SearchAuthorsPost ¶

SearchAuthorsPost search authors

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchAuthorsPostRequest

func (*AuthorsAPIService) SearchAuthorsPostExecute ¶

Execute executes the request

@return AuthorsSearchResponseV1

func (*AuthorsAPIService) UnlockAuthorField ¶

func (a *AuthorsAPIService) UnlockAuthorField(ctx context.Context, id int64, item string) ApiUnlockAuthorFieldRequest

UnlockAuthorField unlock a field of an author

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of author
@param item field name
@return ApiUnlockAuthorFieldRequest

func (*AuthorsAPIService) UnlockAuthorFieldExecute ¶

func (a *AuthorsAPIService) UnlockAuthorFieldExecute(r ApiUnlockAuthorFieldRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*AuthorsAPIService) UpdateAuthor ¶

UpdateAuthor update an author

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of author
@return ApiUpdateAuthorRequest

func (*AuthorsAPIService) UpdateAuthorExecute ¶

func (a *AuthorsAPIService) UpdateAuthorExecute(r ApiUpdateAuthorRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*AuthorsAPIService) UpdateImage ¶

UpdateImage update the image of an author

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of author
@return ApiUpdateImageRequest

func (*AuthorsAPIService) UpdateImageExecute ¶

Execute executes the request

@return ApiResponseV1

type AuthorsLockModelUpdateV1 ¶

type AuthorsLockModelUpdateV1 struct {
	Reason *string `json:"reason,omitempty"`
}

AuthorsLockModelUpdateV1 struct for AuthorsLockModelUpdateV1

func NewAuthorsLockModelUpdateV1 ¶

func NewAuthorsLockModelUpdateV1() *AuthorsLockModelUpdateV1

NewAuthorsLockModelUpdateV1 instantiates a new AuthorsLockModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthorsLockModelUpdateV1WithDefaults ¶

func NewAuthorsLockModelUpdateV1WithDefaults() *AuthorsLockModelUpdateV1

NewAuthorsLockModelUpdateV1WithDefaults instantiates a new AuthorsLockModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthorsLockModelUpdateV1) GetReason ¶

func (o *AuthorsLockModelUpdateV1) GetReason() string

GetReason returns the Reason field value if set, zero value otherwise.

func (*AuthorsLockModelUpdateV1) GetReasonOk ¶

func (o *AuthorsLockModelUpdateV1) GetReasonOk() (*string, bool)

GetReasonOk returns a tuple with the Reason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsLockModelUpdateV1) HasReason ¶

func (o *AuthorsLockModelUpdateV1) HasReason() bool

HasReason returns a boolean if a field has been set.

func (AuthorsLockModelUpdateV1) MarshalJSON ¶

func (o AuthorsLockModelUpdateV1) MarshalJSON() ([]byte, error)

func (*AuthorsLockModelUpdateV1) SetReason ¶

func (o *AuthorsLockModelUpdateV1) SetReason(v string)

SetReason gets a reference to the given string and assigns it to the Reason field.

func (AuthorsLockModelUpdateV1) ToMap ¶

func (o AuthorsLockModelUpdateV1) ToMap() (map[string]interface{}, error)

type AuthorsLockModelV1 ¶

type AuthorsLockModelV1 struct {
	Field      *string `json:"field,omitempty"`
	Reason     *string `json:"reason,omitempty"`
	UserId     *int64  `json:"user_id,omitempty"`
	Username   *string `json:"username,omitempty"`
	TimeLocked *TimeV1 `json:"time_locked,omitempty"`
}

AuthorsLockModelV1 struct for AuthorsLockModelV1

func NewAuthorsLockModelV1 ¶

func NewAuthorsLockModelV1() *AuthorsLockModelV1

NewAuthorsLockModelV1 instantiates a new AuthorsLockModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthorsLockModelV1WithDefaults ¶

func NewAuthorsLockModelV1WithDefaults() *AuthorsLockModelV1

NewAuthorsLockModelV1WithDefaults instantiates a new AuthorsLockModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthorsLockModelV1) GetField ¶

func (o *AuthorsLockModelV1) GetField() string

GetField returns the Field field value if set, zero value otherwise.

func (*AuthorsLockModelV1) GetFieldOk ¶

func (o *AuthorsLockModelV1) GetFieldOk() (*string, bool)

GetFieldOk returns a tuple with the Field field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsLockModelV1) GetReason ¶

func (o *AuthorsLockModelV1) GetReason() string

GetReason returns the Reason field value if set, zero value otherwise.

func (*AuthorsLockModelV1) GetReasonOk ¶

func (o *AuthorsLockModelV1) GetReasonOk() (*string, bool)

GetReasonOk returns a tuple with the Reason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsLockModelV1) GetTimeLocked ¶

func (o *AuthorsLockModelV1) GetTimeLocked() TimeV1

GetTimeLocked returns the TimeLocked field value if set, zero value otherwise.

func (*AuthorsLockModelV1) GetTimeLockedOk ¶

func (o *AuthorsLockModelV1) GetTimeLockedOk() (*TimeV1, bool)

GetTimeLockedOk returns a tuple with the TimeLocked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsLockModelV1) GetUserId ¶

func (o *AuthorsLockModelV1) GetUserId() int64

GetUserId returns the UserId field value if set, zero value otherwise.

func (*AuthorsLockModelV1) GetUserIdOk ¶

func (o *AuthorsLockModelV1) GetUserIdOk() (*int64, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsLockModelV1) GetUsername ¶

func (o *AuthorsLockModelV1) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*AuthorsLockModelV1) GetUsernameOk ¶

func (o *AuthorsLockModelV1) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsLockModelV1) HasField ¶

func (o *AuthorsLockModelV1) HasField() bool

HasField returns a boolean if a field has been set.

func (*AuthorsLockModelV1) HasReason ¶

func (o *AuthorsLockModelV1) HasReason() bool

HasReason returns a boolean if a field has been set.

func (*AuthorsLockModelV1) HasTimeLocked ¶

func (o *AuthorsLockModelV1) HasTimeLocked() bool

HasTimeLocked returns a boolean if a field has been set.

func (*AuthorsLockModelV1) HasUserId ¶

func (o *AuthorsLockModelV1) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (*AuthorsLockModelV1) HasUsername ¶

func (o *AuthorsLockModelV1) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (AuthorsLockModelV1) MarshalJSON ¶

func (o AuthorsLockModelV1) MarshalJSON() ([]byte, error)

func (*AuthorsLockModelV1) SetField ¶

func (o *AuthorsLockModelV1) SetField(v string)

SetField gets a reference to the given string and assigns it to the Field field.

func (*AuthorsLockModelV1) SetReason ¶

func (o *AuthorsLockModelV1) SetReason(v string)

SetReason gets a reference to the given string and assigns it to the Reason field.

func (*AuthorsLockModelV1) SetTimeLocked ¶

func (o *AuthorsLockModelV1) SetTimeLocked(v TimeV1)

SetTimeLocked gets a reference to the given TimeV1 and assigns it to the TimeLocked field.

func (*AuthorsLockModelV1) SetUserId ¶

func (o *AuthorsLockModelV1) SetUserId(v int64)

SetUserId gets a reference to the given int64 and assigns it to the UserId field.

func (*AuthorsLockModelV1) SetUsername ¶

func (o *AuthorsLockModelV1) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (AuthorsLockModelV1) ToMap ¶

func (o AuthorsLockModelV1) ToMap() (map[string]interface{}, error)

type AuthorsModelSearchV1 ¶

type AuthorsModelSearchV1 struct {
	Id      *int64                     `json:"id,omitempty"`
	Name    *string                    `json:"name,omitempty"`
	Url     *string                    `json:"url,omitempty"`
	Genres  []string                   `json:"genres,omitempty"`
	Stats   *AuthorsModelSearchV1Stats `json:"stats,omitempty"`
	AddedBy *UserModelSearchV1         `json:"added_by,omitempty"`
}

AuthorsModelSearchV1 struct for AuthorsModelSearchV1

func NewAuthorsModelSearchV1 ¶

func NewAuthorsModelSearchV1() *AuthorsModelSearchV1

NewAuthorsModelSearchV1 instantiates a new AuthorsModelSearchV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthorsModelSearchV1WithDefaults ¶

func NewAuthorsModelSearchV1WithDefaults() *AuthorsModelSearchV1

NewAuthorsModelSearchV1WithDefaults instantiates a new AuthorsModelSearchV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthorsModelSearchV1) GetAddedBy ¶

func (o *AuthorsModelSearchV1) GetAddedBy() UserModelSearchV1

GetAddedBy returns the AddedBy field value if set, zero value otherwise.

func (*AuthorsModelSearchV1) GetAddedByOk ¶

func (o *AuthorsModelSearchV1) GetAddedByOk() (*UserModelSearchV1, bool)

GetAddedByOk returns a tuple with the AddedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelSearchV1) GetGenres ¶

func (o *AuthorsModelSearchV1) GetGenres() []string

GetGenres returns the Genres field value if set, zero value otherwise.

func (*AuthorsModelSearchV1) GetGenresOk ¶

func (o *AuthorsModelSearchV1) GetGenresOk() ([]string, bool)

GetGenresOk returns a tuple with the Genres field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelSearchV1) GetId ¶

func (o *AuthorsModelSearchV1) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*AuthorsModelSearchV1) GetIdOk ¶

func (o *AuthorsModelSearchV1) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelSearchV1) GetName ¶

func (o *AuthorsModelSearchV1) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*AuthorsModelSearchV1) GetNameOk ¶

func (o *AuthorsModelSearchV1) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelSearchV1) GetStats ¶

GetStats returns the Stats field value if set, zero value otherwise.

func (*AuthorsModelSearchV1) GetStatsOk ¶

GetStatsOk returns a tuple with the Stats field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelSearchV1) GetUrl ¶

func (o *AuthorsModelSearchV1) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*AuthorsModelSearchV1) GetUrlOk ¶

func (o *AuthorsModelSearchV1) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelSearchV1) HasAddedBy ¶

func (o *AuthorsModelSearchV1) HasAddedBy() bool

HasAddedBy returns a boolean if a field has been set.

func (*AuthorsModelSearchV1) HasGenres ¶

func (o *AuthorsModelSearchV1) HasGenres() bool

HasGenres returns a boolean if a field has been set.

func (*AuthorsModelSearchV1) HasId ¶

func (o *AuthorsModelSearchV1) HasId() bool

HasId returns a boolean if a field has been set.

func (*AuthorsModelSearchV1) HasName ¶

func (o *AuthorsModelSearchV1) HasName() bool

HasName returns a boolean if a field has been set.

func (*AuthorsModelSearchV1) HasStats ¶

func (o *AuthorsModelSearchV1) HasStats() bool

HasStats returns a boolean if a field has been set.

func (*AuthorsModelSearchV1) HasUrl ¶

func (o *AuthorsModelSearchV1) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (AuthorsModelSearchV1) MarshalJSON ¶

func (o AuthorsModelSearchV1) MarshalJSON() ([]byte, error)

func (*AuthorsModelSearchV1) SetAddedBy ¶

func (o *AuthorsModelSearchV1) SetAddedBy(v UserModelSearchV1)

SetAddedBy gets a reference to the given UserModelSearchV1 and assigns it to the AddedBy field.

func (*AuthorsModelSearchV1) SetGenres ¶

func (o *AuthorsModelSearchV1) SetGenres(v []string)

SetGenres gets a reference to the given []string and assigns it to the Genres field.

func (*AuthorsModelSearchV1) SetId ¶

func (o *AuthorsModelSearchV1) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*AuthorsModelSearchV1) SetName ¶

func (o *AuthorsModelSearchV1) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*AuthorsModelSearchV1) SetStats ¶

SetStats gets a reference to the given AuthorsModelSearchV1Stats and assigns it to the Stats field.

func (*AuthorsModelSearchV1) SetUrl ¶

func (o *AuthorsModelSearchV1) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (AuthorsModelSearchV1) ToMap ¶

func (o AuthorsModelSearchV1) ToMap() (map[string]interface{}, error)

type AuthorsModelSearchV1Stats ¶

type AuthorsModelSearchV1Stats struct {
	TotalSeries *int64 `json:"total_series,omitempty"`
}

AuthorsModelSearchV1Stats struct for AuthorsModelSearchV1Stats

func NewAuthorsModelSearchV1Stats ¶

func NewAuthorsModelSearchV1Stats() *AuthorsModelSearchV1Stats

NewAuthorsModelSearchV1Stats instantiates a new AuthorsModelSearchV1Stats object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthorsModelSearchV1StatsWithDefaults ¶

func NewAuthorsModelSearchV1StatsWithDefaults() *AuthorsModelSearchV1Stats

NewAuthorsModelSearchV1StatsWithDefaults instantiates a new AuthorsModelSearchV1Stats object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthorsModelSearchV1Stats) GetTotalSeries ¶

func (o *AuthorsModelSearchV1Stats) GetTotalSeries() int64

GetTotalSeries returns the TotalSeries field value if set, zero value otherwise.

func (*AuthorsModelSearchV1Stats) GetTotalSeriesOk ¶

func (o *AuthorsModelSearchV1Stats) GetTotalSeriesOk() (*int64, bool)

GetTotalSeriesOk returns a tuple with the TotalSeries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelSearchV1Stats) HasTotalSeries ¶

func (o *AuthorsModelSearchV1Stats) HasTotalSeries() bool

HasTotalSeries returns a boolean if a field has been set.

func (AuthorsModelSearchV1Stats) MarshalJSON ¶

func (o AuthorsModelSearchV1Stats) MarshalJSON() ([]byte, error)

func (*AuthorsModelSearchV1Stats) SetTotalSeries ¶

func (o *AuthorsModelSearchV1Stats) SetTotalSeries(v int64)

SetTotalSeries gets a reference to the given int64 and assigns it to the TotalSeries field.

func (AuthorsModelSearchV1Stats) ToMap ¶

func (o AuthorsModelSearchV1Stats) ToMap() (map[string]interface{}, error)

type AuthorsModelUpdateV1 ¶

type AuthorsModelUpdateV1 struct {
	Name       *string                          `json:"name,omitempty"`
	Associated []AuthorsModelUpdateV1Associated `json:"associated,omitempty"`
	Actualname *string                          `json:"actualname,omitempty"`
	Birthday   *BirthdayModelV1                 `json:"birthday,omitempty"`
	Birthplace *string                          `json:"birthplace,omitempty"`
	Bloodtype  *string                          `json:"bloodtype,omitempty"`
	Gender     *string                          `json:"gender,omitempty"`
	Social     *AuthorsModelUpdateV1Social      `json:"social,omitempty"`
	Comments   *string                          `json:"comments,omitempty"`
	Admin      *AuthorsModelUpdateV1Admin       `json:"admin,omitempty"`
}

AuthorsModelUpdateV1 struct for AuthorsModelUpdateV1

func NewAuthorsModelUpdateV1 ¶

func NewAuthorsModelUpdateV1() *AuthorsModelUpdateV1

NewAuthorsModelUpdateV1 instantiates a new AuthorsModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthorsModelUpdateV1WithDefaults ¶

func NewAuthorsModelUpdateV1WithDefaults() *AuthorsModelUpdateV1

NewAuthorsModelUpdateV1WithDefaults instantiates a new AuthorsModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthorsModelUpdateV1) GetActualname ¶

func (o *AuthorsModelUpdateV1) GetActualname() string

GetActualname returns the Actualname field value if set, zero value otherwise.

func (*AuthorsModelUpdateV1) GetActualnameOk ¶

func (o *AuthorsModelUpdateV1) GetActualnameOk() (*string, bool)

GetActualnameOk returns a tuple with the Actualname field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelUpdateV1) GetAdmin ¶

GetAdmin returns the Admin field value if set, zero value otherwise.

func (*AuthorsModelUpdateV1) GetAdminOk ¶

GetAdminOk returns a tuple with the Admin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelUpdateV1) GetAssociated ¶

GetAssociated returns the Associated field value if set, zero value otherwise.

func (*AuthorsModelUpdateV1) GetAssociatedOk ¶

func (o *AuthorsModelUpdateV1) GetAssociatedOk() ([]AuthorsModelUpdateV1Associated, bool)

GetAssociatedOk returns a tuple with the Associated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelUpdateV1) GetBirthday ¶

func (o *AuthorsModelUpdateV1) GetBirthday() BirthdayModelV1

GetBirthday returns the Birthday field value if set, zero value otherwise.

func (*AuthorsModelUpdateV1) GetBirthdayOk ¶

func (o *AuthorsModelUpdateV1) GetBirthdayOk() (*BirthdayModelV1, bool)

GetBirthdayOk returns a tuple with the Birthday field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelUpdateV1) GetBirthplace ¶

func (o *AuthorsModelUpdateV1) GetBirthplace() string

GetBirthplace returns the Birthplace field value if set, zero value otherwise.

func (*AuthorsModelUpdateV1) GetBirthplaceOk ¶

func (o *AuthorsModelUpdateV1) GetBirthplaceOk() (*string, bool)

GetBirthplaceOk returns a tuple with the Birthplace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelUpdateV1) GetBloodtype ¶

func (o *AuthorsModelUpdateV1) GetBloodtype() string

GetBloodtype returns the Bloodtype field value if set, zero value otherwise.

func (*AuthorsModelUpdateV1) GetBloodtypeOk ¶

func (o *AuthorsModelUpdateV1) GetBloodtypeOk() (*string, bool)

GetBloodtypeOk returns a tuple with the Bloodtype field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelUpdateV1) GetComments ¶

func (o *AuthorsModelUpdateV1) GetComments() string

GetComments returns the Comments field value if set, zero value otherwise.

func (*AuthorsModelUpdateV1) GetCommentsOk ¶

func (o *AuthorsModelUpdateV1) GetCommentsOk() (*string, bool)

GetCommentsOk returns a tuple with the Comments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelUpdateV1) GetGender ¶

func (o *AuthorsModelUpdateV1) GetGender() string

GetGender returns the Gender field value if set, zero value otherwise.

func (*AuthorsModelUpdateV1) GetGenderOk ¶

func (o *AuthorsModelUpdateV1) GetGenderOk() (*string, bool)

GetGenderOk returns a tuple with the Gender field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelUpdateV1) GetName ¶

func (o *AuthorsModelUpdateV1) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*AuthorsModelUpdateV1) GetNameOk ¶

func (o *AuthorsModelUpdateV1) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelUpdateV1) GetSocial ¶

GetSocial returns the Social field value if set, zero value otherwise.

func (*AuthorsModelUpdateV1) GetSocialOk ¶

GetSocialOk returns a tuple with the Social field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelUpdateV1) HasActualname ¶

func (o *AuthorsModelUpdateV1) HasActualname() bool

HasActualname returns a boolean if a field has been set.

func (*AuthorsModelUpdateV1) HasAdmin ¶

func (o *AuthorsModelUpdateV1) HasAdmin() bool

HasAdmin returns a boolean if a field has been set.

func (*AuthorsModelUpdateV1) HasAssociated ¶

func (o *AuthorsModelUpdateV1) HasAssociated() bool

HasAssociated returns a boolean if a field has been set.

func (*AuthorsModelUpdateV1) HasBirthday ¶

func (o *AuthorsModelUpdateV1) HasBirthday() bool

HasBirthday returns a boolean if a field has been set.

func (*AuthorsModelUpdateV1) HasBirthplace ¶

func (o *AuthorsModelUpdateV1) HasBirthplace() bool

HasBirthplace returns a boolean if a field has been set.

func (*AuthorsModelUpdateV1) HasBloodtype ¶

func (o *AuthorsModelUpdateV1) HasBloodtype() bool

HasBloodtype returns a boolean if a field has been set.

func (*AuthorsModelUpdateV1) HasComments ¶

func (o *AuthorsModelUpdateV1) HasComments() bool

HasComments returns a boolean if a field has been set.

func (*AuthorsModelUpdateV1) HasGender ¶

func (o *AuthorsModelUpdateV1) HasGender() bool

HasGender returns a boolean if a field has been set.

func (*AuthorsModelUpdateV1) HasName ¶

func (o *AuthorsModelUpdateV1) HasName() bool

HasName returns a boolean if a field has been set.

func (*AuthorsModelUpdateV1) HasSocial ¶

func (o *AuthorsModelUpdateV1) HasSocial() bool

HasSocial returns a boolean if a field has been set.

func (AuthorsModelUpdateV1) MarshalJSON ¶

func (o AuthorsModelUpdateV1) MarshalJSON() ([]byte, error)

func (*AuthorsModelUpdateV1) SetActualname ¶

func (o *AuthorsModelUpdateV1) SetActualname(v string)

SetActualname gets a reference to the given string and assigns it to the Actualname field.

func (*AuthorsModelUpdateV1) SetAdmin ¶

SetAdmin gets a reference to the given AuthorsModelUpdateV1Admin and assigns it to the Admin field.

func (*AuthorsModelUpdateV1) SetAssociated ¶

SetAssociated gets a reference to the given []AuthorsModelUpdateV1Associated and assigns it to the Associated field.

func (*AuthorsModelUpdateV1) SetBirthday ¶

func (o *AuthorsModelUpdateV1) SetBirthday(v BirthdayModelV1)

SetBirthday gets a reference to the given BirthdayModelV1 and assigns it to the Birthday field.

func (*AuthorsModelUpdateV1) SetBirthplace ¶

func (o *AuthorsModelUpdateV1) SetBirthplace(v string)

SetBirthplace gets a reference to the given string and assigns it to the Birthplace field.

func (*AuthorsModelUpdateV1) SetBloodtype ¶

func (o *AuthorsModelUpdateV1) SetBloodtype(v string)

SetBloodtype gets a reference to the given string and assigns it to the Bloodtype field.

func (*AuthorsModelUpdateV1) SetComments ¶

func (o *AuthorsModelUpdateV1) SetComments(v string)

SetComments gets a reference to the given string and assigns it to the Comments field.

func (*AuthorsModelUpdateV1) SetGender ¶

func (o *AuthorsModelUpdateV1) SetGender(v string)

SetGender gets a reference to the given string and assigns it to the Gender field.

func (*AuthorsModelUpdateV1) SetName ¶

func (o *AuthorsModelUpdateV1) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*AuthorsModelUpdateV1) SetSocial ¶

SetSocial gets a reference to the given AuthorsModelUpdateV1Social and assigns it to the Social field.

func (AuthorsModelUpdateV1) ToMap ¶

func (o AuthorsModelUpdateV1) ToMap() (map[string]interface{}, error)

type AuthorsModelUpdateV1Admin ¶

type AuthorsModelUpdateV1Admin struct {
	Approved *bool `json:"approved,omitempty"`
}

AuthorsModelUpdateV1Admin struct for AuthorsModelUpdateV1Admin

func NewAuthorsModelUpdateV1Admin ¶

func NewAuthorsModelUpdateV1Admin() *AuthorsModelUpdateV1Admin

NewAuthorsModelUpdateV1Admin instantiates a new AuthorsModelUpdateV1Admin object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthorsModelUpdateV1AdminWithDefaults ¶

func NewAuthorsModelUpdateV1AdminWithDefaults() *AuthorsModelUpdateV1Admin

NewAuthorsModelUpdateV1AdminWithDefaults instantiates a new AuthorsModelUpdateV1Admin object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthorsModelUpdateV1Admin) GetApproved ¶

func (o *AuthorsModelUpdateV1Admin) GetApproved() bool

GetApproved returns the Approved field value if set, zero value otherwise.

func (*AuthorsModelUpdateV1Admin) GetApprovedOk ¶

func (o *AuthorsModelUpdateV1Admin) GetApprovedOk() (*bool, bool)

GetApprovedOk returns a tuple with the Approved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelUpdateV1Admin) HasApproved ¶

func (o *AuthorsModelUpdateV1Admin) HasApproved() bool

HasApproved returns a boolean if a field has been set.

func (AuthorsModelUpdateV1Admin) MarshalJSON ¶

func (o AuthorsModelUpdateV1Admin) MarshalJSON() ([]byte, error)

func (*AuthorsModelUpdateV1Admin) SetApproved ¶

func (o *AuthorsModelUpdateV1Admin) SetApproved(v bool)

SetApproved gets a reference to the given bool and assigns it to the Approved field.

func (AuthorsModelUpdateV1Admin) ToMap ¶

func (o AuthorsModelUpdateV1Admin) ToMap() (map[string]interface{}, error)

type AuthorsModelUpdateV1Associated ¶

type AuthorsModelUpdateV1Associated struct {
	Name *string `json:"name,omitempty"`
}

AuthorsModelUpdateV1Associated struct for AuthorsModelUpdateV1Associated

func NewAuthorsModelUpdateV1Associated ¶

func NewAuthorsModelUpdateV1Associated() *AuthorsModelUpdateV1Associated

NewAuthorsModelUpdateV1Associated instantiates a new AuthorsModelUpdateV1Associated object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthorsModelUpdateV1AssociatedWithDefaults ¶

func NewAuthorsModelUpdateV1AssociatedWithDefaults() *AuthorsModelUpdateV1Associated

NewAuthorsModelUpdateV1AssociatedWithDefaults instantiates a new AuthorsModelUpdateV1Associated object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthorsModelUpdateV1Associated) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*AuthorsModelUpdateV1Associated) GetNameOk ¶

func (o *AuthorsModelUpdateV1Associated) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelUpdateV1Associated) HasName ¶

func (o *AuthorsModelUpdateV1Associated) HasName() bool

HasName returns a boolean if a field has been set.

func (AuthorsModelUpdateV1Associated) MarshalJSON ¶

func (o AuthorsModelUpdateV1Associated) MarshalJSON() ([]byte, error)

func (*AuthorsModelUpdateV1Associated) SetName ¶

func (o *AuthorsModelUpdateV1Associated) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (AuthorsModelUpdateV1Associated) ToMap ¶

func (o AuthorsModelUpdateV1Associated) ToMap() (map[string]interface{}, error)

type AuthorsModelUpdateV1Social ¶

type AuthorsModelUpdateV1Social struct {
	Officialsite *string `json:"officialsite,omitempty"`
	Facebook     *string `json:"facebook,omitempty"`
	Twitter      *string `json:"twitter,omitempty"`
}

AuthorsModelUpdateV1Social struct for AuthorsModelUpdateV1Social

func NewAuthorsModelUpdateV1Social ¶

func NewAuthorsModelUpdateV1Social() *AuthorsModelUpdateV1Social

NewAuthorsModelUpdateV1Social instantiates a new AuthorsModelUpdateV1Social object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthorsModelUpdateV1SocialWithDefaults ¶

func NewAuthorsModelUpdateV1SocialWithDefaults() *AuthorsModelUpdateV1Social

NewAuthorsModelUpdateV1SocialWithDefaults instantiates a new AuthorsModelUpdateV1Social object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthorsModelUpdateV1Social) GetFacebook ¶

func (o *AuthorsModelUpdateV1Social) GetFacebook() string

GetFacebook returns the Facebook field value if set, zero value otherwise.

func (*AuthorsModelUpdateV1Social) GetFacebookOk ¶

func (o *AuthorsModelUpdateV1Social) GetFacebookOk() (*string, bool)

GetFacebookOk returns a tuple with the Facebook field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelUpdateV1Social) GetOfficialsite ¶

func (o *AuthorsModelUpdateV1Social) GetOfficialsite() string

GetOfficialsite returns the Officialsite field value if set, zero value otherwise.

func (*AuthorsModelUpdateV1Social) GetOfficialsiteOk ¶

func (o *AuthorsModelUpdateV1Social) GetOfficialsiteOk() (*string, bool)

GetOfficialsiteOk returns a tuple with the Officialsite field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelUpdateV1Social) GetTwitter ¶

func (o *AuthorsModelUpdateV1Social) GetTwitter() string

GetTwitter returns the Twitter field value if set, zero value otherwise.

func (*AuthorsModelUpdateV1Social) GetTwitterOk ¶

func (o *AuthorsModelUpdateV1Social) GetTwitterOk() (*string, bool)

GetTwitterOk returns a tuple with the Twitter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelUpdateV1Social) HasFacebook ¶

func (o *AuthorsModelUpdateV1Social) HasFacebook() bool

HasFacebook returns a boolean if a field has been set.

func (*AuthorsModelUpdateV1Social) HasOfficialsite ¶

func (o *AuthorsModelUpdateV1Social) HasOfficialsite() bool

HasOfficialsite returns a boolean if a field has been set.

func (*AuthorsModelUpdateV1Social) HasTwitter ¶

func (o *AuthorsModelUpdateV1Social) HasTwitter() bool

HasTwitter returns a boolean if a field has been set.

func (AuthorsModelUpdateV1Social) MarshalJSON ¶

func (o AuthorsModelUpdateV1Social) MarshalJSON() ([]byte, error)

func (*AuthorsModelUpdateV1Social) SetFacebook ¶

func (o *AuthorsModelUpdateV1Social) SetFacebook(v string)

SetFacebook gets a reference to the given string and assigns it to the Facebook field.

func (*AuthorsModelUpdateV1Social) SetOfficialsite ¶

func (o *AuthorsModelUpdateV1Social) SetOfficialsite(v string)

SetOfficialsite gets a reference to the given string and assigns it to the Officialsite field.

func (*AuthorsModelUpdateV1Social) SetTwitter ¶

func (o *AuthorsModelUpdateV1Social) SetTwitter(v string)

SetTwitter gets a reference to the given string and assigns it to the Twitter field.

func (AuthorsModelUpdateV1Social) ToMap ¶

func (o AuthorsModelUpdateV1Social) ToMap() (map[string]interface{}, error)

type AuthorsModelV1 ¶

type AuthorsModelV1 struct {
	Id          *int64                     `json:"id,omitempty"`
	Name        *string                    `json:"name,omitempty"`
	Url         *string                    `json:"url,omitempty"`
	Associated  []AuthorsModelV1Associated `json:"associated,omitempty"`
	Image       *ImageModelV1              `json:"image,omitempty"`
	Actualname  *string                    `json:"actualname,omitempty"`
	Birthday    *BirthdayModelV1           `json:"birthday,omitempty"`
	Birthplace  *string                    `json:"birthplace,omitempty"`
	Bloodtype   *string                    `json:"bloodtype,omitempty"`
	Gender      *string                    `json:"gender,omitempty"`
	Genres      []string                   `json:"genres,omitempty"`
	Stats       *AuthorsModelV1Stats       `json:"stats,omitempty"`
	Social      *AuthorsModelV1Social      `json:"social,omitempty"`
	Comments    *string                    `json:"comments,omitempty"`
	LastUpdated *TimeV1                    `json:"last_updated,omitempty"`
	AddedBy     *UserModelSearchV1         `json:"added_by,omitempty"`
	Admin       *AuthorsModelV1Admin       `json:"admin,omitempty"`
}

AuthorsModelV1 struct for AuthorsModelV1

func NewAuthorsModelV1 ¶

func NewAuthorsModelV1() *AuthorsModelV1

NewAuthorsModelV1 instantiates a new AuthorsModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthorsModelV1WithDefaults ¶

func NewAuthorsModelV1WithDefaults() *AuthorsModelV1

NewAuthorsModelV1WithDefaults instantiates a new AuthorsModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthorsModelV1) GetActualname ¶

func (o *AuthorsModelV1) GetActualname() string

GetActualname returns the Actualname field value if set, zero value otherwise.

func (*AuthorsModelV1) GetActualnameOk ¶

func (o *AuthorsModelV1) GetActualnameOk() (*string, bool)

GetActualnameOk returns a tuple with the Actualname field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelV1) GetAddedBy ¶

func (o *AuthorsModelV1) GetAddedBy() UserModelSearchV1

GetAddedBy returns the AddedBy field value if set, zero value otherwise.

func (*AuthorsModelV1) GetAddedByOk ¶

func (o *AuthorsModelV1) GetAddedByOk() (*UserModelSearchV1, bool)

GetAddedByOk returns a tuple with the AddedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelV1) GetAdmin ¶

func (o *AuthorsModelV1) GetAdmin() AuthorsModelV1Admin

GetAdmin returns the Admin field value if set, zero value otherwise.

func (*AuthorsModelV1) GetAdminOk ¶

func (o *AuthorsModelV1) GetAdminOk() (*AuthorsModelV1Admin, bool)

GetAdminOk returns a tuple with the Admin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelV1) GetAssociated ¶

func (o *AuthorsModelV1) GetAssociated() []AuthorsModelV1Associated

GetAssociated returns the Associated field value if set, zero value otherwise.

func (*AuthorsModelV1) GetAssociatedOk ¶

func (o *AuthorsModelV1) GetAssociatedOk() ([]AuthorsModelV1Associated, bool)

GetAssociatedOk returns a tuple with the Associated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelV1) GetBirthday ¶

func (o *AuthorsModelV1) GetBirthday() BirthdayModelV1

GetBirthday returns the Birthday field value if set, zero value otherwise.

func (*AuthorsModelV1) GetBirthdayOk ¶

func (o *AuthorsModelV1) GetBirthdayOk() (*BirthdayModelV1, bool)

GetBirthdayOk returns a tuple with the Birthday field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelV1) GetBirthplace ¶

func (o *AuthorsModelV1) GetBirthplace() string

GetBirthplace returns the Birthplace field value if set, zero value otherwise.

func (*AuthorsModelV1) GetBirthplaceOk ¶

func (o *AuthorsModelV1) GetBirthplaceOk() (*string, bool)

GetBirthplaceOk returns a tuple with the Birthplace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelV1) GetBloodtype ¶

func (o *AuthorsModelV1) GetBloodtype() string

GetBloodtype returns the Bloodtype field value if set, zero value otherwise.

func (*AuthorsModelV1) GetBloodtypeOk ¶

func (o *AuthorsModelV1) GetBloodtypeOk() (*string, bool)

GetBloodtypeOk returns a tuple with the Bloodtype field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelV1) GetComments ¶

func (o *AuthorsModelV1) GetComments() string

GetComments returns the Comments field value if set, zero value otherwise.

func (*AuthorsModelV1) GetCommentsOk ¶

func (o *AuthorsModelV1) GetCommentsOk() (*string, bool)

GetCommentsOk returns a tuple with the Comments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelV1) GetGender ¶

func (o *AuthorsModelV1) GetGender() string

GetGender returns the Gender field value if set, zero value otherwise.

func (*AuthorsModelV1) GetGenderOk ¶

func (o *AuthorsModelV1) GetGenderOk() (*string, bool)

GetGenderOk returns a tuple with the Gender field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelV1) GetGenres ¶

func (o *AuthorsModelV1) GetGenres() []string

GetGenres returns the Genres field value if set, zero value otherwise.

func (*AuthorsModelV1) GetGenresOk ¶

func (o *AuthorsModelV1) GetGenresOk() ([]string, bool)

GetGenresOk returns a tuple with the Genres field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelV1) GetId ¶

func (o *AuthorsModelV1) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*AuthorsModelV1) GetIdOk ¶

func (o *AuthorsModelV1) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelV1) GetImage ¶

func (o *AuthorsModelV1) GetImage() ImageModelV1

GetImage returns the Image field value if set, zero value otherwise.

func (*AuthorsModelV1) GetImageOk ¶

func (o *AuthorsModelV1) GetImageOk() (*ImageModelV1, bool)

GetImageOk returns a tuple with the Image field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelV1) GetLastUpdated ¶

func (o *AuthorsModelV1) GetLastUpdated() TimeV1

GetLastUpdated returns the LastUpdated field value if set, zero value otherwise.

func (*AuthorsModelV1) GetLastUpdatedOk ¶

func (o *AuthorsModelV1) GetLastUpdatedOk() (*TimeV1, bool)

GetLastUpdatedOk returns a tuple with the LastUpdated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelV1) GetName ¶

func (o *AuthorsModelV1) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*AuthorsModelV1) GetNameOk ¶

func (o *AuthorsModelV1) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelV1) GetSocial ¶

func (o *AuthorsModelV1) GetSocial() AuthorsModelV1Social

GetSocial returns the Social field value if set, zero value otherwise.

func (*AuthorsModelV1) GetSocialOk ¶

func (o *AuthorsModelV1) GetSocialOk() (*AuthorsModelV1Social, bool)

GetSocialOk returns a tuple with the Social field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelV1) GetStats ¶

func (o *AuthorsModelV1) GetStats() AuthorsModelV1Stats

GetStats returns the Stats field value if set, zero value otherwise.

func (*AuthorsModelV1) GetStatsOk ¶

func (o *AuthorsModelV1) GetStatsOk() (*AuthorsModelV1Stats, bool)

GetStatsOk returns a tuple with the Stats field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelV1) GetUrl ¶

func (o *AuthorsModelV1) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*AuthorsModelV1) GetUrlOk ¶

func (o *AuthorsModelV1) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelV1) HasActualname ¶

func (o *AuthorsModelV1) HasActualname() bool

HasActualname returns a boolean if a field has been set.

func (*AuthorsModelV1) HasAddedBy ¶

func (o *AuthorsModelV1) HasAddedBy() bool

HasAddedBy returns a boolean if a field has been set.

func (*AuthorsModelV1) HasAdmin ¶

func (o *AuthorsModelV1) HasAdmin() bool

HasAdmin returns a boolean if a field has been set.

func (*AuthorsModelV1) HasAssociated ¶

func (o *AuthorsModelV1) HasAssociated() bool

HasAssociated returns a boolean if a field has been set.

func (*AuthorsModelV1) HasBirthday ¶

func (o *AuthorsModelV1) HasBirthday() bool

HasBirthday returns a boolean if a field has been set.

func (*AuthorsModelV1) HasBirthplace ¶

func (o *AuthorsModelV1) HasBirthplace() bool

HasBirthplace returns a boolean if a field has been set.

func (*AuthorsModelV1) HasBloodtype ¶

func (o *AuthorsModelV1) HasBloodtype() bool

HasBloodtype returns a boolean if a field has been set.

func (*AuthorsModelV1) HasComments ¶

func (o *AuthorsModelV1) HasComments() bool

HasComments returns a boolean if a field has been set.

func (*AuthorsModelV1) HasGender ¶

func (o *AuthorsModelV1) HasGender() bool

HasGender returns a boolean if a field has been set.

func (*AuthorsModelV1) HasGenres ¶

func (o *AuthorsModelV1) HasGenres() bool

HasGenres returns a boolean if a field has been set.

func (*AuthorsModelV1) HasId ¶

func (o *AuthorsModelV1) HasId() bool

HasId returns a boolean if a field has been set.

func (*AuthorsModelV1) HasImage ¶

func (o *AuthorsModelV1) HasImage() bool

HasImage returns a boolean if a field has been set.

func (*AuthorsModelV1) HasLastUpdated ¶

func (o *AuthorsModelV1) HasLastUpdated() bool

HasLastUpdated returns a boolean if a field has been set.

func (*AuthorsModelV1) HasName ¶

func (o *AuthorsModelV1) HasName() bool

HasName returns a boolean if a field has been set.

func (*AuthorsModelV1) HasSocial ¶

func (o *AuthorsModelV1) HasSocial() bool

HasSocial returns a boolean if a field has been set.

func (*AuthorsModelV1) HasStats ¶

func (o *AuthorsModelV1) HasStats() bool

HasStats returns a boolean if a field has been set.

func (*AuthorsModelV1) HasUrl ¶

func (o *AuthorsModelV1) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (AuthorsModelV1) MarshalJSON ¶

func (o AuthorsModelV1) MarshalJSON() ([]byte, error)

func (*AuthorsModelV1) SetActualname ¶

func (o *AuthorsModelV1) SetActualname(v string)

SetActualname gets a reference to the given string and assigns it to the Actualname field.

func (*AuthorsModelV1) SetAddedBy ¶

func (o *AuthorsModelV1) SetAddedBy(v UserModelSearchV1)

SetAddedBy gets a reference to the given UserModelSearchV1 and assigns it to the AddedBy field.

func (*AuthorsModelV1) SetAdmin ¶

func (o *AuthorsModelV1) SetAdmin(v AuthorsModelV1Admin)

SetAdmin gets a reference to the given AuthorsModelV1Admin and assigns it to the Admin field.

func (*AuthorsModelV1) SetAssociated ¶

func (o *AuthorsModelV1) SetAssociated(v []AuthorsModelV1Associated)

SetAssociated gets a reference to the given []AuthorsModelV1Associated and assigns it to the Associated field.

func (*AuthorsModelV1) SetBirthday ¶

func (o *AuthorsModelV1) SetBirthday(v BirthdayModelV1)

SetBirthday gets a reference to the given BirthdayModelV1 and assigns it to the Birthday field.

func (*AuthorsModelV1) SetBirthplace ¶

func (o *AuthorsModelV1) SetBirthplace(v string)

SetBirthplace gets a reference to the given string and assigns it to the Birthplace field.

func (*AuthorsModelV1) SetBloodtype ¶

func (o *AuthorsModelV1) SetBloodtype(v string)

SetBloodtype gets a reference to the given string and assigns it to the Bloodtype field.

func (*AuthorsModelV1) SetComments ¶

func (o *AuthorsModelV1) SetComments(v string)

SetComments gets a reference to the given string and assigns it to the Comments field.

func (*AuthorsModelV1) SetGender ¶

func (o *AuthorsModelV1) SetGender(v string)

SetGender gets a reference to the given string and assigns it to the Gender field.

func (*AuthorsModelV1) SetGenres ¶

func (o *AuthorsModelV1) SetGenres(v []string)

SetGenres gets a reference to the given []string and assigns it to the Genres field.

func (*AuthorsModelV1) SetId ¶

func (o *AuthorsModelV1) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*AuthorsModelV1) SetImage ¶

func (o *AuthorsModelV1) SetImage(v ImageModelV1)

SetImage gets a reference to the given ImageModelV1 and assigns it to the Image field.

func (*AuthorsModelV1) SetLastUpdated ¶

func (o *AuthorsModelV1) SetLastUpdated(v TimeV1)

SetLastUpdated gets a reference to the given TimeV1 and assigns it to the LastUpdated field.

func (*AuthorsModelV1) SetName ¶

func (o *AuthorsModelV1) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*AuthorsModelV1) SetSocial ¶

func (o *AuthorsModelV1) SetSocial(v AuthorsModelV1Social)

SetSocial gets a reference to the given AuthorsModelV1Social and assigns it to the Social field.

func (*AuthorsModelV1) SetStats ¶

func (o *AuthorsModelV1) SetStats(v AuthorsModelV1Stats)

SetStats gets a reference to the given AuthorsModelV1Stats and assigns it to the Stats field.

func (*AuthorsModelV1) SetUrl ¶

func (o *AuthorsModelV1) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (AuthorsModelV1) ToMap ¶

func (o AuthorsModelV1) ToMap() (map[string]interface{}, error)

type AuthorsModelV1Admin ¶

type AuthorsModelV1Admin struct {
	Approved *bool `json:"approved,omitempty"`
}

AuthorsModelV1Admin struct for AuthorsModelV1Admin

func NewAuthorsModelV1Admin ¶

func NewAuthorsModelV1Admin() *AuthorsModelV1Admin

NewAuthorsModelV1Admin instantiates a new AuthorsModelV1Admin object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthorsModelV1AdminWithDefaults ¶

func NewAuthorsModelV1AdminWithDefaults() *AuthorsModelV1Admin

NewAuthorsModelV1AdminWithDefaults instantiates a new AuthorsModelV1Admin object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthorsModelV1Admin) GetApproved ¶

func (o *AuthorsModelV1Admin) GetApproved() bool

GetApproved returns the Approved field value if set, zero value otherwise.

func (*AuthorsModelV1Admin) GetApprovedOk ¶

func (o *AuthorsModelV1Admin) GetApprovedOk() (*bool, bool)

GetApprovedOk returns a tuple with the Approved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelV1Admin) HasApproved ¶

func (o *AuthorsModelV1Admin) HasApproved() bool

HasApproved returns a boolean if a field has been set.

func (AuthorsModelV1Admin) MarshalJSON ¶

func (o AuthorsModelV1Admin) MarshalJSON() ([]byte, error)

func (*AuthorsModelV1Admin) SetApproved ¶

func (o *AuthorsModelV1Admin) SetApproved(v bool)

SetApproved gets a reference to the given bool and assigns it to the Approved field.

func (AuthorsModelV1Admin) ToMap ¶

func (o AuthorsModelV1Admin) ToMap() (map[string]interface{}, error)

type AuthorsModelV1Associated ¶

type AuthorsModelV1Associated struct {
	Name *string `json:"name,omitempty"`
}

AuthorsModelV1Associated struct for AuthorsModelV1Associated

func NewAuthorsModelV1Associated ¶

func NewAuthorsModelV1Associated() *AuthorsModelV1Associated

NewAuthorsModelV1Associated instantiates a new AuthorsModelV1Associated object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthorsModelV1AssociatedWithDefaults ¶

func NewAuthorsModelV1AssociatedWithDefaults() *AuthorsModelV1Associated

NewAuthorsModelV1AssociatedWithDefaults instantiates a new AuthorsModelV1Associated object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthorsModelV1Associated) GetName ¶

func (o *AuthorsModelV1Associated) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*AuthorsModelV1Associated) GetNameOk ¶

func (o *AuthorsModelV1Associated) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelV1Associated) HasName ¶

func (o *AuthorsModelV1Associated) HasName() bool

HasName returns a boolean if a field has been set.

func (AuthorsModelV1Associated) MarshalJSON ¶

func (o AuthorsModelV1Associated) MarshalJSON() ([]byte, error)

func (*AuthorsModelV1Associated) SetName ¶

func (o *AuthorsModelV1Associated) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (AuthorsModelV1Associated) ToMap ¶

func (o AuthorsModelV1Associated) ToMap() (map[string]interface{}, error)

type AuthorsModelV1Social ¶

type AuthorsModelV1Social struct {
	Officialsite *string `json:"officialsite,omitempty"`
	Facebook     *string `json:"facebook,omitempty"`
	Twitter      *string `json:"twitter,omitempty"`
}

AuthorsModelV1Social struct for AuthorsModelV1Social

func NewAuthorsModelV1Social ¶

func NewAuthorsModelV1Social() *AuthorsModelV1Social

NewAuthorsModelV1Social instantiates a new AuthorsModelV1Social object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthorsModelV1SocialWithDefaults ¶

func NewAuthorsModelV1SocialWithDefaults() *AuthorsModelV1Social

NewAuthorsModelV1SocialWithDefaults instantiates a new AuthorsModelV1Social object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthorsModelV1Social) GetFacebook ¶

func (o *AuthorsModelV1Social) GetFacebook() string

GetFacebook returns the Facebook field value if set, zero value otherwise.

func (*AuthorsModelV1Social) GetFacebookOk ¶

func (o *AuthorsModelV1Social) GetFacebookOk() (*string, bool)

GetFacebookOk returns a tuple with the Facebook field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelV1Social) GetOfficialsite ¶

func (o *AuthorsModelV1Social) GetOfficialsite() string

GetOfficialsite returns the Officialsite field value if set, zero value otherwise.

func (*AuthorsModelV1Social) GetOfficialsiteOk ¶

func (o *AuthorsModelV1Social) GetOfficialsiteOk() (*string, bool)

GetOfficialsiteOk returns a tuple with the Officialsite field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelV1Social) GetTwitter ¶

func (o *AuthorsModelV1Social) GetTwitter() string

GetTwitter returns the Twitter field value if set, zero value otherwise.

func (*AuthorsModelV1Social) GetTwitterOk ¶

func (o *AuthorsModelV1Social) GetTwitterOk() (*string, bool)

GetTwitterOk returns a tuple with the Twitter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelV1Social) HasFacebook ¶

func (o *AuthorsModelV1Social) HasFacebook() bool

HasFacebook returns a boolean if a field has been set.

func (*AuthorsModelV1Social) HasOfficialsite ¶

func (o *AuthorsModelV1Social) HasOfficialsite() bool

HasOfficialsite returns a boolean if a field has been set.

func (*AuthorsModelV1Social) HasTwitter ¶

func (o *AuthorsModelV1Social) HasTwitter() bool

HasTwitter returns a boolean if a field has been set.

func (AuthorsModelV1Social) MarshalJSON ¶

func (o AuthorsModelV1Social) MarshalJSON() ([]byte, error)

func (*AuthorsModelV1Social) SetFacebook ¶

func (o *AuthorsModelV1Social) SetFacebook(v string)

SetFacebook gets a reference to the given string and assigns it to the Facebook field.

func (*AuthorsModelV1Social) SetOfficialsite ¶

func (o *AuthorsModelV1Social) SetOfficialsite(v string)

SetOfficialsite gets a reference to the given string and assigns it to the Officialsite field.

func (*AuthorsModelV1Social) SetTwitter ¶

func (o *AuthorsModelV1Social) SetTwitter(v string)

SetTwitter gets a reference to the given string and assigns it to the Twitter field.

func (AuthorsModelV1Social) ToMap ¶

func (o AuthorsModelV1Social) ToMap() (map[string]interface{}, error)

type AuthorsModelV1Stats ¶

type AuthorsModelV1Stats struct {
	TotalSeries *int64 `json:"total_series,omitempty"`
}

AuthorsModelV1Stats struct for AuthorsModelV1Stats

func NewAuthorsModelV1Stats ¶

func NewAuthorsModelV1Stats() *AuthorsModelV1Stats

NewAuthorsModelV1Stats instantiates a new AuthorsModelV1Stats object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthorsModelV1StatsWithDefaults ¶

func NewAuthorsModelV1StatsWithDefaults() *AuthorsModelV1Stats

NewAuthorsModelV1StatsWithDefaults instantiates a new AuthorsModelV1Stats object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthorsModelV1Stats) GetTotalSeries ¶

func (o *AuthorsModelV1Stats) GetTotalSeries() int64

GetTotalSeries returns the TotalSeries field value if set, zero value otherwise.

func (*AuthorsModelV1Stats) GetTotalSeriesOk ¶

func (o *AuthorsModelV1Stats) GetTotalSeriesOk() (*int64, bool)

GetTotalSeriesOk returns a tuple with the TotalSeries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsModelV1Stats) HasTotalSeries ¶

func (o *AuthorsModelV1Stats) HasTotalSeries() bool

HasTotalSeries returns a boolean if a field has been set.

func (AuthorsModelV1Stats) MarshalJSON ¶

func (o AuthorsModelV1Stats) MarshalJSON() ([]byte, error)

func (*AuthorsModelV1Stats) SetTotalSeries ¶

func (o *AuthorsModelV1Stats) SetTotalSeries(v int64)

SetTotalSeries gets a reference to the given int64 and assigns it to the TotalSeries field.

func (AuthorsModelV1Stats) ToMap ¶

func (o AuthorsModelV1Stats) ToMap() (map[string]interface{}, error)

type AuthorsSearchRequestV1 ¶

type AuthorsSearchRequestV1 struct {
	Search  *string  `json:"search,omitempty"`
	AddedBy *int64   `json:"added_by,omitempty"`
	Page    *int64   `json:"page,omitempty"`
	Perpage *int64   `json:"perpage,omitempty"`
	Letter  *string  `json:"letter,omitempty"`
	Genre   []string `json:"genre,omitempty"`
	Orderby *string  `json:"orderby,omitempty"`
	Pending *bool    `json:"pending,omitempty"`
}

AuthorsSearchRequestV1 struct for AuthorsSearchRequestV1

func NewAuthorsSearchRequestV1 ¶

func NewAuthorsSearchRequestV1() *AuthorsSearchRequestV1

NewAuthorsSearchRequestV1 instantiates a new AuthorsSearchRequestV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthorsSearchRequestV1WithDefaults ¶

func NewAuthorsSearchRequestV1WithDefaults() *AuthorsSearchRequestV1

NewAuthorsSearchRequestV1WithDefaults instantiates a new AuthorsSearchRequestV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthorsSearchRequestV1) GetAddedBy ¶

func (o *AuthorsSearchRequestV1) GetAddedBy() int64

GetAddedBy returns the AddedBy field value if set, zero value otherwise.

func (*AuthorsSearchRequestV1) GetAddedByOk ¶

func (o *AuthorsSearchRequestV1) GetAddedByOk() (*int64, bool)

GetAddedByOk returns a tuple with the AddedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsSearchRequestV1) GetGenre ¶

func (o *AuthorsSearchRequestV1) GetGenre() []string

GetGenre returns the Genre field value if set, zero value otherwise.

func (*AuthorsSearchRequestV1) GetGenreOk ¶

func (o *AuthorsSearchRequestV1) GetGenreOk() ([]string, bool)

GetGenreOk returns a tuple with the Genre field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsSearchRequestV1) GetLetter ¶

func (o *AuthorsSearchRequestV1) GetLetter() string

GetLetter returns the Letter field value if set, zero value otherwise.

func (*AuthorsSearchRequestV1) GetLetterOk ¶

func (o *AuthorsSearchRequestV1) GetLetterOk() (*string, bool)

GetLetterOk returns a tuple with the Letter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsSearchRequestV1) GetOrderby ¶

func (o *AuthorsSearchRequestV1) GetOrderby() string

GetOrderby returns the Orderby field value if set, zero value otherwise.

func (*AuthorsSearchRequestV1) GetOrderbyOk ¶

func (o *AuthorsSearchRequestV1) GetOrderbyOk() (*string, bool)

GetOrderbyOk returns a tuple with the Orderby field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsSearchRequestV1) GetPage ¶

func (o *AuthorsSearchRequestV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*AuthorsSearchRequestV1) GetPageOk ¶

func (o *AuthorsSearchRequestV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsSearchRequestV1) GetPending ¶

func (o *AuthorsSearchRequestV1) GetPending() bool

GetPending returns the Pending field value if set, zero value otherwise.

func (*AuthorsSearchRequestV1) GetPendingOk ¶

func (o *AuthorsSearchRequestV1) GetPendingOk() (*bool, bool)

GetPendingOk returns a tuple with the Pending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsSearchRequestV1) GetPerpage ¶

func (o *AuthorsSearchRequestV1) GetPerpage() int64

GetPerpage returns the Perpage field value if set, zero value otherwise.

func (*AuthorsSearchRequestV1) GetPerpageOk ¶

func (o *AuthorsSearchRequestV1) GetPerpageOk() (*int64, bool)

GetPerpageOk returns a tuple with the Perpage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsSearchRequestV1) GetSearch ¶

func (o *AuthorsSearchRequestV1) GetSearch() string

GetSearch returns the Search field value if set, zero value otherwise.

func (*AuthorsSearchRequestV1) GetSearchOk ¶

func (o *AuthorsSearchRequestV1) GetSearchOk() (*string, bool)

GetSearchOk returns a tuple with the Search field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsSearchRequestV1) HasAddedBy ¶

func (o *AuthorsSearchRequestV1) HasAddedBy() bool

HasAddedBy returns a boolean if a field has been set.

func (*AuthorsSearchRequestV1) HasGenre ¶

func (o *AuthorsSearchRequestV1) HasGenre() bool

HasGenre returns a boolean if a field has been set.

func (*AuthorsSearchRequestV1) HasLetter ¶

func (o *AuthorsSearchRequestV1) HasLetter() bool

HasLetter returns a boolean if a field has been set.

func (*AuthorsSearchRequestV1) HasOrderby ¶

func (o *AuthorsSearchRequestV1) HasOrderby() bool

HasOrderby returns a boolean if a field has been set.

func (*AuthorsSearchRequestV1) HasPage ¶

func (o *AuthorsSearchRequestV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*AuthorsSearchRequestV1) HasPending ¶

func (o *AuthorsSearchRequestV1) HasPending() bool

HasPending returns a boolean if a field has been set.

func (*AuthorsSearchRequestV1) HasPerpage ¶

func (o *AuthorsSearchRequestV1) HasPerpage() bool

HasPerpage returns a boolean if a field has been set.

func (*AuthorsSearchRequestV1) HasSearch ¶

func (o *AuthorsSearchRequestV1) HasSearch() bool

HasSearch returns a boolean if a field has been set.

func (AuthorsSearchRequestV1) MarshalJSON ¶

func (o AuthorsSearchRequestV1) MarshalJSON() ([]byte, error)

func (*AuthorsSearchRequestV1) SetAddedBy ¶

func (o *AuthorsSearchRequestV1) SetAddedBy(v int64)

SetAddedBy gets a reference to the given int64 and assigns it to the AddedBy field.

func (*AuthorsSearchRequestV1) SetGenre ¶

func (o *AuthorsSearchRequestV1) SetGenre(v []string)

SetGenre gets a reference to the given []string and assigns it to the Genre field.

func (*AuthorsSearchRequestV1) SetLetter ¶

func (o *AuthorsSearchRequestV1) SetLetter(v string)

SetLetter gets a reference to the given string and assigns it to the Letter field.

func (*AuthorsSearchRequestV1) SetOrderby ¶

func (o *AuthorsSearchRequestV1) SetOrderby(v string)

SetOrderby gets a reference to the given string and assigns it to the Orderby field.

func (*AuthorsSearchRequestV1) SetPage ¶

func (o *AuthorsSearchRequestV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*AuthorsSearchRequestV1) SetPending ¶

func (o *AuthorsSearchRequestV1) SetPending(v bool)

SetPending gets a reference to the given bool and assigns it to the Pending field.

func (*AuthorsSearchRequestV1) SetPerpage ¶

func (o *AuthorsSearchRequestV1) SetPerpage(v int64)

SetPerpage gets a reference to the given int64 and assigns it to the Perpage field.

func (*AuthorsSearchRequestV1) SetSearch ¶

func (o *AuthorsSearchRequestV1) SetSearch(v string)

SetSearch gets a reference to the given string and assigns it to the Search field.

func (AuthorsSearchRequestV1) ToMap ¶

func (o AuthorsSearchRequestV1) ToMap() (map[string]interface{}, error)

type AuthorsSearchResponseV1 ¶

type AuthorsSearchResponseV1 struct {
	TotalHits *int64                           `json:"total_hits,omitempty"`
	Page      *int64                           `json:"page,omitempty"`
	PerPage   *int64                           `json:"per_page,omitempty"`
	Results   []AuthorsSearchResponseV1Results `json:"results,omitempty"`
}

AuthorsSearchResponseV1 struct for AuthorsSearchResponseV1

func NewAuthorsSearchResponseV1 ¶

func NewAuthorsSearchResponseV1() *AuthorsSearchResponseV1

NewAuthorsSearchResponseV1 instantiates a new AuthorsSearchResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthorsSearchResponseV1WithDefaults ¶

func NewAuthorsSearchResponseV1WithDefaults() *AuthorsSearchResponseV1

NewAuthorsSearchResponseV1WithDefaults instantiates a new AuthorsSearchResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthorsSearchResponseV1) GetPage ¶

func (o *AuthorsSearchResponseV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*AuthorsSearchResponseV1) GetPageOk ¶

func (o *AuthorsSearchResponseV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsSearchResponseV1) GetPerPage ¶

func (o *AuthorsSearchResponseV1) GetPerPage() int64

GetPerPage returns the PerPage field value if set, zero value otherwise.

func (*AuthorsSearchResponseV1) GetPerPageOk ¶

func (o *AuthorsSearchResponseV1) GetPerPageOk() (*int64, bool)

GetPerPageOk returns a tuple with the PerPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsSearchResponseV1) GetResults ¶

GetResults returns the Results field value if set, zero value otherwise.

func (*AuthorsSearchResponseV1) GetResultsOk ¶

GetResultsOk returns a tuple with the Results field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsSearchResponseV1) GetTotalHits ¶

func (o *AuthorsSearchResponseV1) GetTotalHits() int64

GetTotalHits returns the TotalHits field value if set, zero value otherwise.

func (*AuthorsSearchResponseV1) GetTotalHitsOk ¶

func (o *AuthorsSearchResponseV1) GetTotalHitsOk() (*int64, bool)

GetTotalHitsOk returns a tuple with the TotalHits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsSearchResponseV1) HasPage ¶

func (o *AuthorsSearchResponseV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*AuthorsSearchResponseV1) HasPerPage ¶

func (o *AuthorsSearchResponseV1) HasPerPage() bool

HasPerPage returns a boolean if a field has been set.

func (*AuthorsSearchResponseV1) HasResults ¶

func (o *AuthorsSearchResponseV1) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*AuthorsSearchResponseV1) HasTotalHits ¶

func (o *AuthorsSearchResponseV1) HasTotalHits() bool

HasTotalHits returns a boolean if a field has been set.

func (AuthorsSearchResponseV1) MarshalJSON ¶

func (o AuthorsSearchResponseV1) MarshalJSON() ([]byte, error)

func (*AuthorsSearchResponseV1) SetPage ¶

func (o *AuthorsSearchResponseV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*AuthorsSearchResponseV1) SetPerPage ¶

func (o *AuthorsSearchResponseV1) SetPerPage(v int64)

SetPerPage gets a reference to the given int64 and assigns it to the PerPage field.

func (*AuthorsSearchResponseV1) SetResults ¶

SetResults gets a reference to the given []AuthorsSearchResponseV1Results and assigns it to the Results field.

func (*AuthorsSearchResponseV1) SetTotalHits ¶

func (o *AuthorsSearchResponseV1) SetTotalHits(v int64)

SetTotalHits gets a reference to the given int64 and assigns it to the TotalHits field.

func (AuthorsSearchResponseV1) ToMap ¶

func (o AuthorsSearchResponseV1) ToMap() (map[string]interface{}, error)

type AuthorsSearchResponseV1Results ¶

type AuthorsSearchResponseV1Results struct {
	Record   *AuthorsModelSearchV1 `json:"record,omitempty"`
	HitName  *string               `json:"hit_name,omitempty"`
	HitGenre []string              `json:"hit_genre,omitempty"`
}

AuthorsSearchResponseV1Results struct for AuthorsSearchResponseV1Results

func NewAuthorsSearchResponseV1Results ¶

func NewAuthorsSearchResponseV1Results() *AuthorsSearchResponseV1Results

NewAuthorsSearchResponseV1Results instantiates a new AuthorsSearchResponseV1Results object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthorsSearchResponseV1ResultsWithDefaults ¶

func NewAuthorsSearchResponseV1ResultsWithDefaults() *AuthorsSearchResponseV1Results

NewAuthorsSearchResponseV1ResultsWithDefaults instantiates a new AuthorsSearchResponseV1Results object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthorsSearchResponseV1Results) GetHitGenre ¶

func (o *AuthorsSearchResponseV1Results) GetHitGenre() []string

GetHitGenre returns the HitGenre field value if set, zero value otherwise.

func (*AuthorsSearchResponseV1Results) GetHitGenreOk ¶

func (o *AuthorsSearchResponseV1Results) GetHitGenreOk() ([]string, bool)

GetHitGenreOk returns a tuple with the HitGenre field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsSearchResponseV1Results) GetHitName ¶

func (o *AuthorsSearchResponseV1Results) GetHitName() string

GetHitName returns the HitName field value if set, zero value otherwise.

func (*AuthorsSearchResponseV1Results) GetHitNameOk ¶

func (o *AuthorsSearchResponseV1Results) GetHitNameOk() (*string, bool)

GetHitNameOk returns a tuple with the HitName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsSearchResponseV1Results) GetRecord ¶

GetRecord returns the Record field value if set, zero value otherwise.

func (*AuthorsSearchResponseV1Results) GetRecordOk ¶

GetRecordOk returns a tuple with the Record field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsSearchResponseV1Results) HasHitGenre ¶

func (o *AuthorsSearchResponseV1Results) HasHitGenre() bool

HasHitGenre returns a boolean if a field has been set.

func (*AuthorsSearchResponseV1Results) HasHitName ¶

func (o *AuthorsSearchResponseV1Results) HasHitName() bool

HasHitName returns a boolean if a field has been set.

func (*AuthorsSearchResponseV1Results) HasRecord ¶

func (o *AuthorsSearchResponseV1Results) HasRecord() bool

HasRecord returns a boolean if a field has been set.

func (AuthorsSearchResponseV1Results) MarshalJSON ¶

func (o AuthorsSearchResponseV1Results) MarshalJSON() ([]byte, error)

func (*AuthorsSearchResponseV1Results) SetHitGenre ¶

func (o *AuthorsSearchResponseV1Results) SetHitGenre(v []string)

SetHitGenre gets a reference to the given []string and assigns it to the HitGenre field.

func (*AuthorsSearchResponseV1Results) SetHitName ¶

func (o *AuthorsSearchResponseV1Results) SetHitName(v string)

SetHitName gets a reference to the given string and assigns it to the HitName field.

func (*AuthorsSearchResponseV1Results) SetRecord ¶

SetRecord gets a reference to the given AuthorsModelSearchV1 and assigns it to the Record field.

func (AuthorsSearchResponseV1Results) ToMap ¶

func (o AuthorsSearchResponseV1Results) ToMap() (map[string]interface{}, error)

type AuthorsSeriesListRequestV1 ¶

type AuthorsSeriesListRequestV1 struct {
	Orderby *string `json:"orderby,omitempty"`
}

AuthorsSeriesListRequestV1 struct for AuthorsSeriesListRequestV1

func NewAuthorsSeriesListRequestV1 ¶

func NewAuthorsSeriesListRequestV1() *AuthorsSeriesListRequestV1

NewAuthorsSeriesListRequestV1 instantiates a new AuthorsSeriesListRequestV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthorsSeriesListRequestV1WithDefaults ¶

func NewAuthorsSeriesListRequestV1WithDefaults() *AuthorsSeriesListRequestV1

NewAuthorsSeriesListRequestV1WithDefaults instantiates a new AuthorsSeriesListRequestV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthorsSeriesListRequestV1) GetOrderby ¶

func (o *AuthorsSeriesListRequestV1) GetOrderby() string

GetOrderby returns the Orderby field value if set, zero value otherwise.

func (*AuthorsSeriesListRequestV1) GetOrderbyOk ¶

func (o *AuthorsSeriesListRequestV1) GetOrderbyOk() (*string, bool)

GetOrderbyOk returns a tuple with the Orderby field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsSeriesListRequestV1) HasOrderby ¶

func (o *AuthorsSeriesListRequestV1) HasOrderby() bool

HasOrderby returns a boolean if a field has been set.

func (AuthorsSeriesListRequestV1) MarshalJSON ¶

func (o AuthorsSeriesListRequestV1) MarshalJSON() ([]byte, error)

func (*AuthorsSeriesListRequestV1) SetOrderby ¶

func (o *AuthorsSeriesListRequestV1) SetOrderby(v string)

SetOrderby gets a reference to the given string and assigns it to the Orderby field.

func (AuthorsSeriesListRequestV1) ToMap ¶

func (o AuthorsSeriesListRequestV1) ToMap() (map[string]interface{}, error)

type AuthorsSeriesListResponseV1 ¶

type AuthorsSeriesListResponseV1 struct {
	TotalSeries *int64                                  `json:"total_series,omitempty"`
	SeriesList  []AuthorsSeriesListResponseV1SeriesList `json:"series_list,omitempty"`
	GenreList   []AuthorsSeriesListResponseV1GenreList  `json:"genre_list,omitempty"`
}

AuthorsSeriesListResponseV1 struct for AuthorsSeriesListResponseV1

func NewAuthorsSeriesListResponseV1 ¶

func NewAuthorsSeriesListResponseV1() *AuthorsSeriesListResponseV1

NewAuthorsSeriesListResponseV1 instantiates a new AuthorsSeriesListResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthorsSeriesListResponseV1WithDefaults ¶

func NewAuthorsSeriesListResponseV1WithDefaults() *AuthorsSeriesListResponseV1

NewAuthorsSeriesListResponseV1WithDefaults instantiates a new AuthorsSeriesListResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthorsSeriesListResponseV1) GetGenreList ¶

GetGenreList returns the GenreList field value if set, zero value otherwise.

func (*AuthorsSeriesListResponseV1) GetGenreListOk ¶

GetGenreListOk returns a tuple with the GenreList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsSeriesListResponseV1) GetSeriesList ¶

GetSeriesList returns the SeriesList field value if set, zero value otherwise.

func (*AuthorsSeriesListResponseV1) GetSeriesListOk ¶

GetSeriesListOk returns a tuple with the SeriesList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsSeriesListResponseV1) GetTotalSeries ¶

func (o *AuthorsSeriesListResponseV1) GetTotalSeries() int64

GetTotalSeries returns the TotalSeries field value if set, zero value otherwise.

func (*AuthorsSeriesListResponseV1) GetTotalSeriesOk ¶

func (o *AuthorsSeriesListResponseV1) GetTotalSeriesOk() (*int64, bool)

GetTotalSeriesOk returns a tuple with the TotalSeries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsSeriesListResponseV1) HasGenreList ¶

func (o *AuthorsSeriesListResponseV1) HasGenreList() bool

HasGenreList returns a boolean if a field has been set.

func (*AuthorsSeriesListResponseV1) HasSeriesList ¶

func (o *AuthorsSeriesListResponseV1) HasSeriesList() bool

HasSeriesList returns a boolean if a field has been set.

func (*AuthorsSeriesListResponseV1) HasTotalSeries ¶

func (o *AuthorsSeriesListResponseV1) HasTotalSeries() bool

HasTotalSeries returns a boolean if a field has been set.

func (AuthorsSeriesListResponseV1) MarshalJSON ¶

func (o AuthorsSeriesListResponseV1) MarshalJSON() ([]byte, error)

func (*AuthorsSeriesListResponseV1) SetGenreList ¶

SetGenreList gets a reference to the given []AuthorsSeriesListResponseV1GenreList and assigns it to the GenreList field.

func (*AuthorsSeriesListResponseV1) SetSeriesList ¶

SetSeriesList gets a reference to the given []AuthorsSeriesListResponseV1SeriesList and assigns it to the SeriesList field.

func (*AuthorsSeriesListResponseV1) SetTotalSeries ¶

func (o *AuthorsSeriesListResponseV1) SetTotalSeries(v int64)

SetTotalSeries gets a reference to the given int64 and assigns it to the TotalSeries field.

func (AuthorsSeriesListResponseV1) ToMap ¶

func (o AuthorsSeriesListResponseV1) ToMap() (map[string]interface{}, error)

type AuthorsSeriesListResponseV1GenreList ¶

type AuthorsSeriesListResponseV1GenreList struct {
	Genre *string `json:"genre,omitempty"`
	Count *int64  `json:"count,omitempty"`
}

AuthorsSeriesListResponseV1GenreList struct for AuthorsSeriesListResponseV1GenreList

func NewAuthorsSeriesListResponseV1GenreList ¶

func NewAuthorsSeriesListResponseV1GenreList() *AuthorsSeriesListResponseV1GenreList

NewAuthorsSeriesListResponseV1GenreList instantiates a new AuthorsSeriesListResponseV1GenreList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthorsSeriesListResponseV1GenreListWithDefaults ¶

func NewAuthorsSeriesListResponseV1GenreListWithDefaults() *AuthorsSeriesListResponseV1GenreList

NewAuthorsSeriesListResponseV1GenreListWithDefaults instantiates a new AuthorsSeriesListResponseV1GenreList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthorsSeriesListResponseV1GenreList) GetCount ¶

GetCount returns the Count field value if set, zero value otherwise.

func (*AuthorsSeriesListResponseV1GenreList) GetCountOk ¶

func (o *AuthorsSeriesListResponseV1GenreList) GetCountOk() (*int64, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsSeriesListResponseV1GenreList) GetGenre ¶

GetGenre returns the Genre field value if set, zero value otherwise.

func (*AuthorsSeriesListResponseV1GenreList) GetGenreOk ¶

func (o *AuthorsSeriesListResponseV1GenreList) GetGenreOk() (*string, bool)

GetGenreOk returns a tuple with the Genre field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsSeriesListResponseV1GenreList) HasCount ¶

HasCount returns a boolean if a field has been set.

func (*AuthorsSeriesListResponseV1GenreList) HasGenre ¶

HasGenre returns a boolean if a field has been set.

func (AuthorsSeriesListResponseV1GenreList) MarshalJSON ¶

func (o AuthorsSeriesListResponseV1GenreList) MarshalJSON() ([]byte, error)

func (*AuthorsSeriesListResponseV1GenreList) SetCount ¶

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*AuthorsSeriesListResponseV1GenreList) SetGenre ¶

SetGenre gets a reference to the given string and assigns it to the Genre field.

func (AuthorsSeriesListResponseV1GenreList) ToMap ¶

func (o AuthorsSeriesListResponseV1GenreList) ToMap() (map[string]interface{}, error)

type AuthorsSeriesListResponseV1SeriesList ¶

type AuthorsSeriesListResponseV1SeriesList struct {
	Title       *string                                        `json:"title,omitempty"`
	SeriesId    *int64                                         `json:"series_id,omitempty"`
	Year        *string                                        `json:"year,omitempty"`
	LastUpdated *TimeV1                                        `json:"last_updated,omitempty"`
	Genres      []string                                       `json:"genres,omitempty"`
	Metadata    *AuthorsSeriesListResponseV1SeriesListMetadata `json:"metadata,omitempty"`
}

AuthorsSeriesListResponseV1SeriesList struct for AuthorsSeriesListResponseV1SeriesList

func NewAuthorsSeriesListResponseV1SeriesList ¶

func NewAuthorsSeriesListResponseV1SeriesList() *AuthorsSeriesListResponseV1SeriesList

NewAuthorsSeriesListResponseV1SeriesList instantiates a new AuthorsSeriesListResponseV1SeriesList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthorsSeriesListResponseV1SeriesListWithDefaults ¶

func NewAuthorsSeriesListResponseV1SeriesListWithDefaults() *AuthorsSeriesListResponseV1SeriesList

NewAuthorsSeriesListResponseV1SeriesListWithDefaults instantiates a new AuthorsSeriesListResponseV1SeriesList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthorsSeriesListResponseV1SeriesList) GetGenres ¶

GetGenres returns the Genres field value if set, zero value otherwise.

func (*AuthorsSeriesListResponseV1SeriesList) GetGenresOk ¶

func (o *AuthorsSeriesListResponseV1SeriesList) GetGenresOk() ([]string, bool)

GetGenresOk returns a tuple with the Genres field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsSeriesListResponseV1SeriesList) GetLastUpdated ¶

func (o *AuthorsSeriesListResponseV1SeriesList) GetLastUpdated() TimeV1

GetLastUpdated returns the LastUpdated field value if set, zero value otherwise.

func (*AuthorsSeriesListResponseV1SeriesList) GetLastUpdatedOk ¶

func (o *AuthorsSeriesListResponseV1SeriesList) GetLastUpdatedOk() (*TimeV1, bool)

GetLastUpdatedOk returns a tuple with the LastUpdated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsSeriesListResponseV1SeriesList) GetMetadata ¶

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*AuthorsSeriesListResponseV1SeriesList) GetMetadataOk ¶

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsSeriesListResponseV1SeriesList) GetSeriesId ¶

GetSeriesId returns the SeriesId field value if set, zero value otherwise.

func (*AuthorsSeriesListResponseV1SeriesList) GetSeriesIdOk ¶

func (o *AuthorsSeriesListResponseV1SeriesList) GetSeriesIdOk() (*int64, bool)

GetSeriesIdOk returns a tuple with the SeriesId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsSeriesListResponseV1SeriesList) GetTitle ¶

GetTitle returns the Title field value if set, zero value otherwise.

func (*AuthorsSeriesListResponseV1SeriesList) GetTitleOk ¶

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsSeriesListResponseV1SeriesList) GetYear ¶

GetYear returns the Year field value if set, zero value otherwise.

func (*AuthorsSeriesListResponseV1SeriesList) GetYearOk ¶

GetYearOk returns a tuple with the Year field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsSeriesListResponseV1SeriesList) HasGenres ¶

HasGenres returns a boolean if a field has been set.

func (*AuthorsSeriesListResponseV1SeriesList) HasLastUpdated ¶

func (o *AuthorsSeriesListResponseV1SeriesList) HasLastUpdated() bool

HasLastUpdated returns a boolean if a field has been set.

func (*AuthorsSeriesListResponseV1SeriesList) HasMetadata ¶

HasMetadata returns a boolean if a field has been set.

func (*AuthorsSeriesListResponseV1SeriesList) HasSeriesId ¶

HasSeriesId returns a boolean if a field has been set.

func (*AuthorsSeriesListResponseV1SeriesList) HasTitle ¶

HasTitle returns a boolean if a field has been set.

func (*AuthorsSeriesListResponseV1SeriesList) HasYear ¶

HasYear returns a boolean if a field has been set.

func (AuthorsSeriesListResponseV1SeriesList) MarshalJSON ¶

func (o AuthorsSeriesListResponseV1SeriesList) MarshalJSON() ([]byte, error)

func (*AuthorsSeriesListResponseV1SeriesList) SetGenres ¶

SetGenres gets a reference to the given []string and assigns it to the Genres field.

func (*AuthorsSeriesListResponseV1SeriesList) SetLastUpdated ¶

func (o *AuthorsSeriesListResponseV1SeriesList) SetLastUpdated(v TimeV1)

SetLastUpdated gets a reference to the given TimeV1 and assigns it to the LastUpdated field.

func (*AuthorsSeriesListResponseV1SeriesList) SetMetadata ¶

SetMetadata gets a reference to the given AuthorsSeriesListResponseV1SeriesListMetadata and assigns it to the Metadata field.

func (*AuthorsSeriesListResponseV1SeriesList) SetSeriesId ¶

func (o *AuthorsSeriesListResponseV1SeriesList) SetSeriesId(v int64)

SetSeriesId gets a reference to the given int64 and assigns it to the SeriesId field.

func (*AuthorsSeriesListResponseV1SeriesList) SetTitle ¶

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*AuthorsSeriesListResponseV1SeriesList) SetYear ¶

SetYear gets a reference to the given string and assigns it to the Year field.

func (AuthorsSeriesListResponseV1SeriesList) ToMap ¶

func (o AuthorsSeriesListResponseV1SeriesList) ToMap() (map[string]interface{}, error)

type AuthorsSeriesListResponseV1SeriesListMetadata ¶

type AuthorsSeriesListResponseV1SeriesListMetadata struct {
	UserList *ListsSeriesModelV1 `json:"user_list,omitempty"`
}

AuthorsSeriesListResponseV1SeriesListMetadata struct for AuthorsSeriesListResponseV1SeriesListMetadata

func NewAuthorsSeriesListResponseV1SeriesListMetadata ¶

func NewAuthorsSeriesListResponseV1SeriesListMetadata() *AuthorsSeriesListResponseV1SeriesListMetadata

NewAuthorsSeriesListResponseV1SeriesListMetadata instantiates a new AuthorsSeriesListResponseV1SeriesListMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthorsSeriesListResponseV1SeriesListMetadataWithDefaults ¶

func NewAuthorsSeriesListResponseV1SeriesListMetadataWithDefaults() *AuthorsSeriesListResponseV1SeriesListMetadata

NewAuthorsSeriesListResponseV1SeriesListMetadataWithDefaults instantiates a new AuthorsSeriesListResponseV1SeriesListMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthorsSeriesListResponseV1SeriesListMetadata) GetUserList ¶

GetUserList returns the UserList field value if set, zero value otherwise.

func (*AuthorsSeriesListResponseV1SeriesListMetadata) GetUserListOk ¶

GetUserListOk returns a tuple with the UserList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorsSeriesListResponseV1SeriesListMetadata) HasUserList ¶

HasUserList returns a boolean if a field has been set.

func (AuthorsSeriesListResponseV1SeriesListMetadata) MarshalJSON ¶

func (*AuthorsSeriesListResponseV1SeriesListMetadata) SetUserList ¶

SetUserList gets a reference to the given ListsSeriesModelV1 and assigns it to the UserList field.

func (AuthorsSeriesListResponseV1SeriesListMetadata) ToMap ¶

func (o AuthorsSeriesListResponseV1SeriesListMetadata) ToMap() (map[string]interface{}, error)

type AvatarModelSearchV1 ¶

type AvatarModelSearchV1 struct {
	Id     *int64  `json:"id,omitempty"`
	Url    *string `json:"url,omitempty"`
	Height *int64  `json:"height,omitempty"`
	Width  *int64  `json:"width,omitempty"`
}

AvatarModelSearchV1 struct for AvatarModelSearchV1

func NewAvatarModelSearchV1 ¶

func NewAvatarModelSearchV1() *AvatarModelSearchV1

NewAvatarModelSearchV1 instantiates a new AvatarModelSearchV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAvatarModelSearchV1WithDefaults ¶

func NewAvatarModelSearchV1WithDefaults() *AvatarModelSearchV1

NewAvatarModelSearchV1WithDefaults instantiates a new AvatarModelSearchV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AvatarModelSearchV1) GetHeight ¶

func (o *AvatarModelSearchV1) GetHeight() int64

GetHeight returns the Height field value if set, zero value otherwise.

func (*AvatarModelSearchV1) GetHeightOk ¶

func (o *AvatarModelSearchV1) GetHeightOk() (*int64, bool)

GetHeightOk returns a tuple with the Height field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AvatarModelSearchV1) GetId ¶

func (o *AvatarModelSearchV1) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*AvatarModelSearchV1) GetIdOk ¶

func (o *AvatarModelSearchV1) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AvatarModelSearchV1) GetUrl ¶

func (o *AvatarModelSearchV1) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*AvatarModelSearchV1) GetUrlOk ¶

func (o *AvatarModelSearchV1) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AvatarModelSearchV1) GetWidth ¶

func (o *AvatarModelSearchV1) GetWidth() int64

GetWidth returns the Width field value if set, zero value otherwise.

func (*AvatarModelSearchV1) GetWidthOk ¶

func (o *AvatarModelSearchV1) GetWidthOk() (*int64, bool)

GetWidthOk returns a tuple with the Width field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AvatarModelSearchV1) HasHeight ¶

func (o *AvatarModelSearchV1) HasHeight() bool

HasHeight returns a boolean if a field has been set.

func (*AvatarModelSearchV1) HasId ¶

func (o *AvatarModelSearchV1) HasId() bool

HasId returns a boolean if a field has been set.

func (*AvatarModelSearchV1) HasUrl ¶

func (o *AvatarModelSearchV1) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (*AvatarModelSearchV1) HasWidth ¶

func (o *AvatarModelSearchV1) HasWidth() bool

HasWidth returns a boolean if a field has been set.

func (AvatarModelSearchV1) MarshalJSON ¶

func (o AvatarModelSearchV1) MarshalJSON() ([]byte, error)

func (*AvatarModelSearchV1) SetHeight ¶

func (o *AvatarModelSearchV1) SetHeight(v int64)

SetHeight gets a reference to the given int64 and assigns it to the Height field.

func (*AvatarModelSearchV1) SetId ¶

func (o *AvatarModelSearchV1) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*AvatarModelSearchV1) SetUrl ¶

func (o *AvatarModelSearchV1) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (*AvatarModelSearchV1) SetWidth ¶

func (o *AvatarModelSearchV1) SetWidth(v int64)

SetWidth gets a reference to the given int64 and assigns it to the Width field.

func (AvatarModelSearchV1) ToMap ¶

func (o AvatarModelSearchV1) ToMap() (map[string]interface{}, error)

type AvatarModelUpdateV1 ¶

type AvatarModelUpdateV1 struct {
	Title *string `json:"title,omitempty"`
}

AvatarModelUpdateV1 struct for AvatarModelUpdateV1

func NewAvatarModelUpdateV1 ¶

func NewAvatarModelUpdateV1() *AvatarModelUpdateV1

NewAvatarModelUpdateV1 instantiates a new AvatarModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAvatarModelUpdateV1WithDefaults ¶

func NewAvatarModelUpdateV1WithDefaults() *AvatarModelUpdateV1

NewAvatarModelUpdateV1WithDefaults instantiates a new AvatarModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AvatarModelUpdateV1) GetTitle ¶

func (o *AvatarModelUpdateV1) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*AvatarModelUpdateV1) GetTitleOk ¶

func (o *AvatarModelUpdateV1) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AvatarModelUpdateV1) HasTitle ¶

func (o *AvatarModelUpdateV1) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (AvatarModelUpdateV1) MarshalJSON ¶

func (o AvatarModelUpdateV1) MarshalJSON() ([]byte, error)

func (*AvatarModelUpdateV1) SetTitle ¶

func (o *AvatarModelUpdateV1) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (AvatarModelUpdateV1) ToMap ¶

func (o AvatarModelUpdateV1) ToMap() (map[string]interface{}, error)

type AvatarModelV1 ¶

type AvatarModelV1 struct {
	Id        *int64  `json:"id,omitempty"`
	Url       *string `json:"url,omitempty"`
	Title     *string `json:"title,omitempty"`
	Extension *string `json:"extension,omitempty"`
	Height    *int64  `json:"height,omitempty"`
	Width     *int64  `json:"width,omitempty"`
}

AvatarModelV1 struct for AvatarModelV1

func NewAvatarModelV1 ¶

func NewAvatarModelV1() *AvatarModelV1

NewAvatarModelV1 instantiates a new AvatarModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAvatarModelV1WithDefaults ¶

func NewAvatarModelV1WithDefaults() *AvatarModelV1

NewAvatarModelV1WithDefaults instantiates a new AvatarModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AvatarModelV1) GetExtension ¶

func (o *AvatarModelV1) GetExtension() string

GetExtension returns the Extension field value if set, zero value otherwise.

func (*AvatarModelV1) GetExtensionOk ¶

func (o *AvatarModelV1) GetExtensionOk() (*string, bool)

GetExtensionOk returns a tuple with the Extension field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AvatarModelV1) GetHeight ¶

func (o *AvatarModelV1) GetHeight() int64

GetHeight returns the Height field value if set, zero value otherwise.

func (*AvatarModelV1) GetHeightOk ¶

func (o *AvatarModelV1) GetHeightOk() (*int64, bool)

GetHeightOk returns a tuple with the Height field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AvatarModelV1) GetId ¶

func (o *AvatarModelV1) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*AvatarModelV1) GetIdOk ¶

func (o *AvatarModelV1) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AvatarModelV1) GetTitle ¶

func (o *AvatarModelV1) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*AvatarModelV1) GetTitleOk ¶

func (o *AvatarModelV1) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AvatarModelV1) GetUrl ¶

func (o *AvatarModelV1) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*AvatarModelV1) GetUrlOk ¶

func (o *AvatarModelV1) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AvatarModelV1) GetWidth ¶

func (o *AvatarModelV1) GetWidth() int64

GetWidth returns the Width field value if set, zero value otherwise.

func (*AvatarModelV1) GetWidthOk ¶

func (o *AvatarModelV1) GetWidthOk() (*int64, bool)

GetWidthOk returns a tuple with the Width field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AvatarModelV1) HasExtension ¶

func (o *AvatarModelV1) HasExtension() bool

HasExtension returns a boolean if a field has been set.

func (*AvatarModelV1) HasHeight ¶

func (o *AvatarModelV1) HasHeight() bool

HasHeight returns a boolean if a field has been set.

func (*AvatarModelV1) HasId ¶

func (o *AvatarModelV1) HasId() bool

HasId returns a boolean if a field has been set.

func (*AvatarModelV1) HasTitle ¶

func (o *AvatarModelV1) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*AvatarModelV1) HasUrl ¶

func (o *AvatarModelV1) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (*AvatarModelV1) HasWidth ¶

func (o *AvatarModelV1) HasWidth() bool

HasWidth returns a boolean if a field has been set.

func (AvatarModelV1) MarshalJSON ¶

func (o AvatarModelV1) MarshalJSON() ([]byte, error)

func (*AvatarModelV1) SetExtension ¶

func (o *AvatarModelV1) SetExtension(v string)

SetExtension gets a reference to the given string and assigns it to the Extension field.

func (*AvatarModelV1) SetHeight ¶

func (o *AvatarModelV1) SetHeight(v int64)

SetHeight gets a reference to the given int64 and assigns it to the Height field.

func (*AvatarModelV1) SetId ¶

func (o *AvatarModelV1) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*AvatarModelV1) SetTitle ¶

func (o *AvatarModelV1) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*AvatarModelV1) SetUrl ¶

func (o *AvatarModelV1) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (*AvatarModelV1) SetWidth ¶

func (o *AvatarModelV1) SetWidth(v int64)

SetWidth gets a reference to the given int64 and assigns it to the Width field.

func (AvatarModelV1) ToMap ¶

func (o AvatarModelV1) ToMap() (map[string]interface{}, error)

type BasicAuth ¶

type BasicAuth struct {
	UserName string `json:"userName,omitempty"`
	Password string `json:"password,omitempty"`
}

BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth

type BirthdayModelV1 ¶

type BirthdayModelV1 struct {
	Month    *int64  `json:"month,omitempty"`
	Day      *int64  `json:"day,omitempty"`
	Year     *int64  `json:"year,omitempty"`
	AsString *string `json:"as_string,omitempty"`
	Zodiac   *string `json:"zodiac,omitempty"`
}

BirthdayModelV1 struct for BirthdayModelV1

func NewBirthdayModelV1 ¶

func NewBirthdayModelV1() *BirthdayModelV1

NewBirthdayModelV1 instantiates a new BirthdayModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewBirthdayModelV1WithDefaults ¶

func NewBirthdayModelV1WithDefaults() *BirthdayModelV1

NewBirthdayModelV1WithDefaults instantiates a new BirthdayModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*BirthdayModelV1) GetAsString ¶

func (o *BirthdayModelV1) GetAsString() string

GetAsString returns the AsString field value if set, zero value otherwise.

func (*BirthdayModelV1) GetAsStringOk ¶

func (o *BirthdayModelV1) GetAsStringOk() (*string, bool)

GetAsStringOk returns a tuple with the AsString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BirthdayModelV1) GetDay ¶

func (o *BirthdayModelV1) GetDay() int64

GetDay returns the Day field value if set, zero value otherwise.

func (*BirthdayModelV1) GetDayOk ¶

func (o *BirthdayModelV1) GetDayOk() (*int64, bool)

GetDayOk returns a tuple with the Day field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BirthdayModelV1) GetMonth ¶

func (o *BirthdayModelV1) GetMonth() int64

GetMonth returns the Month field value if set, zero value otherwise.

func (*BirthdayModelV1) GetMonthOk ¶

func (o *BirthdayModelV1) GetMonthOk() (*int64, bool)

GetMonthOk returns a tuple with the Month field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BirthdayModelV1) GetYear ¶

func (o *BirthdayModelV1) GetYear() int64

GetYear returns the Year field value if set, zero value otherwise.

func (*BirthdayModelV1) GetYearOk ¶

func (o *BirthdayModelV1) GetYearOk() (*int64, bool)

GetYearOk returns a tuple with the Year field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BirthdayModelV1) GetZodiac ¶

func (o *BirthdayModelV1) GetZodiac() string

GetZodiac returns the Zodiac field value if set, zero value otherwise.

func (*BirthdayModelV1) GetZodiacOk ¶

func (o *BirthdayModelV1) GetZodiacOk() (*string, bool)

GetZodiacOk returns a tuple with the Zodiac field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BirthdayModelV1) HasAsString ¶

func (o *BirthdayModelV1) HasAsString() bool

HasAsString returns a boolean if a field has been set.

func (*BirthdayModelV1) HasDay ¶

func (o *BirthdayModelV1) HasDay() bool

HasDay returns a boolean if a field has been set.

func (*BirthdayModelV1) HasMonth ¶

func (o *BirthdayModelV1) HasMonth() bool

HasMonth returns a boolean if a field has been set.

func (*BirthdayModelV1) HasYear ¶

func (o *BirthdayModelV1) HasYear() bool

HasYear returns a boolean if a field has been set.

func (*BirthdayModelV1) HasZodiac ¶

func (o *BirthdayModelV1) HasZodiac() bool

HasZodiac returns a boolean if a field has been set.

func (BirthdayModelV1) MarshalJSON ¶

func (o BirthdayModelV1) MarshalJSON() ([]byte, error)

func (*BirthdayModelV1) SetAsString ¶

func (o *BirthdayModelV1) SetAsString(v string)

SetAsString gets a reference to the given string and assigns it to the AsString field.

func (*BirthdayModelV1) SetDay ¶

func (o *BirthdayModelV1) SetDay(v int64)

SetDay gets a reference to the given int64 and assigns it to the Day field.

func (*BirthdayModelV1) SetMonth ¶

func (o *BirthdayModelV1) SetMonth(v int64)

SetMonth gets a reference to the given int64 and assigns it to the Month field.

func (*BirthdayModelV1) SetYear ¶

func (o *BirthdayModelV1) SetYear(v int64)

SetYear gets a reference to the given int64 and assigns it to the Year field.

func (*BirthdayModelV1) SetZodiac ¶

func (o *BirthdayModelV1) SetZodiac(v string)

SetZodiac gets a reference to the given string and assigns it to the Zodiac field.

func (BirthdayModelV1) ToMap ¶

func (o BirthdayModelV1) ToMap() (map[string]interface{}, error)

type CategoriesAPIService ¶

type CategoriesAPIService service

CategoriesAPIService CategoriesAPI service

func (*CategoriesAPIService) BulkCombineSeriesCategories ¶

func (a *CategoriesAPIService) BulkCombineSeriesCategories(ctx context.Context) ApiBulkCombineSeriesCategoriesRequest

BulkCombineSeriesCategories combine two categories across the database

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiBulkCombineSeriesCategoriesRequest

func (*CategoriesAPIService) BulkCombineSeriesCategoriesExecute ¶

func (a *CategoriesAPIService) BulkCombineSeriesCategoriesExecute(r ApiBulkCombineSeriesCategoriesRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*CategoriesAPIService) BulkDeleteSeriesCategories ¶

func (a *CategoriesAPIService) BulkDeleteSeriesCategories(ctx context.Context) ApiBulkDeleteSeriesCategoriesRequest

BulkDeleteSeriesCategories delete a category across the database

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiBulkDeleteSeriesCategoriesRequest

func (*CategoriesAPIService) BulkDeleteSeriesCategoriesExecute ¶

func (a *CategoriesAPIService) BulkDeleteSeriesCategoriesExecute(r ApiBulkDeleteSeriesCategoriesRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*CategoriesAPIService) FindCategoryByExact ¶

FindCategoryByExact find a category by name

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindCategoryByExactRequest

func (*CategoriesAPIService) FindCategoryByExactExecute ¶

Execute executes the request

@return CategoriesModelV1

func (*CategoriesAPIService) FindCategoryByPrefix ¶

FindCategoryByPrefix find a category by prefix

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindCategoryByPrefixRequest

func (*CategoriesAPIService) FindCategoryByPrefixExecute ¶

Execute executes the request

@return []CategoriesModelV1

func (*CategoriesAPIService) SearchCategoriesPost ¶

SearchCategoriesPost search categories

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchCategoriesPostRequest

func (*CategoriesAPIService) SearchCategoriesPostExecute ¶

Execute executes the request

@return CategoriesSearchResponseV1

type CategoriesModelSearchV1 ¶

type CategoriesModelSearchV1 struct {
	Category   *string `json:"category,omitempty"`
	Usage      *int64  `json:"usage,omitempty"`
	Votes      *int64  `json:"votes,omitempty"`
	VotesPlus  *int64  `json:"votes_plus,omitempty"`
	VotesMinus *int64  `json:"votes_minus,omitempty"`
}

CategoriesModelSearchV1 struct for CategoriesModelSearchV1

func NewCategoriesModelSearchV1 ¶

func NewCategoriesModelSearchV1() *CategoriesModelSearchV1

NewCategoriesModelSearchV1 instantiates a new CategoriesModelSearchV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCategoriesModelSearchV1WithDefaults ¶

func NewCategoriesModelSearchV1WithDefaults() *CategoriesModelSearchV1

NewCategoriesModelSearchV1WithDefaults instantiates a new CategoriesModelSearchV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CategoriesModelSearchV1) GetCategory ¶

func (o *CategoriesModelSearchV1) GetCategory() string

GetCategory returns the Category field value if set, zero value otherwise.

func (*CategoriesModelSearchV1) GetCategoryOk ¶

func (o *CategoriesModelSearchV1) GetCategoryOk() (*string, bool)

GetCategoryOk returns a tuple with the Category field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CategoriesModelSearchV1) GetUsage ¶

func (o *CategoriesModelSearchV1) GetUsage() int64

GetUsage returns the Usage field value if set, zero value otherwise.

func (*CategoriesModelSearchV1) GetUsageOk ¶

func (o *CategoriesModelSearchV1) GetUsageOk() (*int64, bool)

GetUsageOk returns a tuple with the Usage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CategoriesModelSearchV1) GetVotes ¶

func (o *CategoriesModelSearchV1) GetVotes() int64

GetVotes returns the Votes field value if set, zero value otherwise.

func (*CategoriesModelSearchV1) GetVotesMinus ¶

func (o *CategoriesModelSearchV1) GetVotesMinus() int64

GetVotesMinus returns the VotesMinus field value if set, zero value otherwise.

func (*CategoriesModelSearchV1) GetVotesMinusOk ¶

func (o *CategoriesModelSearchV1) GetVotesMinusOk() (*int64, bool)

GetVotesMinusOk returns a tuple with the VotesMinus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CategoriesModelSearchV1) GetVotesOk ¶

func (o *CategoriesModelSearchV1) GetVotesOk() (*int64, bool)

GetVotesOk returns a tuple with the Votes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CategoriesModelSearchV1) GetVotesPlus ¶

func (o *CategoriesModelSearchV1) GetVotesPlus() int64

GetVotesPlus returns the VotesPlus field value if set, zero value otherwise.

func (*CategoriesModelSearchV1) GetVotesPlusOk ¶

func (o *CategoriesModelSearchV1) GetVotesPlusOk() (*int64, bool)

GetVotesPlusOk returns a tuple with the VotesPlus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CategoriesModelSearchV1) HasCategory ¶

func (o *CategoriesModelSearchV1) HasCategory() bool

HasCategory returns a boolean if a field has been set.

func (*CategoriesModelSearchV1) HasUsage ¶

func (o *CategoriesModelSearchV1) HasUsage() bool

HasUsage returns a boolean if a field has been set.

func (*CategoriesModelSearchV1) HasVotes ¶

func (o *CategoriesModelSearchV1) HasVotes() bool

HasVotes returns a boolean if a field has been set.

func (*CategoriesModelSearchV1) HasVotesMinus ¶

func (o *CategoriesModelSearchV1) HasVotesMinus() bool

HasVotesMinus returns a boolean if a field has been set.

func (*CategoriesModelSearchV1) HasVotesPlus ¶

func (o *CategoriesModelSearchV1) HasVotesPlus() bool

HasVotesPlus returns a boolean if a field has been set.

func (CategoriesModelSearchV1) MarshalJSON ¶

func (o CategoriesModelSearchV1) MarshalJSON() ([]byte, error)

func (*CategoriesModelSearchV1) SetCategory ¶

func (o *CategoriesModelSearchV1) SetCategory(v string)

SetCategory gets a reference to the given string and assigns it to the Category field.

func (*CategoriesModelSearchV1) SetUsage ¶

func (o *CategoriesModelSearchV1) SetUsage(v int64)

SetUsage gets a reference to the given int64 and assigns it to the Usage field.

func (*CategoriesModelSearchV1) SetVotes ¶

func (o *CategoriesModelSearchV1) SetVotes(v int64)

SetVotes gets a reference to the given int64 and assigns it to the Votes field.

func (*CategoriesModelSearchV1) SetVotesMinus ¶

func (o *CategoriesModelSearchV1) SetVotesMinus(v int64)

SetVotesMinus gets a reference to the given int64 and assigns it to the VotesMinus field.

func (*CategoriesModelSearchV1) SetVotesPlus ¶

func (o *CategoriesModelSearchV1) SetVotesPlus(v int64)

SetVotesPlus gets a reference to the given int64 and assigns it to the VotesPlus field.

func (CategoriesModelSearchV1) ToMap ¶

func (o CategoriesModelSearchV1) ToMap() (map[string]interface{}, error)

type CategoriesModelUpdateV1 ¶

type CategoriesModelUpdateV1 struct {
	Category *string `json:"category,omitempty"`
}

CategoriesModelUpdateV1 struct for CategoriesModelUpdateV1

func NewCategoriesModelUpdateV1 ¶

func NewCategoriesModelUpdateV1() *CategoriesModelUpdateV1

NewCategoriesModelUpdateV1 instantiates a new CategoriesModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCategoriesModelUpdateV1WithDefaults ¶

func NewCategoriesModelUpdateV1WithDefaults() *CategoriesModelUpdateV1

NewCategoriesModelUpdateV1WithDefaults instantiates a new CategoriesModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CategoriesModelUpdateV1) GetCategory ¶

func (o *CategoriesModelUpdateV1) GetCategory() string

GetCategory returns the Category field value if set, zero value otherwise.

func (*CategoriesModelUpdateV1) GetCategoryOk ¶

func (o *CategoriesModelUpdateV1) GetCategoryOk() (*string, bool)

GetCategoryOk returns a tuple with the Category field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CategoriesModelUpdateV1) HasCategory ¶

func (o *CategoriesModelUpdateV1) HasCategory() bool

HasCategory returns a boolean if a field has been set.

func (CategoriesModelUpdateV1) MarshalJSON ¶

func (o CategoriesModelUpdateV1) MarshalJSON() ([]byte, error)

func (*CategoriesModelUpdateV1) SetCategory ¶

func (o *CategoriesModelUpdateV1) SetCategory(v string)

SetCategory gets a reference to the given string and assigns it to the Category field.

func (CategoriesModelUpdateV1) ToMap ¶

func (o CategoriesModelUpdateV1) ToMap() (map[string]interface{}, error)

type CategoriesModelV1 ¶

type CategoriesModelV1 struct {
	SeriesId   *int64  `json:"series_id,omitempty"`
	Category   *string `json:"category,omitempty"`
	Votes      *int64  `json:"votes,omitempty"`
	VotesPlus  *int64  `json:"votes_plus,omitempty"`
	VotesMinus *int64  `json:"votes_minus,omitempty"`
	AddedBy    *int64  `json:"added_by,omitempty"`
}

CategoriesModelV1 struct for CategoriesModelV1

func NewCategoriesModelV1 ¶

func NewCategoriesModelV1() *CategoriesModelV1

NewCategoriesModelV1 instantiates a new CategoriesModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCategoriesModelV1WithDefaults ¶

func NewCategoriesModelV1WithDefaults() *CategoriesModelV1

NewCategoriesModelV1WithDefaults instantiates a new CategoriesModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CategoriesModelV1) GetAddedBy ¶

func (o *CategoriesModelV1) GetAddedBy() int64

GetAddedBy returns the AddedBy field value if set, zero value otherwise.

func (*CategoriesModelV1) GetAddedByOk ¶

func (o *CategoriesModelV1) GetAddedByOk() (*int64, bool)

GetAddedByOk returns a tuple with the AddedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CategoriesModelV1) GetCategory ¶

func (o *CategoriesModelV1) GetCategory() string

GetCategory returns the Category field value if set, zero value otherwise.

func (*CategoriesModelV1) GetCategoryOk ¶

func (o *CategoriesModelV1) GetCategoryOk() (*string, bool)

GetCategoryOk returns a tuple with the Category field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CategoriesModelV1) GetSeriesId ¶

func (o *CategoriesModelV1) GetSeriesId() int64

GetSeriesId returns the SeriesId field value if set, zero value otherwise.

func (*CategoriesModelV1) GetSeriesIdOk ¶

func (o *CategoriesModelV1) GetSeriesIdOk() (*int64, bool)

GetSeriesIdOk returns a tuple with the SeriesId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CategoriesModelV1) GetVotes ¶

func (o *CategoriesModelV1) GetVotes() int64

GetVotes returns the Votes field value if set, zero value otherwise.

func (*CategoriesModelV1) GetVotesMinus ¶

func (o *CategoriesModelV1) GetVotesMinus() int64

GetVotesMinus returns the VotesMinus field value if set, zero value otherwise.

func (*CategoriesModelV1) GetVotesMinusOk ¶

func (o *CategoriesModelV1) GetVotesMinusOk() (*int64, bool)

GetVotesMinusOk returns a tuple with the VotesMinus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CategoriesModelV1) GetVotesOk ¶

func (o *CategoriesModelV1) GetVotesOk() (*int64, bool)

GetVotesOk returns a tuple with the Votes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CategoriesModelV1) GetVotesPlus ¶

func (o *CategoriesModelV1) GetVotesPlus() int64

GetVotesPlus returns the VotesPlus field value if set, zero value otherwise.

func (*CategoriesModelV1) GetVotesPlusOk ¶

func (o *CategoriesModelV1) GetVotesPlusOk() (*int64, bool)

GetVotesPlusOk returns a tuple with the VotesPlus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CategoriesModelV1) HasAddedBy ¶

func (o *CategoriesModelV1) HasAddedBy() bool

HasAddedBy returns a boolean if a field has been set.

func (*CategoriesModelV1) HasCategory ¶

func (o *CategoriesModelV1) HasCategory() bool

HasCategory returns a boolean if a field has been set.

func (*CategoriesModelV1) HasSeriesId ¶

func (o *CategoriesModelV1) HasSeriesId() bool

HasSeriesId returns a boolean if a field has been set.

func (*CategoriesModelV1) HasVotes ¶

func (o *CategoriesModelV1) HasVotes() bool

HasVotes returns a boolean if a field has been set.

func (*CategoriesModelV1) HasVotesMinus ¶

func (o *CategoriesModelV1) HasVotesMinus() bool

HasVotesMinus returns a boolean if a field has been set.

func (*CategoriesModelV1) HasVotesPlus ¶

func (o *CategoriesModelV1) HasVotesPlus() bool

HasVotesPlus returns a boolean if a field has been set.

func (CategoriesModelV1) MarshalJSON ¶

func (o CategoriesModelV1) MarshalJSON() ([]byte, error)

func (*CategoriesModelV1) SetAddedBy ¶

func (o *CategoriesModelV1) SetAddedBy(v int64)

SetAddedBy gets a reference to the given int64 and assigns it to the AddedBy field.

func (*CategoriesModelV1) SetCategory ¶

func (o *CategoriesModelV1) SetCategory(v string)

SetCategory gets a reference to the given string and assigns it to the Category field.

func (*CategoriesModelV1) SetSeriesId ¶

func (o *CategoriesModelV1) SetSeriesId(v int64)

SetSeriesId gets a reference to the given int64 and assigns it to the SeriesId field.

func (*CategoriesModelV1) SetVotes ¶

func (o *CategoriesModelV1) SetVotes(v int64)

SetVotes gets a reference to the given int64 and assigns it to the Votes field.

func (*CategoriesModelV1) SetVotesMinus ¶

func (o *CategoriesModelV1) SetVotesMinus(v int64)

SetVotesMinus gets a reference to the given int64 and assigns it to the VotesMinus field.

func (*CategoriesModelV1) SetVotesPlus ¶

func (o *CategoriesModelV1) SetVotesPlus(v int64)

SetVotesPlus gets a reference to the given int64 and assigns it to the VotesPlus field.

func (CategoriesModelV1) ToMap ¶

func (o CategoriesModelV1) ToMap() (map[string]interface{}, error)

type CategoriesSearchRequestV1 ¶

type CategoriesSearchRequestV1 struct {
	Search  *string `json:"search,omitempty"`
	Page    *int64  `json:"page,omitempty"`
	Perpage *int64  `json:"perpage,omitempty"`
	Letter  *string `json:"letter,omitempty"`
	Orderby *string `json:"orderby,omitempty"`
}

CategoriesSearchRequestV1 struct for CategoriesSearchRequestV1

func NewCategoriesSearchRequestV1 ¶

func NewCategoriesSearchRequestV1() *CategoriesSearchRequestV1

NewCategoriesSearchRequestV1 instantiates a new CategoriesSearchRequestV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCategoriesSearchRequestV1WithDefaults ¶

func NewCategoriesSearchRequestV1WithDefaults() *CategoriesSearchRequestV1

NewCategoriesSearchRequestV1WithDefaults instantiates a new CategoriesSearchRequestV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CategoriesSearchRequestV1) GetLetter ¶

func (o *CategoriesSearchRequestV1) GetLetter() string

GetLetter returns the Letter field value if set, zero value otherwise.

func (*CategoriesSearchRequestV1) GetLetterOk ¶

func (o *CategoriesSearchRequestV1) GetLetterOk() (*string, bool)

GetLetterOk returns a tuple with the Letter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CategoriesSearchRequestV1) GetOrderby ¶

func (o *CategoriesSearchRequestV1) GetOrderby() string

GetOrderby returns the Orderby field value if set, zero value otherwise.

func (*CategoriesSearchRequestV1) GetOrderbyOk ¶

func (o *CategoriesSearchRequestV1) GetOrderbyOk() (*string, bool)

GetOrderbyOk returns a tuple with the Orderby field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CategoriesSearchRequestV1) GetPage ¶

func (o *CategoriesSearchRequestV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*CategoriesSearchRequestV1) GetPageOk ¶

func (o *CategoriesSearchRequestV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CategoriesSearchRequestV1) GetPerpage ¶

func (o *CategoriesSearchRequestV1) GetPerpage() int64

GetPerpage returns the Perpage field value if set, zero value otherwise.

func (*CategoriesSearchRequestV1) GetPerpageOk ¶

func (o *CategoriesSearchRequestV1) GetPerpageOk() (*int64, bool)

GetPerpageOk returns a tuple with the Perpage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CategoriesSearchRequestV1) GetSearch ¶

func (o *CategoriesSearchRequestV1) GetSearch() string

GetSearch returns the Search field value if set, zero value otherwise.

func (*CategoriesSearchRequestV1) GetSearchOk ¶

func (o *CategoriesSearchRequestV1) GetSearchOk() (*string, bool)

GetSearchOk returns a tuple with the Search field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CategoriesSearchRequestV1) HasLetter ¶

func (o *CategoriesSearchRequestV1) HasLetter() bool

HasLetter returns a boolean if a field has been set.

func (*CategoriesSearchRequestV1) HasOrderby ¶

func (o *CategoriesSearchRequestV1) HasOrderby() bool

HasOrderby returns a boolean if a field has been set.

func (*CategoriesSearchRequestV1) HasPage ¶

func (o *CategoriesSearchRequestV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*CategoriesSearchRequestV1) HasPerpage ¶

func (o *CategoriesSearchRequestV1) HasPerpage() bool

HasPerpage returns a boolean if a field has been set.

func (*CategoriesSearchRequestV1) HasSearch ¶

func (o *CategoriesSearchRequestV1) HasSearch() bool

HasSearch returns a boolean if a field has been set.

func (CategoriesSearchRequestV1) MarshalJSON ¶

func (o CategoriesSearchRequestV1) MarshalJSON() ([]byte, error)

func (*CategoriesSearchRequestV1) SetLetter ¶

func (o *CategoriesSearchRequestV1) SetLetter(v string)

SetLetter gets a reference to the given string and assigns it to the Letter field.

func (*CategoriesSearchRequestV1) SetOrderby ¶

func (o *CategoriesSearchRequestV1) SetOrderby(v string)

SetOrderby gets a reference to the given string and assigns it to the Orderby field.

func (*CategoriesSearchRequestV1) SetPage ¶

func (o *CategoriesSearchRequestV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*CategoriesSearchRequestV1) SetPerpage ¶

func (o *CategoriesSearchRequestV1) SetPerpage(v int64)

SetPerpage gets a reference to the given int64 and assigns it to the Perpage field.

func (*CategoriesSearchRequestV1) SetSearch ¶

func (o *CategoriesSearchRequestV1) SetSearch(v string)

SetSearch gets a reference to the given string and assigns it to the Search field.

func (CategoriesSearchRequestV1) ToMap ¶

func (o CategoriesSearchRequestV1) ToMap() (map[string]interface{}, error)

type CategoriesSearchResponseV1 ¶

type CategoriesSearchResponseV1 struct {
	TotalHits *int64                              `json:"total_hits,omitempty"`
	Page      *int64                              `json:"page,omitempty"`
	PerPage   *int64                              `json:"per_page,omitempty"`
	Results   []CategoriesSearchResponseV1Results `json:"results,omitempty"`
}

CategoriesSearchResponseV1 struct for CategoriesSearchResponseV1

func NewCategoriesSearchResponseV1 ¶

func NewCategoriesSearchResponseV1() *CategoriesSearchResponseV1

NewCategoriesSearchResponseV1 instantiates a new CategoriesSearchResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCategoriesSearchResponseV1WithDefaults ¶

func NewCategoriesSearchResponseV1WithDefaults() *CategoriesSearchResponseV1

NewCategoriesSearchResponseV1WithDefaults instantiates a new CategoriesSearchResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CategoriesSearchResponseV1) GetPage ¶

func (o *CategoriesSearchResponseV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*CategoriesSearchResponseV1) GetPageOk ¶

func (o *CategoriesSearchResponseV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CategoriesSearchResponseV1) GetPerPage ¶

func (o *CategoriesSearchResponseV1) GetPerPage() int64

GetPerPage returns the PerPage field value if set, zero value otherwise.

func (*CategoriesSearchResponseV1) GetPerPageOk ¶

func (o *CategoriesSearchResponseV1) GetPerPageOk() (*int64, bool)

GetPerPageOk returns a tuple with the PerPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CategoriesSearchResponseV1) GetResults ¶

GetResults returns the Results field value if set, zero value otherwise.

func (*CategoriesSearchResponseV1) GetResultsOk ¶

GetResultsOk returns a tuple with the Results field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CategoriesSearchResponseV1) GetTotalHits ¶

func (o *CategoriesSearchResponseV1) GetTotalHits() int64

GetTotalHits returns the TotalHits field value if set, zero value otherwise.

func (*CategoriesSearchResponseV1) GetTotalHitsOk ¶

func (o *CategoriesSearchResponseV1) GetTotalHitsOk() (*int64, bool)

GetTotalHitsOk returns a tuple with the TotalHits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CategoriesSearchResponseV1) HasPage ¶

func (o *CategoriesSearchResponseV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*CategoriesSearchResponseV1) HasPerPage ¶

func (o *CategoriesSearchResponseV1) HasPerPage() bool

HasPerPage returns a boolean if a field has been set.

func (*CategoriesSearchResponseV1) HasResults ¶

func (o *CategoriesSearchResponseV1) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*CategoriesSearchResponseV1) HasTotalHits ¶

func (o *CategoriesSearchResponseV1) HasTotalHits() bool

HasTotalHits returns a boolean if a field has been set.

func (CategoriesSearchResponseV1) MarshalJSON ¶

func (o CategoriesSearchResponseV1) MarshalJSON() ([]byte, error)

func (*CategoriesSearchResponseV1) SetPage ¶

func (o *CategoriesSearchResponseV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*CategoriesSearchResponseV1) SetPerPage ¶

func (o *CategoriesSearchResponseV1) SetPerPage(v int64)

SetPerPage gets a reference to the given int64 and assigns it to the PerPage field.

func (*CategoriesSearchResponseV1) SetResults ¶

SetResults gets a reference to the given []CategoriesSearchResponseV1Results and assigns it to the Results field.

func (*CategoriesSearchResponseV1) SetTotalHits ¶

func (o *CategoriesSearchResponseV1) SetTotalHits(v int64)

SetTotalHits gets a reference to the given int64 and assigns it to the TotalHits field.

func (CategoriesSearchResponseV1) ToMap ¶

func (o CategoriesSearchResponseV1) ToMap() (map[string]interface{}, error)

type CategoriesSearchResponseV1Results ¶

type CategoriesSearchResponseV1Results struct {
	Record *CategoriesModelSearchV1 `json:"record,omitempty"`
}

CategoriesSearchResponseV1Results struct for CategoriesSearchResponseV1Results

func NewCategoriesSearchResponseV1Results ¶

func NewCategoriesSearchResponseV1Results() *CategoriesSearchResponseV1Results

NewCategoriesSearchResponseV1Results instantiates a new CategoriesSearchResponseV1Results object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCategoriesSearchResponseV1ResultsWithDefaults ¶

func NewCategoriesSearchResponseV1ResultsWithDefaults() *CategoriesSearchResponseV1Results

NewCategoriesSearchResponseV1ResultsWithDefaults instantiates a new CategoriesSearchResponseV1Results object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CategoriesSearchResponseV1Results) GetRecord ¶

GetRecord returns the Record field value if set, zero value otherwise.

func (*CategoriesSearchResponseV1Results) GetRecordOk ¶

GetRecordOk returns a tuple with the Record field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CategoriesSearchResponseV1Results) HasRecord ¶

func (o *CategoriesSearchResponseV1Results) HasRecord() bool

HasRecord returns a boolean if a field has been set.

func (CategoriesSearchResponseV1Results) MarshalJSON ¶

func (o CategoriesSearchResponseV1Results) MarshalJSON() ([]byte, error)

func (*CategoriesSearchResponseV1Results) SetRecord ¶

SetRecord gets a reference to the given CategoriesModelSearchV1 and assigns it to the Record field.

func (CategoriesSearchResponseV1Results) ToMap ¶

func (o CategoriesSearchResponseV1Results) ToMap() (map[string]interface{}, error)

type Configuration ¶

type Configuration struct {
	Host             string            `json:"host,omitempty"`
	Scheme           string            `json:"scheme,omitempty"`
	DefaultHeader    map[string]string `json:"defaultHeader,omitempty"`
	UserAgent        string            `json:"userAgent,omitempty"`
	Debug            bool              `json:"debug,omitempty"`
	Servers          ServerConfigurations
	OperationServers map[string]ServerConfigurations
	HTTPClient       *http.Client
}

Configuration stores the configuration of the API client

func NewConfiguration ¶

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader ¶

func (c *Configuration) AddDefaultHeader(key string, value string)

AddDefaultHeader adds a new HTTP header to the default header in the request

func (*Configuration) ServerURL ¶

func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error)

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext ¶

func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error)

ServerURLWithContext returns a new server URL given an endpoint

type ConvoAPIService ¶

type ConvoAPIService service

ConvoAPIService ConvoAPI service

func (*ConvoAPIService) AbandonConvo ¶

func (a *ConvoAPIService) AbandonConvo(ctx context.Context, id int64) ApiAbandonConvoRequest

AbandonConvo abandon a convo

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Convo id
@return ApiAbandonConvoRequest

func (*ConvoAPIService) AbandonConvoBulk ¶

func (a *ConvoAPIService) AbandonConvoBulk(ctx context.Context) ApiAbandonConvoBulkRequest

AbandonConvoBulk abandon convos in bulk

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAbandonConvoBulkRequest

func (*ConvoAPIService) AbandonConvoBulkExecute ¶

func (a *ConvoAPIService) AbandonConvoBulkExecute(r ApiAbandonConvoBulkRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ConvoAPIService) AbandonConvoExecute ¶

func (a *ConvoAPIService) AbandonConvoExecute(r ApiAbandonConvoRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ConvoAPIService) AddConvo ¶

AddConvo add an convo

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAddConvoRequest

func (*ConvoAPIService) AddConvoExecute ¶

func (a *ConvoAPIService) AddConvoExecute(r ApiAddConvoRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ConvoAPIService) AddConvoMessage ¶

func (a *ConvoAPIService) AddConvoMessage(ctx context.Context, id int64) ApiAddConvoMessageRequest

AddConvoMessage add a message to a convo

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Convo id
@return ApiAddConvoMessageRequest

func (*ConvoAPIService) AddConvoMessageExecute ¶

func (a *ConvoAPIService) AddConvoMessageExecute(r ApiAddConvoMessageRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ConvoAPIService) ConvoInbox ¶

ConvoInbox display unread messages

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiConvoInboxRequest

func (*ConvoAPIService) ConvoInboxCount ¶

func (a *ConvoAPIService) ConvoInboxCount(ctx context.Context) ApiConvoInboxCountRequest

ConvoInboxCount retrieve number of unread messages

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiConvoInboxCountRequest

func (*ConvoAPIService) ConvoInboxCountExecute ¶

Execute executes the request

@return ConvoSearchResponseV1

func (*ConvoAPIService) ConvoInboxExecute ¶

Execute executes the request

@return ConvoSearchResponseV1

func (*ConvoAPIService) ConvoReceived ¶

ConvoReceived display received (and read) messages

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiConvoReceivedRequest

func (*ConvoAPIService) ConvoReceivedExecute ¶

Execute executes the request

@return ConvoSearchResponseV1

func (*ConvoAPIService) ConvoSent ¶

ConvoSent display sent messages

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiConvoSentRequest

func (*ConvoAPIService) ConvoSentExecute ¶

Execute executes the request

@return ConvoSearchResponseV1

func (*ConvoAPIService) DeleteConvo ¶

func (a *ConvoAPIService) DeleteConvo(ctx context.Context, id int64) ApiDeleteConvoRequest

DeleteConvo delete a convo

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Convo id
@return ApiDeleteConvoRequest

func (*ConvoAPIService) DeleteConvoBulk ¶

func (a *ConvoAPIService) DeleteConvoBulk(ctx context.Context) ApiDeleteConvoBulkRequest

DeleteConvoBulk delete convos in bulk

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeleteConvoBulkRequest

func (*ConvoAPIService) DeleteConvoBulkExecute ¶

func (a *ConvoAPIService) DeleteConvoBulkExecute(r ApiDeleteConvoBulkRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ConvoAPIService) DeleteConvoExecute ¶

func (a *ConvoAPIService) DeleteConvoExecute(r ApiDeleteConvoRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ConvoAPIService) IgnoreUser ¶

func (a *ConvoAPIService) IgnoreUser(ctx context.Context, userId int64) ApiIgnoreUserRequest

IgnoreUser ignore a user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userId User id
@return ApiIgnoreUserRequest

func (*ConvoAPIService) IgnoreUserExecute ¶

func (a *ConvoAPIService) IgnoreUserExecute(r ApiIgnoreUserRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ConvoAPIService) InviteUserToConvo ¶

func (a *ConvoAPIService) InviteUserToConvo(ctx context.Context, id int64) ApiInviteUserToConvoRequest

InviteUserToConvo invite a user to a convo

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Convo id
@return ApiInviteUserToConvoRequest

func (*ConvoAPIService) InviteUserToConvoExecute ¶

func (a *ConvoAPIService) InviteUserToConvoExecute(r ApiInviteUserToConvoRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ConvoAPIService) IsUserIgnored ¶

func (a *ConvoAPIService) IsUserIgnored(ctx context.Context, userId int64) ApiIsUserIgnoredRequest

IsUserIgnored return whether the user is ignored

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userId User id
@return ApiIsUserIgnoredRequest

func (*ConvoAPIService) IsUserIgnoredExecute ¶

Execute executes the request

@return ConvoUserIgnoreModelV1

func (*ConvoAPIService) JoinConvo ¶

JoinConvo join a convo

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Convo id
@return ApiJoinConvoRequest

func (*ConvoAPIService) JoinConvoExecute ¶

func (a *ConvoAPIService) JoinConvoExecute(r ApiJoinConvoRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ConvoAPIService) KickUserFromConvo ¶

func (a *ConvoAPIService) KickUserFromConvo(ctx context.Context, id int64, userId int64) ApiKickUserFromConvoRequest

KickUserFromConvo kick a user from a convo

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Convo id
@param userId User id
@return ApiKickUserFromConvoRequest

func (*ConvoAPIService) KickUserFromConvoExecute ¶

func (a *ConvoAPIService) KickUserFromConvoExecute(r ApiKickUserFromConvoRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ConvoAPIService) ListConvoMessages ¶

func (a *ConvoAPIService) ListConvoMessages(ctx context.Context, id int64) ApiListConvoMessagesRequest

ListConvoMessages list convo messages

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Convo id
@return ApiListConvoMessagesRequest

func (*ConvoAPIService) ListConvoMessagesExecute ¶

Execute executes the request

@return ConvoMessageSearchResponseV1

func (*ConvoAPIService) RetrieveConvo ¶

func (a *ConvoAPIService) RetrieveConvo(ctx context.Context, id int64) ApiRetrieveConvoRequest

RetrieveConvo get a specific convo

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Convo id
@return ApiRetrieveConvoRequest

func (*ConvoAPIService) RetrieveConvoExecute ¶

func (a *ConvoAPIService) RetrieveConvoExecute(r ApiRetrieveConvoRequest) (*ConvoModelV1, *http.Response, error)

Execute executes the request

@return ConvoModelV1

func (*ConvoAPIService) RetrieveConvoMessage ¶

func (a *ConvoAPIService) RetrieveConvoMessage(ctx context.Context, id int64, messageId int64) ApiRetrieveConvoMessageRequest

RetrieveConvoMessage get a specific convo message

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Convo id
@param messageId Convo message id
@return ApiRetrieveConvoMessageRequest

func (*ConvoAPIService) RetrieveConvoMessageExecute ¶

func (a *ConvoAPIService) RetrieveConvoMessageExecute(r ApiRetrieveConvoMessageRequest) (*ConvoMessageModelV1, *http.Response, error)

Execute executes the request

@return ConvoMessageModelV1

func (*ConvoAPIService) RetrieveConvoMessageLocation ¶

func (a *ConvoAPIService) RetrieveConvoMessageLocation(ctx context.Context, id int64, messageId int64) ApiRetrieveConvoMessageLocationRequest

RetrieveConvoMessageLocation get a specific convo message location

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Convo id
@param messageId Convo message id
@return ApiRetrieveConvoMessageLocationRequest

func (*ConvoAPIService) RetrieveConvoMessageLocationExecute ¶

func (a *ConvoAPIService) RetrieveConvoMessageLocationExecute(r ApiRetrieveConvoMessageLocationRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ConvoAPIService) RetrieveConvoParticipants ¶

func (a *ConvoAPIService) RetrieveConvoParticipants(ctx context.Context, id int64) ApiRetrieveConvoParticipantsRequest

RetrieveConvoParticipants get list of convo participants

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Convo id
@return ApiRetrieveConvoParticipantsRequest

func (*ConvoAPIService) RetrieveConvoParticipantsExecute ¶

func (a *ConvoAPIService) RetrieveConvoParticipantsExecute(r ApiRetrieveConvoParticipantsRequest) ([]ConvoParticipantModelV1, *http.Response, error)

Execute executes the request

@return []ConvoParticipantModelV1

func (*ConvoAPIService) SearchConvoMessagesPost ¶

func (a *ConvoAPIService) SearchConvoMessagesPost(ctx context.Context, id int64) ApiSearchConvoMessagesPostRequest

SearchConvoMessagesPost search convo

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Convo id
@return ApiSearchConvoMessagesPostRequest

func (*ConvoAPIService) SearchConvoMessagesPostExecute ¶

Execute executes the request

@return ConvoMessageSearchResponseV1

func (*ConvoAPIService) SearchConvoPost ¶

func (a *ConvoAPIService) SearchConvoPost(ctx context.Context) ApiSearchConvoPostRequest

SearchConvoPost search convo

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchConvoPostRequest

func (*ConvoAPIService) SearchConvoPostExecute ¶

Execute executes the request

@return ConvoSearchResponseV1

func (*ConvoAPIService) UnIgnoreUser ¶

func (a *ConvoAPIService) UnIgnoreUser(ctx context.Context, userId int64) ApiUnIgnoreUserRequest

UnIgnoreUser remove ignore for a user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userId User id
@return ApiUnIgnoreUserRequest

func (*ConvoAPIService) UnIgnoreUserExecute ¶

func (a *ConvoAPIService) UnIgnoreUserExecute(r ApiUnIgnoreUserRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ConvoAPIService) UpdateConvo ¶

func (a *ConvoAPIService) UpdateConvo(ctx context.Context, id int64) ApiUpdateConvoRequest

UpdateConvo update a convo

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Convo id
@return ApiUpdateConvoRequest

func (*ConvoAPIService) UpdateConvoExecute ¶

func (a *ConvoAPIService) UpdateConvoExecute(r ApiUpdateConvoRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ConvoAPIService) UpdateConvoMessage ¶

func (a *ConvoAPIService) UpdateConvoMessage(ctx context.Context, id int64, messageId int64) ApiUpdateConvoMessageRequest

UpdateConvoMessage update a convo message

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Convo id
@param messageId Convo message id
@return ApiUpdateConvoMessageRequest

func (*ConvoAPIService) UpdateConvoMessageExecute ¶

func (a *ConvoAPIService) UpdateConvoMessageExecute(r ApiUpdateConvoMessageRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

type ConvoBulkModelV1 ¶

type ConvoBulkModelV1 struct {
	ConvoIdList []int64 `json:"convo_id_list,omitempty"`
}

ConvoBulkModelV1 struct for ConvoBulkModelV1

func NewConvoBulkModelV1 ¶

func NewConvoBulkModelV1() *ConvoBulkModelV1

NewConvoBulkModelV1 instantiates a new ConvoBulkModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConvoBulkModelV1WithDefaults ¶

func NewConvoBulkModelV1WithDefaults() *ConvoBulkModelV1

NewConvoBulkModelV1WithDefaults instantiates a new ConvoBulkModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConvoBulkModelV1) GetConvoIdList ¶

func (o *ConvoBulkModelV1) GetConvoIdList() []int64

GetConvoIdList returns the ConvoIdList field value if set, zero value otherwise.

func (*ConvoBulkModelV1) GetConvoIdListOk ¶

func (o *ConvoBulkModelV1) GetConvoIdListOk() ([]int64, bool)

GetConvoIdListOk returns a tuple with the ConvoIdList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoBulkModelV1) HasConvoIdList ¶

func (o *ConvoBulkModelV1) HasConvoIdList() bool

HasConvoIdList returns a boolean if a field has been set.

func (ConvoBulkModelV1) MarshalJSON ¶

func (o ConvoBulkModelV1) MarshalJSON() ([]byte, error)

func (*ConvoBulkModelV1) SetConvoIdList ¶

func (o *ConvoBulkModelV1) SetConvoIdList(v []int64)

SetConvoIdList gets a reference to the given []int64 and assigns it to the ConvoIdList field.

func (ConvoBulkModelV1) ToMap ¶

func (o ConvoBulkModelV1) ToMap() (map[string]interface{}, error)

type ConvoMessageListRequestV1 ¶

type ConvoMessageListRequestV1 struct {
	Page    *int64 `json:"page,omitempty"`
	Perpage *int64 `json:"perpage,omitempty"`
}

ConvoMessageListRequestV1 struct for ConvoMessageListRequestV1

func NewConvoMessageListRequestV1 ¶

func NewConvoMessageListRequestV1() *ConvoMessageListRequestV1

NewConvoMessageListRequestV1 instantiates a new ConvoMessageListRequestV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConvoMessageListRequestV1WithDefaults ¶

func NewConvoMessageListRequestV1WithDefaults() *ConvoMessageListRequestV1

NewConvoMessageListRequestV1WithDefaults instantiates a new ConvoMessageListRequestV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConvoMessageListRequestV1) GetPage ¶

func (o *ConvoMessageListRequestV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*ConvoMessageListRequestV1) GetPageOk ¶

func (o *ConvoMessageListRequestV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoMessageListRequestV1) GetPerpage ¶

func (o *ConvoMessageListRequestV1) GetPerpage() int64

GetPerpage returns the Perpage field value if set, zero value otherwise.

func (*ConvoMessageListRequestV1) GetPerpageOk ¶

func (o *ConvoMessageListRequestV1) GetPerpageOk() (*int64, bool)

GetPerpageOk returns a tuple with the Perpage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoMessageListRequestV1) HasPage ¶

func (o *ConvoMessageListRequestV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*ConvoMessageListRequestV1) HasPerpage ¶

func (o *ConvoMessageListRequestV1) HasPerpage() bool

HasPerpage returns a boolean if a field has been set.

func (ConvoMessageListRequestV1) MarshalJSON ¶

func (o ConvoMessageListRequestV1) MarshalJSON() ([]byte, error)

func (*ConvoMessageListRequestV1) SetPage ¶

func (o *ConvoMessageListRequestV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*ConvoMessageListRequestV1) SetPerpage ¶

func (o *ConvoMessageListRequestV1) SetPerpage(v int64)

SetPerpage gets a reference to the given int64 and assigns it to the Perpage field.

func (ConvoMessageListRequestV1) ToMap ¶

func (o ConvoMessageListRequestV1) ToMap() (map[string]interface{}, error)

type ConvoMessageModelUpdateV1 ¶

type ConvoMessageModelUpdateV1 struct {
	Content *string `json:"content,omitempty"`
}

ConvoMessageModelUpdateV1 struct for ConvoMessageModelUpdateV1

func NewConvoMessageModelUpdateV1 ¶

func NewConvoMessageModelUpdateV1() *ConvoMessageModelUpdateV1

NewConvoMessageModelUpdateV1 instantiates a new ConvoMessageModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConvoMessageModelUpdateV1WithDefaults ¶

func NewConvoMessageModelUpdateV1WithDefaults() *ConvoMessageModelUpdateV1

NewConvoMessageModelUpdateV1WithDefaults instantiates a new ConvoMessageModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConvoMessageModelUpdateV1) GetContent ¶

func (o *ConvoMessageModelUpdateV1) GetContent() string

GetContent returns the Content field value if set, zero value otherwise.

func (*ConvoMessageModelUpdateV1) GetContentOk ¶

func (o *ConvoMessageModelUpdateV1) GetContentOk() (*string, bool)

GetContentOk returns a tuple with the Content field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoMessageModelUpdateV1) HasContent ¶

func (o *ConvoMessageModelUpdateV1) HasContent() bool

HasContent returns a boolean if a field has been set.

func (ConvoMessageModelUpdateV1) MarshalJSON ¶

func (o ConvoMessageModelUpdateV1) MarshalJSON() ([]byte, error)

func (*ConvoMessageModelUpdateV1) SetContent ¶

func (o *ConvoMessageModelUpdateV1) SetContent(v string)

SetContent gets a reference to the given string and assigns it to the Content field.

func (ConvoMessageModelUpdateV1) ToMap ¶

func (o ConvoMessageModelUpdateV1) ToMap() (map[string]interface{}, error)

type ConvoMessageModelV1 ¶

type ConvoMessageModelV1 struct {
	MessageId  *int64  `json:"message_id,omitempty"`
	ConvoId    *int64  `json:"convo_id,omitempty"`
	AuthorId   *int64  `json:"author_id,omitempty"`
	AuthorName *string `json:"author_name,omitempty"`
	IsAdmin    *bool   `json:"is_admin,omitempty"`
	Content    *string `json:"content,omitempty"`
	TimeAdded  *TimeV1 `json:"time_added,omitempty"`
	LastEdit   *TimeV1 `json:"last_edit,omitempty"`
}

ConvoMessageModelV1 struct for ConvoMessageModelV1

func NewConvoMessageModelV1 ¶

func NewConvoMessageModelV1() *ConvoMessageModelV1

NewConvoMessageModelV1 instantiates a new ConvoMessageModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConvoMessageModelV1WithDefaults ¶

func NewConvoMessageModelV1WithDefaults() *ConvoMessageModelV1

NewConvoMessageModelV1WithDefaults instantiates a new ConvoMessageModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConvoMessageModelV1) GetAuthorId ¶

func (o *ConvoMessageModelV1) GetAuthorId() int64

GetAuthorId returns the AuthorId field value if set, zero value otherwise.

func (*ConvoMessageModelV1) GetAuthorIdOk ¶

func (o *ConvoMessageModelV1) GetAuthorIdOk() (*int64, bool)

GetAuthorIdOk returns a tuple with the AuthorId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoMessageModelV1) GetAuthorName ¶

func (o *ConvoMessageModelV1) GetAuthorName() string

GetAuthorName returns the AuthorName field value if set, zero value otherwise.

func (*ConvoMessageModelV1) GetAuthorNameOk ¶

func (o *ConvoMessageModelV1) GetAuthorNameOk() (*string, bool)

GetAuthorNameOk returns a tuple with the AuthorName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoMessageModelV1) GetContent ¶

func (o *ConvoMessageModelV1) GetContent() string

GetContent returns the Content field value if set, zero value otherwise.

func (*ConvoMessageModelV1) GetContentOk ¶

func (o *ConvoMessageModelV1) GetContentOk() (*string, bool)

GetContentOk returns a tuple with the Content field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoMessageModelV1) GetConvoId ¶

func (o *ConvoMessageModelV1) GetConvoId() int64

GetConvoId returns the ConvoId field value if set, zero value otherwise.

func (*ConvoMessageModelV1) GetConvoIdOk ¶

func (o *ConvoMessageModelV1) GetConvoIdOk() (*int64, bool)

GetConvoIdOk returns a tuple with the ConvoId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoMessageModelV1) GetIsAdmin ¶

func (o *ConvoMessageModelV1) GetIsAdmin() bool

GetIsAdmin returns the IsAdmin field value if set, zero value otherwise.

func (*ConvoMessageModelV1) GetIsAdminOk ¶

func (o *ConvoMessageModelV1) GetIsAdminOk() (*bool, bool)

GetIsAdminOk returns a tuple with the IsAdmin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoMessageModelV1) GetLastEdit ¶

func (o *ConvoMessageModelV1) GetLastEdit() TimeV1

GetLastEdit returns the LastEdit field value if set, zero value otherwise.

func (*ConvoMessageModelV1) GetLastEditOk ¶

func (o *ConvoMessageModelV1) GetLastEditOk() (*TimeV1, bool)

GetLastEditOk returns a tuple with the LastEdit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoMessageModelV1) GetMessageId ¶

func (o *ConvoMessageModelV1) GetMessageId() int64

GetMessageId returns the MessageId field value if set, zero value otherwise.

func (*ConvoMessageModelV1) GetMessageIdOk ¶

func (o *ConvoMessageModelV1) GetMessageIdOk() (*int64, bool)

GetMessageIdOk returns a tuple with the MessageId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoMessageModelV1) GetTimeAdded ¶

func (o *ConvoMessageModelV1) GetTimeAdded() TimeV1

GetTimeAdded returns the TimeAdded field value if set, zero value otherwise.

func (*ConvoMessageModelV1) GetTimeAddedOk ¶

func (o *ConvoMessageModelV1) GetTimeAddedOk() (*TimeV1, bool)

GetTimeAddedOk returns a tuple with the TimeAdded field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoMessageModelV1) HasAuthorId ¶

func (o *ConvoMessageModelV1) HasAuthorId() bool

HasAuthorId returns a boolean if a field has been set.

func (*ConvoMessageModelV1) HasAuthorName ¶

func (o *ConvoMessageModelV1) HasAuthorName() bool

HasAuthorName returns a boolean if a field has been set.

func (*ConvoMessageModelV1) HasContent ¶

func (o *ConvoMessageModelV1) HasContent() bool

HasContent returns a boolean if a field has been set.

func (*ConvoMessageModelV1) HasConvoId ¶

func (o *ConvoMessageModelV1) HasConvoId() bool

HasConvoId returns a boolean if a field has been set.

func (*ConvoMessageModelV1) HasIsAdmin ¶

func (o *ConvoMessageModelV1) HasIsAdmin() bool

HasIsAdmin returns a boolean if a field has been set.

func (*ConvoMessageModelV1) HasLastEdit ¶

func (o *ConvoMessageModelV1) HasLastEdit() bool

HasLastEdit returns a boolean if a field has been set.

func (*ConvoMessageModelV1) HasMessageId ¶

func (o *ConvoMessageModelV1) HasMessageId() bool

HasMessageId returns a boolean if a field has been set.

func (*ConvoMessageModelV1) HasTimeAdded ¶

func (o *ConvoMessageModelV1) HasTimeAdded() bool

HasTimeAdded returns a boolean if a field has been set.

func (ConvoMessageModelV1) MarshalJSON ¶

func (o ConvoMessageModelV1) MarshalJSON() ([]byte, error)

func (*ConvoMessageModelV1) SetAuthorId ¶

func (o *ConvoMessageModelV1) SetAuthorId(v int64)

SetAuthorId gets a reference to the given int64 and assigns it to the AuthorId field.

func (*ConvoMessageModelV1) SetAuthorName ¶

func (o *ConvoMessageModelV1) SetAuthorName(v string)

SetAuthorName gets a reference to the given string and assigns it to the AuthorName field.

func (*ConvoMessageModelV1) SetContent ¶

func (o *ConvoMessageModelV1) SetContent(v string)

SetContent gets a reference to the given string and assigns it to the Content field.

func (*ConvoMessageModelV1) SetConvoId ¶

func (o *ConvoMessageModelV1) SetConvoId(v int64)

SetConvoId gets a reference to the given int64 and assigns it to the ConvoId field.

func (*ConvoMessageModelV1) SetIsAdmin ¶

func (o *ConvoMessageModelV1) SetIsAdmin(v bool)

SetIsAdmin gets a reference to the given bool and assigns it to the IsAdmin field.

func (*ConvoMessageModelV1) SetLastEdit ¶

func (o *ConvoMessageModelV1) SetLastEdit(v TimeV1)

SetLastEdit gets a reference to the given TimeV1 and assigns it to the LastEdit field.

func (*ConvoMessageModelV1) SetMessageId ¶

func (o *ConvoMessageModelV1) SetMessageId(v int64)

SetMessageId gets a reference to the given int64 and assigns it to the MessageId field.

func (*ConvoMessageModelV1) SetTimeAdded ¶

func (o *ConvoMessageModelV1) SetTimeAdded(v TimeV1)

SetTimeAdded gets a reference to the given TimeV1 and assigns it to the TimeAdded field.

func (ConvoMessageModelV1) ToMap ¶

func (o ConvoMessageModelV1) ToMap() (map[string]interface{}, error)

type ConvoMessageSearchRequestV1 ¶

type ConvoMessageSearchRequestV1 struct {
	Search  *string `json:"search,omitempty"`
	AddedBy *int64  `json:"added_by,omitempty"`
	Page    *int64  `json:"page,omitempty"`
	Perpage *int64  `json:"perpage,omitempty"`
}

ConvoMessageSearchRequestV1 struct for ConvoMessageSearchRequestV1

func NewConvoMessageSearchRequestV1 ¶

func NewConvoMessageSearchRequestV1() *ConvoMessageSearchRequestV1

NewConvoMessageSearchRequestV1 instantiates a new ConvoMessageSearchRequestV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConvoMessageSearchRequestV1WithDefaults ¶

func NewConvoMessageSearchRequestV1WithDefaults() *ConvoMessageSearchRequestV1

NewConvoMessageSearchRequestV1WithDefaults instantiates a new ConvoMessageSearchRequestV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConvoMessageSearchRequestV1) GetAddedBy ¶

func (o *ConvoMessageSearchRequestV1) GetAddedBy() int64

GetAddedBy returns the AddedBy field value if set, zero value otherwise.

func (*ConvoMessageSearchRequestV1) GetAddedByOk ¶

func (o *ConvoMessageSearchRequestV1) GetAddedByOk() (*int64, bool)

GetAddedByOk returns a tuple with the AddedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoMessageSearchRequestV1) GetPage ¶

func (o *ConvoMessageSearchRequestV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*ConvoMessageSearchRequestV1) GetPageOk ¶

func (o *ConvoMessageSearchRequestV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoMessageSearchRequestV1) GetPerpage ¶

func (o *ConvoMessageSearchRequestV1) GetPerpage() int64

GetPerpage returns the Perpage field value if set, zero value otherwise.

func (*ConvoMessageSearchRequestV1) GetPerpageOk ¶

func (o *ConvoMessageSearchRequestV1) GetPerpageOk() (*int64, bool)

GetPerpageOk returns a tuple with the Perpage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoMessageSearchRequestV1) GetSearch ¶

func (o *ConvoMessageSearchRequestV1) GetSearch() string

GetSearch returns the Search field value if set, zero value otherwise.

func (*ConvoMessageSearchRequestV1) GetSearchOk ¶

func (o *ConvoMessageSearchRequestV1) GetSearchOk() (*string, bool)

GetSearchOk returns a tuple with the Search field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoMessageSearchRequestV1) HasAddedBy ¶

func (o *ConvoMessageSearchRequestV1) HasAddedBy() bool

HasAddedBy returns a boolean if a field has been set.

func (*ConvoMessageSearchRequestV1) HasPage ¶

func (o *ConvoMessageSearchRequestV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*ConvoMessageSearchRequestV1) HasPerpage ¶

func (o *ConvoMessageSearchRequestV1) HasPerpage() bool

HasPerpage returns a boolean if a field has been set.

func (*ConvoMessageSearchRequestV1) HasSearch ¶

func (o *ConvoMessageSearchRequestV1) HasSearch() bool

HasSearch returns a boolean if a field has been set.

func (ConvoMessageSearchRequestV1) MarshalJSON ¶

func (o ConvoMessageSearchRequestV1) MarshalJSON() ([]byte, error)

func (*ConvoMessageSearchRequestV1) SetAddedBy ¶

func (o *ConvoMessageSearchRequestV1) SetAddedBy(v int64)

SetAddedBy gets a reference to the given int64 and assigns it to the AddedBy field.

func (*ConvoMessageSearchRequestV1) SetPage ¶

func (o *ConvoMessageSearchRequestV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*ConvoMessageSearchRequestV1) SetPerpage ¶

func (o *ConvoMessageSearchRequestV1) SetPerpage(v int64)

SetPerpage gets a reference to the given int64 and assigns it to the Perpage field.

func (*ConvoMessageSearchRequestV1) SetSearch ¶

func (o *ConvoMessageSearchRequestV1) SetSearch(v string)

SetSearch gets a reference to the given string and assigns it to the Search field.

func (ConvoMessageSearchRequestV1) ToMap ¶

func (o ConvoMessageSearchRequestV1) ToMap() (map[string]interface{}, error)

type ConvoMessageSearchResponseV1 ¶

type ConvoMessageSearchResponseV1 struct {
	TotalHits *int64                                `json:"total_hits,omitempty"`
	Page      *int64                                `json:"page,omitempty"`
	PerPage   *int64                                `json:"per_page,omitempty"`
	Results   []ConvoMessageSearchResponseV1Results `json:"results,omitempty"`
}

ConvoMessageSearchResponseV1 struct for ConvoMessageSearchResponseV1

func NewConvoMessageSearchResponseV1 ¶

func NewConvoMessageSearchResponseV1() *ConvoMessageSearchResponseV1

NewConvoMessageSearchResponseV1 instantiates a new ConvoMessageSearchResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConvoMessageSearchResponseV1WithDefaults ¶

func NewConvoMessageSearchResponseV1WithDefaults() *ConvoMessageSearchResponseV1

NewConvoMessageSearchResponseV1WithDefaults instantiates a new ConvoMessageSearchResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConvoMessageSearchResponseV1) GetPage ¶

func (o *ConvoMessageSearchResponseV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*ConvoMessageSearchResponseV1) GetPageOk ¶

func (o *ConvoMessageSearchResponseV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoMessageSearchResponseV1) GetPerPage ¶

func (o *ConvoMessageSearchResponseV1) GetPerPage() int64

GetPerPage returns the PerPage field value if set, zero value otherwise.

func (*ConvoMessageSearchResponseV1) GetPerPageOk ¶

func (o *ConvoMessageSearchResponseV1) GetPerPageOk() (*int64, bool)

GetPerPageOk returns a tuple with the PerPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoMessageSearchResponseV1) GetResults ¶

GetResults returns the Results field value if set, zero value otherwise.

func (*ConvoMessageSearchResponseV1) GetResultsOk ¶

GetResultsOk returns a tuple with the Results field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoMessageSearchResponseV1) GetTotalHits ¶

func (o *ConvoMessageSearchResponseV1) GetTotalHits() int64

GetTotalHits returns the TotalHits field value if set, zero value otherwise.

func (*ConvoMessageSearchResponseV1) GetTotalHitsOk ¶

func (o *ConvoMessageSearchResponseV1) GetTotalHitsOk() (*int64, bool)

GetTotalHitsOk returns a tuple with the TotalHits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoMessageSearchResponseV1) HasPage ¶

func (o *ConvoMessageSearchResponseV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*ConvoMessageSearchResponseV1) HasPerPage ¶

func (o *ConvoMessageSearchResponseV1) HasPerPage() bool

HasPerPage returns a boolean if a field has been set.

func (*ConvoMessageSearchResponseV1) HasResults ¶

func (o *ConvoMessageSearchResponseV1) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*ConvoMessageSearchResponseV1) HasTotalHits ¶

func (o *ConvoMessageSearchResponseV1) HasTotalHits() bool

HasTotalHits returns a boolean if a field has been set.

func (ConvoMessageSearchResponseV1) MarshalJSON ¶

func (o ConvoMessageSearchResponseV1) MarshalJSON() ([]byte, error)

func (*ConvoMessageSearchResponseV1) SetPage ¶

func (o *ConvoMessageSearchResponseV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*ConvoMessageSearchResponseV1) SetPerPage ¶

func (o *ConvoMessageSearchResponseV1) SetPerPage(v int64)

SetPerPage gets a reference to the given int64 and assigns it to the PerPage field.

func (*ConvoMessageSearchResponseV1) SetResults ¶

SetResults gets a reference to the given []ConvoMessageSearchResponseV1Results and assigns it to the Results field.

func (*ConvoMessageSearchResponseV1) SetTotalHits ¶

func (o *ConvoMessageSearchResponseV1) SetTotalHits(v int64)

SetTotalHits gets a reference to the given int64 and assigns it to the TotalHits field.

func (ConvoMessageSearchResponseV1) ToMap ¶

func (o ConvoMessageSearchResponseV1) ToMap() (map[string]interface{}, error)

type ConvoMessageSearchResponseV1Results ¶

type ConvoMessageSearchResponseV1Results struct {
	Record   *ConvoMessageModelV1                         `json:"record,omitempty"`
	Metadata *ConvoMessageSearchResponseV1ResultsMetadata `json:"metadata,omitempty"`
}

ConvoMessageSearchResponseV1Results struct for ConvoMessageSearchResponseV1Results

func NewConvoMessageSearchResponseV1Results ¶

func NewConvoMessageSearchResponseV1Results() *ConvoMessageSearchResponseV1Results

NewConvoMessageSearchResponseV1Results instantiates a new ConvoMessageSearchResponseV1Results object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConvoMessageSearchResponseV1ResultsWithDefaults ¶

func NewConvoMessageSearchResponseV1ResultsWithDefaults() *ConvoMessageSearchResponseV1Results

NewConvoMessageSearchResponseV1ResultsWithDefaults instantiates a new ConvoMessageSearchResponseV1Results object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConvoMessageSearchResponseV1Results) GetMetadata ¶

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ConvoMessageSearchResponseV1Results) GetMetadataOk ¶

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoMessageSearchResponseV1Results) GetRecord ¶

GetRecord returns the Record field value if set, zero value otherwise.

func (*ConvoMessageSearchResponseV1Results) GetRecordOk ¶

GetRecordOk returns a tuple with the Record field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoMessageSearchResponseV1Results) HasMetadata ¶

func (o *ConvoMessageSearchResponseV1Results) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ConvoMessageSearchResponseV1Results) HasRecord ¶

HasRecord returns a boolean if a field has been set.

func (ConvoMessageSearchResponseV1Results) MarshalJSON ¶

func (o ConvoMessageSearchResponseV1Results) MarshalJSON() ([]byte, error)

func (*ConvoMessageSearchResponseV1Results) SetMetadata ¶

SetMetadata gets a reference to the given ConvoMessageSearchResponseV1ResultsMetadata and assigns it to the Metadata field.

func (*ConvoMessageSearchResponseV1Results) SetRecord ¶

SetRecord gets a reference to the given ConvoMessageModelV1 and assigns it to the Record field.

func (ConvoMessageSearchResponseV1Results) ToMap ¶

func (o ConvoMessageSearchResponseV1Results) ToMap() (map[string]interface{}, error)

type ConvoMessageSearchResponseV1ResultsMetadata ¶

type ConvoMessageSearchResponseV1ResultsMetadata struct {
	UserIgnored *bool `json:"user_ignored,omitempty"`
}

ConvoMessageSearchResponseV1ResultsMetadata struct for ConvoMessageSearchResponseV1ResultsMetadata

func NewConvoMessageSearchResponseV1ResultsMetadata ¶

func NewConvoMessageSearchResponseV1ResultsMetadata() *ConvoMessageSearchResponseV1ResultsMetadata

NewConvoMessageSearchResponseV1ResultsMetadata instantiates a new ConvoMessageSearchResponseV1ResultsMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConvoMessageSearchResponseV1ResultsMetadataWithDefaults ¶

func NewConvoMessageSearchResponseV1ResultsMetadataWithDefaults() *ConvoMessageSearchResponseV1ResultsMetadata

NewConvoMessageSearchResponseV1ResultsMetadataWithDefaults instantiates a new ConvoMessageSearchResponseV1ResultsMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConvoMessageSearchResponseV1ResultsMetadata) GetUserIgnored ¶

GetUserIgnored returns the UserIgnored field value if set, zero value otherwise.

func (*ConvoMessageSearchResponseV1ResultsMetadata) GetUserIgnoredOk ¶

func (o *ConvoMessageSearchResponseV1ResultsMetadata) GetUserIgnoredOk() (*bool, bool)

GetUserIgnoredOk returns a tuple with the UserIgnored field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoMessageSearchResponseV1ResultsMetadata) HasUserIgnored ¶

HasUserIgnored returns a boolean if a field has been set.

func (ConvoMessageSearchResponseV1ResultsMetadata) MarshalJSON ¶

func (*ConvoMessageSearchResponseV1ResultsMetadata) SetUserIgnored ¶

SetUserIgnored gets a reference to the given bool and assigns it to the UserIgnored field.

func (ConvoMessageSearchResponseV1ResultsMetadata) ToMap ¶

func (o ConvoMessageSearchResponseV1ResultsMetadata) ToMap() (map[string]interface{}, error)

type ConvoModelAddV1 ¶

type ConvoModelAddV1 struct {
	Topic        *string                      `json:"topic,omitempty"`
	Participants []ConvoParticipantModelAddV1 `json:"participants,omitempty"`
	Message      *ConvoMessageModelUpdateV1   `json:"message,omitempty"`
}

ConvoModelAddV1 struct for ConvoModelAddV1

func NewConvoModelAddV1 ¶

func NewConvoModelAddV1() *ConvoModelAddV1

NewConvoModelAddV1 instantiates a new ConvoModelAddV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConvoModelAddV1WithDefaults ¶

func NewConvoModelAddV1WithDefaults() *ConvoModelAddV1

NewConvoModelAddV1WithDefaults instantiates a new ConvoModelAddV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConvoModelAddV1) GetMessage ¶

GetMessage returns the Message field value if set, zero value otherwise.

func (*ConvoModelAddV1) GetMessageOk ¶

func (o *ConvoModelAddV1) GetMessageOk() (*ConvoMessageModelUpdateV1, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoModelAddV1) GetParticipants ¶

func (o *ConvoModelAddV1) GetParticipants() []ConvoParticipantModelAddV1

GetParticipants returns the Participants field value if set, zero value otherwise.

func (*ConvoModelAddV1) GetParticipantsOk ¶

func (o *ConvoModelAddV1) GetParticipantsOk() ([]ConvoParticipantModelAddV1, bool)

GetParticipantsOk returns a tuple with the Participants field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoModelAddV1) GetTopic ¶

func (o *ConvoModelAddV1) GetTopic() string

GetTopic returns the Topic field value if set, zero value otherwise.

func (*ConvoModelAddV1) GetTopicOk ¶

func (o *ConvoModelAddV1) GetTopicOk() (*string, bool)

GetTopicOk returns a tuple with the Topic field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoModelAddV1) HasMessage ¶

func (o *ConvoModelAddV1) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ConvoModelAddV1) HasParticipants ¶

func (o *ConvoModelAddV1) HasParticipants() bool

HasParticipants returns a boolean if a field has been set.

func (*ConvoModelAddV1) HasTopic ¶

func (o *ConvoModelAddV1) HasTopic() bool

HasTopic returns a boolean if a field has been set.

func (ConvoModelAddV1) MarshalJSON ¶

func (o ConvoModelAddV1) MarshalJSON() ([]byte, error)

func (*ConvoModelAddV1) SetMessage ¶

func (o *ConvoModelAddV1) SetMessage(v ConvoMessageModelUpdateV1)

SetMessage gets a reference to the given ConvoMessageModelUpdateV1 and assigns it to the Message field.

func (*ConvoModelAddV1) SetParticipants ¶

func (o *ConvoModelAddV1) SetParticipants(v []ConvoParticipantModelAddV1)

SetParticipants gets a reference to the given []ConvoParticipantModelAddV1 and assigns it to the Participants field.

func (*ConvoModelAddV1) SetTopic ¶

func (o *ConvoModelAddV1) SetTopic(v string)

SetTopic gets a reference to the given string and assigns it to the Topic field.

func (ConvoModelAddV1) ToMap ¶

func (o ConvoModelAddV1) ToMap() (map[string]interface{}, error)

type ConvoModelUpdateV1 ¶

type ConvoModelUpdateV1 struct {
	Topic *string `json:"topic,omitempty"`
}

ConvoModelUpdateV1 struct for ConvoModelUpdateV1

func NewConvoModelUpdateV1 ¶

func NewConvoModelUpdateV1() *ConvoModelUpdateV1

NewConvoModelUpdateV1 instantiates a new ConvoModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConvoModelUpdateV1WithDefaults ¶

func NewConvoModelUpdateV1WithDefaults() *ConvoModelUpdateV1

NewConvoModelUpdateV1WithDefaults instantiates a new ConvoModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConvoModelUpdateV1) GetTopic ¶

func (o *ConvoModelUpdateV1) GetTopic() string

GetTopic returns the Topic field value if set, zero value otherwise.

func (*ConvoModelUpdateV1) GetTopicOk ¶

func (o *ConvoModelUpdateV1) GetTopicOk() (*string, bool)

GetTopicOk returns a tuple with the Topic field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoModelUpdateV1) HasTopic ¶

func (o *ConvoModelUpdateV1) HasTopic() bool

HasTopic returns a boolean if a field has been set.

func (ConvoModelUpdateV1) MarshalJSON ¶

func (o ConvoModelUpdateV1) MarshalJSON() ([]byte, error)

func (*ConvoModelUpdateV1) SetTopic ¶

func (o *ConvoModelUpdateV1) SetTopic(v string)

SetTopic gets a reference to the given string and assigns it to the Topic field.

func (ConvoModelUpdateV1) ToMap ¶

func (o ConvoModelUpdateV1) ToMap() (map[string]interface{}, error)

type ConvoModelV1 ¶

type ConvoModelV1 struct {
	ConvoId    *int64  `json:"convo_id,omitempty"`
	Topic      *string `json:"topic,omitempty"`
	AuthorId   *int64  `json:"author_id,omitempty"`
	AuthorName *string `json:"author_name,omitempty"`
	TimeAdded  *TimeV1 `json:"time_added,omitempty"`
	LastEdit   *TimeV1 `json:"last_edit,omitempty"`
}

ConvoModelV1 struct for ConvoModelV1

func NewConvoModelV1 ¶

func NewConvoModelV1() *ConvoModelV1

NewConvoModelV1 instantiates a new ConvoModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConvoModelV1WithDefaults ¶

func NewConvoModelV1WithDefaults() *ConvoModelV1

NewConvoModelV1WithDefaults instantiates a new ConvoModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConvoModelV1) GetAuthorId ¶

func (o *ConvoModelV1) GetAuthorId() int64

GetAuthorId returns the AuthorId field value if set, zero value otherwise.

func (*ConvoModelV1) GetAuthorIdOk ¶

func (o *ConvoModelV1) GetAuthorIdOk() (*int64, bool)

GetAuthorIdOk returns a tuple with the AuthorId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoModelV1) GetAuthorName ¶

func (o *ConvoModelV1) GetAuthorName() string

GetAuthorName returns the AuthorName field value if set, zero value otherwise.

func (*ConvoModelV1) GetAuthorNameOk ¶

func (o *ConvoModelV1) GetAuthorNameOk() (*string, bool)

GetAuthorNameOk returns a tuple with the AuthorName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoModelV1) GetConvoId ¶

func (o *ConvoModelV1) GetConvoId() int64

GetConvoId returns the ConvoId field value if set, zero value otherwise.

func (*ConvoModelV1) GetConvoIdOk ¶

func (o *ConvoModelV1) GetConvoIdOk() (*int64, bool)

GetConvoIdOk returns a tuple with the ConvoId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoModelV1) GetLastEdit ¶

func (o *ConvoModelV1) GetLastEdit() TimeV1

GetLastEdit returns the LastEdit field value if set, zero value otherwise.

func (*ConvoModelV1) GetLastEditOk ¶

func (o *ConvoModelV1) GetLastEditOk() (*TimeV1, bool)

GetLastEditOk returns a tuple with the LastEdit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoModelV1) GetTimeAdded ¶

func (o *ConvoModelV1) GetTimeAdded() TimeV1

GetTimeAdded returns the TimeAdded field value if set, zero value otherwise.

func (*ConvoModelV1) GetTimeAddedOk ¶

func (o *ConvoModelV1) GetTimeAddedOk() (*TimeV1, bool)

GetTimeAddedOk returns a tuple with the TimeAdded field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoModelV1) GetTopic ¶

func (o *ConvoModelV1) GetTopic() string

GetTopic returns the Topic field value if set, zero value otherwise.

func (*ConvoModelV1) GetTopicOk ¶

func (o *ConvoModelV1) GetTopicOk() (*string, bool)

GetTopicOk returns a tuple with the Topic field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoModelV1) HasAuthorId ¶

func (o *ConvoModelV1) HasAuthorId() bool

HasAuthorId returns a boolean if a field has been set.

func (*ConvoModelV1) HasAuthorName ¶

func (o *ConvoModelV1) HasAuthorName() bool

HasAuthorName returns a boolean if a field has been set.

func (*ConvoModelV1) HasConvoId ¶

func (o *ConvoModelV1) HasConvoId() bool

HasConvoId returns a boolean if a field has been set.

func (*ConvoModelV1) HasLastEdit ¶

func (o *ConvoModelV1) HasLastEdit() bool

HasLastEdit returns a boolean if a field has been set.

func (*ConvoModelV1) HasTimeAdded ¶

func (o *ConvoModelV1) HasTimeAdded() bool

HasTimeAdded returns a boolean if a field has been set.

func (*ConvoModelV1) HasTopic ¶

func (o *ConvoModelV1) HasTopic() bool

HasTopic returns a boolean if a field has been set.

func (ConvoModelV1) MarshalJSON ¶

func (o ConvoModelV1) MarshalJSON() ([]byte, error)

func (*ConvoModelV1) SetAuthorId ¶

func (o *ConvoModelV1) SetAuthorId(v int64)

SetAuthorId gets a reference to the given int64 and assigns it to the AuthorId field.

func (*ConvoModelV1) SetAuthorName ¶

func (o *ConvoModelV1) SetAuthorName(v string)

SetAuthorName gets a reference to the given string and assigns it to the AuthorName field.

func (*ConvoModelV1) SetConvoId ¶

func (o *ConvoModelV1) SetConvoId(v int64)

SetConvoId gets a reference to the given int64 and assigns it to the ConvoId field.

func (*ConvoModelV1) SetLastEdit ¶

func (o *ConvoModelV1) SetLastEdit(v TimeV1)

SetLastEdit gets a reference to the given TimeV1 and assigns it to the LastEdit field.

func (*ConvoModelV1) SetTimeAdded ¶

func (o *ConvoModelV1) SetTimeAdded(v TimeV1)

SetTimeAdded gets a reference to the given TimeV1 and assigns it to the TimeAdded field.

func (*ConvoModelV1) SetTopic ¶

func (o *ConvoModelV1) SetTopic(v string)

SetTopic gets a reference to the given string and assigns it to the Topic field.

func (ConvoModelV1) ToMap ¶

func (o ConvoModelV1) ToMap() (map[string]interface{}, error)

type ConvoParticipantModelAddV1 ¶

type ConvoParticipantModelAddV1 struct {
	To *string `json:"to,omitempty"`
}

ConvoParticipantModelAddV1 struct for ConvoParticipantModelAddV1

func NewConvoParticipantModelAddV1 ¶

func NewConvoParticipantModelAddV1() *ConvoParticipantModelAddV1

NewConvoParticipantModelAddV1 instantiates a new ConvoParticipantModelAddV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConvoParticipantModelAddV1WithDefaults ¶

func NewConvoParticipantModelAddV1WithDefaults() *ConvoParticipantModelAddV1

NewConvoParticipantModelAddV1WithDefaults instantiates a new ConvoParticipantModelAddV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConvoParticipantModelAddV1) GetTo ¶

GetTo returns the To field value if set, zero value otherwise.

func (*ConvoParticipantModelAddV1) GetToOk ¶

func (o *ConvoParticipantModelAddV1) GetToOk() (*string, bool)

GetToOk returns a tuple with the To field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoParticipantModelAddV1) HasTo ¶

func (o *ConvoParticipantModelAddV1) HasTo() bool

HasTo returns a boolean if a field has been set.

func (ConvoParticipantModelAddV1) MarshalJSON ¶

func (o ConvoParticipantModelAddV1) MarshalJSON() ([]byte, error)

func (*ConvoParticipantModelAddV1) SetTo ¶

func (o *ConvoParticipantModelAddV1) SetTo(v string)

SetTo gets a reference to the given string and assigns it to the To field.

func (ConvoParticipantModelAddV1) ToMap ¶

func (o ConvoParticipantModelAddV1) ToMap() (map[string]interface{}, error)

type ConvoParticipantModelV1 ¶

type ConvoParticipantModelV1 struct {
	UserId       *int64  `json:"user_id,omitempty"`
	Username     *string `json:"username,omitempty"`
	IsAdmin      *bool   `json:"is_admin,omitempty"`
	TimeAdded    *TimeV1 `json:"time_added,omitempty"`
	LastTimeSeen *TimeV1 `json:"last_time_seen,omitempty"`
	Joined       *bool   `json:"joined,omitempty"`
}

ConvoParticipantModelV1 struct for ConvoParticipantModelV1

func NewConvoParticipantModelV1 ¶

func NewConvoParticipantModelV1() *ConvoParticipantModelV1

NewConvoParticipantModelV1 instantiates a new ConvoParticipantModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConvoParticipantModelV1WithDefaults ¶

func NewConvoParticipantModelV1WithDefaults() *ConvoParticipantModelV1

NewConvoParticipantModelV1WithDefaults instantiates a new ConvoParticipantModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConvoParticipantModelV1) GetIsAdmin ¶

func (o *ConvoParticipantModelV1) GetIsAdmin() bool

GetIsAdmin returns the IsAdmin field value if set, zero value otherwise.

func (*ConvoParticipantModelV1) GetIsAdminOk ¶

func (o *ConvoParticipantModelV1) GetIsAdminOk() (*bool, bool)

GetIsAdminOk returns a tuple with the IsAdmin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoParticipantModelV1) GetJoined ¶

func (o *ConvoParticipantModelV1) GetJoined() bool

GetJoined returns the Joined field value if set, zero value otherwise.

func (*ConvoParticipantModelV1) GetJoinedOk ¶

func (o *ConvoParticipantModelV1) GetJoinedOk() (*bool, bool)

GetJoinedOk returns a tuple with the Joined field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoParticipantModelV1) GetLastTimeSeen ¶

func (o *ConvoParticipantModelV1) GetLastTimeSeen() TimeV1

GetLastTimeSeen returns the LastTimeSeen field value if set, zero value otherwise.

func (*ConvoParticipantModelV1) GetLastTimeSeenOk ¶

func (o *ConvoParticipantModelV1) GetLastTimeSeenOk() (*TimeV1, bool)

GetLastTimeSeenOk returns a tuple with the LastTimeSeen field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoParticipantModelV1) GetTimeAdded ¶

func (o *ConvoParticipantModelV1) GetTimeAdded() TimeV1

GetTimeAdded returns the TimeAdded field value if set, zero value otherwise.

func (*ConvoParticipantModelV1) GetTimeAddedOk ¶

func (o *ConvoParticipantModelV1) GetTimeAddedOk() (*TimeV1, bool)

GetTimeAddedOk returns a tuple with the TimeAdded field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoParticipantModelV1) GetUserId ¶

func (o *ConvoParticipantModelV1) GetUserId() int64

GetUserId returns the UserId field value if set, zero value otherwise.

func (*ConvoParticipantModelV1) GetUserIdOk ¶

func (o *ConvoParticipantModelV1) GetUserIdOk() (*int64, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoParticipantModelV1) GetUsername ¶

func (o *ConvoParticipantModelV1) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*ConvoParticipantModelV1) GetUsernameOk ¶

func (o *ConvoParticipantModelV1) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoParticipantModelV1) HasIsAdmin ¶

func (o *ConvoParticipantModelV1) HasIsAdmin() bool

HasIsAdmin returns a boolean if a field has been set.

func (*ConvoParticipantModelV1) HasJoined ¶

func (o *ConvoParticipantModelV1) HasJoined() bool

HasJoined returns a boolean if a field has been set.

func (*ConvoParticipantModelV1) HasLastTimeSeen ¶

func (o *ConvoParticipantModelV1) HasLastTimeSeen() bool

HasLastTimeSeen returns a boolean if a field has been set.

func (*ConvoParticipantModelV1) HasTimeAdded ¶

func (o *ConvoParticipantModelV1) HasTimeAdded() bool

HasTimeAdded returns a boolean if a field has been set.

func (*ConvoParticipantModelV1) HasUserId ¶

func (o *ConvoParticipantModelV1) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (*ConvoParticipantModelV1) HasUsername ¶

func (o *ConvoParticipantModelV1) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (ConvoParticipantModelV1) MarshalJSON ¶

func (o ConvoParticipantModelV1) MarshalJSON() ([]byte, error)

func (*ConvoParticipantModelV1) SetIsAdmin ¶

func (o *ConvoParticipantModelV1) SetIsAdmin(v bool)

SetIsAdmin gets a reference to the given bool and assigns it to the IsAdmin field.

func (*ConvoParticipantModelV1) SetJoined ¶

func (o *ConvoParticipantModelV1) SetJoined(v bool)

SetJoined gets a reference to the given bool and assigns it to the Joined field.

func (*ConvoParticipantModelV1) SetLastTimeSeen ¶

func (o *ConvoParticipantModelV1) SetLastTimeSeen(v TimeV1)

SetLastTimeSeen gets a reference to the given TimeV1 and assigns it to the LastTimeSeen field.

func (*ConvoParticipantModelV1) SetTimeAdded ¶

func (o *ConvoParticipantModelV1) SetTimeAdded(v TimeV1)

SetTimeAdded gets a reference to the given TimeV1 and assigns it to the TimeAdded field.

func (*ConvoParticipantModelV1) SetUserId ¶

func (o *ConvoParticipantModelV1) SetUserId(v int64)

SetUserId gets a reference to the given int64 and assigns it to the UserId field.

func (*ConvoParticipantModelV1) SetUsername ¶

func (o *ConvoParticipantModelV1) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (ConvoParticipantModelV1) ToMap ¶

func (o ConvoParticipantModelV1) ToMap() (map[string]interface{}, error)

type ConvoSearchRequestV1 ¶

type ConvoSearchRequestV1 struct {
	Search  *string `json:"search,omitempty"`
	Page    *int64  `json:"page,omitempty"`
	Perpage *int64  `json:"perpage,omitempty"`
}

ConvoSearchRequestV1 struct for ConvoSearchRequestV1

func NewConvoSearchRequestV1 ¶

func NewConvoSearchRequestV1() *ConvoSearchRequestV1

NewConvoSearchRequestV1 instantiates a new ConvoSearchRequestV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConvoSearchRequestV1WithDefaults ¶

func NewConvoSearchRequestV1WithDefaults() *ConvoSearchRequestV1

NewConvoSearchRequestV1WithDefaults instantiates a new ConvoSearchRequestV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConvoSearchRequestV1) GetPage ¶

func (o *ConvoSearchRequestV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*ConvoSearchRequestV1) GetPageOk ¶

func (o *ConvoSearchRequestV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoSearchRequestV1) GetPerpage ¶

func (o *ConvoSearchRequestV1) GetPerpage() int64

GetPerpage returns the Perpage field value if set, zero value otherwise.

func (*ConvoSearchRequestV1) GetPerpageOk ¶

func (o *ConvoSearchRequestV1) GetPerpageOk() (*int64, bool)

GetPerpageOk returns a tuple with the Perpage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoSearchRequestV1) GetSearch ¶

func (o *ConvoSearchRequestV1) GetSearch() string

GetSearch returns the Search field value if set, zero value otherwise.

func (*ConvoSearchRequestV1) GetSearchOk ¶

func (o *ConvoSearchRequestV1) GetSearchOk() (*string, bool)

GetSearchOk returns a tuple with the Search field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoSearchRequestV1) HasPage ¶

func (o *ConvoSearchRequestV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*ConvoSearchRequestV1) HasPerpage ¶

func (o *ConvoSearchRequestV1) HasPerpage() bool

HasPerpage returns a boolean if a field has been set.

func (*ConvoSearchRequestV1) HasSearch ¶

func (o *ConvoSearchRequestV1) HasSearch() bool

HasSearch returns a boolean if a field has been set.

func (ConvoSearchRequestV1) MarshalJSON ¶

func (o ConvoSearchRequestV1) MarshalJSON() ([]byte, error)

func (*ConvoSearchRequestV1) SetPage ¶

func (o *ConvoSearchRequestV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*ConvoSearchRequestV1) SetPerpage ¶

func (o *ConvoSearchRequestV1) SetPerpage(v int64)

SetPerpage gets a reference to the given int64 and assigns it to the Perpage field.

func (*ConvoSearchRequestV1) SetSearch ¶

func (o *ConvoSearchRequestV1) SetSearch(v string)

SetSearch gets a reference to the given string and assigns it to the Search field.

func (ConvoSearchRequestV1) ToMap ¶

func (o ConvoSearchRequestV1) ToMap() (map[string]interface{}, error)

type ConvoSearchResponseV1 ¶

type ConvoSearchResponseV1 struct {
	TotalHits *int64                         `json:"total_hits,omitempty"`
	Page      *int64                         `json:"page,omitempty"`
	PerPage   *int64                         `json:"per_page,omitempty"`
	Results   []ConvoSearchResponseV1Results `json:"results,omitempty"`
}

ConvoSearchResponseV1 struct for ConvoSearchResponseV1

func NewConvoSearchResponseV1 ¶

func NewConvoSearchResponseV1() *ConvoSearchResponseV1

NewConvoSearchResponseV1 instantiates a new ConvoSearchResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConvoSearchResponseV1WithDefaults ¶

func NewConvoSearchResponseV1WithDefaults() *ConvoSearchResponseV1

NewConvoSearchResponseV1WithDefaults instantiates a new ConvoSearchResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConvoSearchResponseV1) GetPage ¶

func (o *ConvoSearchResponseV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*ConvoSearchResponseV1) GetPageOk ¶

func (o *ConvoSearchResponseV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoSearchResponseV1) GetPerPage ¶

func (o *ConvoSearchResponseV1) GetPerPage() int64

GetPerPage returns the PerPage field value if set, zero value otherwise.

func (*ConvoSearchResponseV1) GetPerPageOk ¶

func (o *ConvoSearchResponseV1) GetPerPageOk() (*int64, bool)

GetPerPageOk returns a tuple with the PerPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoSearchResponseV1) GetResults ¶

GetResults returns the Results field value if set, zero value otherwise.

func (*ConvoSearchResponseV1) GetResultsOk ¶

GetResultsOk returns a tuple with the Results field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoSearchResponseV1) GetTotalHits ¶

func (o *ConvoSearchResponseV1) GetTotalHits() int64

GetTotalHits returns the TotalHits field value if set, zero value otherwise.

func (*ConvoSearchResponseV1) GetTotalHitsOk ¶

func (o *ConvoSearchResponseV1) GetTotalHitsOk() (*int64, bool)

GetTotalHitsOk returns a tuple with the TotalHits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoSearchResponseV1) HasPage ¶

func (o *ConvoSearchResponseV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*ConvoSearchResponseV1) HasPerPage ¶

func (o *ConvoSearchResponseV1) HasPerPage() bool

HasPerPage returns a boolean if a field has been set.

func (*ConvoSearchResponseV1) HasResults ¶

func (o *ConvoSearchResponseV1) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*ConvoSearchResponseV1) HasTotalHits ¶

func (o *ConvoSearchResponseV1) HasTotalHits() bool

HasTotalHits returns a boolean if a field has been set.

func (ConvoSearchResponseV1) MarshalJSON ¶

func (o ConvoSearchResponseV1) MarshalJSON() ([]byte, error)

func (*ConvoSearchResponseV1) SetPage ¶

func (o *ConvoSearchResponseV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*ConvoSearchResponseV1) SetPerPage ¶

func (o *ConvoSearchResponseV1) SetPerPage(v int64)

SetPerPage gets a reference to the given int64 and assigns it to the PerPage field.

func (*ConvoSearchResponseV1) SetResults ¶

SetResults gets a reference to the given []ConvoSearchResponseV1Results and assigns it to the Results field.

func (*ConvoSearchResponseV1) SetTotalHits ¶

func (o *ConvoSearchResponseV1) SetTotalHits(v int64)

SetTotalHits gets a reference to the given int64 and assigns it to the TotalHits field.

func (ConvoSearchResponseV1) ToMap ¶

func (o ConvoSearchResponseV1) ToMap() (map[string]interface{}, error)

type ConvoSearchResponseV1Results ¶

type ConvoSearchResponseV1Results struct {
	Record   *ConvoModelV1                         `json:"record,omitempty"`
	Metadata *ConvoSearchResponseV1ResultsMetadata `json:"metadata,omitempty"`
}

ConvoSearchResponseV1Results struct for ConvoSearchResponseV1Results

func NewConvoSearchResponseV1Results ¶

func NewConvoSearchResponseV1Results() *ConvoSearchResponseV1Results

NewConvoSearchResponseV1Results instantiates a new ConvoSearchResponseV1Results object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConvoSearchResponseV1ResultsWithDefaults ¶

func NewConvoSearchResponseV1ResultsWithDefaults() *ConvoSearchResponseV1Results

NewConvoSearchResponseV1ResultsWithDefaults instantiates a new ConvoSearchResponseV1Results object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConvoSearchResponseV1Results) GetMetadata ¶

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ConvoSearchResponseV1Results) GetMetadataOk ¶

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoSearchResponseV1Results) GetRecord ¶

GetRecord returns the Record field value if set, zero value otherwise.

func (*ConvoSearchResponseV1Results) GetRecordOk ¶

func (o *ConvoSearchResponseV1Results) GetRecordOk() (*ConvoModelV1, bool)

GetRecordOk returns a tuple with the Record field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoSearchResponseV1Results) HasMetadata ¶

func (o *ConvoSearchResponseV1Results) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ConvoSearchResponseV1Results) HasRecord ¶

func (o *ConvoSearchResponseV1Results) HasRecord() bool

HasRecord returns a boolean if a field has been set.

func (ConvoSearchResponseV1Results) MarshalJSON ¶

func (o ConvoSearchResponseV1Results) MarshalJSON() ([]byte, error)

func (*ConvoSearchResponseV1Results) SetMetadata ¶

SetMetadata gets a reference to the given ConvoSearchResponseV1ResultsMetadata and assigns it to the Metadata field.

func (*ConvoSearchResponseV1Results) SetRecord ¶

SetRecord gets a reference to the given ConvoModelV1 and assigns it to the Record field.

func (ConvoSearchResponseV1Results) ToMap ¶

func (o ConvoSearchResponseV1Results) ToMap() (map[string]interface{}, error)

type ConvoSearchResponseV1ResultsMetadata ¶

type ConvoSearchResponseV1ResultsMetadata struct {
	Message     *ConvoMessageModelV1     `json:"message,omitempty"`
	Participant *ConvoParticipantModelV1 `json:"participant,omitempty"`
}

ConvoSearchResponseV1ResultsMetadata struct for ConvoSearchResponseV1ResultsMetadata

func NewConvoSearchResponseV1ResultsMetadata ¶

func NewConvoSearchResponseV1ResultsMetadata() *ConvoSearchResponseV1ResultsMetadata

NewConvoSearchResponseV1ResultsMetadata instantiates a new ConvoSearchResponseV1ResultsMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConvoSearchResponseV1ResultsMetadataWithDefaults ¶

func NewConvoSearchResponseV1ResultsMetadataWithDefaults() *ConvoSearchResponseV1ResultsMetadata

NewConvoSearchResponseV1ResultsMetadataWithDefaults instantiates a new ConvoSearchResponseV1ResultsMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConvoSearchResponseV1ResultsMetadata) GetMessage ¶

GetMessage returns the Message field value if set, zero value otherwise.

func (*ConvoSearchResponseV1ResultsMetadata) GetMessageOk ¶

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoSearchResponseV1ResultsMetadata) GetParticipant ¶

GetParticipant returns the Participant field value if set, zero value otherwise.

func (*ConvoSearchResponseV1ResultsMetadata) GetParticipantOk ¶

GetParticipantOk returns a tuple with the Participant field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoSearchResponseV1ResultsMetadata) HasMessage ¶

HasMessage returns a boolean if a field has been set.

func (*ConvoSearchResponseV1ResultsMetadata) HasParticipant ¶

func (o *ConvoSearchResponseV1ResultsMetadata) HasParticipant() bool

HasParticipant returns a boolean if a field has been set.

func (ConvoSearchResponseV1ResultsMetadata) MarshalJSON ¶

func (o ConvoSearchResponseV1ResultsMetadata) MarshalJSON() ([]byte, error)

func (*ConvoSearchResponseV1ResultsMetadata) SetMessage ¶

SetMessage gets a reference to the given ConvoMessageModelV1 and assigns it to the Message field.

func (*ConvoSearchResponseV1ResultsMetadata) SetParticipant ¶

SetParticipant gets a reference to the given ConvoParticipantModelV1 and assigns it to the Participant field.

func (ConvoSearchResponseV1ResultsMetadata) ToMap ¶

func (o ConvoSearchResponseV1ResultsMetadata) ToMap() (map[string]interface{}, error)

type ConvoUserIgnoreModelV1 ¶

type ConvoUserIgnoreModelV1 struct {
	UserIgnored *bool `json:"user_ignored,omitempty"`
}

ConvoUserIgnoreModelV1 struct for ConvoUserIgnoreModelV1

func NewConvoUserIgnoreModelV1 ¶

func NewConvoUserIgnoreModelV1() *ConvoUserIgnoreModelV1

NewConvoUserIgnoreModelV1 instantiates a new ConvoUserIgnoreModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConvoUserIgnoreModelV1WithDefaults ¶

func NewConvoUserIgnoreModelV1WithDefaults() *ConvoUserIgnoreModelV1

NewConvoUserIgnoreModelV1WithDefaults instantiates a new ConvoUserIgnoreModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConvoUserIgnoreModelV1) GetUserIgnored ¶

func (o *ConvoUserIgnoreModelV1) GetUserIgnored() bool

GetUserIgnored returns the UserIgnored field value if set, zero value otherwise.

func (*ConvoUserIgnoreModelV1) GetUserIgnoredOk ¶

func (o *ConvoUserIgnoreModelV1) GetUserIgnoredOk() (*bool, bool)

GetUserIgnoredOk returns a tuple with the UserIgnored field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConvoUserIgnoreModelV1) HasUserIgnored ¶

func (o *ConvoUserIgnoreModelV1) HasUserIgnored() bool

HasUserIgnored returns a boolean if a field has been set.

func (ConvoUserIgnoreModelV1) MarshalJSON ¶

func (o ConvoUserIgnoreModelV1) MarshalJSON() ([]byte, error)

func (*ConvoUserIgnoreModelV1) SetUserIgnored ¶

func (o *ConvoUserIgnoreModelV1) SetUserIgnored(v bool)

SetUserIgnored gets a reference to the given bool and assigns it to the UserIgnored field.

func (ConvoUserIgnoreModelV1) ToMap ¶

func (o ConvoUserIgnoreModelV1) ToMap() (map[string]interface{}, error)

type FaqAPIService ¶

type FaqAPIService service

FaqAPIService FaqAPI service

func (*FaqAPIService) AddFaqCategory ¶

func (a *FaqAPIService) AddFaqCategory(ctx context.Context) ApiAddFaqCategoryRequest

AddFaqCategory add a faq category

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAddFaqCategoryRequest

func (*FaqAPIService) AddFaqCategoryExecute ¶

func (a *FaqAPIService) AddFaqCategoryExecute(r ApiAddFaqCategoryRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*FaqAPIService) AddFaqQuestion ¶

func (a *FaqAPIService) AddFaqQuestion(ctx context.Context, categoryId int64) ApiAddFaqQuestionRequest

AddFaqQuestion add a faq question

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param categoryId id of category to add question to
@return ApiAddFaqQuestionRequest

func (*FaqAPIService) AddFaqQuestionExecute ¶

func (a *FaqAPIService) AddFaqQuestionExecute(r ApiAddFaqQuestionRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*FaqAPIService) DeleteFaqCategory ¶

func (a *FaqAPIService) DeleteFaqCategory(ctx context.Context, categoryId int64) ApiDeleteFaqCategoryRequest

DeleteFaqCategory delete a faq category

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param categoryId id of faq category
@return ApiDeleteFaqCategoryRequest

func (*FaqAPIService) DeleteFaqCategoryExecute ¶

func (a *FaqAPIService) DeleteFaqCategoryExecute(r ApiDeleteFaqCategoryRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*FaqAPIService) DeleteFaqQuestion ¶

func (a *FaqAPIService) DeleteFaqQuestion(ctx context.Context, categoryId int64, questionId int64) ApiDeleteFaqQuestionRequest

DeleteFaqQuestion delete an faq

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param categoryId Faq category id
@param questionId Faq question id
@return ApiDeleteFaqQuestionRequest

func (*FaqAPIService) DeleteFaqQuestionExecute ¶

func (a *FaqAPIService) DeleteFaqQuestionExecute(r ApiDeleteFaqQuestionRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*FaqAPIService) ReorderFaq ¶

ReorderFaq reorder faq

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiReorderFaqRequest

func (*FaqAPIService) ReorderFaqExecute ¶

func (a *FaqAPIService) ReorderFaqExecute(r ApiReorderFaqRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*FaqAPIService) RetrieveAllFaqCategoriesAndQuestions ¶

func (a *FaqAPIService) RetrieveAllFaqCategoriesAndQuestions(ctx context.Context) ApiRetrieveAllFaqCategoriesAndQuestionsRequest

RetrieveAllFaqCategoriesAndQuestions retrieve all categories and questions

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiRetrieveAllFaqCategoriesAndQuestionsRequest

func (*FaqAPIService) RetrieveAllFaqCategoriesAndQuestionsExecute ¶

func (a *FaqAPIService) RetrieveAllFaqCategoriesAndQuestionsExecute(r ApiRetrieveAllFaqCategoriesAndQuestionsRequest) ([]FaqCategoryQuestionsModelV1, *http.Response, error)

Execute executes the request

@return []FaqCategoryQuestionsModelV1

func (*FaqAPIService) RetrieveAllFaqCategoryQuestions ¶

func (a *FaqAPIService) RetrieveAllFaqCategoryQuestions(ctx context.Context, categoryId int64) ApiRetrieveAllFaqCategoryQuestionsRequest

RetrieveAllFaqCategoryQuestions retrieve all quesitons for a category

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param categoryId Faq category id
@return ApiRetrieveAllFaqCategoryQuestionsRequest

func (*FaqAPIService) RetrieveAllFaqCategoryQuestionsExecute ¶

func (a *FaqAPIService) RetrieveAllFaqCategoryQuestionsExecute(r ApiRetrieveAllFaqCategoryQuestionsRequest) ([]FaqQuestionModelV1, *http.Response, error)

Execute executes the request

@return []FaqQuestionModelV1

func (*FaqAPIService) RetrieveFaqCategory ¶

func (a *FaqAPIService) RetrieveFaqCategory(ctx context.Context, categoryId int64) ApiRetrieveFaqCategoryRequest

RetrieveFaqCategory get a specific category

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param categoryId Faq category id
@return ApiRetrieveFaqCategoryRequest

func (*FaqAPIService) RetrieveFaqCategoryExecute ¶

func (a *FaqAPIService) RetrieveFaqCategoryExecute(r ApiRetrieveFaqCategoryRequest) (*FaqCategoryModelV1, *http.Response, error)

Execute executes the request

@return FaqCategoryModelV1

func (*FaqAPIService) RetrieveFaqQuestion ¶

func (a *FaqAPIService) RetrieveFaqQuestion(ctx context.Context, categoryId int64, questionId int64) ApiRetrieveFaqQuestionRequest

RetrieveFaqQuestion get a specific question for a category

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param categoryId Faq category id
@param questionId Faq question id
@return ApiRetrieveFaqQuestionRequest

func (*FaqAPIService) RetrieveFaqQuestionExecute ¶

func (a *FaqAPIService) RetrieveFaqQuestionExecute(r ApiRetrieveFaqQuestionRequest) (*FaqQuestionModelV1, *http.Response, error)

Execute executes the request

@return FaqQuestionModelV1

func (*FaqAPIService) UpdateFaqCategory ¶

func (a *FaqAPIService) UpdateFaqCategory(ctx context.Context, categoryId int64) ApiUpdateFaqCategoryRequest

UpdateFaqCategory update a faq category

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param categoryId id of faq category
@return ApiUpdateFaqCategoryRequest

func (*FaqAPIService) UpdateFaqCategoryExecute ¶

func (a *FaqAPIService) UpdateFaqCategoryExecute(r ApiUpdateFaqCategoryRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*FaqAPIService) UpdateFaqQuestion ¶

func (a *FaqAPIService) UpdateFaqQuestion(ctx context.Context, categoryId int64, questionId int64) ApiUpdateFaqQuestionRequest

UpdateFaqQuestion update a faq question

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param categoryId Faq category id
@param questionId Faq question id
@return ApiUpdateFaqQuestionRequest

func (*FaqAPIService) UpdateFaqQuestionExecute ¶

func (a *FaqAPIService) UpdateFaqQuestionExecute(r ApiUpdateFaqQuestionRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

type FaqCategoryModelUpdateV1 ¶

type FaqCategoryModelUpdateV1 struct {
	Title *string `json:"title,omitempty"`
}

FaqCategoryModelUpdateV1 struct for FaqCategoryModelUpdateV1

func NewFaqCategoryModelUpdateV1 ¶

func NewFaqCategoryModelUpdateV1() *FaqCategoryModelUpdateV1

NewFaqCategoryModelUpdateV1 instantiates a new FaqCategoryModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFaqCategoryModelUpdateV1WithDefaults ¶

func NewFaqCategoryModelUpdateV1WithDefaults() *FaqCategoryModelUpdateV1

NewFaqCategoryModelUpdateV1WithDefaults instantiates a new FaqCategoryModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FaqCategoryModelUpdateV1) GetTitle ¶

func (o *FaqCategoryModelUpdateV1) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*FaqCategoryModelUpdateV1) GetTitleOk ¶

func (o *FaqCategoryModelUpdateV1) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FaqCategoryModelUpdateV1) HasTitle ¶

func (o *FaqCategoryModelUpdateV1) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (FaqCategoryModelUpdateV1) MarshalJSON ¶

func (o FaqCategoryModelUpdateV1) MarshalJSON() ([]byte, error)

func (*FaqCategoryModelUpdateV1) SetTitle ¶

func (o *FaqCategoryModelUpdateV1) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (FaqCategoryModelUpdateV1) ToMap ¶

func (o FaqCategoryModelUpdateV1) ToMap() (map[string]interface{}, error)

type FaqCategoryModelV1 ¶

type FaqCategoryModelV1 struct {
	CategoryId int64   `json:"category_id"`
	Title      *string `json:"title,omitempty"`
	Position   *int64  `json:"position,omitempty"`
}

FaqCategoryModelV1 struct for FaqCategoryModelV1

func NewFaqCategoryModelV1 ¶

func NewFaqCategoryModelV1(categoryId int64) *FaqCategoryModelV1

NewFaqCategoryModelV1 instantiates a new FaqCategoryModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFaqCategoryModelV1WithDefaults ¶

func NewFaqCategoryModelV1WithDefaults() *FaqCategoryModelV1

NewFaqCategoryModelV1WithDefaults instantiates a new FaqCategoryModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FaqCategoryModelV1) GetCategoryId ¶

func (o *FaqCategoryModelV1) GetCategoryId() int64

GetCategoryId returns the CategoryId field value

func (*FaqCategoryModelV1) GetCategoryIdOk ¶

func (o *FaqCategoryModelV1) GetCategoryIdOk() (*int64, bool)

GetCategoryIdOk returns a tuple with the CategoryId field value and a boolean to check if the value has been set.

func (*FaqCategoryModelV1) GetPosition ¶

func (o *FaqCategoryModelV1) GetPosition() int64

GetPosition returns the Position field value if set, zero value otherwise.

func (*FaqCategoryModelV1) GetPositionOk ¶

func (o *FaqCategoryModelV1) GetPositionOk() (*int64, bool)

GetPositionOk returns a tuple with the Position field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FaqCategoryModelV1) GetTitle ¶

func (o *FaqCategoryModelV1) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*FaqCategoryModelV1) GetTitleOk ¶

func (o *FaqCategoryModelV1) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FaqCategoryModelV1) HasPosition ¶

func (o *FaqCategoryModelV1) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (*FaqCategoryModelV1) HasTitle ¶

func (o *FaqCategoryModelV1) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (FaqCategoryModelV1) MarshalJSON ¶

func (o FaqCategoryModelV1) MarshalJSON() ([]byte, error)

func (*FaqCategoryModelV1) SetCategoryId ¶

func (o *FaqCategoryModelV1) SetCategoryId(v int64)

SetCategoryId sets field value

func (*FaqCategoryModelV1) SetPosition ¶

func (o *FaqCategoryModelV1) SetPosition(v int64)

SetPosition gets a reference to the given int64 and assigns it to the Position field.

func (*FaqCategoryModelV1) SetTitle ¶

func (o *FaqCategoryModelV1) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (FaqCategoryModelV1) ToMap ¶

func (o FaqCategoryModelV1) ToMap() (map[string]interface{}, error)

type FaqCategoryQuestionsModelV1 ¶

type FaqCategoryQuestionsModelV1 struct {
	CategoryId int64                    `json:"category_id"`
	Title      *string                  `json:"title,omitempty"`
	Questions  []FaqQuestionOnlyModelV1 `json:"questions,omitempty"`
	Position   *int64                   `json:"position,omitempty"`
}

FaqCategoryQuestionsModelV1 struct for FaqCategoryQuestionsModelV1

func NewFaqCategoryQuestionsModelV1 ¶

func NewFaqCategoryQuestionsModelV1(categoryId int64) *FaqCategoryQuestionsModelV1

NewFaqCategoryQuestionsModelV1 instantiates a new FaqCategoryQuestionsModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFaqCategoryQuestionsModelV1WithDefaults ¶

func NewFaqCategoryQuestionsModelV1WithDefaults() *FaqCategoryQuestionsModelV1

NewFaqCategoryQuestionsModelV1WithDefaults instantiates a new FaqCategoryQuestionsModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FaqCategoryQuestionsModelV1) GetCategoryId ¶

func (o *FaqCategoryQuestionsModelV1) GetCategoryId() int64

GetCategoryId returns the CategoryId field value

func (*FaqCategoryQuestionsModelV1) GetCategoryIdOk ¶

func (o *FaqCategoryQuestionsModelV1) GetCategoryIdOk() (*int64, bool)

GetCategoryIdOk returns a tuple with the CategoryId field value and a boolean to check if the value has been set.

func (*FaqCategoryQuestionsModelV1) GetPosition ¶

func (o *FaqCategoryQuestionsModelV1) GetPosition() int64

GetPosition returns the Position field value if set, zero value otherwise.

func (*FaqCategoryQuestionsModelV1) GetPositionOk ¶

func (o *FaqCategoryQuestionsModelV1) GetPositionOk() (*int64, bool)

GetPositionOk returns a tuple with the Position field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FaqCategoryQuestionsModelV1) GetQuestions ¶

GetQuestions returns the Questions field value if set, zero value otherwise.

func (*FaqCategoryQuestionsModelV1) GetQuestionsOk ¶

func (o *FaqCategoryQuestionsModelV1) GetQuestionsOk() ([]FaqQuestionOnlyModelV1, bool)

GetQuestionsOk returns a tuple with the Questions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FaqCategoryQuestionsModelV1) GetTitle ¶

func (o *FaqCategoryQuestionsModelV1) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*FaqCategoryQuestionsModelV1) GetTitleOk ¶

func (o *FaqCategoryQuestionsModelV1) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FaqCategoryQuestionsModelV1) HasPosition ¶

func (o *FaqCategoryQuestionsModelV1) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (*FaqCategoryQuestionsModelV1) HasQuestions ¶

func (o *FaqCategoryQuestionsModelV1) HasQuestions() bool

HasQuestions returns a boolean if a field has been set.

func (*FaqCategoryQuestionsModelV1) HasTitle ¶

func (o *FaqCategoryQuestionsModelV1) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (FaqCategoryQuestionsModelV1) MarshalJSON ¶

func (o FaqCategoryQuestionsModelV1) MarshalJSON() ([]byte, error)

func (*FaqCategoryQuestionsModelV1) SetCategoryId ¶

func (o *FaqCategoryQuestionsModelV1) SetCategoryId(v int64)

SetCategoryId sets field value

func (*FaqCategoryQuestionsModelV1) SetPosition ¶

func (o *FaqCategoryQuestionsModelV1) SetPosition(v int64)

SetPosition gets a reference to the given int64 and assigns it to the Position field.

func (*FaqCategoryQuestionsModelV1) SetQuestions ¶

SetQuestions gets a reference to the given []FaqQuestionOnlyModelV1 and assigns it to the Questions field.

func (*FaqCategoryQuestionsModelV1) SetTitle ¶

func (o *FaqCategoryQuestionsModelV1) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (FaqCategoryQuestionsModelV1) ToMap ¶

func (o FaqCategoryQuestionsModelV1) ToMap() (map[string]interface{}, error)

type FaqCategoryReorderModelV1 ¶

type FaqCategoryReorderModelV1 struct {
	CategoryId int64                       `json:"category_id"`
	Position   *int64                      `json:"position,omitempty"`
	Questions  []FaqQuestionReorderModelV1 `json:"questions,omitempty"`
}

FaqCategoryReorderModelV1 struct for FaqCategoryReorderModelV1

func NewFaqCategoryReorderModelV1 ¶

func NewFaqCategoryReorderModelV1(categoryId int64) *FaqCategoryReorderModelV1

NewFaqCategoryReorderModelV1 instantiates a new FaqCategoryReorderModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFaqCategoryReorderModelV1WithDefaults ¶

func NewFaqCategoryReorderModelV1WithDefaults() *FaqCategoryReorderModelV1

NewFaqCategoryReorderModelV1WithDefaults instantiates a new FaqCategoryReorderModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FaqCategoryReorderModelV1) GetCategoryId ¶

func (o *FaqCategoryReorderModelV1) GetCategoryId() int64

GetCategoryId returns the CategoryId field value

func (*FaqCategoryReorderModelV1) GetCategoryIdOk ¶

func (o *FaqCategoryReorderModelV1) GetCategoryIdOk() (*int64, bool)

GetCategoryIdOk returns a tuple with the CategoryId field value and a boolean to check if the value has been set.

func (*FaqCategoryReorderModelV1) GetPosition ¶

func (o *FaqCategoryReorderModelV1) GetPosition() int64

GetPosition returns the Position field value if set, zero value otherwise.

func (*FaqCategoryReorderModelV1) GetPositionOk ¶

func (o *FaqCategoryReorderModelV1) GetPositionOk() (*int64, bool)

GetPositionOk returns a tuple with the Position field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FaqCategoryReorderModelV1) GetQuestions ¶

GetQuestions returns the Questions field value if set, zero value otherwise.

func (*FaqCategoryReorderModelV1) GetQuestionsOk ¶

func (o *FaqCategoryReorderModelV1) GetQuestionsOk() ([]FaqQuestionReorderModelV1, bool)

GetQuestionsOk returns a tuple with the Questions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FaqCategoryReorderModelV1) HasPosition ¶

func (o *FaqCategoryReorderModelV1) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (*FaqCategoryReorderModelV1) HasQuestions ¶

func (o *FaqCategoryReorderModelV1) HasQuestions() bool

HasQuestions returns a boolean if a field has been set.

func (FaqCategoryReorderModelV1) MarshalJSON ¶

func (o FaqCategoryReorderModelV1) MarshalJSON() ([]byte, error)

func (*FaqCategoryReorderModelV1) SetCategoryId ¶

func (o *FaqCategoryReorderModelV1) SetCategoryId(v int64)

SetCategoryId sets field value

func (*FaqCategoryReorderModelV1) SetPosition ¶

func (o *FaqCategoryReorderModelV1) SetPosition(v int64)

SetPosition gets a reference to the given int64 and assigns it to the Position field.

func (*FaqCategoryReorderModelV1) SetQuestions ¶

SetQuestions gets a reference to the given []FaqQuestionReorderModelV1 and assigns it to the Questions field.

func (FaqCategoryReorderModelV1) ToMap ¶

func (o FaqCategoryReorderModelV1) ToMap() (map[string]interface{}, error)

type FaqQuestionModelUpdateV1 ¶

type FaqQuestionModelUpdateV1 struct {
	Question *string `json:"question,omitempty"`
	Answer   *string `json:"answer,omitempty"`
}

FaqQuestionModelUpdateV1 struct for FaqQuestionModelUpdateV1

func NewFaqQuestionModelUpdateV1 ¶

func NewFaqQuestionModelUpdateV1() *FaqQuestionModelUpdateV1

NewFaqQuestionModelUpdateV1 instantiates a new FaqQuestionModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFaqQuestionModelUpdateV1WithDefaults ¶

func NewFaqQuestionModelUpdateV1WithDefaults() *FaqQuestionModelUpdateV1

NewFaqQuestionModelUpdateV1WithDefaults instantiates a new FaqQuestionModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FaqQuestionModelUpdateV1) GetAnswer ¶

func (o *FaqQuestionModelUpdateV1) GetAnswer() string

GetAnswer returns the Answer field value if set, zero value otherwise.

func (*FaqQuestionModelUpdateV1) GetAnswerOk ¶

func (o *FaqQuestionModelUpdateV1) GetAnswerOk() (*string, bool)

GetAnswerOk returns a tuple with the Answer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FaqQuestionModelUpdateV1) GetQuestion ¶

func (o *FaqQuestionModelUpdateV1) GetQuestion() string

GetQuestion returns the Question field value if set, zero value otherwise.

func (*FaqQuestionModelUpdateV1) GetQuestionOk ¶

func (o *FaqQuestionModelUpdateV1) GetQuestionOk() (*string, bool)

GetQuestionOk returns a tuple with the Question field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FaqQuestionModelUpdateV1) HasAnswer ¶

func (o *FaqQuestionModelUpdateV1) HasAnswer() bool

HasAnswer returns a boolean if a field has been set.

func (*FaqQuestionModelUpdateV1) HasQuestion ¶

func (o *FaqQuestionModelUpdateV1) HasQuestion() bool

HasQuestion returns a boolean if a field has been set.

func (FaqQuestionModelUpdateV1) MarshalJSON ¶

func (o FaqQuestionModelUpdateV1) MarshalJSON() ([]byte, error)

func (*FaqQuestionModelUpdateV1) SetAnswer ¶

func (o *FaqQuestionModelUpdateV1) SetAnswer(v string)

SetAnswer gets a reference to the given string and assigns it to the Answer field.

func (*FaqQuestionModelUpdateV1) SetQuestion ¶

func (o *FaqQuestionModelUpdateV1) SetQuestion(v string)

SetQuestion gets a reference to the given string and assigns it to the Question field.

func (FaqQuestionModelUpdateV1) ToMap ¶

func (o FaqQuestionModelUpdateV1) ToMap() (map[string]interface{}, error)

type FaqQuestionModelV1 ¶

type FaqQuestionModelV1 struct {
	QuestionId int64   `json:"question_id"`
	Question   *string `json:"question,omitempty"`
	Answer     *string `json:"answer,omitempty"`
	Position   *int64  `json:"position,omitempty"`
}

FaqQuestionModelV1 struct for FaqQuestionModelV1

func NewFaqQuestionModelV1 ¶

func NewFaqQuestionModelV1(questionId int64) *FaqQuestionModelV1

NewFaqQuestionModelV1 instantiates a new FaqQuestionModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFaqQuestionModelV1WithDefaults ¶

func NewFaqQuestionModelV1WithDefaults() *FaqQuestionModelV1

NewFaqQuestionModelV1WithDefaults instantiates a new FaqQuestionModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FaqQuestionModelV1) GetAnswer ¶

func (o *FaqQuestionModelV1) GetAnswer() string

GetAnswer returns the Answer field value if set, zero value otherwise.

func (*FaqQuestionModelV1) GetAnswerOk ¶

func (o *FaqQuestionModelV1) GetAnswerOk() (*string, bool)

GetAnswerOk returns a tuple with the Answer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FaqQuestionModelV1) GetPosition ¶

func (o *FaqQuestionModelV1) GetPosition() int64

GetPosition returns the Position field value if set, zero value otherwise.

func (*FaqQuestionModelV1) GetPositionOk ¶

func (o *FaqQuestionModelV1) GetPositionOk() (*int64, bool)

GetPositionOk returns a tuple with the Position field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FaqQuestionModelV1) GetQuestion ¶

func (o *FaqQuestionModelV1) GetQuestion() string

GetQuestion returns the Question field value if set, zero value otherwise.

func (*FaqQuestionModelV1) GetQuestionId ¶

func (o *FaqQuestionModelV1) GetQuestionId() int64

GetQuestionId returns the QuestionId field value

func (*FaqQuestionModelV1) GetQuestionIdOk ¶

func (o *FaqQuestionModelV1) GetQuestionIdOk() (*int64, bool)

GetQuestionIdOk returns a tuple with the QuestionId field value and a boolean to check if the value has been set.

func (*FaqQuestionModelV1) GetQuestionOk ¶

func (o *FaqQuestionModelV1) GetQuestionOk() (*string, bool)

GetQuestionOk returns a tuple with the Question field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FaqQuestionModelV1) HasAnswer ¶

func (o *FaqQuestionModelV1) HasAnswer() bool

HasAnswer returns a boolean if a field has been set.

func (*FaqQuestionModelV1) HasPosition ¶

func (o *FaqQuestionModelV1) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (*FaqQuestionModelV1) HasQuestion ¶

func (o *FaqQuestionModelV1) HasQuestion() bool

HasQuestion returns a boolean if a field has been set.

func (FaqQuestionModelV1) MarshalJSON ¶

func (o FaqQuestionModelV1) MarshalJSON() ([]byte, error)

func (*FaqQuestionModelV1) SetAnswer ¶

func (o *FaqQuestionModelV1) SetAnswer(v string)

SetAnswer gets a reference to the given string and assigns it to the Answer field.

func (*FaqQuestionModelV1) SetPosition ¶

func (o *FaqQuestionModelV1) SetPosition(v int64)

SetPosition gets a reference to the given int64 and assigns it to the Position field.

func (*FaqQuestionModelV1) SetQuestion ¶

func (o *FaqQuestionModelV1) SetQuestion(v string)

SetQuestion gets a reference to the given string and assigns it to the Question field.

func (*FaqQuestionModelV1) SetQuestionId ¶

func (o *FaqQuestionModelV1) SetQuestionId(v int64)

SetQuestionId sets field value

func (FaqQuestionModelV1) ToMap ¶

func (o FaqQuestionModelV1) ToMap() (map[string]interface{}, error)

type FaqQuestionOnlyModelV1 ¶

type FaqQuestionOnlyModelV1 struct {
	QuestionId int64   `json:"question_id"`
	Question   *string `json:"question,omitempty"`
	Position   *int64  `json:"position,omitempty"`
}

FaqQuestionOnlyModelV1 struct for FaqQuestionOnlyModelV1

func NewFaqQuestionOnlyModelV1 ¶

func NewFaqQuestionOnlyModelV1(questionId int64) *FaqQuestionOnlyModelV1

NewFaqQuestionOnlyModelV1 instantiates a new FaqQuestionOnlyModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFaqQuestionOnlyModelV1WithDefaults ¶

func NewFaqQuestionOnlyModelV1WithDefaults() *FaqQuestionOnlyModelV1

NewFaqQuestionOnlyModelV1WithDefaults instantiates a new FaqQuestionOnlyModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FaqQuestionOnlyModelV1) GetPosition ¶

func (o *FaqQuestionOnlyModelV1) GetPosition() int64

GetPosition returns the Position field value if set, zero value otherwise.

func (*FaqQuestionOnlyModelV1) GetPositionOk ¶

func (o *FaqQuestionOnlyModelV1) GetPositionOk() (*int64, bool)

GetPositionOk returns a tuple with the Position field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FaqQuestionOnlyModelV1) GetQuestion ¶

func (o *FaqQuestionOnlyModelV1) GetQuestion() string

GetQuestion returns the Question field value if set, zero value otherwise.

func (*FaqQuestionOnlyModelV1) GetQuestionId ¶

func (o *FaqQuestionOnlyModelV1) GetQuestionId() int64

GetQuestionId returns the QuestionId field value

func (*FaqQuestionOnlyModelV1) GetQuestionIdOk ¶

func (o *FaqQuestionOnlyModelV1) GetQuestionIdOk() (*int64, bool)

GetQuestionIdOk returns a tuple with the QuestionId field value and a boolean to check if the value has been set.

func (*FaqQuestionOnlyModelV1) GetQuestionOk ¶

func (o *FaqQuestionOnlyModelV1) GetQuestionOk() (*string, bool)

GetQuestionOk returns a tuple with the Question field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FaqQuestionOnlyModelV1) HasPosition ¶

func (o *FaqQuestionOnlyModelV1) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (*FaqQuestionOnlyModelV1) HasQuestion ¶

func (o *FaqQuestionOnlyModelV1) HasQuestion() bool

HasQuestion returns a boolean if a field has been set.

func (FaqQuestionOnlyModelV1) MarshalJSON ¶

func (o FaqQuestionOnlyModelV1) MarshalJSON() ([]byte, error)

func (*FaqQuestionOnlyModelV1) SetPosition ¶

func (o *FaqQuestionOnlyModelV1) SetPosition(v int64)

SetPosition gets a reference to the given int64 and assigns it to the Position field.

func (*FaqQuestionOnlyModelV1) SetQuestion ¶

func (o *FaqQuestionOnlyModelV1) SetQuestion(v string)

SetQuestion gets a reference to the given string and assigns it to the Question field.

func (*FaqQuestionOnlyModelV1) SetQuestionId ¶

func (o *FaqQuestionOnlyModelV1) SetQuestionId(v int64)

SetQuestionId sets field value

func (FaqQuestionOnlyModelV1) ToMap ¶

func (o FaqQuestionOnlyModelV1) ToMap() (map[string]interface{}, error)

type FaqQuestionReorderModelV1 ¶

type FaqQuestionReorderModelV1 struct {
	QuestionId int64  `json:"question_id"`
	Position   *int64 `json:"position,omitempty"`
}

FaqQuestionReorderModelV1 struct for FaqQuestionReorderModelV1

func NewFaqQuestionReorderModelV1 ¶

func NewFaqQuestionReorderModelV1(questionId int64) *FaqQuestionReorderModelV1

NewFaqQuestionReorderModelV1 instantiates a new FaqQuestionReorderModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFaqQuestionReorderModelV1WithDefaults ¶

func NewFaqQuestionReorderModelV1WithDefaults() *FaqQuestionReorderModelV1

NewFaqQuestionReorderModelV1WithDefaults instantiates a new FaqQuestionReorderModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FaqQuestionReorderModelV1) GetPosition ¶

func (o *FaqQuestionReorderModelV1) GetPosition() int64

GetPosition returns the Position field value if set, zero value otherwise.

func (*FaqQuestionReorderModelV1) GetPositionOk ¶

func (o *FaqQuestionReorderModelV1) GetPositionOk() (*int64, bool)

GetPositionOk returns a tuple with the Position field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FaqQuestionReorderModelV1) GetQuestionId ¶

func (o *FaqQuestionReorderModelV1) GetQuestionId() int64

GetQuestionId returns the QuestionId field value

func (*FaqQuestionReorderModelV1) GetQuestionIdOk ¶

func (o *FaqQuestionReorderModelV1) GetQuestionIdOk() (*int64, bool)

GetQuestionIdOk returns a tuple with the QuestionId field value and a boolean to check if the value has been set.

func (*FaqQuestionReorderModelV1) HasPosition ¶

func (o *FaqQuestionReorderModelV1) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (FaqQuestionReorderModelV1) MarshalJSON ¶

func (o FaqQuestionReorderModelV1) MarshalJSON() ([]byte, error)

func (*FaqQuestionReorderModelV1) SetPosition ¶

func (o *FaqQuestionReorderModelV1) SetPosition(v int64)

SetPosition gets a reference to the given int64 and assigns it to the Position field.

func (*FaqQuestionReorderModelV1) SetQuestionId ¶

func (o *FaqQuestionReorderModelV1) SetQuestionId(v int64)

SetQuestionId sets field value

func (FaqQuestionReorderModelV1) ToMap ¶

func (o FaqQuestionReorderModelV1) ToMap() (map[string]interface{}, error)

type ForumAPIService ¶

type ForumAPIService service

ForumAPIService ForumAPI service

func (*ForumAPIService) AddForumAdmin ¶

func (a *ForumAPIService) AddForumAdmin(ctx context.Context, forumId int64, userId int64) ApiAddForumAdminRequest

AddForumAdmin add a forum admin

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param forumId Forum id
@param userId User id
@return ApiAddForumAdminRequest

func (*ForumAPIService) AddForumAdminExecute ¶

func (a *ForumAPIService) AddForumAdminExecute(r ApiAddForumAdminRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ForumAPIService) AddPollVote ¶

func (a *ForumAPIService) AddPollVote(ctx context.Context, forumId int64, topicId int64, choiceId int64) ApiAddPollVoteRequest

AddPollVote add a vote to a forum poll

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param forumId Forum id
@param topicId Topic id
@param choiceId Choice id
@return ApiAddPollVoteRequest

func (*ForumAPIService) AddPollVoteExecute ¶

func (a *ForumAPIService) AddPollVoteExecute(r ApiAddPollVoteRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ForumAPIService) AddPost ¶

func (a *ForumAPIService) AddPost(ctx context.Context, forumId int64, topicId int64) ApiAddPostRequest

AddPost add a forum post

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param forumId Forum id
@param topicId Topic id
@return ApiAddPostRequest

func (*ForumAPIService) AddPostExecute ¶

Execute executes the request

@return ApiResponseV1

func (*ForumAPIService) AddTemporaryPollImage ¶

func (a *ForumAPIService) AddTemporaryPollImage(ctx context.Context) ApiAddTemporaryPollImageRequest

AddTemporaryPollImage add a temporary poll image

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAddTemporaryPollImageRequest

func (*ForumAPIService) AddTemporaryPollImageExecute ¶

func (a *ForumAPIService) AddTemporaryPollImageExecute(r ApiAddTemporaryPollImageRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ForumAPIService) AddTopic ¶

func (a *ForumAPIService) AddTopic(ctx context.Context, forumId int64) ApiAddTopicRequest

AddTopic add a forum topic

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param forumId Forum id
@return ApiAddTopicRequest

func (*ForumAPIService) AddTopicExecute ¶

func (a *ForumAPIService) AddTopicExecute(r ApiAddTopicRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ForumAPIService) DeletePost ¶

func (a *ForumAPIService) DeletePost(ctx context.Context, forumId int64, topicId int64, postId int64) ApiDeletePostRequest

DeletePost delete a post

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param forumId Forum id
@param topicId Topic id
@param postId Post id
@return ApiDeletePostRequest

func (*ForumAPIService) DeletePostExecute ¶

func (a *ForumAPIService) DeletePostExecute(r ApiDeletePostRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ForumAPIService) DeletePostReport ¶

func (a *ForumAPIService) DeletePostReport(ctx context.Context, forumId int64, topicId int64, postId int64) ApiDeletePostReportRequest

DeletePostReport delete a post report

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param forumId Forum id
@param topicId Topic id
@param postId Post id
@return ApiDeletePostReportRequest

func (*ForumAPIService) DeletePostReportExecute ¶

func (a *ForumAPIService) DeletePostReportExecute(r ApiDeletePostReportRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ForumAPIService) DeleteTopic ¶

func (a *ForumAPIService) DeleteTopic(ctx context.Context, forumId int64, topicId int64) ApiDeleteTopicRequest

DeleteTopic delete a topic

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param forumId Forum id
@param topicId Topic id
@return ApiDeleteTopicRequest

func (*ForumAPIService) DeleteTopicExecute ¶

func (a *ForumAPIService) DeleteTopicExecute(r ApiDeleteTopicRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ForumAPIService) GetCurrentWarnForUser ¶

func (a *ForumAPIService) GetCurrentWarnForUser(ctx context.Context, userId int64) ApiGetCurrentWarnForUserRequest

GetCurrentWarnForUser gets the current warn status for user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userId User id
@return ApiGetCurrentWarnForUserRequest

func (*ForumAPIService) GetCurrentWarnForUserExecute ¶

func (a *ForumAPIService) GetCurrentWarnForUserExecute(r ApiGetCurrentWarnForUserRequest) (*ForumWarnModelV1, *http.Response, error)

Execute executes the request

@return ForumWarnModelV1

func (*ForumAPIService) ListCategories ¶

ListCategories show forum categories and forums

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListCategoriesRequest

func (*ForumAPIService) ListCategoriesExecute ¶

Execute executes the request

@return []ForumCategoryModelListV1

func (*ForumAPIService) ListGlobalTopics ¶

func (a *ForumAPIService) ListGlobalTopics(ctx context.Context) ApiListGlobalTopicsRequest

ListGlobalTopics list global topics

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListGlobalTopicsRequest

func (*ForumAPIService) ListGlobalTopicsExecute ¶

Execute executes the request

@return ForumTopicListResponseV1

func (*ForumAPIService) ListPopularForums ¶

func (a *ForumAPIService) ListPopularForums(ctx context.Context) ApiListPopularForumsRequest

ListPopularForums show popular forums

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListPopularForumsRequest

func (*ForumAPIService) ListPopularForumsExecute ¶

Execute executes the request

@return []ForumForumModelListV1

func (*ForumAPIService) ListPosts ¶

func (a *ForumAPIService) ListPosts(ctx context.Context, forumId int64, topicId int64) ApiListPostsRequest

ListPosts list posts in topic

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param forumId Forum id
@param topicId Topic id
@return ApiListPostsRequest

func (*ForumAPIService) ListPostsByMe ¶

func (a *ForumAPIService) ListPostsByMe(ctx context.Context, forumId int64, topicId int64) ApiListPostsByMeRequest

ListPostsByMe list posts in topic that I made

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param forumId Forum id
@param topicId Topic id
@return ApiListPostsByMeRequest

func (*ForumAPIService) ListPostsByMeExecute ¶

Execute executes the request

@return ForumPostByUserResponseV1

func (*ForumAPIService) ListPostsExecute ¶

Execute executes the request

@return ForumPostListResponseV1

func (*ForumAPIService) ListReportedPosts ¶

func (a *ForumAPIService) ListReportedPosts(ctx context.Context) ApiListReportedPostsRequest

ListReportedPosts show reported posts

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListReportedPostsRequest

func (*ForumAPIService) ListReportedPostsExecute ¶

Execute executes the request

@return []ForumPostReportModelV1

func (*ForumAPIService) ListTopics ¶

func (a *ForumAPIService) ListTopics(ctx context.Context, forumId int64) ApiListTopicsRequest

ListTopics list topics

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param forumId Forum id
@return ApiListTopicsRequest

func (*ForumAPIService) ListTopicsExecute ¶

Execute executes the request

@return ForumTopicListResponseV1

func (*ForumAPIService) ListWarnHistoryForUser ¶

func (a *ForumAPIService) ListWarnHistoryForUser(ctx context.Context, userId int64) ApiListWarnHistoryForUserRequest

ListWarnHistoryForUser show warn history for a user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userId User id
@return ApiListWarnHistoryForUserRequest

func (*ForumAPIService) ListWarnHistoryForUserExecute ¶

func (a *ForumAPIService) ListWarnHistoryForUserExecute(r ApiListWarnHistoryForUserRequest) ([]ForumWarnModelV1, *http.Response, error)

Execute executes the request

@return []ForumWarnModelV1

func (*ForumAPIService) LookupPost ¶

func (a *ForumAPIService) LookupPost(ctx context.Context, postId int64) ApiLookupPostRequest

LookupPost lookup a post to find the forum and topic id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param postId Post id
@return ApiLookupPostRequest

func (*ForumAPIService) LookupPostExecute ¶

Execute executes the request

@return ForumLookupResponseV1

func (*ForumAPIService) LookupSeries ¶

func (a *ForumAPIService) LookupSeries(ctx context.Context, seriesId int64) ApiLookupSeriesRequest

LookupSeries lookup a series to find the forum id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param seriesId Series id
@return ApiLookupSeriesRequest

func (*ForumAPIService) LookupSeriesExecute ¶

Execute executes the request

@return ForumLookupResponseV1

func (*ForumAPIService) LookupTopic ¶

func (a *ForumAPIService) LookupTopic(ctx context.Context, topicId int64) ApiLookupTopicRequest

LookupTopic lookup a topic to find the forum id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param topicId Topic id
@return ApiLookupTopicRequest

func (*ForumAPIService) LookupTopicExecute ¶

Execute executes the request

@return ForumLookupResponseV1

func (*ForumAPIService) RemoveForumAdmin ¶

func (a *ForumAPIService) RemoveForumAdmin(ctx context.Context, forumId int64, userId int64) ApiRemoveForumAdminRequest

RemoveForumAdmin remove a forum admin

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param forumId Forum id
@param userId User id
@return ApiRemoveForumAdminRequest

func (*ForumAPIService) RemoveForumAdminExecute ¶

func (a *ForumAPIService) RemoveForumAdminExecute(r ApiRemoveForumAdminRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ForumAPIService) ReportPost ¶

func (a *ForumAPIService) ReportPost(ctx context.Context, forumId int64, topicId int64, postId int64) ApiReportPostRequest

ReportPost report a forum post

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param forumId Forum id
@param topicId Topic id
@param postId Post id
@return ApiReportPostRequest

func (*ForumAPIService) ReportPostExecute ¶

func (a *ForumAPIService) ReportPostExecute(r ApiReportPostRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ForumAPIService) RetrieveForum ¶

func (a *ForumAPIService) RetrieveForum(ctx context.Context, forumId int64) ApiRetrieveForumRequest

RetrieveForum retrieve a forum

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param forumId Forum id
@return ApiRetrieveForumRequest

func (*ForumAPIService) RetrieveForumExecute ¶

Execute executes the request

@return ForumForumModelV1

func (*ForumAPIService) RetrievePost ¶

func (a *ForumAPIService) RetrievePost(ctx context.Context, forumId int64, topicId int64, postId int64) ApiRetrievePostRequest

RetrievePost retrieve a forum post

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param forumId Forum id
@param topicId Topic id
@param postId Post id
@return ApiRetrievePostRequest

func (*ForumAPIService) RetrievePostExecute ¶

Execute executes the request

@return ForumPostModelV1

func (*ForumAPIService) RetrievePostLocation ¶

func (a *ForumAPIService) RetrievePostLocation(ctx context.Context, forumId int64, topicId int64, postId int64) ApiRetrievePostLocationRequest

RetrievePostLocation retrieve a forum post location within topic

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param forumId Forum id
@param topicId Topic id
@param postId Post id
@return ApiRetrievePostLocationRequest

func (*ForumAPIService) RetrievePostLocationExecute ¶

func (a *ForumAPIService) RetrievePostLocationExecute(r ApiRetrievePostLocationRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ForumAPIService) RetrieveTemporaryPollImages ¶

func (a *ForumAPIService) RetrieveTemporaryPollImages(ctx context.Context) ApiRetrieveTemporaryPollImagesRequest

RetrieveTemporaryPollImages retrieve temporary poll images

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiRetrieveTemporaryPollImagesRequest

func (*ForumAPIService) RetrieveTemporaryPollImagesExecute ¶

Execute executes the request

@return []ForumPollTempImageModelV1

func (*ForumAPIService) RetrieveTopic ¶

func (a *ForumAPIService) RetrieveTopic(ctx context.Context, forumId int64, topicId int64) ApiRetrieveTopicRequest

RetrieveTopic retrieve a forum topic

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param forumId Forum id
@param topicId Topic id
@return ApiRetrieveTopicRequest

func (*ForumAPIService) RetrieveTopicExecute ¶

Execute executes the request

@return ForumTopicModelV1

func (*ForumAPIService) RetrieveVote ¶

func (a *ForumAPIService) RetrieveVote(ctx context.Context, forumId int64, topicId int64) ApiRetrieveVoteRequest

RetrieveVote retrieve my vote from the poll

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param forumId Forum id
@param topicId Topic id
@return ApiRetrieveVoteRequest

func (*ForumAPIService) RetrieveVoteExecute ¶

Execute executes the request

@return ForumPollVoteModelV1

func (*ForumAPIService) SearchForumPost ¶

func (a *ForumAPIService) SearchForumPost(ctx context.Context) ApiSearchForumPostRequest

SearchForumPost search forum

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchForumPostRequest

func (*ForumAPIService) SearchForumPostExecute ¶

Execute executes the request

@return ForumSearchResponseV1

func (*ForumAPIService) SearchSpecificForumPost ¶

func (a *ForumAPIService) SearchSpecificForumPost(ctx context.Context, forumId int64) ApiSearchSpecificForumPostRequest

SearchSpecificForumPost search specific forum

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param forumId Forum id
@return ApiSearchSpecificForumPostRequest

func (*ForumAPIService) SearchSpecificForumPostExecute ¶

Execute executes the request

@return ForumSearchResponseV1

func (*ForumAPIService) SearchSpecificTopicPost ¶

func (a *ForumAPIService) SearchSpecificTopicPost(ctx context.Context, forumId int64, topicId int64) ApiSearchSpecificTopicPostRequest

SearchSpecificTopicPost search specific topic

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param forumId Forum id
@param topicId Topic id
@return ApiSearchSpecificTopicPostRequest

func (*ForumAPIService) SearchSpecificTopicPostExecute ¶

Execute executes the request

@return ForumSearchResponseV1

func (*ForumAPIService) ShowLogPost ¶

ShowLogPost show forum admin log

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiShowLogPostRequest

func (*ForumAPIService) ShowLogPostExecute ¶

Execute executes the request

@return ForumAdminHistorySearchResponseV1

func (*ForumAPIService) UpdatePost ¶

func (a *ForumAPIService) UpdatePost(ctx context.Context, forumId int64, topicId int64, postId int64) ApiUpdatePostRequest

UpdatePost update a forum post

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param forumId Forum id
@param topicId Topic id
@param postId Post id
@return ApiUpdatePostRequest

func (*ForumAPIService) UpdatePostExecute ¶

func (a *ForumAPIService) UpdatePostExecute(r ApiUpdatePostRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ForumAPIService) UpdateTopic ¶

func (a *ForumAPIService) UpdateTopic(ctx context.Context, forumId int64, topicId int64) ApiUpdateTopicRequest

UpdateTopic update a forum topic

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param forumId Forum id
@param topicId Topic id
@return ApiUpdateTopicRequest

func (*ForumAPIService) UpdateTopicExecute ¶

func (a *ForumAPIService) UpdateTopicExecute(r ApiUpdateTopicRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ForumAPIService) UpdateTopicPoll ¶

func (a *ForumAPIService) UpdateTopicPoll(ctx context.Context, forumId int64, topicId int64) ApiUpdateTopicPollRequest

UpdateTopicPoll update a forum topic poll (if present)

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param forumId Forum id
@param topicId Topic id
@return ApiUpdateTopicPollRequest

func (*ForumAPIService) UpdateTopicPollExecute ¶

func (a *ForumAPIService) UpdateTopicPollExecute(r ApiUpdateTopicPollRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ForumAPIService) UpdateUserWarnLevel ¶

func (a *ForumAPIService) UpdateUserWarnLevel(ctx context.Context, userId int64) ApiUpdateUserWarnLevelRequest

UpdateUserWarnLevel update a user warn level

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userId User id
@return ApiUpdateUserWarnLevelRequest

func (*ForumAPIService) UpdateUserWarnLevelExecute ¶

func (a *ForumAPIService) UpdateUserWarnLevelExecute(r ApiUpdateUserWarnLevelRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

type ForumAdminHistoryModelV1 ¶

type ForumAdminHistoryModelV1 struct {
	User       *UserModelSearchV1 `json:"user,omitempty"`
	ActionTime *TimeV1            `json:"action_time,omitempty"`
	Action     *string            `json:"action,omitempty"`
}

ForumAdminHistoryModelV1 struct for ForumAdminHistoryModelV1

func NewForumAdminHistoryModelV1 ¶

func NewForumAdminHistoryModelV1() *ForumAdminHistoryModelV1

NewForumAdminHistoryModelV1 instantiates a new ForumAdminHistoryModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumAdminHistoryModelV1WithDefaults ¶

func NewForumAdminHistoryModelV1WithDefaults() *ForumAdminHistoryModelV1

NewForumAdminHistoryModelV1WithDefaults instantiates a new ForumAdminHistoryModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumAdminHistoryModelV1) GetAction ¶

func (o *ForumAdminHistoryModelV1) GetAction() string

GetAction returns the Action field value if set, zero value otherwise.

func (*ForumAdminHistoryModelV1) GetActionOk ¶

func (o *ForumAdminHistoryModelV1) GetActionOk() (*string, bool)

GetActionOk returns a tuple with the Action field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumAdminHistoryModelV1) GetActionTime ¶

func (o *ForumAdminHistoryModelV1) GetActionTime() TimeV1

GetActionTime returns the ActionTime field value if set, zero value otherwise.

func (*ForumAdminHistoryModelV1) GetActionTimeOk ¶

func (o *ForumAdminHistoryModelV1) GetActionTimeOk() (*TimeV1, bool)

GetActionTimeOk returns a tuple with the ActionTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumAdminHistoryModelV1) GetUser ¶

GetUser returns the User field value if set, zero value otherwise.

func (*ForumAdminHistoryModelV1) GetUserOk ¶

func (o *ForumAdminHistoryModelV1) GetUserOk() (*UserModelSearchV1, bool)

GetUserOk returns a tuple with the User field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumAdminHistoryModelV1) HasAction ¶

func (o *ForumAdminHistoryModelV1) HasAction() bool

HasAction returns a boolean if a field has been set.

func (*ForumAdminHistoryModelV1) HasActionTime ¶

func (o *ForumAdminHistoryModelV1) HasActionTime() bool

HasActionTime returns a boolean if a field has been set.

func (*ForumAdminHistoryModelV1) HasUser ¶

func (o *ForumAdminHistoryModelV1) HasUser() bool

HasUser returns a boolean if a field has been set.

func (ForumAdminHistoryModelV1) MarshalJSON ¶

func (o ForumAdminHistoryModelV1) MarshalJSON() ([]byte, error)

func (*ForumAdminHistoryModelV1) SetAction ¶

func (o *ForumAdminHistoryModelV1) SetAction(v string)

SetAction gets a reference to the given string and assigns it to the Action field.

func (*ForumAdminHistoryModelV1) SetActionTime ¶

func (o *ForumAdminHistoryModelV1) SetActionTime(v TimeV1)

SetActionTime gets a reference to the given TimeV1 and assigns it to the ActionTime field.

func (*ForumAdminHistoryModelV1) SetUser ¶

SetUser gets a reference to the given UserModelSearchV1 and assigns it to the User field.

func (ForumAdminHistoryModelV1) ToMap ¶

func (o ForumAdminHistoryModelV1) ToMap() (map[string]interface{}, error)

type ForumAdminHistorySearchRequestV1 ¶

type ForumAdminHistorySearchRequestV1 struct {
	Page    *int64 `json:"page,omitempty"`
	Perpage *int64 `json:"perpage,omitempty"`
	Uid     *int64 `json:"uid,omitempty"`
}

ForumAdminHistorySearchRequestV1 struct for ForumAdminHistorySearchRequestV1

func NewForumAdminHistorySearchRequestV1 ¶

func NewForumAdminHistorySearchRequestV1() *ForumAdminHistorySearchRequestV1

NewForumAdminHistorySearchRequestV1 instantiates a new ForumAdminHistorySearchRequestV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumAdminHistorySearchRequestV1WithDefaults ¶

func NewForumAdminHistorySearchRequestV1WithDefaults() *ForumAdminHistorySearchRequestV1

NewForumAdminHistorySearchRequestV1WithDefaults instantiates a new ForumAdminHistorySearchRequestV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumAdminHistorySearchRequestV1) GetPage ¶

GetPage returns the Page field value if set, zero value otherwise.

func (*ForumAdminHistorySearchRequestV1) GetPageOk ¶

func (o *ForumAdminHistorySearchRequestV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumAdminHistorySearchRequestV1) GetPerpage ¶

func (o *ForumAdminHistorySearchRequestV1) GetPerpage() int64

GetPerpage returns the Perpage field value if set, zero value otherwise.

func (*ForumAdminHistorySearchRequestV1) GetPerpageOk ¶

func (o *ForumAdminHistorySearchRequestV1) GetPerpageOk() (*int64, bool)

GetPerpageOk returns a tuple with the Perpage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumAdminHistorySearchRequestV1) GetUid ¶

GetUid returns the Uid field value if set, zero value otherwise.

func (*ForumAdminHistorySearchRequestV1) GetUidOk ¶

func (o *ForumAdminHistorySearchRequestV1) GetUidOk() (*int64, bool)

GetUidOk returns a tuple with the Uid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumAdminHistorySearchRequestV1) HasPage ¶

HasPage returns a boolean if a field has been set.

func (*ForumAdminHistorySearchRequestV1) HasPerpage ¶

func (o *ForumAdminHistorySearchRequestV1) HasPerpage() bool

HasPerpage returns a boolean if a field has been set.

func (*ForumAdminHistorySearchRequestV1) HasUid ¶

HasUid returns a boolean if a field has been set.

func (ForumAdminHistorySearchRequestV1) MarshalJSON ¶

func (o ForumAdminHistorySearchRequestV1) MarshalJSON() ([]byte, error)

func (*ForumAdminHistorySearchRequestV1) SetPage ¶

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*ForumAdminHistorySearchRequestV1) SetPerpage ¶

func (o *ForumAdminHistorySearchRequestV1) SetPerpage(v int64)

SetPerpage gets a reference to the given int64 and assigns it to the Perpage field.

func (*ForumAdminHistorySearchRequestV1) SetUid ¶

SetUid gets a reference to the given int64 and assigns it to the Uid field.

func (ForumAdminHistorySearchRequestV1) ToMap ¶

func (o ForumAdminHistorySearchRequestV1) ToMap() (map[string]interface{}, error)

type ForumAdminHistorySearchResponseV1 ¶

type ForumAdminHistorySearchResponseV1 struct {
	TotalHits *int64                                     `json:"total_hits,omitempty"`
	Page      *int64                                     `json:"page,omitempty"`
	PerPage   *int64                                     `json:"per_page,omitempty"`
	Results   []ForumAdminHistorySearchResponseV1Results `json:"results,omitempty"`
}

ForumAdminHistorySearchResponseV1 struct for ForumAdminHistorySearchResponseV1

func NewForumAdminHistorySearchResponseV1 ¶

func NewForumAdminHistorySearchResponseV1() *ForumAdminHistorySearchResponseV1

NewForumAdminHistorySearchResponseV1 instantiates a new ForumAdminHistorySearchResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumAdminHistorySearchResponseV1WithDefaults ¶

func NewForumAdminHistorySearchResponseV1WithDefaults() *ForumAdminHistorySearchResponseV1

NewForumAdminHistorySearchResponseV1WithDefaults instantiates a new ForumAdminHistorySearchResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumAdminHistorySearchResponseV1) GetPage ¶

GetPage returns the Page field value if set, zero value otherwise.

func (*ForumAdminHistorySearchResponseV1) GetPageOk ¶

func (o *ForumAdminHistorySearchResponseV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumAdminHistorySearchResponseV1) GetPerPage ¶

func (o *ForumAdminHistorySearchResponseV1) GetPerPage() int64

GetPerPage returns the PerPage field value if set, zero value otherwise.

func (*ForumAdminHistorySearchResponseV1) GetPerPageOk ¶

func (o *ForumAdminHistorySearchResponseV1) GetPerPageOk() (*int64, bool)

GetPerPageOk returns a tuple with the PerPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumAdminHistorySearchResponseV1) GetResults ¶

GetResults returns the Results field value if set, zero value otherwise.

func (*ForumAdminHistorySearchResponseV1) GetResultsOk ¶

GetResultsOk returns a tuple with the Results field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumAdminHistorySearchResponseV1) GetTotalHits ¶

func (o *ForumAdminHistorySearchResponseV1) GetTotalHits() int64

GetTotalHits returns the TotalHits field value if set, zero value otherwise.

func (*ForumAdminHistorySearchResponseV1) GetTotalHitsOk ¶

func (o *ForumAdminHistorySearchResponseV1) GetTotalHitsOk() (*int64, bool)

GetTotalHitsOk returns a tuple with the TotalHits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumAdminHistorySearchResponseV1) HasPage ¶

HasPage returns a boolean if a field has been set.

func (*ForumAdminHistorySearchResponseV1) HasPerPage ¶

func (o *ForumAdminHistorySearchResponseV1) HasPerPage() bool

HasPerPage returns a boolean if a field has been set.

func (*ForumAdminHistorySearchResponseV1) HasResults ¶

func (o *ForumAdminHistorySearchResponseV1) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*ForumAdminHistorySearchResponseV1) HasTotalHits ¶

func (o *ForumAdminHistorySearchResponseV1) HasTotalHits() bool

HasTotalHits returns a boolean if a field has been set.

func (ForumAdminHistorySearchResponseV1) MarshalJSON ¶

func (o ForumAdminHistorySearchResponseV1) MarshalJSON() ([]byte, error)

func (*ForumAdminHistorySearchResponseV1) SetPage ¶

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*ForumAdminHistorySearchResponseV1) SetPerPage ¶

func (o *ForumAdminHistorySearchResponseV1) SetPerPage(v int64)

SetPerPage gets a reference to the given int64 and assigns it to the PerPage field.

func (*ForumAdminHistorySearchResponseV1) SetResults ¶

SetResults gets a reference to the given []ForumAdminHistorySearchResponseV1Results and assigns it to the Results field.

func (*ForumAdminHistorySearchResponseV1) SetTotalHits ¶

func (o *ForumAdminHistorySearchResponseV1) SetTotalHits(v int64)

SetTotalHits gets a reference to the given int64 and assigns it to the TotalHits field.

func (ForumAdminHistorySearchResponseV1) ToMap ¶

func (o ForumAdminHistorySearchResponseV1) ToMap() (map[string]interface{}, error)

type ForumAdminHistorySearchResponseV1Results ¶

type ForumAdminHistorySearchResponseV1Results struct {
	Record *ForumAdminHistoryModelV1 `json:"record,omitempty"`
}

ForumAdminHistorySearchResponseV1Results struct for ForumAdminHistorySearchResponseV1Results

func NewForumAdminHistorySearchResponseV1Results ¶

func NewForumAdminHistorySearchResponseV1Results() *ForumAdminHistorySearchResponseV1Results

NewForumAdminHistorySearchResponseV1Results instantiates a new ForumAdminHistorySearchResponseV1Results object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumAdminHistorySearchResponseV1ResultsWithDefaults ¶

func NewForumAdminHistorySearchResponseV1ResultsWithDefaults() *ForumAdminHistorySearchResponseV1Results

NewForumAdminHistorySearchResponseV1ResultsWithDefaults instantiates a new ForumAdminHistorySearchResponseV1Results object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumAdminHistorySearchResponseV1Results) GetRecord ¶

GetRecord returns the Record field value if set, zero value otherwise.

func (*ForumAdminHistorySearchResponseV1Results) GetRecordOk ¶

GetRecordOk returns a tuple with the Record field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumAdminHistorySearchResponseV1Results) HasRecord ¶

HasRecord returns a boolean if a field has been set.

func (ForumAdminHistorySearchResponseV1Results) MarshalJSON ¶

func (*ForumAdminHistorySearchResponseV1Results) SetRecord ¶

SetRecord gets a reference to the given ForumAdminHistoryModelV1 and assigns it to the Record field.

func (ForumAdminHistorySearchResponseV1Results) ToMap ¶

func (o ForumAdminHistorySearchResponseV1Results) ToMap() (map[string]interface{}, error)

type ForumAdminModelUpdateV1 ¶

type ForumAdminModelUpdateV1 struct {
	UserId *int64 `json:"user_id,omitempty"`
}

ForumAdminModelUpdateV1 struct for ForumAdminModelUpdateV1

func NewForumAdminModelUpdateV1 ¶

func NewForumAdminModelUpdateV1() *ForumAdminModelUpdateV1

NewForumAdminModelUpdateV1 instantiates a new ForumAdminModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumAdminModelUpdateV1WithDefaults ¶

func NewForumAdminModelUpdateV1WithDefaults() *ForumAdminModelUpdateV1

NewForumAdminModelUpdateV1WithDefaults instantiates a new ForumAdminModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumAdminModelUpdateV1) GetUserId ¶

func (o *ForumAdminModelUpdateV1) GetUserId() int64

GetUserId returns the UserId field value if set, zero value otherwise.

func (*ForumAdminModelUpdateV1) GetUserIdOk ¶

func (o *ForumAdminModelUpdateV1) GetUserIdOk() (*int64, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumAdminModelUpdateV1) HasUserId ¶

func (o *ForumAdminModelUpdateV1) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (ForumAdminModelUpdateV1) MarshalJSON ¶

func (o ForumAdminModelUpdateV1) MarshalJSON() ([]byte, error)

func (*ForumAdminModelUpdateV1) SetUserId ¶

func (o *ForumAdminModelUpdateV1) SetUserId(v int64)

SetUserId gets a reference to the given int64 and assigns it to the UserId field.

func (ForumAdminModelUpdateV1) ToMap ¶

func (o ForumAdminModelUpdateV1) ToMap() (map[string]interface{}, error)

type ForumAdminModelV1 ¶

type ForumAdminModelV1 struct {
	User   *UserModelSearchV1 `json:"user,omitempty"`
	UserId *int64             `json:"user_id,omitempty"`
}

ForumAdminModelV1 struct for ForumAdminModelV1

func NewForumAdminModelV1 ¶

func NewForumAdminModelV1() *ForumAdminModelV1

NewForumAdminModelV1 instantiates a new ForumAdminModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumAdminModelV1WithDefaults ¶

func NewForumAdminModelV1WithDefaults() *ForumAdminModelV1

NewForumAdminModelV1WithDefaults instantiates a new ForumAdminModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumAdminModelV1) GetUser ¶

func (o *ForumAdminModelV1) GetUser() UserModelSearchV1

GetUser returns the User field value if set, zero value otherwise.

func (*ForumAdminModelV1) GetUserId ¶

func (o *ForumAdminModelV1) GetUserId() int64

GetUserId returns the UserId field value if set, zero value otherwise.

func (*ForumAdminModelV1) GetUserIdOk ¶

func (o *ForumAdminModelV1) GetUserIdOk() (*int64, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumAdminModelV1) GetUserOk ¶

func (o *ForumAdminModelV1) GetUserOk() (*UserModelSearchV1, bool)

GetUserOk returns a tuple with the User field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumAdminModelV1) HasUser ¶

func (o *ForumAdminModelV1) HasUser() bool

HasUser returns a boolean if a field has been set.

func (*ForumAdminModelV1) HasUserId ¶

func (o *ForumAdminModelV1) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (ForumAdminModelV1) MarshalJSON ¶

func (o ForumAdminModelV1) MarshalJSON() ([]byte, error)

func (*ForumAdminModelV1) SetUser ¶

func (o *ForumAdminModelV1) SetUser(v UserModelSearchV1)

SetUser gets a reference to the given UserModelSearchV1 and assigns it to the User field.

func (*ForumAdminModelV1) SetUserId ¶

func (o *ForumAdminModelV1) SetUserId(v int64)

SetUserId gets a reference to the given int64 and assigns it to the UserId field.

func (ForumAdminModelV1) ToMap ¶

func (o ForumAdminModelV1) ToMap() (map[string]interface{}, error)

type ForumCategoryModelListV1 ¶

type ForumCategoryModelListV1 struct {
	CategoryId *int64                           `json:"category_id,omitempty"`
	Name       *string                          `json:"name,omitempty"`
	Forums     []ForumCategoryModelListV1Forums `json:"forums,omitempty"`
}

ForumCategoryModelListV1 struct for ForumCategoryModelListV1

func NewForumCategoryModelListV1 ¶

func NewForumCategoryModelListV1() *ForumCategoryModelListV1

NewForumCategoryModelListV1 instantiates a new ForumCategoryModelListV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumCategoryModelListV1WithDefaults ¶

func NewForumCategoryModelListV1WithDefaults() *ForumCategoryModelListV1

NewForumCategoryModelListV1WithDefaults instantiates a new ForumCategoryModelListV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumCategoryModelListV1) GetCategoryId ¶

func (o *ForumCategoryModelListV1) GetCategoryId() int64

GetCategoryId returns the CategoryId field value if set, zero value otherwise.

func (*ForumCategoryModelListV1) GetCategoryIdOk ¶

func (o *ForumCategoryModelListV1) GetCategoryIdOk() (*int64, bool)

GetCategoryIdOk returns a tuple with the CategoryId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumCategoryModelListV1) GetForums ¶

GetForums returns the Forums field value if set, zero value otherwise.

func (*ForumCategoryModelListV1) GetForumsOk ¶

GetForumsOk returns a tuple with the Forums field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumCategoryModelListV1) GetName ¶

func (o *ForumCategoryModelListV1) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ForumCategoryModelListV1) GetNameOk ¶

func (o *ForumCategoryModelListV1) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumCategoryModelListV1) HasCategoryId ¶

func (o *ForumCategoryModelListV1) HasCategoryId() bool

HasCategoryId returns a boolean if a field has been set.

func (*ForumCategoryModelListV1) HasForums ¶

func (o *ForumCategoryModelListV1) HasForums() bool

HasForums returns a boolean if a field has been set.

func (*ForumCategoryModelListV1) HasName ¶

func (o *ForumCategoryModelListV1) HasName() bool

HasName returns a boolean if a field has been set.

func (ForumCategoryModelListV1) MarshalJSON ¶

func (o ForumCategoryModelListV1) MarshalJSON() ([]byte, error)

func (*ForumCategoryModelListV1) SetCategoryId ¶

func (o *ForumCategoryModelListV1) SetCategoryId(v int64)

SetCategoryId gets a reference to the given int64 and assigns it to the CategoryId field.

func (*ForumCategoryModelListV1) SetForums ¶

SetForums gets a reference to the given []ForumCategoryModelListV1Forums and assigns it to the Forums field.

func (*ForumCategoryModelListV1) SetName ¶

func (o *ForumCategoryModelListV1) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (ForumCategoryModelListV1) ToMap ¶

func (o ForumCategoryModelListV1) ToMap() (map[string]interface{}, error)

type ForumCategoryModelListV1Forums ¶

type ForumCategoryModelListV1Forums struct {
	Forum *ForumForumModelListV1 `json:"forum,omitempty"`
}

ForumCategoryModelListV1Forums struct for ForumCategoryModelListV1Forums

func NewForumCategoryModelListV1Forums ¶

func NewForumCategoryModelListV1Forums() *ForumCategoryModelListV1Forums

NewForumCategoryModelListV1Forums instantiates a new ForumCategoryModelListV1Forums object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumCategoryModelListV1ForumsWithDefaults ¶

func NewForumCategoryModelListV1ForumsWithDefaults() *ForumCategoryModelListV1Forums

NewForumCategoryModelListV1ForumsWithDefaults instantiates a new ForumCategoryModelListV1Forums object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumCategoryModelListV1Forums) GetForum ¶

GetForum returns the Forum field value if set, zero value otherwise.

func (*ForumCategoryModelListV1Forums) GetForumOk ¶

GetForumOk returns a tuple with the Forum field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumCategoryModelListV1Forums) HasForum ¶

func (o *ForumCategoryModelListV1Forums) HasForum() bool

HasForum returns a boolean if a field has been set.

func (ForumCategoryModelListV1Forums) MarshalJSON ¶

func (o ForumCategoryModelListV1Forums) MarshalJSON() ([]byte, error)

func (*ForumCategoryModelListV1Forums) SetForum ¶

SetForum gets a reference to the given ForumForumModelListV1 and assigns it to the Forum field.

func (ForumCategoryModelListV1Forums) ToMap ¶

func (o ForumCategoryModelListV1Forums) ToMap() (map[string]interface{}, error)

type ForumCategoryModelUpdateV1 ¶

type ForumCategoryModelUpdateV1 struct {
	Name     *string `json:"name,omitempty"`
	Position *int64  `json:"position,omitempty"`
}

ForumCategoryModelUpdateV1 struct for ForumCategoryModelUpdateV1

func NewForumCategoryModelUpdateV1 ¶

func NewForumCategoryModelUpdateV1() *ForumCategoryModelUpdateV1

NewForumCategoryModelUpdateV1 instantiates a new ForumCategoryModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumCategoryModelUpdateV1WithDefaults ¶

func NewForumCategoryModelUpdateV1WithDefaults() *ForumCategoryModelUpdateV1

NewForumCategoryModelUpdateV1WithDefaults instantiates a new ForumCategoryModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumCategoryModelUpdateV1) GetName ¶

func (o *ForumCategoryModelUpdateV1) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ForumCategoryModelUpdateV1) GetNameOk ¶

func (o *ForumCategoryModelUpdateV1) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumCategoryModelUpdateV1) GetPosition ¶

func (o *ForumCategoryModelUpdateV1) GetPosition() int64

GetPosition returns the Position field value if set, zero value otherwise.

func (*ForumCategoryModelUpdateV1) GetPositionOk ¶

func (o *ForumCategoryModelUpdateV1) GetPositionOk() (*int64, bool)

GetPositionOk returns a tuple with the Position field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumCategoryModelUpdateV1) HasName ¶

func (o *ForumCategoryModelUpdateV1) HasName() bool

HasName returns a boolean if a field has been set.

func (*ForumCategoryModelUpdateV1) HasPosition ¶

func (o *ForumCategoryModelUpdateV1) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (ForumCategoryModelUpdateV1) MarshalJSON ¶

func (o ForumCategoryModelUpdateV1) MarshalJSON() ([]byte, error)

func (*ForumCategoryModelUpdateV1) SetName ¶

func (o *ForumCategoryModelUpdateV1) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ForumCategoryModelUpdateV1) SetPosition ¶

func (o *ForumCategoryModelUpdateV1) SetPosition(v int64)

SetPosition gets a reference to the given int64 and assigns it to the Position field.

func (ForumCategoryModelUpdateV1) ToMap ¶

func (o ForumCategoryModelUpdateV1) ToMap() (map[string]interface{}, error)

type ForumCategoryModelV1 ¶

type ForumCategoryModelV1 struct {
	CategoryId *int64  `json:"category_id,omitempty"`
	Name       *string `json:"name,omitempty"`
	Position   *int64  `json:"position,omitempty"`
}

ForumCategoryModelV1 struct for ForumCategoryModelV1

func NewForumCategoryModelV1 ¶

func NewForumCategoryModelV1() *ForumCategoryModelV1

NewForumCategoryModelV1 instantiates a new ForumCategoryModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumCategoryModelV1WithDefaults ¶

func NewForumCategoryModelV1WithDefaults() *ForumCategoryModelV1

NewForumCategoryModelV1WithDefaults instantiates a new ForumCategoryModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumCategoryModelV1) GetCategoryId ¶

func (o *ForumCategoryModelV1) GetCategoryId() int64

GetCategoryId returns the CategoryId field value if set, zero value otherwise.

func (*ForumCategoryModelV1) GetCategoryIdOk ¶

func (o *ForumCategoryModelV1) GetCategoryIdOk() (*int64, bool)

GetCategoryIdOk returns a tuple with the CategoryId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumCategoryModelV1) GetName ¶

func (o *ForumCategoryModelV1) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ForumCategoryModelV1) GetNameOk ¶

func (o *ForumCategoryModelV1) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumCategoryModelV1) GetPosition ¶

func (o *ForumCategoryModelV1) GetPosition() int64

GetPosition returns the Position field value if set, zero value otherwise.

func (*ForumCategoryModelV1) GetPositionOk ¶

func (o *ForumCategoryModelV1) GetPositionOk() (*int64, bool)

GetPositionOk returns a tuple with the Position field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumCategoryModelV1) HasCategoryId ¶

func (o *ForumCategoryModelV1) HasCategoryId() bool

HasCategoryId returns a boolean if a field has been set.

func (*ForumCategoryModelV1) HasName ¶

func (o *ForumCategoryModelV1) HasName() bool

HasName returns a boolean if a field has been set.

func (*ForumCategoryModelV1) HasPosition ¶

func (o *ForumCategoryModelV1) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (ForumCategoryModelV1) MarshalJSON ¶

func (o ForumCategoryModelV1) MarshalJSON() ([]byte, error)

func (*ForumCategoryModelV1) SetCategoryId ¶

func (o *ForumCategoryModelV1) SetCategoryId(v int64)

SetCategoryId gets a reference to the given int64 and assigns it to the CategoryId field.

func (*ForumCategoryModelV1) SetName ¶

func (o *ForumCategoryModelV1) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ForumCategoryModelV1) SetPosition ¶

func (o *ForumCategoryModelV1) SetPosition(v int64)

SetPosition gets a reference to the given int64 and assigns it to the Position field.

func (ForumCategoryModelV1) ToMap ¶

func (o ForumCategoryModelV1) ToMap() (map[string]interface{}, error)

type ForumForumModelListV1 ¶

type ForumForumModelListV1 struct {
	ForumId     *int64                      `json:"forum_id,omitempty"`
	Name        *string                     `json:"name,omitempty"`
	Url         *string                     `json:"url,omitempty"`
	Description *string                     `json:"description,omitempty"`
	Position    *int64                      `json:"position,omitempty"`
	Moderators  []ForumAdminModelV1         `json:"moderators,omitempty"`
	Series      *SeriesModelSearchV1        `json:"series,omitempty"`
	Stats       *ForumForumModelListV1Stats `json:"stats,omitempty"`
	LastTopic   *ForumTopicModelSearchV1    `json:"last_topic,omitempty"`
	Admin       *ForumForumModelListV1Admin `json:"admin,omitempty"`
}

ForumForumModelListV1 struct for ForumForumModelListV1

func NewForumForumModelListV1 ¶

func NewForumForumModelListV1() *ForumForumModelListV1

NewForumForumModelListV1 instantiates a new ForumForumModelListV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumForumModelListV1WithDefaults ¶

func NewForumForumModelListV1WithDefaults() *ForumForumModelListV1

NewForumForumModelListV1WithDefaults instantiates a new ForumForumModelListV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumForumModelListV1) GetAdmin ¶

GetAdmin returns the Admin field value if set, zero value otherwise.

func (*ForumForumModelListV1) GetAdminOk ¶

GetAdminOk returns a tuple with the Admin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelListV1) GetDescription ¶

func (o *ForumForumModelListV1) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ForumForumModelListV1) GetDescriptionOk ¶

func (o *ForumForumModelListV1) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelListV1) GetForumId ¶

func (o *ForumForumModelListV1) GetForumId() int64

GetForumId returns the ForumId field value if set, zero value otherwise.

func (*ForumForumModelListV1) GetForumIdOk ¶

func (o *ForumForumModelListV1) GetForumIdOk() (*int64, bool)

GetForumIdOk returns a tuple with the ForumId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelListV1) GetLastTopic ¶

GetLastTopic returns the LastTopic field value if set, zero value otherwise.

func (*ForumForumModelListV1) GetLastTopicOk ¶

func (o *ForumForumModelListV1) GetLastTopicOk() (*ForumTopicModelSearchV1, bool)

GetLastTopicOk returns a tuple with the LastTopic field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelListV1) GetModerators ¶

func (o *ForumForumModelListV1) GetModerators() []ForumAdminModelV1

GetModerators returns the Moderators field value if set, zero value otherwise.

func (*ForumForumModelListV1) GetModeratorsOk ¶

func (o *ForumForumModelListV1) GetModeratorsOk() ([]ForumAdminModelV1, bool)

GetModeratorsOk returns a tuple with the Moderators field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelListV1) GetName ¶

func (o *ForumForumModelListV1) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ForumForumModelListV1) GetNameOk ¶

func (o *ForumForumModelListV1) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelListV1) GetPosition ¶

func (o *ForumForumModelListV1) GetPosition() int64

GetPosition returns the Position field value if set, zero value otherwise.

func (*ForumForumModelListV1) GetPositionOk ¶

func (o *ForumForumModelListV1) GetPositionOk() (*int64, bool)

GetPositionOk returns a tuple with the Position field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelListV1) GetSeries ¶

GetSeries returns the Series field value if set, zero value otherwise.

func (*ForumForumModelListV1) GetSeriesOk ¶

func (o *ForumForumModelListV1) GetSeriesOk() (*SeriesModelSearchV1, bool)

GetSeriesOk returns a tuple with the Series field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelListV1) GetStats ¶

GetStats returns the Stats field value if set, zero value otherwise.

func (*ForumForumModelListV1) GetStatsOk ¶

GetStatsOk returns a tuple with the Stats field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelListV1) GetUrl ¶

func (o *ForumForumModelListV1) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*ForumForumModelListV1) GetUrlOk ¶

func (o *ForumForumModelListV1) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelListV1) HasAdmin ¶

func (o *ForumForumModelListV1) HasAdmin() bool

HasAdmin returns a boolean if a field has been set.

func (*ForumForumModelListV1) HasDescription ¶

func (o *ForumForumModelListV1) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ForumForumModelListV1) HasForumId ¶

func (o *ForumForumModelListV1) HasForumId() bool

HasForumId returns a boolean if a field has been set.

func (*ForumForumModelListV1) HasLastTopic ¶

func (o *ForumForumModelListV1) HasLastTopic() bool

HasLastTopic returns a boolean if a field has been set.

func (*ForumForumModelListV1) HasModerators ¶

func (o *ForumForumModelListV1) HasModerators() bool

HasModerators returns a boolean if a field has been set.

func (*ForumForumModelListV1) HasName ¶

func (o *ForumForumModelListV1) HasName() bool

HasName returns a boolean if a field has been set.

func (*ForumForumModelListV1) HasPosition ¶

func (o *ForumForumModelListV1) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (*ForumForumModelListV1) HasSeries ¶

func (o *ForumForumModelListV1) HasSeries() bool

HasSeries returns a boolean if a field has been set.

func (*ForumForumModelListV1) HasStats ¶

func (o *ForumForumModelListV1) HasStats() bool

HasStats returns a boolean if a field has been set.

func (*ForumForumModelListV1) HasUrl ¶

func (o *ForumForumModelListV1) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (ForumForumModelListV1) MarshalJSON ¶

func (o ForumForumModelListV1) MarshalJSON() ([]byte, error)

func (*ForumForumModelListV1) SetAdmin ¶

SetAdmin gets a reference to the given ForumForumModelListV1Admin and assigns it to the Admin field.

func (*ForumForumModelListV1) SetDescription ¶

func (o *ForumForumModelListV1) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ForumForumModelListV1) SetForumId ¶

func (o *ForumForumModelListV1) SetForumId(v int64)

SetForumId gets a reference to the given int64 and assigns it to the ForumId field.

func (*ForumForumModelListV1) SetLastTopic ¶

SetLastTopic gets a reference to the given ForumTopicModelSearchV1 and assigns it to the LastTopic field.

func (*ForumForumModelListV1) SetModerators ¶

func (o *ForumForumModelListV1) SetModerators(v []ForumAdminModelV1)

SetModerators gets a reference to the given []ForumAdminModelV1 and assigns it to the Moderators field.

func (*ForumForumModelListV1) SetName ¶

func (o *ForumForumModelListV1) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ForumForumModelListV1) SetPosition ¶

func (o *ForumForumModelListV1) SetPosition(v int64)

SetPosition gets a reference to the given int64 and assigns it to the Position field.

func (*ForumForumModelListV1) SetSeries ¶

SetSeries gets a reference to the given SeriesModelSearchV1 and assigns it to the Series field.

func (*ForumForumModelListV1) SetStats ¶

SetStats gets a reference to the given ForumForumModelListV1Stats and assigns it to the Stats field.

func (*ForumForumModelListV1) SetUrl ¶

func (o *ForumForumModelListV1) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (ForumForumModelListV1) ToMap ¶

func (o ForumForumModelListV1) ToMap() (map[string]interface{}, error)

type ForumForumModelListV1Admin ¶

type ForumForumModelListV1Admin struct {
	Locked    *bool `json:"locked,omitempty"`
	Hidden    *bool `json:"hidden,omitempty"`
	VerifyAge *bool `json:"verify_age,omitempty"`
}

ForumForumModelListV1Admin struct for ForumForumModelListV1Admin

func NewForumForumModelListV1Admin ¶

func NewForumForumModelListV1Admin() *ForumForumModelListV1Admin

NewForumForumModelListV1Admin instantiates a new ForumForumModelListV1Admin object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumForumModelListV1AdminWithDefaults ¶

func NewForumForumModelListV1AdminWithDefaults() *ForumForumModelListV1Admin

NewForumForumModelListV1AdminWithDefaults instantiates a new ForumForumModelListV1Admin object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumForumModelListV1Admin) GetHidden ¶

func (o *ForumForumModelListV1Admin) GetHidden() bool

GetHidden returns the Hidden field value if set, zero value otherwise.

func (*ForumForumModelListV1Admin) GetHiddenOk ¶

func (o *ForumForumModelListV1Admin) GetHiddenOk() (*bool, bool)

GetHiddenOk returns a tuple with the Hidden field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelListV1Admin) GetLocked ¶

func (o *ForumForumModelListV1Admin) GetLocked() bool

GetLocked returns the Locked field value if set, zero value otherwise.

func (*ForumForumModelListV1Admin) GetLockedOk ¶

func (o *ForumForumModelListV1Admin) GetLockedOk() (*bool, bool)

GetLockedOk returns a tuple with the Locked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelListV1Admin) GetVerifyAge ¶

func (o *ForumForumModelListV1Admin) GetVerifyAge() bool

GetVerifyAge returns the VerifyAge field value if set, zero value otherwise.

func (*ForumForumModelListV1Admin) GetVerifyAgeOk ¶

func (o *ForumForumModelListV1Admin) GetVerifyAgeOk() (*bool, bool)

GetVerifyAgeOk returns a tuple with the VerifyAge field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelListV1Admin) HasHidden ¶

func (o *ForumForumModelListV1Admin) HasHidden() bool

HasHidden returns a boolean if a field has been set.

func (*ForumForumModelListV1Admin) HasLocked ¶

func (o *ForumForumModelListV1Admin) HasLocked() bool

HasLocked returns a boolean if a field has been set.

func (*ForumForumModelListV1Admin) HasVerifyAge ¶

func (o *ForumForumModelListV1Admin) HasVerifyAge() bool

HasVerifyAge returns a boolean if a field has been set.

func (ForumForumModelListV1Admin) MarshalJSON ¶

func (o ForumForumModelListV1Admin) MarshalJSON() ([]byte, error)

func (*ForumForumModelListV1Admin) SetHidden ¶

func (o *ForumForumModelListV1Admin) SetHidden(v bool)

SetHidden gets a reference to the given bool and assigns it to the Hidden field.

func (*ForumForumModelListV1Admin) SetLocked ¶

func (o *ForumForumModelListV1Admin) SetLocked(v bool)

SetLocked gets a reference to the given bool and assigns it to the Locked field.

func (*ForumForumModelListV1Admin) SetVerifyAge ¶

func (o *ForumForumModelListV1Admin) SetVerifyAge(v bool)

SetVerifyAge gets a reference to the given bool and assigns it to the VerifyAge field.

func (ForumForumModelListV1Admin) ToMap ¶

func (o ForumForumModelListV1Admin) ToMap() (map[string]interface{}, error)

type ForumForumModelListV1Stats ¶

type ForumForumModelListV1Stats struct {
	Topics *int64 `json:"topics,omitempty"`
	Posts  *int64 `json:"posts,omitempty"`
}

ForumForumModelListV1Stats struct for ForumForumModelListV1Stats

func NewForumForumModelListV1Stats ¶

func NewForumForumModelListV1Stats() *ForumForumModelListV1Stats

NewForumForumModelListV1Stats instantiates a new ForumForumModelListV1Stats object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumForumModelListV1StatsWithDefaults ¶

func NewForumForumModelListV1StatsWithDefaults() *ForumForumModelListV1Stats

NewForumForumModelListV1StatsWithDefaults instantiates a new ForumForumModelListV1Stats object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumForumModelListV1Stats) GetPosts ¶

func (o *ForumForumModelListV1Stats) GetPosts() int64

GetPosts returns the Posts field value if set, zero value otherwise.

func (*ForumForumModelListV1Stats) GetPostsOk ¶

func (o *ForumForumModelListV1Stats) GetPostsOk() (*int64, bool)

GetPostsOk returns a tuple with the Posts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelListV1Stats) GetTopics ¶

func (o *ForumForumModelListV1Stats) GetTopics() int64

GetTopics returns the Topics field value if set, zero value otherwise.

func (*ForumForumModelListV1Stats) GetTopicsOk ¶

func (o *ForumForumModelListV1Stats) GetTopicsOk() (*int64, bool)

GetTopicsOk returns a tuple with the Topics field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelListV1Stats) HasPosts ¶

func (o *ForumForumModelListV1Stats) HasPosts() bool

HasPosts returns a boolean if a field has been set.

func (*ForumForumModelListV1Stats) HasTopics ¶

func (o *ForumForumModelListV1Stats) HasTopics() bool

HasTopics returns a boolean if a field has been set.

func (ForumForumModelListV1Stats) MarshalJSON ¶

func (o ForumForumModelListV1Stats) MarshalJSON() ([]byte, error)

func (*ForumForumModelListV1Stats) SetPosts ¶

func (o *ForumForumModelListV1Stats) SetPosts(v int64)

SetPosts gets a reference to the given int64 and assigns it to the Posts field.

func (*ForumForumModelListV1Stats) SetTopics ¶

func (o *ForumForumModelListV1Stats) SetTopics(v int64)

SetTopics gets a reference to the given int64 and assigns it to the Topics field.

func (ForumForumModelListV1Stats) ToMap ¶

func (o ForumForumModelListV1Stats) ToMap() (map[string]interface{}, error)

type ForumForumModelUpdateV1 ¶

type ForumForumModelUpdateV1 struct {
	Name        *string                       `json:"name,omitempty"`
	Description *string                       `json:"description,omitempty"`
	Position    *int64                        `json:"position,omitempty"`
	Admin       *ForumForumModelUpdateV1Admin `json:"admin,omitempty"`
}

ForumForumModelUpdateV1 struct for ForumForumModelUpdateV1

func NewForumForumModelUpdateV1 ¶

func NewForumForumModelUpdateV1() *ForumForumModelUpdateV1

NewForumForumModelUpdateV1 instantiates a new ForumForumModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumForumModelUpdateV1WithDefaults ¶

func NewForumForumModelUpdateV1WithDefaults() *ForumForumModelUpdateV1

NewForumForumModelUpdateV1WithDefaults instantiates a new ForumForumModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumForumModelUpdateV1) GetAdmin ¶

GetAdmin returns the Admin field value if set, zero value otherwise.

func (*ForumForumModelUpdateV1) GetAdminOk ¶

GetAdminOk returns a tuple with the Admin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelUpdateV1) GetDescription ¶

func (o *ForumForumModelUpdateV1) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ForumForumModelUpdateV1) GetDescriptionOk ¶

func (o *ForumForumModelUpdateV1) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelUpdateV1) GetName ¶

func (o *ForumForumModelUpdateV1) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ForumForumModelUpdateV1) GetNameOk ¶

func (o *ForumForumModelUpdateV1) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelUpdateV1) GetPosition ¶

func (o *ForumForumModelUpdateV1) GetPosition() int64

GetPosition returns the Position field value if set, zero value otherwise.

func (*ForumForumModelUpdateV1) GetPositionOk ¶

func (o *ForumForumModelUpdateV1) GetPositionOk() (*int64, bool)

GetPositionOk returns a tuple with the Position field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelUpdateV1) HasAdmin ¶

func (o *ForumForumModelUpdateV1) HasAdmin() bool

HasAdmin returns a boolean if a field has been set.

func (*ForumForumModelUpdateV1) HasDescription ¶

func (o *ForumForumModelUpdateV1) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ForumForumModelUpdateV1) HasName ¶

func (o *ForumForumModelUpdateV1) HasName() bool

HasName returns a boolean if a field has been set.

func (*ForumForumModelUpdateV1) HasPosition ¶

func (o *ForumForumModelUpdateV1) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (ForumForumModelUpdateV1) MarshalJSON ¶

func (o ForumForumModelUpdateV1) MarshalJSON() ([]byte, error)

func (*ForumForumModelUpdateV1) SetAdmin ¶

SetAdmin gets a reference to the given ForumForumModelUpdateV1Admin and assigns it to the Admin field.

func (*ForumForumModelUpdateV1) SetDescription ¶

func (o *ForumForumModelUpdateV1) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ForumForumModelUpdateV1) SetName ¶

func (o *ForumForumModelUpdateV1) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ForumForumModelUpdateV1) SetPosition ¶

func (o *ForumForumModelUpdateV1) SetPosition(v int64)

SetPosition gets a reference to the given int64 and assigns it to the Position field.

func (ForumForumModelUpdateV1) ToMap ¶

func (o ForumForumModelUpdateV1) ToMap() (map[string]interface{}, error)

type ForumForumModelUpdateV1Admin ¶

type ForumForumModelUpdateV1Admin struct {
	Locked    *bool `json:"locked,omitempty"`
	Hidden    *bool `json:"hidden,omitempty"`
	VerifyAge *bool `json:"verify_age,omitempty"`
}

ForumForumModelUpdateV1Admin struct for ForumForumModelUpdateV1Admin

func NewForumForumModelUpdateV1Admin ¶

func NewForumForumModelUpdateV1Admin() *ForumForumModelUpdateV1Admin

NewForumForumModelUpdateV1Admin instantiates a new ForumForumModelUpdateV1Admin object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumForumModelUpdateV1AdminWithDefaults ¶

func NewForumForumModelUpdateV1AdminWithDefaults() *ForumForumModelUpdateV1Admin

NewForumForumModelUpdateV1AdminWithDefaults instantiates a new ForumForumModelUpdateV1Admin object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumForumModelUpdateV1Admin) GetHidden ¶

func (o *ForumForumModelUpdateV1Admin) GetHidden() bool

GetHidden returns the Hidden field value if set, zero value otherwise.

func (*ForumForumModelUpdateV1Admin) GetHiddenOk ¶

func (o *ForumForumModelUpdateV1Admin) GetHiddenOk() (*bool, bool)

GetHiddenOk returns a tuple with the Hidden field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelUpdateV1Admin) GetLocked ¶

func (o *ForumForumModelUpdateV1Admin) GetLocked() bool

GetLocked returns the Locked field value if set, zero value otherwise.

func (*ForumForumModelUpdateV1Admin) GetLockedOk ¶

func (o *ForumForumModelUpdateV1Admin) GetLockedOk() (*bool, bool)

GetLockedOk returns a tuple with the Locked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelUpdateV1Admin) GetVerifyAge ¶

func (o *ForumForumModelUpdateV1Admin) GetVerifyAge() bool

GetVerifyAge returns the VerifyAge field value if set, zero value otherwise.

func (*ForumForumModelUpdateV1Admin) GetVerifyAgeOk ¶

func (o *ForumForumModelUpdateV1Admin) GetVerifyAgeOk() (*bool, bool)

GetVerifyAgeOk returns a tuple with the VerifyAge field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelUpdateV1Admin) HasHidden ¶

func (o *ForumForumModelUpdateV1Admin) HasHidden() bool

HasHidden returns a boolean if a field has been set.

func (*ForumForumModelUpdateV1Admin) HasLocked ¶

func (o *ForumForumModelUpdateV1Admin) HasLocked() bool

HasLocked returns a boolean if a field has been set.

func (*ForumForumModelUpdateV1Admin) HasVerifyAge ¶

func (o *ForumForumModelUpdateV1Admin) HasVerifyAge() bool

HasVerifyAge returns a boolean if a field has been set.

func (ForumForumModelUpdateV1Admin) MarshalJSON ¶

func (o ForumForumModelUpdateV1Admin) MarshalJSON() ([]byte, error)

func (*ForumForumModelUpdateV1Admin) SetHidden ¶

func (o *ForumForumModelUpdateV1Admin) SetHidden(v bool)

SetHidden gets a reference to the given bool and assigns it to the Hidden field.

func (*ForumForumModelUpdateV1Admin) SetLocked ¶

func (o *ForumForumModelUpdateV1Admin) SetLocked(v bool)

SetLocked gets a reference to the given bool and assigns it to the Locked field.

func (*ForumForumModelUpdateV1Admin) SetVerifyAge ¶

func (o *ForumForumModelUpdateV1Admin) SetVerifyAge(v bool)

SetVerifyAge gets a reference to the given bool and assigns it to the VerifyAge field.

func (ForumForumModelUpdateV1Admin) ToMap ¶

func (o ForumForumModelUpdateV1Admin) ToMap() (map[string]interface{}, error)

type ForumForumModelV1 ¶

type ForumForumModelV1 struct {
	ForumId     *int64                     `json:"forum_id,omitempty"`
	Name        *string                    `json:"name,omitempty"`
	Url         *string                    `json:"url,omitempty"`
	Description *string                    `json:"description,omitempty"`
	Position    *int64                     `json:"position,omitempty"`
	Category    *ForumForumModelV1Category `json:"category,omitempty"`
	Moderators  []ForumAdminModelV1        `json:"moderators,omitempty"`
	Series      *SeriesModelSearchV1       `json:"series,omitempty"`
	Stats       *ForumForumModelV1Stats    `json:"stats,omitempty"`
	LastTopic   *ForumTopicModelSearchV1   `json:"last_topic,omitempty"`
	Admin       *ForumForumModelV1Admin    `json:"admin,omitempty"`
}

ForumForumModelV1 struct for ForumForumModelV1

func NewForumForumModelV1 ¶

func NewForumForumModelV1() *ForumForumModelV1

NewForumForumModelV1 instantiates a new ForumForumModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumForumModelV1WithDefaults ¶

func NewForumForumModelV1WithDefaults() *ForumForumModelV1

NewForumForumModelV1WithDefaults instantiates a new ForumForumModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumForumModelV1) GetAdmin ¶

GetAdmin returns the Admin field value if set, zero value otherwise.

func (*ForumForumModelV1) GetAdminOk ¶

func (o *ForumForumModelV1) GetAdminOk() (*ForumForumModelV1Admin, bool)

GetAdminOk returns a tuple with the Admin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelV1) GetCategory ¶

GetCategory returns the Category field value if set, zero value otherwise.

func (*ForumForumModelV1) GetCategoryOk ¶

func (o *ForumForumModelV1) GetCategoryOk() (*ForumForumModelV1Category, bool)

GetCategoryOk returns a tuple with the Category field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelV1) GetDescription ¶

func (o *ForumForumModelV1) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ForumForumModelV1) GetDescriptionOk ¶

func (o *ForumForumModelV1) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelV1) GetForumId ¶

func (o *ForumForumModelV1) GetForumId() int64

GetForumId returns the ForumId field value if set, zero value otherwise.

func (*ForumForumModelV1) GetForumIdOk ¶

func (o *ForumForumModelV1) GetForumIdOk() (*int64, bool)

GetForumIdOk returns a tuple with the ForumId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelV1) GetLastTopic ¶

func (o *ForumForumModelV1) GetLastTopic() ForumTopicModelSearchV1

GetLastTopic returns the LastTopic field value if set, zero value otherwise.

func (*ForumForumModelV1) GetLastTopicOk ¶

func (o *ForumForumModelV1) GetLastTopicOk() (*ForumTopicModelSearchV1, bool)

GetLastTopicOk returns a tuple with the LastTopic field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelV1) GetModerators ¶

func (o *ForumForumModelV1) GetModerators() []ForumAdminModelV1

GetModerators returns the Moderators field value if set, zero value otherwise.

func (*ForumForumModelV1) GetModeratorsOk ¶

func (o *ForumForumModelV1) GetModeratorsOk() ([]ForumAdminModelV1, bool)

GetModeratorsOk returns a tuple with the Moderators field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelV1) GetName ¶

func (o *ForumForumModelV1) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ForumForumModelV1) GetNameOk ¶

func (o *ForumForumModelV1) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelV1) GetPosition ¶

func (o *ForumForumModelV1) GetPosition() int64

GetPosition returns the Position field value if set, zero value otherwise.

func (*ForumForumModelV1) GetPositionOk ¶

func (o *ForumForumModelV1) GetPositionOk() (*int64, bool)

GetPositionOk returns a tuple with the Position field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelV1) GetSeries ¶

func (o *ForumForumModelV1) GetSeries() SeriesModelSearchV1

GetSeries returns the Series field value if set, zero value otherwise.

func (*ForumForumModelV1) GetSeriesOk ¶

func (o *ForumForumModelV1) GetSeriesOk() (*SeriesModelSearchV1, bool)

GetSeriesOk returns a tuple with the Series field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelV1) GetStats ¶

GetStats returns the Stats field value if set, zero value otherwise.

func (*ForumForumModelV1) GetStatsOk ¶

func (o *ForumForumModelV1) GetStatsOk() (*ForumForumModelV1Stats, bool)

GetStatsOk returns a tuple with the Stats field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelV1) GetUrl ¶

func (o *ForumForumModelV1) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*ForumForumModelV1) GetUrlOk ¶

func (o *ForumForumModelV1) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelV1) HasAdmin ¶

func (o *ForumForumModelV1) HasAdmin() bool

HasAdmin returns a boolean if a field has been set.

func (*ForumForumModelV1) HasCategory ¶

func (o *ForumForumModelV1) HasCategory() bool

HasCategory returns a boolean if a field has been set.

func (*ForumForumModelV1) HasDescription ¶

func (o *ForumForumModelV1) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ForumForumModelV1) HasForumId ¶

func (o *ForumForumModelV1) HasForumId() bool

HasForumId returns a boolean if a field has been set.

func (*ForumForumModelV1) HasLastTopic ¶

func (o *ForumForumModelV1) HasLastTopic() bool

HasLastTopic returns a boolean if a field has been set.

func (*ForumForumModelV1) HasModerators ¶

func (o *ForumForumModelV1) HasModerators() bool

HasModerators returns a boolean if a field has been set.

func (*ForumForumModelV1) HasName ¶

func (o *ForumForumModelV1) HasName() bool

HasName returns a boolean if a field has been set.

func (*ForumForumModelV1) HasPosition ¶

func (o *ForumForumModelV1) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (*ForumForumModelV1) HasSeries ¶

func (o *ForumForumModelV1) HasSeries() bool

HasSeries returns a boolean if a field has been set.

func (*ForumForumModelV1) HasStats ¶

func (o *ForumForumModelV1) HasStats() bool

HasStats returns a boolean if a field has been set.

func (*ForumForumModelV1) HasUrl ¶

func (o *ForumForumModelV1) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (ForumForumModelV1) MarshalJSON ¶

func (o ForumForumModelV1) MarshalJSON() ([]byte, error)

func (*ForumForumModelV1) SetAdmin ¶

SetAdmin gets a reference to the given ForumForumModelV1Admin and assigns it to the Admin field.

func (*ForumForumModelV1) SetCategory ¶

func (o *ForumForumModelV1) SetCategory(v ForumForumModelV1Category)

SetCategory gets a reference to the given ForumForumModelV1Category and assigns it to the Category field.

func (*ForumForumModelV1) SetDescription ¶

func (o *ForumForumModelV1) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ForumForumModelV1) SetForumId ¶

func (o *ForumForumModelV1) SetForumId(v int64)

SetForumId gets a reference to the given int64 and assigns it to the ForumId field.

func (*ForumForumModelV1) SetLastTopic ¶

func (o *ForumForumModelV1) SetLastTopic(v ForumTopicModelSearchV1)

SetLastTopic gets a reference to the given ForumTopicModelSearchV1 and assigns it to the LastTopic field.

func (*ForumForumModelV1) SetModerators ¶

func (o *ForumForumModelV1) SetModerators(v []ForumAdminModelV1)

SetModerators gets a reference to the given []ForumAdminModelV1 and assigns it to the Moderators field.

func (*ForumForumModelV1) SetName ¶

func (o *ForumForumModelV1) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ForumForumModelV1) SetPosition ¶

func (o *ForumForumModelV1) SetPosition(v int64)

SetPosition gets a reference to the given int64 and assigns it to the Position field.

func (*ForumForumModelV1) SetSeries ¶

func (o *ForumForumModelV1) SetSeries(v SeriesModelSearchV1)

SetSeries gets a reference to the given SeriesModelSearchV1 and assigns it to the Series field.

func (*ForumForumModelV1) SetStats ¶

SetStats gets a reference to the given ForumForumModelV1Stats and assigns it to the Stats field.

func (*ForumForumModelV1) SetUrl ¶

func (o *ForumForumModelV1) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (ForumForumModelV1) ToMap ¶

func (o ForumForumModelV1) ToMap() (map[string]interface{}, error)

type ForumForumModelV1Admin ¶

type ForumForumModelV1Admin struct {
	Locked    *bool `json:"locked,omitempty"`
	Hidden    *bool `json:"hidden,omitempty"`
	VerifyAge *bool `json:"verify_age,omitempty"`
}

ForumForumModelV1Admin struct for ForumForumModelV1Admin

func NewForumForumModelV1Admin ¶

func NewForumForumModelV1Admin() *ForumForumModelV1Admin

NewForumForumModelV1Admin instantiates a new ForumForumModelV1Admin object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumForumModelV1AdminWithDefaults ¶

func NewForumForumModelV1AdminWithDefaults() *ForumForumModelV1Admin

NewForumForumModelV1AdminWithDefaults instantiates a new ForumForumModelV1Admin object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumForumModelV1Admin) GetHidden ¶

func (o *ForumForumModelV1Admin) GetHidden() bool

GetHidden returns the Hidden field value if set, zero value otherwise.

func (*ForumForumModelV1Admin) GetHiddenOk ¶

func (o *ForumForumModelV1Admin) GetHiddenOk() (*bool, bool)

GetHiddenOk returns a tuple with the Hidden field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelV1Admin) GetLocked ¶

func (o *ForumForumModelV1Admin) GetLocked() bool

GetLocked returns the Locked field value if set, zero value otherwise.

func (*ForumForumModelV1Admin) GetLockedOk ¶

func (o *ForumForumModelV1Admin) GetLockedOk() (*bool, bool)

GetLockedOk returns a tuple with the Locked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelV1Admin) GetVerifyAge ¶

func (o *ForumForumModelV1Admin) GetVerifyAge() bool

GetVerifyAge returns the VerifyAge field value if set, zero value otherwise.

func (*ForumForumModelV1Admin) GetVerifyAgeOk ¶

func (o *ForumForumModelV1Admin) GetVerifyAgeOk() (*bool, bool)

GetVerifyAgeOk returns a tuple with the VerifyAge field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelV1Admin) HasHidden ¶

func (o *ForumForumModelV1Admin) HasHidden() bool

HasHidden returns a boolean if a field has been set.

func (*ForumForumModelV1Admin) HasLocked ¶

func (o *ForumForumModelV1Admin) HasLocked() bool

HasLocked returns a boolean if a field has been set.

func (*ForumForumModelV1Admin) HasVerifyAge ¶

func (o *ForumForumModelV1Admin) HasVerifyAge() bool

HasVerifyAge returns a boolean if a field has been set.

func (ForumForumModelV1Admin) MarshalJSON ¶

func (o ForumForumModelV1Admin) MarshalJSON() ([]byte, error)

func (*ForumForumModelV1Admin) SetHidden ¶

func (o *ForumForumModelV1Admin) SetHidden(v bool)

SetHidden gets a reference to the given bool and assigns it to the Hidden field.

func (*ForumForumModelV1Admin) SetLocked ¶

func (o *ForumForumModelV1Admin) SetLocked(v bool)

SetLocked gets a reference to the given bool and assigns it to the Locked field.

func (*ForumForumModelV1Admin) SetVerifyAge ¶

func (o *ForumForumModelV1Admin) SetVerifyAge(v bool)

SetVerifyAge gets a reference to the given bool and assigns it to the VerifyAge field.

func (ForumForumModelV1Admin) ToMap ¶

func (o ForumForumModelV1Admin) ToMap() (map[string]interface{}, error)

type ForumForumModelV1Category ¶

type ForumForumModelV1Category struct {
	CategoryId   *int64  `json:"category_id,omitempty"`
	CategoryName *string `json:"category_name,omitempty"`
}

ForumForumModelV1Category struct for ForumForumModelV1Category

func NewForumForumModelV1Category ¶

func NewForumForumModelV1Category() *ForumForumModelV1Category

NewForumForumModelV1Category instantiates a new ForumForumModelV1Category object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumForumModelV1CategoryWithDefaults ¶

func NewForumForumModelV1CategoryWithDefaults() *ForumForumModelV1Category

NewForumForumModelV1CategoryWithDefaults instantiates a new ForumForumModelV1Category object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumForumModelV1Category) GetCategoryId ¶

func (o *ForumForumModelV1Category) GetCategoryId() int64

GetCategoryId returns the CategoryId field value if set, zero value otherwise.

func (*ForumForumModelV1Category) GetCategoryIdOk ¶

func (o *ForumForumModelV1Category) GetCategoryIdOk() (*int64, bool)

GetCategoryIdOk returns a tuple with the CategoryId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelV1Category) GetCategoryName ¶

func (o *ForumForumModelV1Category) GetCategoryName() string

GetCategoryName returns the CategoryName field value if set, zero value otherwise.

func (*ForumForumModelV1Category) GetCategoryNameOk ¶

func (o *ForumForumModelV1Category) GetCategoryNameOk() (*string, bool)

GetCategoryNameOk returns a tuple with the CategoryName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelV1Category) HasCategoryId ¶

func (o *ForumForumModelV1Category) HasCategoryId() bool

HasCategoryId returns a boolean if a field has been set.

func (*ForumForumModelV1Category) HasCategoryName ¶

func (o *ForumForumModelV1Category) HasCategoryName() bool

HasCategoryName returns a boolean if a field has been set.

func (ForumForumModelV1Category) MarshalJSON ¶

func (o ForumForumModelV1Category) MarshalJSON() ([]byte, error)

func (*ForumForumModelV1Category) SetCategoryId ¶

func (o *ForumForumModelV1Category) SetCategoryId(v int64)

SetCategoryId gets a reference to the given int64 and assigns it to the CategoryId field.

func (*ForumForumModelV1Category) SetCategoryName ¶

func (o *ForumForumModelV1Category) SetCategoryName(v string)

SetCategoryName gets a reference to the given string and assigns it to the CategoryName field.

func (ForumForumModelV1Category) ToMap ¶

func (o ForumForumModelV1Category) ToMap() (map[string]interface{}, error)

type ForumForumModelV1Stats ¶

type ForumForumModelV1Stats struct {
	Topics *int64 `json:"topics,omitempty"`
	Posts  *int64 `json:"posts,omitempty"`
}

ForumForumModelV1Stats struct for ForumForumModelV1Stats

func NewForumForumModelV1Stats ¶

func NewForumForumModelV1Stats() *ForumForumModelV1Stats

NewForumForumModelV1Stats instantiates a new ForumForumModelV1Stats object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumForumModelV1StatsWithDefaults ¶

func NewForumForumModelV1StatsWithDefaults() *ForumForumModelV1Stats

NewForumForumModelV1StatsWithDefaults instantiates a new ForumForumModelV1Stats object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumForumModelV1Stats) GetPosts ¶

func (o *ForumForumModelV1Stats) GetPosts() int64

GetPosts returns the Posts field value if set, zero value otherwise.

func (*ForumForumModelV1Stats) GetPostsOk ¶

func (o *ForumForumModelV1Stats) GetPostsOk() (*int64, bool)

GetPostsOk returns a tuple with the Posts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelV1Stats) GetTopics ¶

func (o *ForumForumModelV1Stats) GetTopics() int64

GetTopics returns the Topics field value if set, zero value otherwise.

func (*ForumForumModelV1Stats) GetTopicsOk ¶

func (o *ForumForumModelV1Stats) GetTopicsOk() (*int64, bool)

GetTopicsOk returns a tuple with the Topics field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumForumModelV1Stats) HasPosts ¶

func (o *ForumForumModelV1Stats) HasPosts() bool

HasPosts returns a boolean if a field has been set.

func (*ForumForumModelV1Stats) HasTopics ¶

func (o *ForumForumModelV1Stats) HasTopics() bool

HasTopics returns a boolean if a field has been set.

func (ForumForumModelV1Stats) MarshalJSON ¶

func (o ForumForumModelV1Stats) MarshalJSON() ([]byte, error)

func (*ForumForumModelV1Stats) SetPosts ¶

func (o *ForumForumModelV1Stats) SetPosts(v int64)

SetPosts gets a reference to the given int64 and assigns it to the Posts field.

func (*ForumForumModelV1Stats) SetTopics ¶

func (o *ForumForumModelV1Stats) SetTopics(v int64)

SetTopics gets a reference to the given int64 and assigns it to the Topics field.

func (ForumForumModelV1Stats) ToMap ¶

func (o ForumForumModelV1Stats) ToMap() (map[string]interface{}, error)

type ForumLookupResponseV1 ¶

type ForumLookupResponseV1 struct {
	TopicId *int64 `json:"topic_id,omitempty"`
	ForumId *int64 `json:"forum_id,omitempty"`
}

ForumLookupResponseV1 struct for ForumLookupResponseV1

func NewForumLookupResponseV1 ¶

func NewForumLookupResponseV1() *ForumLookupResponseV1

NewForumLookupResponseV1 instantiates a new ForumLookupResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumLookupResponseV1WithDefaults ¶

func NewForumLookupResponseV1WithDefaults() *ForumLookupResponseV1

NewForumLookupResponseV1WithDefaults instantiates a new ForumLookupResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumLookupResponseV1) GetForumId ¶

func (o *ForumLookupResponseV1) GetForumId() int64

GetForumId returns the ForumId field value if set, zero value otherwise.

func (*ForumLookupResponseV1) GetForumIdOk ¶

func (o *ForumLookupResponseV1) GetForumIdOk() (*int64, bool)

GetForumIdOk returns a tuple with the ForumId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumLookupResponseV1) GetTopicId ¶

func (o *ForumLookupResponseV1) GetTopicId() int64

GetTopicId returns the TopicId field value if set, zero value otherwise.

func (*ForumLookupResponseV1) GetTopicIdOk ¶

func (o *ForumLookupResponseV1) GetTopicIdOk() (*int64, bool)

GetTopicIdOk returns a tuple with the TopicId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumLookupResponseV1) HasForumId ¶

func (o *ForumLookupResponseV1) HasForumId() bool

HasForumId returns a boolean if a field has been set.

func (*ForumLookupResponseV1) HasTopicId ¶

func (o *ForumLookupResponseV1) HasTopicId() bool

HasTopicId returns a boolean if a field has been set.

func (ForumLookupResponseV1) MarshalJSON ¶

func (o ForumLookupResponseV1) MarshalJSON() ([]byte, error)

func (*ForumLookupResponseV1) SetForumId ¶

func (o *ForumLookupResponseV1) SetForumId(v int64)

SetForumId gets a reference to the given int64 and assigns it to the ForumId field.

func (*ForumLookupResponseV1) SetTopicId ¶

func (o *ForumLookupResponseV1) SetTopicId(v int64)

SetTopicId gets a reference to the given int64 and assigns it to the TopicId field.

func (ForumLookupResponseV1) ToMap ¶

func (o ForumLookupResponseV1) ToMap() (map[string]interface{}, error)

type ForumPollAnswerModelUpdateV1 ¶

type ForumPollAnswerModelUpdateV1 struct {
	AnswerId    int64  `json:"answer_id"`
	Answer      string `json:"answer"`
	TempImageId *int64 `json:"temp_image_id,omitempty"`
}

ForumPollAnswerModelUpdateV1 struct for ForumPollAnswerModelUpdateV1

func NewForumPollAnswerModelUpdateV1 ¶

func NewForumPollAnswerModelUpdateV1(answerId int64, answer string) *ForumPollAnswerModelUpdateV1

NewForumPollAnswerModelUpdateV1 instantiates a new ForumPollAnswerModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumPollAnswerModelUpdateV1WithDefaults ¶

func NewForumPollAnswerModelUpdateV1WithDefaults() *ForumPollAnswerModelUpdateV1

NewForumPollAnswerModelUpdateV1WithDefaults instantiates a new ForumPollAnswerModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumPollAnswerModelUpdateV1) GetAnswer ¶

func (o *ForumPollAnswerModelUpdateV1) GetAnswer() string

GetAnswer returns the Answer field value

func (*ForumPollAnswerModelUpdateV1) GetAnswerId ¶

func (o *ForumPollAnswerModelUpdateV1) GetAnswerId() int64

GetAnswerId returns the AnswerId field value

func (*ForumPollAnswerModelUpdateV1) GetAnswerIdOk ¶

func (o *ForumPollAnswerModelUpdateV1) GetAnswerIdOk() (*int64, bool)

GetAnswerIdOk returns a tuple with the AnswerId field value and a boolean to check if the value has been set.

func (*ForumPollAnswerModelUpdateV1) GetAnswerOk ¶

func (o *ForumPollAnswerModelUpdateV1) GetAnswerOk() (*string, bool)

GetAnswerOk returns a tuple with the Answer field value and a boolean to check if the value has been set.

func (*ForumPollAnswerModelUpdateV1) GetTempImageId ¶

func (o *ForumPollAnswerModelUpdateV1) GetTempImageId() int64

GetTempImageId returns the TempImageId field value if set, zero value otherwise.

func (*ForumPollAnswerModelUpdateV1) GetTempImageIdOk ¶

func (o *ForumPollAnswerModelUpdateV1) GetTempImageIdOk() (*int64, bool)

GetTempImageIdOk returns a tuple with the TempImageId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPollAnswerModelUpdateV1) HasTempImageId ¶

func (o *ForumPollAnswerModelUpdateV1) HasTempImageId() bool

HasTempImageId returns a boolean if a field has been set.

func (ForumPollAnswerModelUpdateV1) MarshalJSON ¶

func (o ForumPollAnswerModelUpdateV1) MarshalJSON() ([]byte, error)

func (*ForumPollAnswerModelUpdateV1) SetAnswer ¶

func (o *ForumPollAnswerModelUpdateV1) SetAnswer(v string)

SetAnswer sets field value

func (*ForumPollAnswerModelUpdateV1) SetAnswerId ¶

func (o *ForumPollAnswerModelUpdateV1) SetAnswerId(v int64)

SetAnswerId sets field value

func (*ForumPollAnswerModelUpdateV1) SetTempImageId ¶

func (o *ForumPollAnswerModelUpdateV1) SetTempImageId(v int64)

SetTempImageId gets a reference to the given int64 and assigns it to the TempImageId field.

func (ForumPollAnswerModelUpdateV1) ToMap ¶

func (o ForumPollAnswerModelUpdateV1) ToMap() (map[string]interface{}, error)

type ForumPollAnswerModelV1 ¶

type ForumPollAnswerModelV1 struct {
	AnswerId int64                        `json:"answer_id"`
	Answer   string                       `json:"answer"`
	Votes    *int64                       `json:"votes,omitempty"`
	Image    *ForumPollAnswerModelV1Image `json:"image,omitempty"`
}

ForumPollAnswerModelV1 struct for ForumPollAnswerModelV1

func NewForumPollAnswerModelV1 ¶

func NewForumPollAnswerModelV1(answerId int64, answer string) *ForumPollAnswerModelV1

NewForumPollAnswerModelV1 instantiates a new ForumPollAnswerModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumPollAnswerModelV1WithDefaults ¶

func NewForumPollAnswerModelV1WithDefaults() *ForumPollAnswerModelV1

NewForumPollAnswerModelV1WithDefaults instantiates a new ForumPollAnswerModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumPollAnswerModelV1) GetAnswer ¶

func (o *ForumPollAnswerModelV1) GetAnswer() string

GetAnswer returns the Answer field value

func (*ForumPollAnswerModelV1) GetAnswerId ¶

func (o *ForumPollAnswerModelV1) GetAnswerId() int64

GetAnswerId returns the AnswerId field value

func (*ForumPollAnswerModelV1) GetAnswerIdOk ¶

func (o *ForumPollAnswerModelV1) GetAnswerIdOk() (*int64, bool)

GetAnswerIdOk returns a tuple with the AnswerId field value and a boolean to check if the value has been set.

func (*ForumPollAnswerModelV1) GetAnswerOk ¶

func (o *ForumPollAnswerModelV1) GetAnswerOk() (*string, bool)

GetAnswerOk returns a tuple with the Answer field value and a boolean to check if the value has been set.

func (*ForumPollAnswerModelV1) GetImage ¶

GetImage returns the Image field value if set, zero value otherwise.

func (*ForumPollAnswerModelV1) GetImageOk ¶

GetImageOk returns a tuple with the Image field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPollAnswerModelV1) GetVotes ¶

func (o *ForumPollAnswerModelV1) GetVotes() int64

GetVotes returns the Votes field value if set, zero value otherwise.

func (*ForumPollAnswerModelV1) GetVotesOk ¶

func (o *ForumPollAnswerModelV1) GetVotesOk() (*int64, bool)

GetVotesOk returns a tuple with the Votes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPollAnswerModelV1) HasImage ¶

func (o *ForumPollAnswerModelV1) HasImage() bool

HasImage returns a boolean if a field has been set.

func (*ForumPollAnswerModelV1) HasVotes ¶

func (o *ForumPollAnswerModelV1) HasVotes() bool

HasVotes returns a boolean if a field has been set.

func (ForumPollAnswerModelV1) MarshalJSON ¶

func (o ForumPollAnswerModelV1) MarshalJSON() ([]byte, error)

func (*ForumPollAnswerModelV1) SetAnswer ¶

func (o *ForumPollAnswerModelV1) SetAnswer(v string)

SetAnswer sets field value

func (*ForumPollAnswerModelV1) SetAnswerId ¶

func (o *ForumPollAnswerModelV1) SetAnswerId(v int64)

SetAnswerId sets field value

func (*ForumPollAnswerModelV1) SetImage ¶

SetImage gets a reference to the given ForumPollAnswerModelV1Image and assigns it to the Image field.

func (*ForumPollAnswerModelV1) SetVotes ¶

func (o *ForumPollAnswerModelV1) SetVotes(v int64)

SetVotes gets a reference to the given int64 and assigns it to the Votes field.

func (ForumPollAnswerModelV1) ToMap ¶

func (o ForumPollAnswerModelV1) ToMap() (map[string]interface{}, error)

type ForumPollAnswerModelV1Image ¶

type ForumPollAnswerModelV1Image struct {
	Height   *int64  `json:"height,omitempty"`
	Width    *int64  `json:"width,omitempty"`
	Filename *string `json:"filename,omitempty"`
}

ForumPollAnswerModelV1Image struct for ForumPollAnswerModelV1Image

func NewForumPollAnswerModelV1Image ¶

func NewForumPollAnswerModelV1Image() *ForumPollAnswerModelV1Image

NewForumPollAnswerModelV1Image instantiates a new ForumPollAnswerModelV1Image object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumPollAnswerModelV1ImageWithDefaults ¶

func NewForumPollAnswerModelV1ImageWithDefaults() *ForumPollAnswerModelV1Image

NewForumPollAnswerModelV1ImageWithDefaults instantiates a new ForumPollAnswerModelV1Image object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumPollAnswerModelV1Image) GetFilename ¶

func (o *ForumPollAnswerModelV1Image) GetFilename() string

GetFilename returns the Filename field value if set, zero value otherwise.

func (*ForumPollAnswerModelV1Image) GetFilenameOk ¶

func (o *ForumPollAnswerModelV1Image) GetFilenameOk() (*string, bool)

GetFilenameOk returns a tuple with the Filename field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPollAnswerModelV1Image) GetHeight ¶

func (o *ForumPollAnswerModelV1Image) GetHeight() int64

GetHeight returns the Height field value if set, zero value otherwise.

func (*ForumPollAnswerModelV1Image) GetHeightOk ¶

func (o *ForumPollAnswerModelV1Image) GetHeightOk() (*int64, bool)

GetHeightOk returns a tuple with the Height field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPollAnswerModelV1Image) GetWidth ¶

func (o *ForumPollAnswerModelV1Image) GetWidth() int64

GetWidth returns the Width field value if set, zero value otherwise.

func (*ForumPollAnswerModelV1Image) GetWidthOk ¶

func (o *ForumPollAnswerModelV1Image) GetWidthOk() (*int64, bool)

GetWidthOk returns a tuple with the Width field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPollAnswerModelV1Image) HasFilename ¶

func (o *ForumPollAnswerModelV1Image) HasFilename() bool

HasFilename returns a boolean if a field has been set.

func (*ForumPollAnswerModelV1Image) HasHeight ¶

func (o *ForumPollAnswerModelV1Image) HasHeight() bool

HasHeight returns a boolean if a field has been set.

func (*ForumPollAnswerModelV1Image) HasWidth ¶

func (o *ForumPollAnswerModelV1Image) HasWidth() bool

HasWidth returns a boolean if a field has been set.

func (ForumPollAnswerModelV1Image) MarshalJSON ¶

func (o ForumPollAnswerModelV1Image) MarshalJSON() ([]byte, error)

func (*ForumPollAnswerModelV1Image) SetFilename ¶

func (o *ForumPollAnswerModelV1Image) SetFilename(v string)

SetFilename gets a reference to the given string and assigns it to the Filename field.

func (*ForumPollAnswerModelV1Image) SetHeight ¶

func (o *ForumPollAnswerModelV1Image) SetHeight(v int64)

SetHeight gets a reference to the given int64 and assigns it to the Height field.

func (*ForumPollAnswerModelV1Image) SetWidth ¶

func (o *ForumPollAnswerModelV1Image) SetWidth(v int64)

SetWidth gets a reference to the given int64 and assigns it to the Width field.

func (ForumPollAnswerModelV1Image) ToMap ¶

func (o ForumPollAnswerModelV1Image) ToMap() (map[string]interface{}, error)

type ForumPollModelUpdateV1 ¶

type ForumPollModelUpdateV1 struct {
	Question *string                        `json:"question,omitempty"`
	Answers  []ForumPollAnswerModelUpdateV1 `json:"answers,omitempty"`
}

ForumPollModelUpdateV1 struct for ForumPollModelUpdateV1

func NewForumPollModelUpdateV1 ¶

func NewForumPollModelUpdateV1() *ForumPollModelUpdateV1

NewForumPollModelUpdateV1 instantiates a new ForumPollModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumPollModelUpdateV1WithDefaults ¶

func NewForumPollModelUpdateV1WithDefaults() *ForumPollModelUpdateV1

NewForumPollModelUpdateV1WithDefaults instantiates a new ForumPollModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumPollModelUpdateV1) GetAnswers ¶

GetAnswers returns the Answers field value if set, zero value otherwise.

func (*ForumPollModelUpdateV1) GetAnswersOk ¶

GetAnswersOk returns a tuple with the Answers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPollModelUpdateV1) GetQuestion ¶

func (o *ForumPollModelUpdateV1) GetQuestion() string

GetQuestion returns the Question field value if set, zero value otherwise.

func (*ForumPollModelUpdateV1) GetQuestionOk ¶

func (o *ForumPollModelUpdateV1) GetQuestionOk() (*string, bool)

GetQuestionOk returns a tuple with the Question field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPollModelUpdateV1) HasAnswers ¶

func (o *ForumPollModelUpdateV1) HasAnswers() bool

HasAnswers returns a boolean if a field has been set.

func (*ForumPollModelUpdateV1) HasQuestion ¶

func (o *ForumPollModelUpdateV1) HasQuestion() bool

HasQuestion returns a boolean if a field has been set.

func (ForumPollModelUpdateV1) MarshalJSON ¶

func (o ForumPollModelUpdateV1) MarshalJSON() ([]byte, error)

func (*ForumPollModelUpdateV1) SetAnswers ¶

SetAnswers gets a reference to the given []ForumPollAnswerModelUpdateV1 and assigns it to the Answers field.

func (*ForumPollModelUpdateV1) SetQuestion ¶

func (o *ForumPollModelUpdateV1) SetQuestion(v string)

SetQuestion gets a reference to the given string and assigns it to the Question field.

func (ForumPollModelUpdateV1) ToMap ¶

func (o ForumPollModelUpdateV1) ToMap() (map[string]interface{}, error)

type ForumPollModelV1 ¶

type ForumPollModelV1 struct {
	Question *string                  `json:"question,omitempty"`
	Answers  []ForumPollAnswerModelV1 `json:"answers,omitempty"`
	Votes    *int64                   `json:"votes,omitempty"`
	Admin    *ForumPollModelV1Admin   `json:"admin,omitempty"`
}

ForumPollModelV1 struct for ForumPollModelV1

func NewForumPollModelV1 ¶

func NewForumPollModelV1() *ForumPollModelV1

NewForumPollModelV1 instantiates a new ForumPollModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumPollModelV1WithDefaults ¶

func NewForumPollModelV1WithDefaults() *ForumPollModelV1

NewForumPollModelV1WithDefaults instantiates a new ForumPollModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumPollModelV1) GetAdmin ¶

GetAdmin returns the Admin field value if set, zero value otherwise.

func (*ForumPollModelV1) GetAdminOk ¶

func (o *ForumPollModelV1) GetAdminOk() (*ForumPollModelV1Admin, bool)

GetAdminOk returns a tuple with the Admin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPollModelV1) GetAnswers ¶

func (o *ForumPollModelV1) GetAnswers() []ForumPollAnswerModelV1

GetAnswers returns the Answers field value if set, zero value otherwise.

func (*ForumPollModelV1) GetAnswersOk ¶

func (o *ForumPollModelV1) GetAnswersOk() ([]ForumPollAnswerModelV1, bool)

GetAnswersOk returns a tuple with the Answers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPollModelV1) GetQuestion ¶

func (o *ForumPollModelV1) GetQuestion() string

GetQuestion returns the Question field value if set, zero value otherwise.

func (*ForumPollModelV1) GetQuestionOk ¶

func (o *ForumPollModelV1) GetQuestionOk() (*string, bool)

GetQuestionOk returns a tuple with the Question field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPollModelV1) GetVotes ¶

func (o *ForumPollModelV1) GetVotes() int64

GetVotes returns the Votes field value if set, zero value otherwise.

func (*ForumPollModelV1) GetVotesOk ¶

func (o *ForumPollModelV1) GetVotesOk() (*int64, bool)

GetVotesOk returns a tuple with the Votes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPollModelV1) HasAdmin ¶

func (o *ForumPollModelV1) HasAdmin() bool

HasAdmin returns a boolean if a field has been set.

func (*ForumPollModelV1) HasAnswers ¶

func (o *ForumPollModelV1) HasAnswers() bool

HasAnswers returns a boolean if a field has been set.

func (*ForumPollModelV1) HasQuestion ¶

func (o *ForumPollModelV1) HasQuestion() bool

HasQuestion returns a boolean if a field has been set.

func (*ForumPollModelV1) HasVotes ¶

func (o *ForumPollModelV1) HasVotes() bool

HasVotes returns a boolean if a field has been set.

func (ForumPollModelV1) MarshalJSON ¶

func (o ForumPollModelV1) MarshalJSON() ([]byte, error)

func (*ForumPollModelV1) SetAdmin ¶

func (o *ForumPollModelV1) SetAdmin(v ForumPollModelV1Admin)

SetAdmin gets a reference to the given ForumPollModelV1Admin and assigns it to the Admin field.

func (*ForumPollModelV1) SetAnswers ¶

func (o *ForumPollModelV1) SetAnswers(v []ForumPollAnswerModelV1)

SetAnswers gets a reference to the given []ForumPollAnswerModelV1 and assigns it to the Answers field.

func (*ForumPollModelV1) SetQuestion ¶

func (o *ForumPollModelV1) SetQuestion(v string)

SetQuestion gets a reference to the given string and assigns it to the Question field.

func (*ForumPollModelV1) SetVotes ¶

func (o *ForumPollModelV1) SetVotes(v int64)

SetVotes gets a reference to the given int64 and assigns it to the Votes field.

func (ForumPollModelV1) ToMap ¶

func (o ForumPollModelV1) ToMap() (map[string]interface{}, error)

type ForumPollModelV1Admin ¶

type ForumPollModelV1Admin struct {
	ImagePoll *bool `json:"image_poll,omitempty"`
}

ForumPollModelV1Admin struct for ForumPollModelV1Admin

func NewForumPollModelV1Admin ¶

func NewForumPollModelV1Admin() *ForumPollModelV1Admin

NewForumPollModelV1Admin instantiates a new ForumPollModelV1Admin object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumPollModelV1AdminWithDefaults ¶

func NewForumPollModelV1AdminWithDefaults() *ForumPollModelV1Admin

NewForumPollModelV1AdminWithDefaults instantiates a new ForumPollModelV1Admin object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumPollModelV1Admin) GetImagePoll ¶

func (o *ForumPollModelV1Admin) GetImagePoll() bool

GetImagePoll returns the ImagePoll field value if set, zero value otherwise.

func (*ForumPollModelV1Admin) GetImagePollOk ¶

func (o *ForumPollModelV1Admin) GetImagePollOk() (*bool, bool)

GetImagePollOk returns a tuple with the ImagePoll field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPollModelV1Admin) HasImagePoll ¶

func (o *ForumPollModelV1Admin) HasImagePoll() bool

HasImagePoll returns a boolean if a field has been set.

func (ForumPollModelV1Admin) MarshalJSON ¶

func (o ForumPollModelV1Admin) MarshalJSON() ([]byte, error)

func (*ForumPollModelV1Admin) SetImagePoll ¶

func (o *ForumPollModelV1Admin) SetImagePoll(v bool)

SetImagePoll gets a reference to the given bool and assigns it to the ImagePoll field.

func (ForumPollModelV1Admin) ToMap ¶

func (o ForumPollModelV1Admin) ToMap() (map[string]interface{}, error)

type ForumPollTempImageModelV1 ¶

type ForumPollTempImageModelV1 struct {
	ImageId   *int64                        `json:"image_id,omitempty"`
	Caption   *string                       `json:"caption,omitempty"`
	Url       *ForumPollTempImageModelV1Url `json:"url,omitempty"`
	Height    *int64                        `json:"height,omitempty"`
	Width     *int64                        `json:"width,omitempty"`
	TimeAdded *TimeV1                       `json:"time_added,omitempty"`
}

ForumPollTempImageModelV1 struct for ForumPollTempImageModelV1

func NewForumPollTempImageModelV1 ¶

func NewForumPollTempImageModelV1() *ForumPollTempImageModelV1

NewForumPollTempImageModelV1 instantiates a new ForumPollTempImageModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumPollTempImageModelV1WithDefaults ¶

func NewForumPollTempImageModelV1WithDefaults() *ForumPollTempImageModelV1

NewForumPollTempImageModelV1WithDefaults instantiates a new ForumPollTempImageModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumPollTempImageModelV1) GetCaption ¶

func (o *ForumPollTempImageModelV1) GetCaption() string

GetCaption returns the Caption field value if set, zero value otherwise.

func (*ForumPollTempImageModelV1) GetCaptionOk ¶

func (o *ForumPollTempImageModelV1) GetCaptionOk() (*string, bool)

GetCaptionOk returns a tuple with the Caption field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPollTempImageModelV1) GetHeight ¶

func (o *ForumPollTempImageModelV1) GetHeight() int64

GetHeight returns the Height field value if set, zero value otherwise.

func (*ForumPollTempImageModelV1) GetHeightOk ¶

func (o *ForumPollTempImageModelV1) GetHeightOk() (*int64, bool)

GetHeightOk returns a tuple with the Height field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPollTempImageModelV1) GetImageId ¶

func (o *ForumPollTempImageModelV1) GetImageId() int64

GetImageId returns the ImageId field value if set, zero value otherwise.

func (*ForumPollTempImageModelV1) GetImageIdOk ¶

func (o *ForumPollTempImageModelV1) GetImageIdOk() (*int64, bool)

GetImageIdOk returns a tuple with the ImageId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPollTempImageModelV1) GetTimeAdded ¶

func (o *ForumPollTempImageModelV1) GetTimeAdded() TimeV1

GetTimeAdded returns the TimeAdded field value if set, zero value otherwise.

func (*ForumPollTempImageModelV1) GetTimeAddedOk ¶

func (o *ForumPollTempImageModelV1) GetTimeAddedOk() (*TimeV1, bool)

GetTimeAddedOk returns a tuple with the TimeAdded field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPollTempImageModelV1) GetUrl ¶

GetUrl returns the Url field value if set, zero value otherwise.

func (*ForumPollTempImageModelV1) GetUrlOk ¶

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPollTempImageModelV1) GetWidth ¶

func (o *ForumPollTempImageModelV1) GetWidth() int64

GetWidth returns the Width field value if set, zero value otherwise.

func (*ForumPollTempImageModelV1) GetWidthOk ¶

func (o *ForumPollTempImageModelV1) GetWidthOk() (*int64, bool)

GetWidthOk returns a tuple with the Width field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPollTempImageModelV1) HasCaption ¶

func (o *ForumPollTempImageModelV1) HasCaption() bool

HasCaption returns a boolean if a field has been set.

func (*ForumPollTempImageModelV1) HasHeight ¶

func (o *ForumPollTempImageModelV1) HasHeight() bool

HasHeight returns a boolean if a field has been set.

func (*ForumPollTempImageModelV1) HasImageId ¶

func (o *ForumPollTempImageModelV1) HasImageId() bool

HasImageId returns a boolean if a field has been set.

func (*ForumPollTempImageModelV1) HasTimeAdded ¶

func (o *ForumPollTempImageModelV1) HasTimeAdded() bool

HasTimeAdded returns a boolean if a field has been set.

func (*ForumPollTempImageModelV1) HasUrl ¶

func (o *ForumPollTempImageModelV1) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (*ForumPollTempImageModelV1) HasWidth ¶

func (o *ForumPollTempImageModelV1) HasWidth() bool

HasWidth returns a boolean if a field has been set.

func (ForumPollTempImageModelV1) MarshalJSON ¶

func (o ForumPollTempImageModelV1) MarshalJSON() ([]byte, error)

func (*ForumPollTempImageModelV1) SetCaption ¶

func (o *ForumPollTempImageModelV1) SetCaption(v string)

SetCaption gets a reference to the given string and assigns it to the Caption field.

func (*ForumPollTempImageModelV1) SetHeight ¶

func (o *ForumPollTempImageModelV1) SetHeight(v int64)

SetHeight gets a reference to the given int64 and assigns it to the Height field.

func (*ForumPollTempImageModelV1) SetImageId ¶

func (o *ForumPollTempImageModelV1) SetImageId(v int64)

SetImageId gets a reference to the given int64 and assigns it to the ImageId field.

func (*ForumPollTempImageModelV1) SetTimeAdded ¶

func (o *ForumPollTempImageModelV1) SetTimeAdded(v TimeV1)

SetTimeAdded gets a reference to the given TimeV1 and assigns it to the TimeAdded field.

func (*ForumPollTempImageModelV1) SetUrl ¶

SetUrl gets a reference to the given ForumPollTempImageModelV1Url and assigns it to the Url field.

func (*ForumPollTempImageModelV1) SetWidth ¶

func (o *ForumPollTempImageModelV1) SetWidth(v int64)

SetWidth gets a reference to the given int64 and assigns it to the Width field.

func (ForumPollTempImageModelV1) ToMap ¶

func (o ForumPollTempImageModelV1) ToMap() (map[string]interface{}, error)

type ForumPollTempImageModelV1Url ¶

type ForumPollTempImageModelV1Url struct {
	Original *string `json:"original,omitempty"`
	Thumb    *string `json:"thumb,omitempty"`
}

ForumPollTempImageModelV1Url struct for ForumPollTempImageModelV1Url

func NewForumPollTempImageModelV1Url ¶

func NewForumPollTempImageModelV1Url() *ForumPollTempImageModelV1Url

NewForumPollTempImageModelV1Url instantiates a new ForumPollTempImageModelV1Url object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumPollTempImageModelV1UrlWithDefaults ¶

func NewForumPollTempImageModelV1UrlWithDefaults() *ForumPollTempImageModelV1Url

NewForumPollTempImageModelV1UrlWithDefaults instantiates a new ForumPollTempImageModelV1Url object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumPollTempImageModelV1Url) GetOriginal ¶

func (o *ForumPollTempImageModelV1Url) GetOriginal() string

GetOriginal returns the Original field value if set, zero value otherwise.

func (*ForumPollTempImageModelV1Url) GetOriginalOk ¶

func (o *ForumPollTempImageModelV1Url) GetOriginalOk() (*string, bool)

GetOriginalOk returns a tuple with the Original field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPollTempImageModelV1Url) GetThumb ¶

func (o *ForumPollTempImageModelV1Url) GetThumb() string

GetThumb returns the Thumb field value if set, zero value otherwise.

func (*ForumPollTempImageModelV1Url) GetThumbOk ¶

func (o *ForumPollTempImageModelV1Url) GetThumbOk() (*string, bool)

GetThumbOk returns a tuple with the Thumb field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPollTempImageModelV1Url) HasOriginal ¶

func (o *ForumPollTempImageModelV1Url) HasOriginal() bool

HasOriginal returns a boolean if a field has been set.

func (*ForumPollTempImageModelV1Url) HasThumb ¶

func (o *ForumPollTempImageModelV1Url) HasThumb() bool

HasThumb returns a boolean if a field has been set.

func (ForumPollTempImageModelV1Url) MarshalJSON ¶

func (o ForumPollTempImageModelV1Url) MarshalJSON() ([]byte, error)

func (*ForumPollTempImageModelV1Url) SetOriginal ¶

func (o *ForumPollTempImageModelV1Url) SetOriginal(v string)

SetOriginal gets a reference to the given string and assigns it to the Original field.

func (*ForumPollTempImageModelV1Url) SetThumb ¶

func (o *ForumPollTempImageModelV1Url) SetThumb(v string)

SetThumb gets a reference to the given string and assigns it to the Thumb field.

func (ForumPollTempImageModelV1Url) ToMap ¶

func (o ForumPollTempImageModelV1Url) ToMap() (map[string]interface{}, error)

type ForumPollVoteModelV1 ¶

type ForumPollVoteModelV1 struct {
	ChoiceId *int64 `json:"choice_id,omitempty"`
}

ForumPollVoteModelV1 struct for ForumPollVoteModelV1

func NewForumPollVoteModelV1 ¶

func NewForumPollVoteModelV1() *ForumPollVoteModelV1

NewForumPollVoteModelV1 instantiates a new ForumPollVoteModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumPollVoteModelV1WithDefaults ¶

func NewForumPollVoteModelV1WithDefaults() *ForumPollVoteModelV1

NewForumPollVoteModelV1WithDefaults instantiates a new ForumPollVoteModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumPollVoteModelV1) GetChoiceId ¶

func (o *ForumPollVoteModelV1) GetChoiceId() int64

GetChoiceId returns the ChoiceId field value if set, zero value otherwise.

func (*ForumPollVoteModelV1) GetChoiceIdOk ¶

func (o *ForumPollVoteModelV1) GetChoiceIdOk() (*int64, bool)

GetChoiceIdOk returns a tuple with the ChoiceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPollVoteModelV1) HasChoiceId ¶

func (o *ForumPollVoteModelV1) HasChoiceId() bool

HasChoiceId returns a boolean if a field has been set.

func (ForumPollVoteModelV1) MarshalJSON ¶

func (o ForumPollVoteModelV1) MarshalJSON() ([]byte, error)

func (*ForumPollVoteModelV1) SetChoiceId ¶

func (o *ForumPollVoteModelV1) SetChoiceId(v int64)

SetChoiceId gets a reference to the given int64 and assigns it to the ChoiceId field.

func (ForumPollVoteModelV1) ToMap ¶

func (o ForumPollVoteModelV1) ToMap() (map[string]interface{}, error)

type ForumPostByUserResponseV1 ¶

type ForumPostByUserResponseV1 struct {
	TopicId    *int64  `json:"topic_id,omitempty"`
	PostIdList []int64 `json:"post_id_list,omitempty"`
}

ForumPostByUserResponseV1 struct for ForumPostByUserResponseV1

func NewForumPostByUserResponseV1 ¶

func NewForumPostByUserResponseV1() *ForumPostByUserResponseV1

NewForumPostByUserResponseV1 instantiates a new ForumPostByUserResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumPostByUserResponseV1WithDefaults ¶

func NewForumPostByUserResponseV1WithDefaults() *ForumPostByUserResponseV1

NewForumPostByUserResponseV1WithDefaults instantiates a new ForumPostByUserResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumPostByUserResponseV1) GetPostIdList ¶

func (o *ForumPostByUserResponseV1) GetPostIdList() []int64

GetPostIdList returns the PostIdList field value if set, zero value otherwise.

func (*ForumPostByUserResponseV1) GetPostIdListOk ¶

func (o *ForumPostByUserResponseV1) GetPostIdListOk() ([]int64, bool)

GetPostIdListOk returns a tuple with the PostIdList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostByUserResponseV1) GetTopicId ¶

func (o *ForumPostByUserResponseV1) GetTopicId() int64

GetTopicId returns the TopicId field value if set, zero value otherwise.

func (*ForumPostByUserResponseV1) GetTopicIdOk ¶

func (o *ForumPostByUserResponseV1) GetTopicIdOk() (*int64, bool)

GetTopicIdOk returns a tuple with the TopicId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostByUserResponseV1) HasPostIdList ¶

func (o *ForumPostByUserResponseV1) HasPostIdList() bool

HasPostIdList returns a boolean if a field has been set.

func (*ForumPostByUserResponseV1) HasTopicId ¶

func (o *ForumPostByUserResponseV1) HasTopicId() bool

HasTopicId returns a boolean if a field has been set.

func (ForumPostByUserResponseV1) MarshalJSON ¶

func (o ForumPostByUserResponseV1) MarshalJSON() ([]byte, error)

func (*ForumPostByUserResponseV1) SetPostIdList ¶

func (o *ForumPostByUserResponseV1) SetPostIdList(v []int64)

SetPostIdList gets a reference to the given []int64 and assigns it to the PostIdList field.

func (*ForumPostByUserResponseV1) SetTopicId ¶

func (o *ForumPostByUserResponseV1) SetTopicId(v int64)

SetTopicId gets a reference to the given int64 and assigns it to the TopicId field.

func (ForumPostByUserResponseV1) ToMap ¶

func (o ForumPostByUserResponseV1) ToMap() (map[string]interface{}, error)

type ForumPostListResponseV1 ¶

type ForumPostListResponseV1 struct {
	TotalHits *int64                           `json:"total_hits,omitempty"`
	Page      *int64                           `json:"page,omitempty"`
	PerPage   *int64                           `json:"per_page,omitempty"`
	Results   []ForumPostListResponseV1Results `json:"results,omitempty"`
}

ForumPostListResponseV1 struct for ForumPostListResponseV1

func NewForumPostListResponseV1 ¶

func NewForumPostListResponseV1() *ForumPostListResponseV1

NewForumPostListResponseV1 instantiates a new ForumPostListResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumPostListResponseV1WithDefaults ¶

func NewForumPostListResponseV1WithDefaults() *ForumPostListResponseV1

NewForumPostListResponseV1WithDefaults instantiates a new ForumPostListResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumPostListResponseV1) GetPage ¶

func (o *ForumPostListResponseV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*ForumPostListResponseV1) GetPageOk ¶

func (o *ForumPostListResponseV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostListResponseV1) GetPerPage ¶

func (o *ForumPostListResponseV1) GetPerPage() int64

GetPerPage returns the PerPage field value if set, zero value otherwise.

func (*ForumPostListResponseV1) GetPerPageOk ¶

func (o *ForumPostListResponseV1) GetPerPageOk() (*int64, bool)

GetPerPageOk returns a tuple with the PerPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostListResponseV1) GetResults ¶

GetResults returns the Results field value if set, zero value otherwise.

func (*ForumPostListResponseV1) GetResultsOk ¶

GetResultsOk returns a tuple with the Results field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostListResponseV1) GetTotalHits ¶

func (o *ForumPostListResponseV1) GetTotalHits() int64

GetTotalHits returns the TotalHits field value if set, zero value otherwise.

func (*ForumPostListResponseV1) GetTotalHitsOk ¶

func (o *ForumPostListResponseV1) GetTotalHitsOk() (*int64, bool)

GetTotalHitsOk returns a tuple with the TotalHits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostListResponseV1) HasPage ¶

func (o *ForumPostListResponseV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*ForumPostListResponseV1) HasPerPage ¶

func (o *ForumPostListResponseV1) HasPerPage() bool

HasPerPage returns a boolean if a field has been set.

func (*ForumPostListResponseV1) HasResults ¶

func (o *ForumPostListResponseV1) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*ForumPostListResponseV1) HasTotalHits ¶

func (o *ForumPostListResponseV1) HasTotalHits() bool

HasTotalHits returns a boolean if a field has been set.

func (ForumPostListResponseV1) MarshalJSON ¶

func (o ForumPostListResponseV1) MarshalJSON() ([]byte, error)

func (*ForumPostListResponseV1) SetPage ¶

func (o *ForumPostListResponseV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*ForumPostListResponseV1) SetPerPage ¶

func (o *ForumPostListResponseV1) SetPerPage(v int64)

SetPerPage gets a reference to the given int64 and assigns it to the PerPage field.

func (*ForumPostListResponseV1) SetResults ¶

SetResults gets a reference to the given []ForumPostListResponseV1Results and assigns it to the Results field.

func (*ForumPostListResponseV1) SetTotalHits ¶

func (o *ForumPostListResponseV1) SetTotalHits(v int64)

SetTotalHits gets a reference to the given int64 and assigns it to the TotalHits field.

func (ForumPostListResponseV1) ToMap ¶

func (o ForumPostListResponseV1) ToMap() (map[string]interface{}, error)

type ForumPostListResponseV1Results ¶

type ForumPostListResponseV1Results struct {
	Record   *ForumPostModelV1                       `json:"record,omitempty"`
	Metadata *ForumPostListResponseV1ResultsMetadata `json:"metadata,omitempty"`
}

ForumPostListResponseV1Results struct for ForumPostListResponseV1Results

func NewForumPostListResponseV1Results ¶

func NewForumPostListResponseV1Results() *ForumPostListResponseV1Results

NewForumPostListResponseV1Results instantiates a new ForumPostListResponseV1Results object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumPostListResponseV1ResultsWithDefaults ¶

func NewForumPostListResponseV1ResultsWithDefaults() *ForumPostListResponseV1Results

NewForumPostListResponseV1ResultsWithDefaults instantiates a new ForumPostListResponseV1Results object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumPostListResponseV1Results) GetMetadata ¶

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ForumPostListResponseV1Results) GetMetadataOk ¶

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostListResponseV1Results) GetRecord ¶

GetRecord returns the Record field value if set, zero value otherwise.

func (*ForumPostListResponseV1Results) GetRecordOk ¶

GetRecordOk returns a tuple with the Record field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostListResponseV1Results) HasMetadata ¶

func (o *ForumPostListResponseV1Results) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ForumPostListResponseV1Results) HasRecord ¶

func (o *ForumPostListResponseV1Results) HasRecord() bool

HasRecord returns a boolean if a field has been set.

func (ForumPostListResponseV1Results) MarshalJSON ¶

func (o ForumPostListResponseV1Results) MarshalJSON() ([]byte, error)

func (*ForumPostListResponseV1Results) SetMetadata ¶

SetMetadata gets a reference to the given ForumPostListResponseV1ResultsMetadata and assigns it to the Metadata field.

func (*ForumPostListResponseV1Results) SetRecord ¶

SetRecord gets a reference to the given ForumPostModelV1 and assigns it to the Record field.

func (ForumPostListResponseV1Results) ToMap ¶

func (o ForumPostListResponseV1Results) ToMap() (map[string]interface{}, error)

type ForumPostListResponseV1ResultsMetadata ¶

type ForumPostListResponseV1ResultsMetadata struct {
	UserWarn     *ForumWarnModelPublicV1 `json:"user_warn,omitempty"`
	Reported     *bool                   `json:"reported,omitempty"`
	IsModerator  *bool                   `json:"is_moderator,omitempty"`
	IsForumAdmin *bool                   `json:"is_forum_admin,omitempty"`
}

ForumPostListResponseV1ResultsMetadata struct for ForumPostListResponseV1ResultsMetadata

func NewForumPostListResponseV1ResultsMetadata ¶

func NewForumPostListResponseV1ResultsMetadata() *ForumPostListResponseV1ResultsMetadata

NewForumPostListResponseV1ResultsMetadata instantiates a new ForumPostListResponseV1ResultsMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumPostListResponseV1ResultsMetadataWithDefaults ¶

func NewForumPostListResponseV1ResultsMetadataWithDefaults() *ForumPostListResponseV1ResultsMetadata

NewForumPostListResponseV1ResultsMetadataWithDefaults instantiates a new ForumPostListResponseV1ResultsMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumPostListResponseV1ResultsMetadata) GetIsForumAdmin ¶

func (o *ForumPostListResponseV1ResultsMetadata) GetIsForumAdmin() bool

GetIsForumAdmin returns the IsForumAdmin field value if set, zero value otherwise.

func (*ForumPostListResponseV1ResultsMetadata) GetIsForumAdminOk ¶

func (o *ForumPostListResponseV1ResultsMetadata) GetIsForumAdminOk() (*bool, bool)

GetIsForumAdminOk returns a tuple with the IsForumAdmin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostListResponseV1ResultsMetadata) GetIsModerator ¶

func (o *ForumPostListResponseV1ResultsMetadata) GetIsModerator() bool

GetIsModerator returns the IsModerator field value if set, zero value otherwise.

func (*ForumPostListResponseV1ResultsMetadata) GetIsModeratorOk ¶

func (o *ForumPostListResponseV1ResultsMetadata) GetIsModeratorOk() (*bool, bool)

GetIsModeratorOk returns a tuple with the IsModerator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostListResponseV1ResultsMetadata) GetReported ¶

GetReported returns the Reported field value if set, zero value otherwise.

func (*ForumPostListResponseV1ResultsMetadata) GetReportedOk ¶

func (o *ForumPostListResponseV1ResultsMetadata) GetReportedOk() (*bool, bool)

GetReportedOk returns a tuple with the Reported field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostListResponseV1ResultsMetadata) GetUserWarn ¶

GetUserWarn returns the UserWarn field value if set, zero value otherwise.

func (*ForumPostListResponseV1ResultsMetadata) GetUserWarnOk ¶

GetUserWarnOk returns a tuple with the UserWarn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostListResponseV1ResultsMetadata) HasIsForumAdmin ¶

func (o *ForumPostListResponseV1ResultsMetadata) HasIsForumAdmin() bool

HasIsForumAdmin returns a boolean if a field has been set.

func (*ForumPostListResponseV1ResultsMetadata) HasIsModerator ¶

func (o *ForumPostListResponseV1ResultsMetadata) HasIsModerator() bool

HasIsModerator returns a boolean if a field has been set.

func (*ForumPostListResponseV1ResultsMetadata) HasReported ¶

HasReported returns a boolean if a field has been set.

func (*ForumPostListResponseV1ResultsMetadata) HasUserWarn ¶

HasUserWarn returns a boolean if a field has been set.

func (ForumPostListResponseV1ResultsMetadata) MarshalJSON ¶

func (o ForumPostListResponseV1ResultsMetadata) MarshalJSON() ([]byte, error)

func (*ForumPostListResponseV1ResultsMetadata) SetIsForumAdmin ¶

func (o *ForumPostListResponseV1ResultsMetadata) SetIsForumAdmin(v bool)

SetIsForumAdmin gets a reference to the given bool and assigns it to the IsForumAdmin field.

func (*ForumPostListResponseV1ResultsMetadata) SetIsModerator ¶

func (o *ForumPostListResponseV1ResultsMetadata) SetIsModerator(v bool)

SetIsModerator gets a reference to the given bool and assigns it to the IsModerator field.

func (*ForumPostListResponseV1ResultsMetadata) SetReported ¶

func (o *ForumPostListResponseV1ResultsMetadata) SetReported(v bool)

SetReported gets a reference to the given bool and assigns it to the Reported field.

func (*ForumPostListResponseV1ResultsMetadata) SetUserWarn ¶

SetUserWarn gets a reference to the given ForumWarnModelPublicV1 and assigns it to the UserWarn field.

func (ForumPostListResponseV1ResultsMetadata) ToMap ¶

func (o ForumPostListResponseV1ResultsMetadata) ToMap() (map[string]interface{}, error)

type ForumPostModelSearchV1 ¶

type ForumPostModelSearchV1 struct {
	PostId      *int64                       `json:"post_id,omitempty"`
	BodyExcerpt *string                      `json:"body_excerpt,omitempty"`
	Topic       *ForumPostModelSearchV1Topic `json:"topic,omitempty"`
	Author      *UserModelSearchV1           `json:"author,omitempty"`
	TimeAdded   *TimeV1                      `json:"time_added,omitempty"`
}

ForumPostModelSearchV1 struct for ForumPostModelSearchV1

func NewForumPostModelSearchV1 ¶

func NewForumPostModelSearchV1() *ForumPostModelSearchV1

NewForumPostModelSearchV1 instantiates a new ForumPostModelSearchV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumPostModelSearchV1WithDefaults ¶

func NewForumPostModelSearchV1WithDefaults() *ForumPostModelSearchV1

NewForumPostModelSearchV1WithDefaults instantiates a new ForumPostModelSearchV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumPostModelSearchV1) GetAuthor ¶

GetAuthor returns the Author field value if set, zero value otherwise.

func (*ForumPostModelSearchV1) GetAuthorOk ¶

func (o *ForumPostModelSearchV1) GetAuthorOk() (*UserModelSearchV1, bool)

GetAuthorOk returns a tuple with the Author field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostModelSearchV1) GetBodyExcerpt ¶

func (o *ForumPostModelSearchV1) GetBodyExcerpt() string

GetBodyExcerpt returns the BodyExcerpt field value if set, zero value otherwise.

func (*ForumPostModelSearchV1) GetBodyExcerptOk ¶

func (o *ForumPostModelSearchV1) GetBodyExcerptOk() (*string, bool)

GetBodyExcerptOk returns a tuple with the BodyExcerpt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostModelSearchV1) GetPostId ¶

func (o *ForumPostModelSearchV1) GetPostId() int64

GetPostId returns the PostId field value if set, zero value otherwise.

func (*ForumPostModelSearchV1) GetPostIdOk ¶

func (o *ForumPostModelSearchV1) GetPostIdOk() (*int64, bool)

GetPostIdOk returns a tuple with the PostId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostModelSearchV1) GetTimeAdded ¶

func (o *ForumPostModelSearchV1) GetTimeAdded() TimeV1

GetTimeAdded returns the TimeAdded field value if set, zero value otherwise.

func (*ForumPostModelSearchV1) GetTimeAddedOk ¶

func (o *ForumPostModelSearchV1) GetTimeAddedOk() (*TimeV1, bool)

GetTimeAddedOk returns a tuple with the TimeAdded field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostModelSearchV1) GetTopic ¶

GetTopic returns the Topic field value if set, zero value otherwise.

func (*ForumPostModelSearchV1) GetTopicOk ¶

GetTopicOk returns a tuple with the Topic field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostModelSearchV1) HasAuthor ¶

func (o *ForumPostModelSearchV1) HasAuthor() bool

HasAuthor returns a boolean if a field has been set.

func (*ForumPostModelSearchV1) HasBodyExcerpt ¶

func (o *ForumPostModelSearchV1) HasBodyExcerpt() bool

HasBodyExcerpt returns a boolean if a field has been set.

func (*ForumPostModelSearchV1) HasPostId ¶

func (o *ForumPostModelSearchV1) HasPostId() bool

HasPostId returns a boolean if a field has been set.

func (*ForumPostModelSearchV1) HasTimeAdded ¶

func (o *ForumPostModelSearchV1) HasTimeAdded() bool

HasTimeAdded returns a boolean if a field has been set.

func (*ForumPostModelSearchV1) HasTopic ¶

func (o *ForumPostModelSearchV1) HasTopic() bool

HasTopic returns a boolean if a field has been set.

func (ForumPostModelSearchV1) MarshalJSON ¶

func (o ForumPostModelSearchV1) MarshalJSON() ([]byte, error)

func (*ForumPostModelSearchV1) SetAuthor ¶

func (o *ForumPostModelSearchV1) SetAuthor(v UserModelSearchV1)

SetAuthor gets a reference to the given UserModelSearchV1 and assigns it to the Author field.

func (*ForumPostModelSearchV1) SetBodyExcerpt ¶

func (o *ForumPostModelSearchV1) SetBodyExcerpt(v string)

SetBodyExcerpt gets a reference to the given string and assigns it to the BodyExcerpt field.

func (*ForumPostModelSearchV1) SetPostId ¶

func (o *ForumPostModelSearchV1) SetPostId(v int64)

SetPostId gets a reference to the given int64 and assigns it to the PostId field.

func (*ForumPostModelSearchV1) SetTimeAdded ¶

func (o *ForumPostModelSearchV1) SetTimeAdded(v TimeV1)

SetTimeAdded gets a reference to the given TimeV1 and assigns it to the TimeAdded field.

func (*ForumPostModelSearchV1) SetTopic ¶

SetTopic gets a reference to the given ForumPostModelSearchV1Topic and assigns it to the Topic field.

func (ForumPostModelSearchV1) ToMap ¶

func (o ForumPostModelSearchV1) ToMap() (map[string]interface{}, error)

type ForumPostModelSearchV1Topic ¶

type ForumPostModelSearchV1Topic struct {
	ForumId *int64  `json:"forum_id,omitempty"`
	TopicId *int64  `json:"topic_id,omitempty"`
	Topic   *string `json:"topic,omitempty"`
}

ForumPostModelSearchV1Topic struct for ForumPostModelSearchV1Topic

func NewForumPostModelSearchV1Topic ¶

func NewForumPostModelSearchV1Topic() *ForumPostModelSearchV1Topic

NewForumPostModelSearchV1Topic instantiates a new ForumPostModelSearchV1Topic object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumPostModelSearchV1TopicWithDefaults ¶

func NewForumPostModelSearchV1TopicWithDefaults() *ForumPostModelSearchV1Topic

NewForumPostModelSearchV1TopicWithDefaults instantiates a new ForumPostModelSearchV1Topic object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumPostModelSearchV1Topic) GetForumId ¶

func (o *ForumPostModelSearchV1Topic) GetForumId() int64

GetForumId returns the ForumId field value if set, zero value otherwise.

func (*ForumPostModelSearchV1Topic) GetForumIdOk ¶

func (o *ForumPostModelSearchV1Topic) GetForumIdOk() (*int64, bool)

GetForumIdOk returns a tuple with the ForumId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostModelSearchV1Topic) GetTopic ¶

func (o *ForumPostModelSearchV1Topic) GetTopic() string

GetTopic returns the Topic field value if set, zero value otherwise.

func (*ForumPostModelSearchV1Topic) GetTopicId ¶

func (o *ForumPostModelSearchV1Topic) GetTopicId() int64

GetTopicId returns the TopicId field value if set, zero value otherwise.

func (*ForumPostModelSearchV1Topic) GetTopicIdOk ¶

func (o *ForumPostModelSearchV1Topic) GetTopicIdOk() (*int64, bool)

GetTopicIdOk returns a tuple with the TopicId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostModelSearchV1Topic) GetTopicOk ¶

func (o *ForumPostModelSearchV1Topic) GetTopicOk() (*string, bool)

GetTopicOk returns a tuple with the Topic field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostModelSearchV1Topic) HasForumId ¶

func (o *ForumPostModelSearchV1Topic) HasForumId() bool

HasForumId returns a boolean if a field has been set.

func (*ForumPostModelSearchV1Topic) HasTopic ¶

func (o *ForumPostModelSearchV1Topic) HasTopic() bool

HasTopic returns a boolean if a field has been set.

func (*ForumPostModelSearchV1Topic) HasTopicId ¶

func (o *ForumPostModelSearchV1Topic) HasTopicId() bool

HasTopicId returns a boolean if a field has been set.

func (ForumPostModelSearchV1Topic) MarshalJSON ¶

func (o ForumPostModelSearchV1Topic) MarshalJSON() ([]byte, error)

func (*ForumPostModelSearchV1Topic) SetForumId ¶

func (o *ForumPostModelSearchV1Topic) SetForumId(v int64)

SetForumId gets a reference to the given int64 and assigns it to the ForumId field.

func (*ForumPostModelSearchV1Topic) SetTopic ¶

func (o *ForumPostModelSearchV1Topic) SetTopic(v string)

SetTopic gets a reference to the given string and assigns it to the Topic field.

func (*ForumPostModelSearchV1Topic) SetTopicId ¶

func (o *ForumPostModelSearchV1Topic) SetTopicId(v int64)

SetTopicId gets a reference to the given int64 and assigns it to the TopicId field.

func (ForumPostModelSearchV1Topic) ToMap ¶

func (o ForumPostModelSearchV1Topic) ToMap() (map[string]interface{}, error)

type ForumPostModelUpdateV1 ¶

type ForumPostModelUpdateV1 struct {
	Body    *string `json:"body,omitempty"`
	ReplyTo *int64  `json:"reply_to,omitempty"`
}

ForumPostModelUpdateV1 struct for ForumPostModelUpdateV1

func NewForumPostModelUpdateV1 ¶

func NewForumPostModelUpdateV1() *ForumPostModelUpdateV1

NewForumPostModelUpdateV1 instantiates a new ForumPostModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumPostModelUpdateV1WithDefaults ¶

func NewForumPostModelUpdateV1WithDefaults() *ForumPostModelUpdateV1

NewForumPostModelUpdateV1WithDefaults instantiates a new ForumPostModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumPostModelUpdateV1) GetBody ¶

func (o *ForumPostModelUpdateV1) GetBody() string

GetBody returns the Body field value if set, zero value otherwise.

func (*ForumPostModelUpdateV1) GetBodyOk ¶

func (o *ForumPostModelUpdateV1) GetBodyOk() (*string, bool)

GetBodyOk returns a tuple with the Body field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostModelUpdateV1) GetReplyTo ¶

func (o *ForumPostModelUpdateV1) GetReplyTo() int64

GetReplyTo returns the ReplyTo field value if set, zero value otherwise.

func (*ForumPostModelUpdateV1) GetReplyToOk ¶

func (o *ForumPostModelUpdateV1) GetReplyToOk() (*int64, bool)

GetReplyToOk returns a tuple with the ReplyTo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostModelUpdateV1) HasBody ¶

func (o *ForumPostModelUpdateV1) HasBody() bool

HasBody returns a boolean if a field has been set.

func (*ForumPostModelUpdateV1) HasReplyTo ¶

func (o *ForumPostModelUpdateV1) HasReplyTo() bool

HasReplyTo returns a boolean if a field has been set.

func (ForumPostModelUpdateV1) MarshalJSON ¶

func (o ForumPostModelUpdateV1) MarshalJSON() ([]byte, error)

func (*ForumPostModelUpdateV1) SetBody ¶

func (o *ForumPostModelUpdateV1) SetBody(v string)

SetBody gets a reference to the given string and assigns it to the Body field.

func (*ForumPostModelUpdateV1) SetReplyTo ¶

func (o *ForumPostModelUpdateV1) SetReplyTo(v int64)

SetReplyTo gets a reference to the given int64 and assigns it to the ReplyTo field.

func (ForumPostModelUpdateV1) ToMap ¶

func (o ForumPostModelUpdateV1) ToMap() (map[string]interface{}, error)

type ForumPostModelV1 ¶

type ForumPostModelV1 struct {
	PostId    *int64                    `json:"post_id,omitempty"`
	Body      *string                   `json:"body,omitempty"`
	Topic     *ForumPostModelV1Topic    `json:"topic,omitempty"`
	Author    *UserModelSearchV1        `json:"author,omitempty"`
	ReplyTo   *ForumPostModelV1ReplyTo  `json:"reply_to,omitempty"`
	LastEdit  *ForumPostModelV1LastEdit `json:"last_edit,omitempty"`
	TimeAdded *TimeV1                   `json:"time_added,omitempty"`
}

ForumPostModelV1 struct for ForumPostModelV1

func NewForumPostModelV1 ¶

func NewForumPostModelV1() *ForumPostModelV1

NewForumPostModelV1 instantiates a new ForumPostModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumPostModelV1WithDefaults ¶

func NewForumPostModelV1WithDefaults() *ForumPostModelV1

NewForumPostModelV1WithDefaults instantiates a new ForumPostModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumPostModelV1) GetAuthor ¶

func (o *ForumPostModelV1) GetAuthor() UserModelSearchV1

GetAuthor returns the Author field value if set, zero value otherwise.

func (*ForumPostModelV1) GetAuthorOk ¶

func (o *ForumPostModelV1) GetAuthorOk() (*UserModelSearchV1, bool)

GetAuthorOk returns a tuple with the Author field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostModelV1) GetBody ¶

func (o *ForumPostModelV1) GetBody() string

GetBody returns the Body field value if set, zero value otherwise.

func (*ForumPostModelV1) GetBodyOk ¶

func (o *ForumPostModelV1) GetBodyOk() (*string, bool)

GetBodyOk returns a tuple with the Body field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostModelV1) GetLastEdit ¶

func (o *ForumPostModelV1) GetLastEdit() ForumPostModelV1LastEdit

GetLastEdit returns the LastEdit field value if set, zero value otherwise.

func (*ForumPostModelV1) GetLastEditOk ¶

func (o *ForumPostModelV1) GetLastEditOk() (*ForumPostModelV1LastEdit, bool)

GetLastEditOk returns a tuple with the LastEdit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostModelV1) GetPostId ¶

func (o *ForumPostModelV1) GetPostId() int64

GetPostId returns the PostId field value if set, zero value otherwise.

func (*ForumPostModelV1) GetPostIdOk ¶

func (o *ForumPostModelV1) GetPostIdOk() (*int64, bool)

GetPostIdOk returns a tuple with the PostId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostModelV1) GetReplyTo ¶

func (o *ForumPostModelV1) GetReplyTo() ForumPostModelV1ReplyTo

GetReplyTo returns the ReplyTo field value if set, zero value otherwise.

func (*ForumPostModelV1) GetReplyToOk ¶

func (o *ForumPostModelV1) GetReplyToOk() (*ForumPostModelV1ReplyTo, bool)

GetReplyToOk returns a tuple with the ReplyTo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostModelV1) GetTimeAdded ¶

func (o *ForumPostModelV1) GetTimeAdded() TimeV1

GetTimeAdded returns the TimeAdded field value if set, zero value otherwise.

func (*ForumPostModelV1) GetTimeAddedOk ¶

func (o *ForumPostModelV1) GetTimeAddedOk() (*TimeV1, bool)

GetTimeAddedOk returns a tuple with the TimeAdded field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostModelV1) GetTopic ¶

GetTopic returns the Topic field value if set, zero value otherwise.

func (*ForumPostModelV1) GetTopicOk ¶

func (o *ForumPostModelV1) GetTopicOk() (*ForumPostModelV1Topic, bool)

GetTopicOk returns a tuple with the Topic field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostModelV1) HasAuthor ¶

func (o *ForumPostModelV1) HasAuthor() bool

HasAuthor returns a boolean if a field has been set.

func (*ForumPostModelV1) HasBody ¶

func (o *ForumPostModelV1) HasBody() bool

HasBody returns a boolean if a field has been set.

func (*ForumPostModelV1) HasLastEdit ¶

func (o *ForumPostModelV1) HasLastEdit() bool

HasLastEdit returns a boolean if a field has been set.

func (*ForumPostModelV1) HasPostId ¶

func (o *ForumPostModelV1) HasPostId() bool

HasPostId returns a boolean if a field has been set.

func (*ForumPostModelV1) HasReplyTo ¶

func (o *ForumPostModelV1) HasReplyTo() bool

HasReplyTo returns a boolean if a field has been set.

func (*ForumPostModelV1) HasTimeAdded ¶

func (o *ForumPostModelV1) HasTimeAdded() bool

HasTimeAdded returns a boolean if a field has been set.

func (*ForumPostModelV1) HasTopic ¶

func (o *ForumPostModelV1) HasTopic() bool

HasTopic returns a boolean if a field has been set.

func (ForumPostModelV1) MarshalJSON ¶

func (o ForumPostModelV1) MarshalJSON() ([]byte, error)

func (*ForumPostModelV1) SetAuthor ¶

func (o *ForumPostModelV1) SetAuthor(v UserModelSearchV1)

SetAuthor gets a reference to the given UserModelSearchV1 and assigns it to the Author field.

func (*ForumPostModelV1) SetBody ¶

func (o *ForumPostModelV1) SetBody(v string)

SetBody gets a reference to the given string and assigns it to the Body field.

func (*ForumPostModelV1) SetLastEdit ¶

func (o *ForumPostModelV1) SetLastEdit(v ForumPostModelV1LastEdit)

SetLastEdit gets a reference to the given ForumPostModelV1LastEdit and assigns it to the LastEdit field.

func (*ForumPostModelV1) SetPostId ¶

func (o *ForumPostModelV1) SetPostId(v int64)

SetPostId gets a reference to the given int64 and assigns it to the PostId field.

func (*ForumPostModelV1) SetReplyTo ¶

func (o *ForumPostModelV1) SetReplyTo(v ForumPostModelV1ReplyTo)

SetReplyTo gets a reference to the given ForumPostModelV1ReplyTo and assigns it to the ReplyTo field.

func (*ForumPostModelV1) SetTimeAdded ¶

func (o *ForumPostModelV1) SetTimeAdded(v TimeV1)

SetTimeAdded gets a reference to the given TimeV1 and assigns it to the TimeAdded field.

func (*ForumPostModelV1) SetTopic ¶

func (o *ForumPostModelV1) SetTopic(v ForumPostModelV1Topic)

SetTopic gets a reference to the given ForumPostModelV1Topic and assigns it to the Topic field.

func (ForumPostModelV1) ToMap ¶

func (o ForumPostModelV1) ToMap() (map[string]interface{}, error)

type ForumPostModelV1LastEdit ¶

type ForumPostModelV1LastEdit struct {
	By   *string `json:"by,omitempty"`
	Time *TimeV1 `json:"time,omitempty"`
}

ForumPostModelV1LastEdit struct for ForumPostModelV1LastEdit

func NewForumPostModelV1LastEdit ¶

func NewForumPostModelV1LastEdit() *ForumPostModelV1LastEdit

NewForumPostModelV1LastEdit instantiates a new ForumPostModelV1LastEdit object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumPostModelV1LastEditWithDefaults ¶

func NewForumPostModelV1LastEditWithDefaults() *ForumPostModelV1LastEdit

NewForumPostModelV1LastEditWithDefaults instantiates a new ForumPostModelV1LastEdit object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumPostModelV1LastEdit) GetBy ¶

func (o *ForumPostModelV1LastEdit) GetBy() string

GetBy returns the By field value if set, zero value otherwise.

func (*ForumPostModelV1LastEdit) GetByOk ¶

func (o *ForumPostModelV1LastEdit) GetByOk() (*string, bool)

GetByOk returns a tuple with the By field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostModelV1LastEdit) GetTime ¶

func (o *ForumPostModelV1LastEdit) GetTime() TimeV1

GetTime returns the Time field value if set, zero value otherwise.

func (*ForumPostModelV1LastEdit) GetTimeOk ¶

func (o *ForumPostModelV1LastEdit) GetTimeOk() (*TimeV1, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostModelV1LastEdit) HasBy ¶

func (o *ForumPostModelV1LastEdit) HasBy() bool

HasBy returns a boolean if a field has been set.

func (*ForumPostModelV1LastEdit) HasTime ¶

func (o *ForumPostModelV1LastEdit) HasTime() bool

HasTime returns a boolean if a field has been set.

func (ForumPostModelV1LastEdit) MarshalJSON ¶

func (o ForumPostModelV1LastEdit) MarshalJSON() ([]byte, error)

func (*ForumPostModelV1LastEdit) SetBy ¶

func (o *ForumPostModelV1LastEdit) SetBy(v string)

SetBy gets a reference to the given string and assigns it to the By field.

func (*ForumPostModelV1LastEdit) SetTime ¶

func (o *ForumPostModelV1LastEdit) SetTime(v TimeV1)

SetTime gets a reference to the given TimeV1 and assigns it to the Time field.

func (ForumPostModelV1LastEdit) ToMap ¶

func (o ForumPostModelV1LastEdit) ToMap() (map[string]interface{}, error)

type ForumPostModelV1ReplyTo ¶

type ForumPostModelV1ReplyTo struct {
	PostId     *int64                             `json:"post_id,omitempty"`
	PostAuthor *ForumPostModelV1ReplyToPostAuthor `json:"post_author,omitempty"`
}

ForumPostModelV1ReplyTo struct for ForumPostModelV1ReplyTo

func NewForumPostModelV1ReplyTo ¶

func NewForumPostModelV1ReplyTo() *ForumPostModelV1ReplyTo

NewForumPostModelV1ReplyTo instantiates a new ForumPostModelV1ReplyTo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumPostModelV1ReplyToWithDefaults ¶

func NewForumPostModelV1ReplyToWithDefaults() *ForumPostModelV1ReplyTo

NewForumPostModelV1ReplyToWithDefaults instantiates a new ForumPostModelV1ReplyTo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumPostModelV1ReplyTo) GetPostAuthor ¶

GetPostAuthor returns the PostAuthor field value if set, zero value otherwise.

func (*ForumPostModelV1ReplyTo) GetPostAuthorOk ¶

GetPostAuthorOk returns a tuple with the PostAuthor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostModelV1ReplyTo) GetPostId ¶

func (o *ForumPostModelV1ReplyTo) GetPostId() int64

GetPostId returns the PostId field value if set, zero value otherwise.

func (*ForumPostModelV1ReplyTo) GetPostIdOk ¶

func (o *ForumPostModelV1ReplyTo) GetPostIdOk() (*int64, bool)

GetPostIdOk returns a tuple with the PostId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostModelV1ReplyTo) HasPostAuthor ¶

func (o *ForumPostModelV1ReplyTo) HasPostAuthor() bool

HasPostAuthor returns a boolean if a field has been set.

func (*ForumPostModelV1ReplyTo) HasPostId ¶

func (o *ForumPostModelV1ReplyTo) HasPostId() bool

HasPostId returns a boolean if a field has been set.

func (ForumPostModelV1ReplyTo) MarshalJSON ¶

func (o ForumPostModelV1ReplyTo) MarshalJSON() ([]byte, error)

func (*ForumPostModelV1ReplyTo) SetPostAuthor ¶

SetPostAuthor gets a reference to the given ForumPostModelV1ReplyToPostAuthor and assigns it to the PostAuthor field.

func (*ForumPostModelV1ReplyTo) SetPostId ¶

func (o *ForumPostModelV1ReplyTo) SetPostId(v int64)

SetPostId gets a reference to the given int64 and assigns it to the PostId field.

func (ForumPostModelV1ReplyTo) ToMap ¶

func (o ForumPostModelV1ReplyTo) ToMap() (map[string]interface{}, error)

type ForumPostModelV1ReplyToPostAuthor ¶

type ForumPostModelV1ReplyToPostAuthor struct {
	AuthorId   *int64  `json:"author_id,omitempty"`
	AuthorName *string `json:"author_name,omitempty"`
}

ForumPostModelV1ReplyToPostAuthor struct for ForumPostModelV1ReplyToPostAuthor

func NewForumPostModelV1ReplyToPostAuthor ¶

func NewForumPostModelV1ReplyToPostAuthor() *ForumPostModelV1ReplyToPostAuthor

NewForumPostModelV1ReplyToPostAuthor instantiates a new ForumPostModelV1ReplyToPostAuthor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumPostModelV1ReplyToPostAuthorWithDefaults ¶

func NewForumPostModelV1ReplyToPostAuthorWithDefaults() *ForumPostModelV1ReplyToPostAuthor

NewForumPostModelV1ReplyToPostAuthorWithDefaults instantiates a new ForumPostModelV1ReplyToPostAuthor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumPostModelV1ReplyToPostAuthor) GetAuthorId ¶

func (o *ForumPostModelV1ReplyToPostAuthor) GetAuthorId() int64

GetAuthorId returns the AuthorId field value if set, zero value otherwise.

func (*ForumPostModelV1ReplyToPostAuthor) GetAuthorIdOk ¶

func (o *ForumPostModelV1ReplyToPostAuthor) GetAuthorIdOk() (*int64, bool)

GetAuthorIdOk returns a tuple with the AuthorId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostModelV1ReplyToPostAuthor) GetAuthorName ¶

func (o *ForumPostModelV1ReplyToPostAuthor) GetAuthorName() string

GetAuthorName returns the AuthorName field value if set, zero value otherwise.

func (*ForumPostModelV1ReplyToPostAuthor) GetAuthorNameOk ¶

func (o *ForumPostModelV1ReplyToPostAuthor) GetAuthorNameOk() (*string, bool)

GetAuthorNameOk returns a tuple with the AuthorName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostModelV1ReplyToPostAuthor) HasAuthorId ¶

func (o *ForumPostModelV1ReplyToPostAuthor) HasAuthorId() bool

HasAuthorId returns a boolean if a field has been set.

func (*ForumPostModelV1ReplyToPostAuthor) HasAuthorName ¶

func (o *ForumPostModelV1ReplyToPostAuthor) HasAuthorName() bool

HasAuthorName returns a boolean if a field has been set.

func (ForumPostModelV1ReplyToPostAuthor) MarshalJSON ¶

func (o ForumPostModelV1ReplyToPostAuthor) MarshalJSON() ([]byte, error)

func (*ForumPostModelV1ReplyToPostAuthor) SetAuthorId ¶

func (o *ForumPostModelV1ReplyToPostAuthor) SetAuthorId(v int64)

SetAuthorId gets a reference to the given int64 and assigns it to the AuthorId field.

func (*ForumPostModelV1ReplyToPostAuthor) SetAuthorName ¶

func (o *ForumPostModelV1ReplyToPostAuthor) SetAuthorName(v string)

SetAuthorName gets a reference to the given string and assigns it to the AuthorName field.

func (ForumPostModelV1ReplyToPostAuthor) ToMap ¶

func (o ForumPostModelV1ReplyToPostAuthor) ToMap() (map[string]interface{}, error)

type ForumPostModelV1Topic ¶

type ForumPostModelV1Topic struct {
	ForumId *int64  `json:"forum_id,omitempty"`
	TopicId *int64  `json:"topic_id,omitempty"`
	Topic   *string `json:"topic,omitempty"`
}

ForumPostModelV1Topic struct for ForumPostModelV1Topic

func NewForumPostModelV1Topic ¶

func NewForumPostModelV1Topic() *ForumPostModelV1Topic

NewForumPostModelV1Topic instantiates a new ForumPostModelV1Topic object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumPostModelV1TopicWithDefaults ¶

func NewForumPostModelV1TopicWithDefaults() *ForumPostModelV1Topic

NewForumPostModelV1TopicWithDefaults instantiates a new ForumPostModelV1Topic object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumPostModelV1Topic) GetForumId ¶

func (o *ForumPostModelV1Topic) GetForumId() int64

GetForumId returns the ForumId field value if set, zero value otherwise.

func (*ForumPostModelV1Topic) GetForumIdOk ¶

func (o *ForumPostModelV1Topic) GetForumIdOk() (*int64, bool)

GetForumIdOk returns a tuple with the ForumId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostModelV1Topic) GetTopic ¶

func (o *ForumPostModelV1Topic) GetTopic() string

GetTopic returns the Topic field value if set, zero value otherwise.

func (*ForumPostModelV1Topic) GetTopicId ¶

func (o *ForumPostModelV1Topic) GetTopicId() int64

GetTopicId returns the TopicId field value if set, zero value otherwise.

func (*ForumPostModelV1Topic) GetTopicIdOk ¶

func (o *ForumPostModelV1Topic) GetTopicIdOk() (*int64, bool)

GetTopicIdOk returns a tuple with the TopicId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostModelV1Topic) GetTopicOk ¶

func (o *ForumPostModelV1Topic) GetTopicOk() (*string, bool)

GetTopicOk returns a tuple with the Topic field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostModelV1Topic) HasForumId ¶

func (o *ForumPostModelV1Topic) HasForumId() bool

HasForumId returns a boolean if a field has been set.

func (*ForumPostModelV1Topic) HasTopic ¶

func (o *ForumPostModelV1Topic) HasTopic() bool

HasTopic returns a boolean if a field has been set.

func (*ForumPostModelV1Topic) HasTopicId ¶

func (o *ForumPostModelV1Topic) HasTopicId() bool

HasTopicId returns a boolean if a field has been set.

func (ForumPostModelV1Topic) MarshalJSON ¶

func (o ForumPostModelV1Topic) MarshalJSON() ([]byte, error)

func (*ForumPostModelV1Topic) SetForumId ¶

func (o *ForumPostModelV1Topic) SetForumId(v int64)

SetForumId gets a reference to the given int64 and assigns it to the ForumId field.

func (*ForumPostModelV1Topic) SetTopic ¶

func (o *ForumPostModelV1Topic) SetTopic(v string)

SetTopic gets a reference to the given string and assigns it to the Topic field.

func (*ForumPostModelV1Topic) SetTopicId ¶

func (o *ForumPostModelV1Topic) SetTopicId(v int64)

SetTopicId gets a reference to the given int64 and assigns it to the TopicId field.

func (ForumPostModelV1Topic) ToMap ¶

func (o ForumPostModelV1Topic) ToMap() (map[string]interface{}, error)

type ForumPostReportModelUpdateV1 ¶

type ForumPostReportModelUpdateV1 struct {
	Reason *string `json:"reason,omitempty"`
}

ForumPostReportModelUpdateV1 struct for ForumPostReportModelUpdateV1

func NewForumPostReportModelUpdateV1 ¶

func NewForumPostReportModelUpdateV1() *ForumPostReportModelUpdateV1

NewForumPostReportModelUpdateV1 instantiates a new ForumPostReportModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumPostReportModelUpdateV1WithDefaults ¶

func NewForumPostReportModelUpdateV1WithDefaults() *ForumPostReportModelUpdateV1

NewForumPostReportModelUpdateV1WithDefaults instantiates a new ForumPostReportModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumPostReportModelUpdateV1) GetReason ¶

func (o *ForumPostReportModelUpdateV1) GetReason() string

GetReason returns the Reason field value if set, zero value otherwise.

func (*ForumPostReportModelUpdateV1) GetReasonOk ¶

func (o *ForumPostReportModelUpdateV1) GetReasonOk() (*string, bool)

GetReasonOk returns a tuple with the Reason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostReportModelUpdateV1) HasReason ¶

func (o *ForumPostReportModelUpdateV1) HasReason() bool

HasReason returns a boolean if a field has been set.

func (ForumPostReportModelUpdateV1) MarshalJSON ¶

func (o ForumPostReportModelUpdateV1) MarshalJSON() ([]byte, error)

func (*ForumPostReportModelUpdateV1) SetReason ¶

func (o *ForumPostReportModelUpdateV1) SetReason(v string)

SetReason gets a reference to the given string and assigns it to the Reason field.

func (ForumPostReportModelUpdateV1) ToMap ¶

func (o ForumPostReportModelUpdateV1) ToMap() (map[string]interface{}, error)

type ForumPostReportModelV1 ¶

type ForumPostReportModelV1 struct {
	ReportId *int64                   `json:"report_id,omitempty"`
	TopicId  *int64                   `json:"topic_id,omitempty"`
	Topic    *ForumTopicModelSearchV1 `json:"topic,omitempty"`
	PostId   *int64                   `json:"post_id,omitempty"`
	Post     *ForumPostModelSearchV1  `json:"post,omitempty"`
	UserId   *int64                   `json:"user_id,omitempty"`
	User     *UserModelSearchV1       `json:"user,omitempty"`
	Reason   *string                  `json:"reason,omitempty"`
}

ForumPostReportModelV1 struct for ForumPostReportModelV1

func NewForumPostReportModelV1 ¶

func NewForumPostReportModelV1() *ForumPostReportModelV1

NewForumPostReportModelV1 instantiates a new ForumPostReportModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumPostReportModelV1WithDefaults ¶

func NewForumPostReportModelV1WithDefaults() *ForumPostReportModelV1

NewForumPostReportModelV1WithDefaults instantiates a new ForumPostReportModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumPostReportModelV1) GetPost ¶

GetPost returns the Post field value if set, zero value otherwise.

func (*ForumPostReportModelV1) GetPostId ¶

func (o *ForumPostReportModelV1) GetPostId() int64

GetPostId returns the PostId field value if set, zero value otherwise.

func (*ForumPostReportModelV1) GetPostIdOk ¶

func (o *ForumPostReportModelV1) GetPostIdOk() (*int64, bool)

GetPostIdOk returns a tuple with the PostId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostReportModelV1) GetPostOk ¶

GetPostOk returns a tuple with the Post field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostReportModelV1) GetReason ¶

func (o *ForumPostReportModelV1) GetReason() string

GetReason returns the Reason field value if set, zero value otherwise.

func (*ForumPostReportModelV1) GetReasonOk ¶

func (o *ForumPostReportModelV1) GetReasonOk() (*string, bool)

GetReasonOk returns a tuple with the Reason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostReportModelV1) GetReportId ¶

func (o *ForumPostReportModelV1) GetReportId() int64

GetReportId returns the ReportId field value if set, zero value otherwise.

func (*ForumPostReportModelV1) GetReportIdOk ¶

func (o *ForumPostReportModelV1) GetReportIdOk() (*int64, bool)

GetReportIdOk returns a tuple with the ReportId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostReportModelV1) GetTopic ¶

GetTopic returns the Topic field value if set, zero value otherwise.

func (*ForumPostReportModelV1) GetTopicId ¶

func (o *ForumPostReportModelV1) GetTopicId() int64

GetTopicId returns the TopicId field value if set, zero value otherwise.

func (*ForumPostReportModelV1) GetTopicIdOk ¶

func (o *ForumPostReportModelV1) GetTopicIdOk() (*int64, bool)

GetTopicIdOk returns a tuple with the TopicId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostReportModelV1) GetTopicOk ¶

GetTopicOk returns a tuple with the Topic field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostReportModelV1) GetUser ¶

GetUser returns the User field value if set, zero value otherwise.

func (*ForumPostReportModelV1) GetUserId ¶

func (o *ForumPostReportModelV1) GetUserId() int64

GetUserId returns the UserId field value if set, zero value otherwise.

func (*ForumPostReportModelV1) GetUserIdOk ¶

func (o *ForumPostReportModelV1) GetUserIdOk() (*int64, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostReportModelV1) GetUserOk ¶

func (o *ForumPostReportModelV1) GetUserOk() (*UserModelSearchV1, bool)

GetUserOk returns a tuple with the User field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumPostReportModelV1) HasPost ¶

func (o *ForumPostReportModelV1) HasPost() bool

HasPost returns a boolean if a field has been set.

func (*ForumPostReportModelV1) HasPostId ¶

func (o *ForumPostReportModelV1) HasPostId() bool

HasPostId returns a boolean if a field has been set.

func (*ForumPostReportModelV1) HasReason ¶

func (o *ForumPostReportModelV1) HasReason() bool

HasReason returns a boolean if a field has been set.

func (*ForumPostReportModelV1) HasReportId ¶

func (o *ForumPostReportModelV1) HasReportId() bool

HasReportId returns a boolean if a field has been set.

func (*ForumPostReportModelV1) HasTopic ¶

func (o *ForumPostReportModelV1) HasTopic() bool

HasTopic returns a boolean if a field has been set.

func (*ForumPostReportModelV1) HasTopicId ¶

func (o *ForumPostReportModelV1) HasTopicId() bool

HasTopicId returns a boolean if a field has been set.

func (*ForumPostReportModelV1) HasUser ¶

func (o *ForumPostReportModelV1) HasUser() bool

HasUser returns a boolean if a field has been set.

func (*ForumPostReportModelV1) HasUserId ¶

func (o *ForumPostReportModelV1) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (ForumPostReportModelV1) MarshalJSON ¶

func (o ForumPostReportModelV1) MarshalJSON() ([]byte, error)

func (*ForumPostReportModelV1) SetPost ¶

SetPost gets a reference to the given ForumPostModelSearchV1 and assigns it to the Post field.

func (*ForumPostReportModelV1) SetPostId ¶

func (o *ForumPostReportModelV1) SetPostId(v int64)

SetPostId gets a reference to the given int64 and assigns it to the PostId field.

func (*ForumPostReportModelV1) SetReason ¶

func (o *ForumPostReportModelV1) SetReason(v string)

SetReason gets a reference to the given string and assigns it to the Reason field.

func (*ForumPostReportModelV1) SetReportId ¶

func (o *ForumPostReportModelV1) SetReportId(v int64)

SetReportId gets a reference to the given int64 and assigns it to the ReportId field.

func (*ForumPostReportModelV1) SetTopic ¶

SetTopic gets a reference to the given ForumTopicModelSearchV1 and assigns it to the Topic field.

func (*ForumPostReportModelV1) SetTopicId ¶

func (o *ForumPostReportModelV1) SetTopicId(v int64)

SetTopicId gets a reference to the given int64 and assigns it to the TopicId field.

func (*ForumPostReportModelV1) SetUser ¶

SetUser gets a reference to the given UserModelSearchV1 and assigns it to the User field.

func (*ForumPostReportModelV1) SetUserId ¶

func (o *ForumPostReportModelV1) SetUserId(v int64)

SetUserId gets a reference to the given int64 and assigns it to the UserId field.

func (ForumPostReportModelV1) ToMap ¶

func (o ForumPostReportModelV1) ToMap() (map[string]interface{}, error)

type ForumSearchRequestV1 ¶

type ForumSearchRequestV1 struct {
	SearchBy     *string `json:"search_by,omitempty"`
	Method       *string `json:"method,omitempty"`
	Search       *string `json:"search,omitempty"`
	Since        *int64  `json:"since,omitempty"`
	AfterId      *int64  `json:"after_id,omitempty"`
	BeforeId     *int64  `json:"before_id,omitempty"`
	Page         *int64  `json:"page,omitempty"`
	Perpage      *int64  `json:"perpage,omitempty"`
	ByUserId     *int64  `json:"by_user_id,omitempty"`
	FilterUserId *int64  `json:"filter_user_id,omitempty"`
}

ForumSearchRequestV1 struct for ForumSearchRequestV1

func NewForumSearchRequestV1 ¶

func NewForumSearchRequestV1() *ForumSearchRequestV1

NewForumSearchRequestV1 instantiates a new ForumSearchRequestV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumSearchRequestV1WithDefaults ¶

func NewForumSearchRequestV1WithDefaults() *ForumSearchRequestV1

NewForumSearchRequestV1WithDefaults instantiates a new ForumSearchRequestV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumSearchRequestV1) GetAfterId ¶

func (o *ForumSearchRequestV1) GetAfterId() int64

GetAfterId returns the AfterId field value if set, zero value otherwise.

func (*ForumSearchRequestV1) GetAfterIdOk ¶

func (o *ForumSearchRequestV1) GetAfterIdOk() (*int64, bool)

GetAfterIdOk returns a tuple with the AfterId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumSearchRequestV1) GetBeforeId ¶

func (o *ForumSearchRequestV1) GetBeforeId() int64

GetBeforeId returns the BeforeId field value if set, zero value otherwise.

func (*ForumSearchRequestV1) GetBeforeIdOk ¶

func (o *ForumSearchRequestV1) GetBeforeIdOk() (*int64, bool)

GetBeforeIdOk returns a tuple with the BeforeId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumSearchRequestV1) GetByUserId ¶

func (o *ForumSearchRequestV1) GetByUserId() int64

GetByUserId returns the ByUserId field value if set, zero value otherwise.

func (*ForumSearchRequestV1) GetByUserIdOk ¶

func (o *ForumSearchRequestV1) GetByUserIdOk() (*int64, bool)

GetByUserIdOk returns a tuple with the ByUserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumSearchRequestV1) GetFilterUserId ¶

func (o *ForumSearchRequestV1) GetFilterUserId() int64

GetFilterUserId returns the FilterUserId field value if set, zero value otherwise.

func (*ForumSearchRequestV1) GetFilterUserIdOk ¶

func (o *ForumSearchRequestV1) GetFilterUserIdOk() (*int64, bool)

GetFilterUserIdOk returns a tuple with the FilterUserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumSearchRequestV1) GetMethod ¶

func (o *ForumSearchRequestV1) GetMethod() string

GetMethod returns the Method field value if set, zero value otherwise.

func (*ForumSearchRequestV1) GetMethodOk ¶

func (o *ForumSearchRequestV1) GetMethodOk() (*string, bool)

GetMethodOk returns a tuple with the Method field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumSearchRequestV1) GetPage ¶

func (o *ForumSearchRequestV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*ForumSearchRequestV1) GetPageOk ¶

func (o *ForumSearchRequestV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumSearchRequestV1) GetPerpage ¶

func (o *ForumSearchRequestV1) GetPerpage() int64

GetPerpage returns the Perpage field value if set, zero value otherwise.

func (*ForumSearchRequestV1) GetPerpageOk ¶

func (o *ForumSearchRequestV1) GetPerpageOk() (*int64, bool)

GetPerpageOk returns a tuple with the Perpage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumSearchRequestV1) GetSearch ¶

func (o *ForumSearchRequestV1) GetSearch() string

GetSearch returns the Search field value if set, zero value otherwise.

func (*ForumSearchRequestV1) GetSearchBy ¶

func (o *ForumSearchRequestV1) GetSearchBy() string

GetSearchBy returns the SearchBy field value if set, zero value otherwise.

func (*ForumSearchRequestV1) GetSearchByOk ¶

func (o *ForumSearchRequestV1) GetSearchByOk() (*string, bool)

GetSearchByOk returns a tuple with the SearchBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumSearchRequestV1) GetSearchOk ¶

func (o *ForumSearchRequestV1) GetSearchOk() (*string, bool)

GetSearchOk returns a tuple with the Search field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumSearchRequestV1) GetSince ¶

func (o *ForumSearchRequestV1) GetSince() int64

GetSince returns the Since field value if set, zero value otherwise.

func (*ForumSearchRequestV1) GetSinceOk ¶

func (o *ForumSearchRequestV1) GetSinceOk() (*int64, bool)

GetSinceOk returns a tuple with the Since field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumSearchRequestV1) HasAfterId ¶

func (o *ForumSearchRequestV1) HasAfterId() bool

HasAfterId returns a boolean if a field has been set.

func (*ForumSearchRequestV1) HasBeforeId ¶

func (o *ForumSearchRequestV1) HasBeforeId() bool

HasBeforeId returns a boolean if a field has been set.

func (*ForumSearchRequestV1) HasByUserId ¶

func (o *ForumSearchRequestV1) HasByUserId() bool

HasByUserId returns a boolean if a field has been set.

func (*ForumSearchRequestV1) HasFilterUserId ¶

func (o *ForumSearchRequestV1) HasFilterUserId() bool

HasFilterUserId returns a boolean if a field has been set.

func (*ForumSearchRequestV1) HasMethod ¶

func (o *ForumSearchRequestV1) HasMethod() bool

HasMethod returns a boolean if a field has been set.

func (*ForumSearchRequestV1) HasPage ¶

func (o *ForumSearchRequestV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*ForumSearchRequestV1) HasPerpage ¶

func (o *ForumSearchRequestV1) HasPerpage() bool

HasPerpage returns a boolean if a field has been set.

func (*ForumSearchRequestV1) HasSearch ¶

func (o *ForumSearchRequestV1) HasSearch() bool

HasSearch returns a boolean if a field has been set.

func (*ForumSearchRequestV1) HasSearchBy ¶

func (o *ForumSearchRequestV1) HasSearchBy() bool

HasSearchBy returns a boolean if a field has been set.

func (*ForumSearchRequestV1) HasSince ¶

func (o *ForumSearchRequestV1) HasSince() bool

HasSince returns a boolean if a field has been set.

func (ForumSearchRequestV1) MarshalJSON ¶

func (o ForumSearchRequestV1) MarshalJSON() ([]byte, error)

func (*ForumSearchRequestV1) SetAfterId ¶

func (o *ForumSearchRequestV1) SetAfterId(v int64)

SetAfterId gets a reference to the given int64 and assigns it to the AfterId field.

func (*ForumSearchRequestV1) SetBeforeId ¶

func (o *ForumSearchRequestV1) SetBeforeId(v int64)

SetBeforeId gets a reference to the given int64 and assigns it to the BeforeId field.

func (*ForumSearchRequestV1) SetByUserId ¶

func (o *ForumSearchRequestV1) SetByUserId(v int64)

SetByUserId gets a reference to the given int64 and assigns it to the ByUserId field.

func (*ForumSearchRequestV1) SetFilterUserId ¶

func (o *ForumSearchRequestV1) SetFilterUserId(v int64)

SetFilterUserId gets a reference to the given int64 and assigns it to the FilterUserId field.

func (*ForumSearchRequestV1) SetMethod ¶

func (o *ForumSearchRequestV1) SetMethod(v string)

SetMethod gets a reference to the given string and assigns it to the Method field.

func (*ForumSearchRequestV1) SetPage ¶

func (o *ForumSearchRequestV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*ForumSearchRequestV1) SetPerpage ¶

func (o *ForumSearchRequestV1) SetPerpage(v int64)

SetPerpage gets a reference to the given int64 and assigns it to the Perpage field.

func (*ForumSearchRequestV1) SetSearch ¶

func (o *ForumSearchRequestV1) SetSearch(v string)

SetSearch gets a reference to the given string and assigns it to the Search field.

func (*ForumSearchRequestV1) SetSearchBy ¶

func (o *ForumSearchRequestV1) SetSearchBy(v string)

SetSearchBy gets a reference to the given string and assigns it to the SearchBy field.

func (*ForumSearchRequestV1) SetSince ¶

func (o *ForumSearchRequestV1) SetSince(v int64)

SetSince gets a reference to the given int64 and assigns it to the Since field.

func (ForumSearchRequestV1) ToMap ¶

func (o ForumSearchRequestV1) ToMap() (map[string]interface{}, error)

type ForumSearchResponseV1 ¶

type ForumSearchResponseV1 struct {
	TotalHits    *int64                              `json:"total_hits,omitempty"`
	Page         *int64                              `json:"page,omitempty"`
	PerPage      *int64                              `json:"per_page,omitempty"`
	TopicResults []ForumSearchResponseV1TopicResults `json:"topic_results,omitempty"`
	PostResults  []ForumSearchResponseV1PostResults  `json:"post_results,omitempty"`
}

ForumSearchResponseV1 struct for ForumSearchResponseV1

func NewForumSearchResponseV1 ¶

func NewForumSearchResponseV1() *ForumSearchResponseV1

NewForumSearchResponseV1 instantiates a new ForumSearchResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumSearchResponseV1WithDefaults ¶

func NewForumSearchResponseV1WithDefaults() *ForumSearchResponseV1

NewForumSearchResponseV1WithDefaults instantiates a new ForumSearchResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumSearchResponseV1) GetPage ¶

func (o *ForumSearchResponseV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*ForumSearchResponseV1) GetPageOk ¶

func (o *ForumSearchResponseV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumSearchResponseV1) GetPerPage ¶

func (o *ForumSearchResponseV1) GetPerPage() int64

GetPerPage returns the PerPage field value if set, zero value otherwise.

func (*ForumSearchResponseV1) GetPerPageOk ¶

func (o *ForumSearchResponseV1) GetPerPageOk() (*int64, bool)

GetPerPageOk returns a tuple with the PerPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumSearchResponseV1) GetPostResults ¶

GetPostResults returns the PostResults field value if set, zero value otherwise.

func (*ForumSearchResponseV1) GetPostResultsOk ¶

func (o *ForumSearchResponseV1) GetPostResultsOk() ([]ForumSearchResponseV1PostResults, bool)

GetPostResultsOk returns a tuple with the PostResults field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumSearchResponseV1) GetTopicResults ¶

GetTopicResults returns the TopicResults field value if set, zero value otherwise.

func (*ForumSearchResponseV1) GetTopicResultsOk ¶

func (o *ForumSearchResponseV1) GetTopicResultsOk() ([]ForumSearchResponseV1TopicResults, bool)

GetTopicResultsOk returns a tuple with the TopicResults field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumSearchResponseV1) GetTotalHits ¶

func (o *ForumSearchResponseV1) GetTotalHits() int64

GetTotalHits returns the TotalHits field value if set, zero value otherwise.

func (*ForumSearchResponseV1) GetTotalHitsOk ¶

func (o *ForumSearchResponseV1) GetTotalHitsOk() (*int64, bool)

GetTotalHitsOk returns a tuple with the TotalHits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumSearchResponseV1) HasPage ¶

func (o *ForumSearchResponseV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*ForumSearchResponseV1) HasPerPage ¶

func (o *ForumSearchResponseV1) HasPerPage() bool

HasPerPage returns a boolean if a field has been set.

func (*ForumSearchResponseV1) HasPostResults ¶

func (o *ForumSearchResponseV1) HasPostResults() bool

HasPostResults returns a boolean if a field has been set.

func (*ForumSearchResponseV1) HasTopicResults ¶

func (o *ForumSearchResponseV1) HasTopicResults() bool

HasTopicResults returns a boolean if a field has been set.

func (*ForumSearchResponseV1) HasTotalHits ¶

func (o *ForumSearchResponseV1) HasTotalHits() bool

HasTotalHits returns a boolean if a field has been set.

func (ForumSearchResponseV1) MarshalJSON ¶

func (o ForumSearchResponseV1) MarshalJSON() ([]byte, error)

func (*ForumSearchResponseV1) SetPage ¶

func (o *ForumSearchResponseV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*ForumSearchResponseV1) SetPerPage ¶

func (o *ForumSearchResponseV1) SetPerPage(v int64)

SetPerPage gets a reference to the given int64 and assigns it to the PerPage field.

func (*ForumSearchResponseV1) SetPostResults ¶

SetPostResults gets a reference to the given []ForumSearchResponseV1PostResults and assigns it to the PostResults field.

func (*ForumSearchResponseV1) SetTopicResults ¶

SetTopicResults gets a reference to the given []ForumSearchResponseV1TopicResults and assigns it to the TopicResults field.

func (*ForumSearchResponseV1) SetTotalHits ¶

func (o *ForumSearchResponseV1) SetTotalHits(v int64)

SetTotalHits gets a reference to the given int64 and assigns it to the TotalHits field.

func (ForumSearchResponseV1) ToMap ¶

func (o ForumSearchResponseV1) ToMap() (map[string]interface{}, error)

type ForumSearchResponseV1PostResults ¶

type ForumSearchResponseV1PostResults struct {
	Record   *ForumPostModelSearchV1                   `json:"record,omitempty"`
	Metadata *ForumSearchResponseV1PostResultsMetadata `json:"metadata,omitempty"`
}

ForumSearchResponseV1PostResults struct for ForumSearchResponseV1PostResults

func NewForumSearchResponseV1PostResults ¶

func NewForumSearchResponseV1PostResults() *ForumSearchResponseV1PostResults

NewForumSearchResponseV1PostResults instantiates a new ForumSearchResponseV1PostResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumSearchResponseV1PostResultsWithDefaults ¶

func NewForumSearchResponseV1PostResultsWithDefaults() *ForumSearchResponseV1PostResults

NewForumSearchResponseV1PostResultsWithDefaults instantiates a new ForumSearchResponseV1PostResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumSearchResponseV1PostResults) GetMetadata ¶

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ForumSearchResponseV1PostResults) GetMetadataOk ¶

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumSearchResponseV1PostResults) GetRecord ¶

GetRecord returns the Record field value if set, zero value otherwise.

func (*ForumSearchResponseV1PostResults) GetRecordOk ¶

GetRecordOk returns a tuple with the Record field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumSearchResponseV1PostResults) HasMetadata ¶

func (o *ForumSearchResponseV1PostResults) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ForumSearchResponseV1PostResults) HasRecord ¶

func (o *ForumSearchResponseV1PostResults) HasRecord() bool

HasRecord returns a boolean if a field has been set.

func (ForumSearchResponseV1PostResults) MarshalJSON ¶

func (o ForumSearchResponseV1PostResults) MarshalJSON() ([]byte, error)

func (*ForumSearchResponseV1PostResults) SetMetadata ¶

SetMetadata gets a reference to the given ForumSearchResponseV1PostResultsMetadata and assigns it to the Metadata field.

func (*ForumSearchResponseV1PostResults) SetRecord ¶

SetRecord gets a reference to the given ForumPostModelSearchV1 and assigns it to the Record field.

func (ForumSearchResponseV1PostResults) ToMap ¶

func (o ForumSearchResponseV1PostResults) ToMap() (map[string]interface{}, error)

type ForumSearchResponseV1PostResultsMetadata ¶

type ForumSearchResponseV1PostResultsMetadata struct {
	IsSubscribed        *bool                                               `json:"is_subscribed,omitempty"`
	MyLatestPostInTopic *int64                                              `json:"my_latest_post_in_topic,omitempty"`
	ForumInfo           *ForumSearchResponseV1PostResultsMetadataForumInfo  `json:"forum_info,omitempty"`
	TopicStats          *ForumSearchResponseV1PostResultsMetadataTopicStats `json:"topic_stats,omitempty"`
}

ForumSearchResponseV1PostResultsMetadata struct for ForumSearchResponseV1PostResultsMetadata

func NewForumSearchResponseV1PostResultsMetadata ¶

func NewForumSearchResponseV1PostResultsMetadata() *ForumSearchResponseV1PostResultsMetadata

NewForumSearchResponseV1PostResultsMetadata instantiates a new ForumSearchResponseV1PostResultsMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumSearchResponseV1PostResultsMetadataWithDefaults ¶

func NewForumSearchResponseV1PostResultsMetadataWithDefaults() *ForumSearchResponseV1PostResultsMetadata

NewForumSearchResponseV1PostResultsMetadataWithDefaults instantiates a new ForumSearchResponseV1PostResultsMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumSearchResponseV1PostResultsMetadata) GetForumInfo ¶

GetForumInfo returns the ForumInfo field value if set, zero value otherwise.

func (*ForumSearchResponseV1PostResultsMetadata) GetForumInfoOk ¶

GetForumInfoOk returns a tuple with the ForumInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumSearchResponseV1PostResultsMetadata) GetIsSubscribed ¶

func (o *ForumSearchResponseV1PostResultsMetadata) GetIsSubscribed() bool

GetIsSubscribed returns the IsSubscribed field value if set, zero value otherwise.

func (*ForumSearchResponseV1PostResultsMetadata) GetIsSubscribedOk ¶

func (o *ForumSearchResponseV1PostResultsMetadata) GetIsSubscribedOk() (*bool, bool)

GetIsSubscribedOk returns a tuple with the IsSubscribed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumSearchResponseV1PostResultsMetadata) GetMyLatestPostInTopic ¶

func (o *ForumSearchResponseV1PostResultsMetadata) GetMyLatestPostInTopic() int64

GetMyLatestPostInTopic returns the MyLatestPostInTopic field value if set, zero value otherwise.

func (*ForumSearchResponseV1PostResultsMetadata) GetMyLatestPostInTopicOk ¶

func (o *ForumSearchResponseV1PostResultsMetadata) GetMyLatestPostInTopicOk() (*int64, bool)

GetMyLatestPostInTopicOk returns a tuple with the MyLatestPostInTopic field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumSearchResponseV1PostResultsMetadata) GetTopicStats ¶

GetTopicStats returns the TopicStats field value if set, zero value otherwise.

func (*ForumSearchResponseV1PostResultsMetadata) GetTopicStatsOk ¶

GetTopicStatsOk returns a tuple with the TopicStats field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumSearchResponseV1PostResultsMetadata) HasForumInfo ¶

HasForumInfo returns a boolean if a field has been set.

func (*ForumSearchResponseV1PostResultsMetadata) HasIsSubscribed ¶

func (o *ForumSearchResponseV1PostResultsMetadata) HasIsSubscribed() bool

HasIsSubscribed returns a boolean if a field has been set.

func (*ForumSearchResponseV1PostResultsMetadata) HasMyLatestPostInTopic ¶

func (o *ForumSearchResponseV1PostResultsMetadata) HasMyLatestPostInTopic() bool

HasMyLatestPostInTopic returns a boolean if a field has been set.

func (*ForumSearchResponseV1PostResultsMetadata) HasTopicStats ¶

HasTopicStats returns a boolean if a field has been set.

func (ForumSearchResponseV1PostResultsMetadata) MarshalJSON ¶

func (*ForumSearchResponseV1PostResultsMetadata) SetForumInfo ¶

SetForumInfo gets a reference to the given ForumSearchResponseV1PostResultsMetadataForumInfo and assigns it to the ForumInfo field.

func (*ForumSearchResponseV1PostResultsMetadata) SetIsSubscribed ¶

func (o *ForumSearchResponseV1PostResultsMetadata) SetIsSubscribed(v bool)

SetIsSubscribed gets a reference to the given bool and assigns it to the IsSubscribed field.

func (*ForumSearchResponseV1PostResultsMetadata) SetMyLatestPostInTopic ¶

func (o *ForumSearchResponseV1PostResultsMetadata) SetMyLatestPostInTopic(v int64)

SetMyLatestPostInTopic gets a reference to the given int64 and assigns it to the MyLatestPostInTopic field.

func (*ForumSearchResponseV1PostResultsMetadata) SetTopicStats ¶

SetTopicStats gets a reference to the given ForumSearchResponseV1PostResultsMetadataTopicStats and assigns it to the TopicStats field.

func (ForumSearchResponseV1PostResultsMetadata) ToMap ¶

func (o ForumSearchResponseV1PostResultsMetadata) ToMap() (map[string]interface{}, error)

type ForumSearchResponseV1PostResultsMetadataForumInfo ¶

type ForumSearchResponseV1PostResultsMetadataForumInfo struct {
	ForumId   *int64  `json:"forum_id,omitempty"`
	ForumName *string `json:"forum_name,omitempty"`
}

ForumSearchResponseV1PostResultsMetadataForumInfo struct for ForumSearchResponseV1PostResultsMetadataForumInfo

func NewForumSearchResponseV1PostResultsMetadataForumInfo ¶

func NewForumSearchResponseV1PostResultsMetadataForumInfo() *ForumSearchResponseV1PostResultsMetadataForumInfo

NewForumSearchResponseV1PostResultsMetadataForumInfo instantiates a new ForumSearchResponseV1PostResultsMetadataForumInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumSearchResponseV1PostResultsMetadataForumInfoWithDefaults ¶

func NewForumSearchResponseV1PostResultsMetadataForumInfoWithDefaults() *ForumSearchResponseV1PostResultsMetadataForumInfo

NewForumSearchResponseV1PostResultsMetadataForumInfoWithDefaults instantiates a new ForumSearchResponseV1PostResultsMetadataForumInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumSearchResponseV1PostResultsMetadataForumInfo) GetForumId ¶

GetForumId returns the ForumId field value if set, zero value otherwise.

func (*ForumSearchResponseV1PostResultsMetadataForumInfo) GetForumIdOk ¶

GetForumIdOk returns a tuple with the ForumId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumSearchResponseV1PostResultsMetadataForumInfo) GetForumName ¶

GetForumName returns the ForumName field value if set, zero value otherwise.

func (*ForumSearchResponseV1PostResultsMetadataForumInfo) GetForumNameOk ¶

GetForumNameOk returns a tuple with the ForumName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumSearchResponseV1PostResultsMetadataForumInfo) HasForumId ¶

HasForumId returns a boolean if a field has been set.

func (*ForumSearchResponseV1PostResultsMetadataForumInfo) HasForumName ¶

HasForumName returns a boolean if a field has been set.

func (ForumSearchResponseV1PostResultsMetadataForumInfo) MarshalJSON ¶

func (*ForumSearchResponseV1PostResultsMetadataForumInfo) SetForumId ¶

SetForumId gets a reference to the given int64 and assigns it to the ForumId field.

func (*ForumSearchResponseV1PostResultsMetadataForumInfo) SetForumName ¶

SetForumName gets a reference to the given string and assigns it to the ForumName field.

func (ForumSearchResponseV1PostResultsMetadataForumInfo) ToMap ¶

func (o ForumSearchResponseV1PostResultsMetadataForumInfo) ToMap() (map[string]interface{}, error)

type ForumSearchResponseV1PostResultsMetadataTopicStats ¶

type ForumSearchResponseV1PostResultsMetadataTopicStats struct {
	Posts *int64 `json:"posts,omitempty"`
	Views *int64 `json:"views,omitempty"`
}

ForumSearchResponseV1PostResultsMetadataTopicStats struct for ForumSearchResponseV1PostResultsMetadataTopicStats

func NewForumSearchResponseV1PostResultsMetadataTopicStats ¶

func NewForumSearchResponseV1PostResultsMetadataTopicStats() *ForumSearchResponseV1PostResultsMetadataTopicStats

NewForumSearchResponseV1PostResultsMetadataTopicStats instantiates a new ForumSearchResponseV1PostResultsMetadataTopicStats object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumSearchResponseV1PostResultsMetadataTopicStatsWithDefaults ¶

func NewForumSearchResponseV1PostResultsMetadataTopicStatsWithDefaults() *ForumSearchResponseV1PostResultsMetadataTopicStats

NewForumSearchResponseV1PostResultsMetadataTopicStatsWithDefaults instantiates a new ForumSearchResponseV1PostResultsMetadataTopicStats object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumSearchResponseV1PostResultsMetadataTopicStats) GetPosts ¶

GetPosts returns the Posts field value if set, zero value otherwise.

func (*ForumSearchResponseV1PostResultsMetadataTopicStats) GetPostsOk ¶

GetPostsOk returns a tuple with the Posts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumSearchResponseV1PostResultsMetadataTopicStats) GetViews ¶

GetViews returns the Views field value if set, zero value otherwise.

func (*ForumSearchResponseV1PostResultsMetadataTopicStats) GetViewsOk ¶

GetViewsOk returns a tuple with the Views field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumSearchResponseV1PostResultsMetadataTopicStats) HasPosts ¶

HasPosts returns a boolean if a field has been set.

func (*ForumSearchResponseV1PostResultsMetadataTopicStats) HasViews ¶

HasViews returns a boolean if a field has been set.

func (ForumSearchResponseV1PostResultsMetadataTopicStats) MarshalJSON ¶

func (*ForumSearchResponseV1PostResultsMetadataTopicStats) SetPosts ¶

SetPosts gets a reference to the given int64 and assigns it to the Posts field.

func (*ForumSearchResponseV1PostResultsMetadataTopicStats) SetViews ¶

SetViews gets a reference to the given int64 and assigns it to the Views field.

func (ForumSearchResponseV1PostResultsMetadataTopicStats) ToMap ¶

type ForumSearchResponseV1TopicResults ¶

type ForumSearchResponseV1TopicResults struct {
	Record   *ForumTopicModelSearchV1                   `json:"record,omitempty"`
	Metadata *ForumSearchResponseV1TopicResultsMetadata `json:"metadata,omitempty"`
}

ForumSearchResponseV1TopicResults struct for ForumSearchResponseV1TopicResults

func NewForumSearchResponseV1TopicResults ¶

func NewForumSearchResponseV1TopicResults() *ForumSearchResponseV1TopicResults

NewForumSearchResponseV1TopicResults instantiates a new ForumSearchResponseV1TopicResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumSearchResponseV1TopicResultsWithDefaults ¶

func NewForumSearchResponseV1TopicResultsWithDefaults() *ForumSearchResponseV1TopicResults

NewForumSearchResponseV1TopicResultsWithDefaults instantiates a new ForumSearchResponseV1TopicResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumSearchResponseV1TopicResults) GetMetadata ¶

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ForumSearchResponseV1TopicResults) GetMetadataOk ¶

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumSearchResponseV1TopicResults) GetRecord ¶

GetRecord returns the Record field value if set, zero value otherwise.

func (*ForumSearchResponseV1TopicResults) GetRecordOk ¶

GetRecordOk returns a tuple with the Record field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumSearchResponseV1TopicResults) HasMetadata ¶

func (o *ForumSearchResponseV1TopicResults) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ForumSearchResponseV1TopicResults) HasRecord ¶

func (o *ForumSearchResponseV1TopicResults) HasRecord() bool

HasRecord returns a boolean if a field has been set.

func (ForumSearchResponseV1TopicResults) MarshalJSON ¶

func (o ForumSearchResponseV1TopicResults) MarshalJSON() ([]byte, error)

func (*ForumSearchResponseV1TopicResults) SetMetadata ¶

SetMetadata gets a reference to the given ForumSearchResponseV1TopicResultsMetadata and assigns it to the Metadata field.

func (*ForumSearchResponseV1TopicResults) SetRecord ¶

SetRecord gets a reference to the given ForumTopicModelSearchV1 and assigns it to the Record field.

func (ForumSearchResponseV1TopicResults) ToMap ¶

func (o ForumSearchResponseV1TopicResults) ToMap() (map[string]interface{}, error)

type ForumSearchResponseV1TopicResultsMetadata ¶

type ForumSearchResponseV1TopicResultsMetadata struct {
	IsSubscribed        *bool  `json:"is_subscribed,omitempty"`
	MyLatestPostInTopic *int64 `json:"my_latest_post_in_topic,omitempty"`
}

ForumSearchResponseV1TopicResultsMetadata struct for ForumSearchResponseV1TopicResultsMetadata

func NewForumSearchResponseV1TopicResultsMetadata ¶

func NewForumSearchResponseV1TopicResultsMetadata() *ForumSearchResponseV1TopicResultsMetadata

NewForumSearchResponseV1TopicResultsMetadata instantiates a new ForumSearchResponseV1TopicResultsMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumSearchResponseV1TopicResultsMetadataWithDefaults ¶

func NewForumSearchResponseV1TopicResultsMetadataWithDefaults() *ForumSearchResponseV1TopicResultsMetadata

NewForumSearchResponseV1TopicResultsMetadataWithDefaults instantiates a new ForumSearchResponseV1TopicResultsMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumSearchResponseV1TopicResultsMetadata) GetIsSubscribed ¶

func (o *ForumSearchResponseV1TopicResultsMetadata) GetIsSubscribed() bool

GetIsSubscribed returns the IsSubscribed field value if set, zero value otherwise.

func (*ForumSearchResponseV1TopicResultsMetadata) GetIsSubscribedOk ¶

func (o *ForumSearchResponseV1TopicResultsMetadata) GetIsSubscribedOk() (*bool, bool)

GetIsSubscribedOk returns a tuple with the IsSubscribed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumSearchResponseV1TopicResultsMetadata) GetMyLatestPostInTopic ¶

func (o *ForumSearchResponseV1TopicResultsMetadata) GetMyLatestPostInTopic() int64

GetMyLatestPostInTopic returns the MyLatestPostInTopic field value if set, zero value otherwise.

func (*ForumSearchResponseV1TopicResultsMetadata) GetMyLatestPostInTopicOk ¶

func (o *ForumSearchResponseV1TopicResultsMetadata) GetMyLatestPostInTopicOk() (*int64, bool)

GetMyLatestPostInTopicOk returns a tuple with the MyLatestPostInTopic field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumSearchResponseV1TopicResultsMetadata) HasIsSubscribed ¶

func (o *ForumSearchResponseV1TopicResultsMetadata) HasIsSubscribed() bool

HasIsSubscribed returns a boolean if a field has been set.

func (*ForumSearchResponseV1TopicResultsMetadata) HasMyLatestPostInTopic ¶

func (o *ForumSearchResponseV1TopicResultsMetadata) HasMyLatestPostInTopic() bool

HasMyLatestPostInTopic returns a boolean if a field has been set.

func (ForumSearchResponseV1TopicResultsMetadata) MarshalJSON ¶

func (*ForumSearchResponseV1TopicResultsMetadata) SetIsSubscribed ¶

func (o *ForumSearchResponseV1TopicResultsMetadata) SetIsSubscribed(v bool)

SetIsSubscribed gets a reference to the given bool and assigns it to the IsSubscribed field.

func (*ForumSearchResponseV1TopicResultsMetadata) SetMyLatestPostInTopic ¶

func (o *ForumSearchResponseV1TopicResultsMetadata) SetMyLatestPostInTopic(v int64)

SetMyLatestPostInTopic gets a reference to the given int64 and assigns it to the MyLatestPostInTopic field.

func (ForumSearchResponseV1TopicResultsMetadata) ToMap ¶

func (o ForumSearchResponseV1TopicResultsMetadata) ToMap() (map[string]interface{}, error)

type ForumTopicListRequestV1 ¶

type ForumTopicListRequestV1 struct {
	Page    *int64  `json:"page,omitempty"`
	Perpage *int64  `json:"perpage,omitempty"`
	Orderby *string `json:"orderby,omitempty"`
}

ForumTopicListRequestV1 struct for ForumTopicListRequestV1

func NewForumTopicListRequestV1 ¶

func NewForumTopicListRequestV1() *ForumTopicListRequestV1

NewForumTopicListRequestV1 instantiates a new ForumTopicListRequestV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumTopicListRequestV1WithDefaults ¶

func NewForumTopicListRequestV1WithDefaults() *ForumTopicListRequestV1

NewForumTopicListRequestV1WithDefaults instantiates a new ForumTopicListRequestV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumTopicListRequestV1) GetOrderby ¶

func (o *ForumTopicListRequestV1) GetOrderby() string

GetOrderby returns the Orderby field value if set, zero value otherwise.

func (*ForumTopicListRequestV1) GetOrderbyOk ¶

func (o *ForumTopicListRequestV1) GetOrderbyOk() (*string, bool)

GetOrderbyOk returns a tuple with the Orderby field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicListRequestV1) GetPage ¶

func (o *ForumTopicListRequestV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*ForumTopicListRequestV1) GetPageOk ¶

func (o *ForumTopicListRequestV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicListRequestV1) GetPerpage ¶

func (o *ForumTopicListRequestV1) GetPerpage() int64

GetPerpage returns the Perpage field value if set, zero value otherwise.

func (*ForumTopicListRequestV1) GetPerpageOk ¶

func (o *ForumTopicListRequestV1) GetPerpageOk() (*int64, bool)

GetPerpageOk returns a tuple with the Perpage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicListRequestV1) HasOrderby ¶

func (o *ForumTopicListRequestV1) HasOrderby() bool

HasOrderby returns a boolean if a field has been set.

func (*ForumTopicListRequestV1) HasPage ¶

func (o *ForumTopicListRequestV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*ForumTopicListRequestV1) HasPerpage ¶

func (o *ForumTopicListRequestV1) HasPerpage() bool

HasPerpage returns a boolean if a field has been set.

func (ForumTopicListRequestV1) MarshalJSON ¶

func (o ForumTopicListRequestV1) MarshalJSON() ([]byte, error)

func (*ForumTopicListRequestV1) SetOrderby ¶

func (o *ForumTopicListRequestV1) SetOrderby(v string)

SetOrderby gets a reference to the given string and assigns it to the Orderby field.

func (*ForumTopicListRequestV1) SetPage ¶

func (o *ForumTopicListRequestV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*ForumTopicListRequestV1) SetPerpage ¶

func (o *ForumTopicListRequestV1) SetPerpage(v int64)

SetPerpage gets a reference to the given int64 and assigns it to the Perpage field.

func (ForumTopicListRequestV1) ToMap ¶

func (o ForumTopicListRequestV1) ToMap() (map[string]interface{}, error)

type ForumTopicListResponseV1 ¶

type ForumTopicListResponseV1 struct {
	TotalHits *int64                            `json:"total_hits,omitempty"`
	Page      *int64                            `json:"page,omitempty"`
	PerPage   *int64                            `json:"per_page,omitempty"`
	Results   []ForumTopicListResponseV1Results `json:"results,omitempty"`
}

ForumTopicListResponseV1 struct for ForumTopicListResponseV1

func NewForumTopicListResponseV1 ¶

func NewForumTopicListResponseV1() *ForumTopicListResponseV1

NewForumTopicListResponseV1 instantiates a new ForumTopicListResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumTopicListResponseV1WithDefaults ¶

func NewForumTopicListResponseV1WithDefaults() *ForumTopicListResponseV1

NewForumTopicListResponseV1WithDefaults instantiates a new ForumTopicListResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumTopicListResponseV1) GetPage ¶

func (o *ForumTopicListResponseV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*ForumTopicListResponseV1) GetPageOk ¶

func (o *ForumTopicListResponseV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicListResponseV1) GetPerPage ¶

func (o *ForumTopicListResponseV1) GetPerPage() int64

GetPerPage returns the PerPage field value if set, zero value otherwise.

func (*ForumTopicListResponseV1) GetPerPageOk ¶

func (o *ForumTopicListResponseV1) GetPerPageOk() (*int64, bool)

GetPerPageOk returns a tuple with the PerPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicListResponseV1) GetResults ¶

GetResults returns the Results field value if set, zero value otherwise.

func (*ForumTopicListResponseV1) GetResultsOk ¶

GetResultsOk returns a tuple with the Results field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicListResponseV1) GetTotalHits ¶

func (o *ForumTopicListResponseV1) GetTotalHits() int64

GetTotalHits returns the TotalHits field value if set, zero value otherwise.

func (*ForumTopicListResponseV1) GetTotalHitsOk ¶

func (o *ForumTopicListResponseV1) GetTotalHitsOk() (*int64, bool)

GetTotalHitsOk returns a tuple with the TotalHits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicListResponseV1) HasPage ¶

func (o *ForumTopicListResponseV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*ForumTopicListResponseV1) HasPerPage ¶

func (o *ForumTopicListResponseV1) HasPerPage() bool

HasPerPage returns a boolean if a field has been set.

func (*ForumTopicListResponseV1) HasResults ¶

func (o *ForumTopicListResponseV1) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*ForumTopicListResponseV1) HasTotalHits ¶

func (o *ForumTopicListResponseV1) HasTotalHits() bool

HasTotalHits returns a boolean if a field has been set.

func (ForumTopicListResponseV1) MarshalJSON ¶

func (o ForumTopicListResponseV1) MarshalJSON() ([]byte, error)

func (*ForumTopicListResponseV1) SetPage ¶

func (o *ForumTopicListResponseV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*ForumTopicListResponseV1) SetPerPage ¶

func (o *ForumTopicListResponseV1) SetPerPage(v int64)

SetPerPage gets a reference to the given int64 and assigns it to the PerPage field.

func (*ForumTopicListResponseV1) SetResults ¶

SetResults gets a reference to the given []ForumTopicListResponseV1Results and assigns it to the Results field.

func (*ForumTopicListResponseV1) SetTotalHits ¶

func (o *ForumTopicListResponseV1) SetTotalHits(v int64)

SetTotalHits gets a reference to the given int64 and assigns it to the TotalHits field.

func (ForumTopicListResponseV1) ToMap ¶

func (o ForumTopicListResponseV1) ToMap() (map[string]interface{}, error)

type ForumTopicListResponseV1Results ¶

type ForumTopicListResponseV1Results struct {
	Record   *ForumTopicModelSearchV1                 `json:"record,omitempty"`
	Metadata *ForumTopicListResponseV1ResultsMetadata `json:"metadata,omitempty"`
}

ForumTopicListResponseV1Results struct for ForumTopicListResponseV1Results

func NewForumTopicListResponseV1Results ¶

func NewForumTopicListResponseV1Results() *ForumTopicListResponseV1Results

NewForumTopicListResponseV1Results instantiates a new ForumTopicListResponseV1Results object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumTopicListResponseV1ResultsWithDefaults ¶

func NewForumTopicListResponseV1ResultsWithDefaults() *ForumTopicListResponseV1Results

NewForumTopicListResponseV1ResultsWithDefaults instantiates a new ForumTopicListResponseV1Results object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumTopicListResponseV1Results) GetMetadata ¶

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ForumTopicListResponseV1Results) GetMetadataOk ¶

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicListResponseV1Results) GetRecord ¶

GetRecord returns the Record field value if set, zero value otherwise.

func (*ForumTopicListResponseV1Results) GetRecordOk ¶

GetRecordOk returns a tuple with the Record field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicListResponseV1Results) HasMetadata ¶

func (o *ForumTopicListResponseV1Results) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ForumTopicListResponseV1Results) HasRecord ¶

func (o *ForumTopicListResponseV1Results) HasRecord() bool

HasRecord returns a boolean if a field has been set.

func (ForumTopicListResponseV1Results) MarshalJSON ¶

func (o ForumTopicListResponseV1Results) MarshalJSON() ([]byte, error)

func (*ForumTopicListResponseV1Results) SetMetadata ¶

SetMetadata gets a reference to the given ForumTopicListResponseV1ResultsMetadata and assigns it to the Metadata field.

func (*ForumTopicListResponseV1Results) SetRecord ¶

SetRecord gets a reference to the given ForumTopicModelSearchV1 and assigns it to the Record field.

func (ForumTopicListResponseV1Results) ToMap ¶

func (o ForumTopicListResponseV1Results) ToMap() (map[string]interface{}, error)

type ForumTopicListResponseV1ResultsMetadata ¶

type ForumTopicListResponseV1ResultsMetadata struct {
	FirstPost *ForumPostModelV1 `json:"first_post,omitempty"`
}

ForumTopicListResponseV1ResultsMetadata struct for ForumTopicListResponseV1ResultsMetadata

func NewForumTopicListResponseV1ResultsMetadata ¶

func NewForumTopicListResponseV1ResultsMetadata() *ForumTopicListResponseV1ResultsMetadata

NewForumTopicListResponseV1ResultsMetadata instantiates a new ForumTopicListResponseV1ResultsMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumTopicListResponseV1ResultsMetadataWithDefaults ¶

func NewForumTopicListResponseV1ResultsMetadataWithDefaults() *ForumTopicListResponseV1ResultsMetadata

NewForumTopicListResponseV1ResultsMetadataWithDefaults instantiates a new ForumTopicListResponseV1ResultsMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumTopicListResponseV1ResultsMetadata) GetFirstPost ¶

GetFirstPost returns the FirstPost field value if set, zero value otherwise.

func (*ForumTopicListResponseV1ResultsMetadata) GetFirstPostOk ¶

GetFirstPostOk returns a tuple with the FirstPost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicListResponseV1ResultsMetadata) HasFirstPost ¶

HasFirstPost returns a boolean if a field has been set.

func (ForumTopicListResponseV1ResultsMetadata) MarshalJSON ¶

func (o ForumTopicListResponseV1ResultsMetadata) MarshalJSON() ([]byte, error)

func (*ForumTopicListResponseV1ResultsMetadata) SetFirstPost ¶

SetFirstPost gets a reference to the given ForumPostModelV1 and assigns it to the FirstPost field.

func (ForumTopicListResponseV1ResultsMetadata) ToMap ¶

func (o ForumTopicListResponseV1ResultsMetadata) ToMap() (map[string]interface{}, error)

type ForumTopicModelAddV1 ¶

type ForumTopicModelAddV1 struct {
	Topic *ForumTopicModelUpdateV1 `json:"topic,omitempty"`
	Post  *ForumPostModelUpdateV1  `json:"post,omitempty"`
	Poll  *ForumPollModelUpdateV1  `json:"poll,omitempty"`
}

ForumTopicModelAddV1 struct for ForumTopicModelAddV1

func NewForumTopicModelAddV1 ¶

func NewForumTopicModelAddV1() *ForumTopicModelAddV1

NewForumTopicModelAddV1 instantiates a new ForumTopicModelAddV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumTopicModelAddV1WithDefaults ¶

func NewForumTopicModelAddV1WithDefaults() *ForumTopicModelAddV1

NewForumTopicModelAddV1WithDefaults instantiates a new ForumTopicModelAddV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumTopicModelAddV1) GetPoll ¶

GetPoll returns the Poll field value if set, zero value otherwise.

func (*ForumTopicModelAddV1) GetPollOk ¶

GetPollOk returns a tuple with the Poll field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelAddV1) GetPost ¶

GetPost returns the Post field value if set, zero value otherwise.

func (*ForumTopicModelAddV1) GetPostOk ¶

GetPostOk returns a tuple with the Post field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelAddV1) GetTopic ¶

GetTopic returns the Topic field value if set, zero value otherwise.

func (*ForumTopicModelAddV1) GetTopicOk ¶

GetTopicOk returns a tuple with the Topic field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelAddV1) HasPoll ¶

func (o *ForumTopicModelAddV1) HasPoll() bool

HasPoll returns a boolean if a field has been set.

func (*ForumTopicModelAddV1) HasPost ¶

func (o *ForumTopicModelAddV1) HasPost() bool

HasPost returns a boolean if a field has been set.

func (*ForumTopicModelAddV1) HasTopic ¶

func (o *ForumTopicModelAddV1) HasTopic() bool

HasTopic returns a boolean if a field has been set.

func (ForumTopicModelAddV1) MarshalJSON ¶

func (o ForumTopicModelAddV1) MarshalJSON() ([]byte, error)

func (*ForumTopicModelAddV1) SetPoll ¶

SetPoll gets a reference to the given ForumPollModelUpdateV1 and assigns it to the Poll field.

func (*ForumTopicModelAddV1) SetPost ¶

SetPost gets a reference to the given ForumPostModelUpdateV1 and assigns it to the Post field.

func (*ForumTopicModelAddV1) SetTopic ¶

SetTopic gets a reference to the given ForumTopicModelUpdateV1 and assigns it to the Topic field.

func (ForumTopicModelAddV1) ToMap ¶

func (o ForumTopicModelAddV1) ToMap() (map[string]interface{}, error)

type ForumTopicModelSearchV1 ¶

type ForumTopicModelSearchV1 struct {
	TopicId      *int64                        `json:"topic_id,omitempty"`
	Topic        *string                       `json:"topic,omitempty"`
	Url          *string                       `json:"url,omitempty"`
	LastPost     *ForumPostModelSearchV1       `json:"last_post,omitempty"`
	Stats        *ForumTopicModelSearchV1Stats `json:"stats,omitempty"`
	Forum        *ForumTopicModelSearchV1Forum `json:"forum,omitempty"`
	IsPoll       *bool                         `json:"is_poll,omitempty"`
	Admin        *ForumTopicModelSearchV1Admin `json:"admin,omitempty"`
	TopicStarter *UserModelSearchV1            `json:"topic_starter,omitempty"`
	TimeAdded    *TimeV1                       `json:"time_added,omitempty"`
}

ForumTopicModelSearchV1 struct for ForumTopicModelSearchV1

func NewForumTopicModelSearchV1 ¶

func NewForumTopicModelSearchV1() *ForumTopicModelSearchV1

NewForumTopicModelSearchV1 instantiates a new ForumTopicModelSearchV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumTopicModelSearchV1WithDefaults ¶

func NewForumTopicModelSearchV1WithDefaults() *ForumTopicModelSearchV1

NewForumTopicModelSearchV1WithDefaults instantiates a new ForumTopicModelSearchV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumTopicModelSearchV1) GetAdmin ¶

GetAdmin returns the Admin field value if set, zero value otherwise.

func (*ForumTopicModelSearchV1) GetAdminOk ¶

GetAdminOk returns a tuple with the Admin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelSearchV1) GetForum ¶

GetForum returns the Forum field value if set, zero value otherwise.

func (*ForumTopicModelSearchV1) GetForumOk ¶

GetForumOk returns a tuple with the Forum field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelSearchV1) GetIsPoll ¶

func (o *ForumTopicModelSearchV1) GetIsPoll() bool

GetIsPoll returns the IsPoll field value if set, zero value otherwise.

func (*ForumTopicModelSearchV1) GetIsPollOk ¶

func (o *ForumTopicModelSearchV1) GetIsPollOk() (*bool, bool)

GetIsPollOk returns a tuple with the IsPoll field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelSearchV1) GetLastPost ¶

GetLastPost returns the LastPost field value if set, zero value otherwise.

func (*ForumTopicModelSearchV1) GetLastPostOk ¶

func (o *ForumTopicModelSearchV1) GetLastPostOk() (*ForumPostModelSearchV1, bool)

GetLastPostOk returns a tuple with the LastPost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelSearchV1) GetStats ¶

GetStats returns the Stats field value if set, zero value otherwise.

func (*ForumTopicModelSearchV1) GetStatsOk ¶

GetStatsOk returns a tuple with the Stats field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelSearchV1) GetTimeAdded ¶

func (o *ForumTopicModelSearchV1) GetTimeAdded() TimeV1

GetTimeAdded returns the TimeAdded field value if set, zero value otherwise.

func (*ForumTopicModelSearchV1) GetTimeAddedOk ¶

func (o *ForumTopicModelSearchV1) GetTimeAddedOk() (*TimeV1, bool)

GetTimeAddedOk returns a tuple with the TimeAdded field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelSearchV1) GetTopic ¶

func (o *ForumTopicModelSearchV1) GetTopic() string

GetTopic returns the Topic field value if set, zero value otherwise.

func (*ForumTopicModelSearchV1) GetTopicId ¶

func (o *ForumTopicModelSearchV1) GetTopicId() int64

GetTopicId returns the TopicId field value if set, zero value otherwise.

func (*ForumTopicModelSearchV1) GetTopicIdOk ¶

func (o *ForumTopicModelSearchV1) GetTopicIdOk() (*int64, bool)

GetTopicIdOk returns a tuple with the TopicId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelSearchV1) GetTopicOk ¶

func (o *ForumTopicModelSearchV1) GetTopicOk() (*string, bool)

GetTopicOk returns a tuple with the Topic field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelSearchV1) GetTopicStarter ¶

func (o *ForumTopicModelSearchV1) GetTopicStarter() UserModelSearchV1

GetTopicStarter returns the TopicStarter field value if set, zero value otherwise.

func (*ForumTopicModelSearchV1) GetTopicStarterOk ¶

func (o *ForumTopicModelSearchV1) GetTopicStarterOk() (*UserModelSearchV1, bool)

GetTopicStarterOk returns a tuple with the TopicStarter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelSearchV1) GetUrl ¶

func (o *ForumTopicModelSearchV1) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*ForumTopicModelSearchV1) GetUrlOk ¶

func (o *ForumTopicModelSearchV1) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelSearchV1) HasAdmin ¶

func (o *ForumTopicModelSearchV1) HasAdmin() bool

HasAdmin returns a boolean if a field has been set.

func (*ForumTopicModelSearchV1) HasForum ¶

func (o *ForumTopicModelSearchV1) HasForum() bool

HasForum returns a boolean if a field has been set.

func (*ForumTopicModelSearchV1) HasIsPoll ¶

func (o *ForumTopicModelSearchV1) HasIsPoll() bool

HasIsPoll returns a boolean if a field has been set.

func (*ForumTopicModelSearchV1) HasLastPost ¶

func (o *ForumTopicModelSearchV1) HasLastPost() bool

HasLastPost returns a boolean if a field has been set.

func (*ForumTopicModelSearchV1) HasStats ¶

func (o *ForumTopicModelSearchV1) HasStats() bool

HasStats returns a boolean if a field has been set.

func (*ForumTopicModelSearchV1) HasTimeAdded ¶

func (o *ForumTopicModelSearchV1) HasTimeAdded() bool

HasTimeAdded returns a boolean if a field has been set.

func (*ForumTopicModelSearchV1) HasTopic ¶

func (o *ForumTopicModelSearchV1) HasTopic() bool

HasTopic returns a boolean if a field has been set.

func (*ForumTopicModelSearchV1) HasTopicId ¶

func (o *ForumTopicModelSearchV1) HasTopicId() bool

HasTopicId returns a boolean if a field has been set.

func (*ForumTopicModelSearchV1) HasTopicStarter ¶

func (o *ForumTopicModelSearchV1) HasTopicStarter() bool

HasTopicStarter returns a boolean if a field has been set.

func (*ForumTopicModelSearchV1) HasUrl ¶

func (o *ForumTopicModelSearchV1) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (ForumTopicModelSearchV1) MarshalJSON ¶

func (o ForumTopicModelSearchV1) MarshalJSON() ([]byte, error)

func (*ForumTopicModelSearchV1) SetAdmin ¶

SetAdmin gets a reference to the given ForumTopicModelSearchV1Admin and assigns it to the Admin field.

func (*ForumTopicModelSearchV1) SetForum ¶

SetForum gets a reference to the given ForumTopicModelSearchV1Forum and assigns it to the Forum field.

func (*ForumTopicModelSearchV1) SetIsPoll ¶

func (o *ForumTopicModelSearchV1) SetIsPoll(v bool)

SetIsPoll gets a reference to the given bool and assigns it to the IsPoll field.

func (*ForumTopicModelSearchV1) SetLastPost ¶

SetLastPost gets a reference to the given ForumPostModelSearchV1 and assigns it to the LastPost field.

func (*ForumTopicModelSearchV1) SetStats ¶

SetStats gets a reference to the given ForumTopicModelSearchV1Stats and assigns it to the Stats field.

func (*ForumTopicModelSearchV1) SetTimeAdded ¶

func (o *ForumTopicModelSearchV1) SetTimeAdded(v TimeV1)

SetTimeAdded gets a reference to the given TimeV1 and assigns it to the TimeAdded field.

func (*ForumTopicModelSearchV1) SetTopic ¶

func (o *ForumTopicModelSearchV1) SetTopic(v string)

SetTopic gets a reference to the given string and assigns it to the Topic field.

func (*ForumTopicModelSearchV1) SetTopicId ¶

func (o *ForumTopicModelSearchV1) SetTopicId(v int64)

SetTopicId gets a reference to the given int64 and assigns it to the TopicId field.

func (*ForumTopicModelSearchV1) SetTopicStarter ¶

func (o *ForumTopicModelSearchV1) SetTopicStarter(v UserModelSearchV1)

SetTopicStarter gets a reference to the given UserModelSearchV1 and assigns it to the TopicStarter field.

func (*ForumTopicModelSearchV1) SetUrl ¶

func (o *ForumTopicModelSearchV1) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (ForumTopicModelSearchV1) ToMap ¶

func (o ForumTopicModelSearchV1) ToMap() (map[string]interface{}, error)

type ForumTopicModelSearchV1Admin ¶

type ForumTopicModelSearchV1Admin struct {
	Pinned *bool `json:"pinned,omitempty"`
	Locked *bool `json:"locked,omitempty"`
	Global *bool `json:"global,omitempty"`
}

ForumTopicModelSearchV1Admin struct for ForumTopicModelSearchV1Admin

func NewForumTopicModelSearchV1Admin ¶

func NewForumTopicModelSearchV1Admin() *ForumTopicModelSearchV1Admin

NewForumTopicModelSearchV1Admin instantiates a new ForumTopicModelSearchV1Admin object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumTopicModelSearchV1AdminWithDefaults ¶

func NewForumTopicModelSearchV1AdminWithDefaults() *ForumTopicModelSearchV1Admin

NewForumTopicModelSearchV1AdminWithDefaults instantiates a new ForumTopicModelSearchV1Admin object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumTopicModelSearchV1Admin) GetGlobal ¶

func (o *ForumTopicModelSearchV1Admin) GetGlobal() bool

GetGlobal returns the Global field value if set, zero value otherwise.

func (*ForumTopicModelSearchV1Admin) GetGlobalOk ¶

func (o *ForumTopicModelSearchV1Admin) GetGlobalOk() (*bool, bool)

GetGlobalOk returns a tuple with the Global field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelSearchV1Admin) GetLocked ¶

func (o *ForumTopicModelSearchV1Admin) GetLocked() bool

GetLocked returns the Locked field value if set, zero value otherwise.

func (*ForumTopicModelSearchV1Admin) GetLockedOk ¶

func (o *ForumTopicModelSearchV1Admin) GetLockedOk() (*bool, bool)

GetLockedOk returns a tuple with the Locked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelSearchV1Admin) GetPinned ¶

func (o *ForumTopicModelSearchV1Admin) GetPinned() bool

GetPinned returns the Pinned field value if set, zero value otherwise.

func (*ForumTopicModelSearchV1Admin) GetPinnedOk ¶

func (o *ForumTopicModelSearchV1Admin) GetPinnedOk() (*bool, bool)

GetPinnedOk returns a tuple with the Pinned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelSearchV1Admin) HasGlobal ¶

func (o *ForumTopicModelSearchV1Admin) HasGlobal() bool

HasGlobal returns a boolean if a field has been set.

func (*ForumTopicModelSearchV1Admin) HasLocked ¶

func (o *ForumTopicModelSearchV1Admin) HasLocked() bool

HasLocked returns a boolean if a field has been set.

func (*ForumTopicModelSearchV1Admin) HasPinned ¶

func (o *ForumTopicModelSearchV1Admin) HasPinned() bool

HasPinned returns a boolean if a field has been set.

func (ForumTopicModelSearchV1Admin) MarshalJSON ¶

func (o ForumTopicModelSearchV1Admin) MarshalJSON() ([]byte, error)

func (*ForumTopicModelSearchV1Admin) SetGlobal ¶

func (o *ForumTopicModelSearchV1Admin) SetGlobal(v bool)

SetGlobal gets a reference to the given bool and assigns it to the Global field.

func (*ForumTopicModelSearchV1Admin) SetLocked ¶

func (o *ForumTopicModelSearchV1Admin) SetLocked(v bool)

SetLocked gets a reference to the given bool and assigns it to the Locked field.

func (*ForumTopicModelSearchV1Admin) SetPinned ¶

func (o *ForumTopicModelSearchV1Admin) SetPinned(v bool)

SetPinned gets a reference to the given bool and assigns it to the Pinned field.

func (ForumTopicModelSearchV1Admin) ToMap ¶

func (o ForumTopicModelSearchV1Admin) ToMap() (map[string]interface{}, error)

type ForumTopicModelSearchV1Forum ¶

type ForumTopicModelSearchV1Forum struct {
	ForumId   *int64  `json:"forum_id,omitempty"`
	ForumName *string `json:"forum_name,omitempty"`
}

ForumTopicModelSearchV1Forum struct for ForumTopicModelSearchV1Forum

func NewForumTopicModelSearchV1Forum ¶

func NewForumTopicModelSearchV1Forum() *ForumTopicModelSearchV1Forum

NewForumTopicModelSearchV1Forum instantiates a new ForumTopicModelSearchV1Forum object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumTopicModelSearchV1ForumWithDefaults ¶

func NewForumTopicModelSearchV1ForumWithDefaults() *ForumTopicModelSearchV1Forum

NewForumTopicModelSearchV1ForumWithDefaults instantiates a new ForumTopicModelSearchV1Forum object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumTopicModelSearchV1Forum) GetForumId ¶

func (o *ForumTopicModelSearchV1Forum) GetForumId() int64

GetForumId returns the ForumId field value if set, zero value otherwise.

func (*ForumTopicModelSearchV1Forum) GetForumIdOk ¶

func (o *ForumTopicModelSearchV1Forum) GetForumIdOk() (*int64, bool)

GetForumIdOk returns a tuple with the ForumId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelSearchV1Forum) GetForumName ¶

func (o *ForumTopicModelSearchV1Forum) GetForumName() string

GetForumName returns the ForumName field value if set, zero value otherwise.

func (*ForumTopicModelSearchV1Forum) GetForumNameOk ¶

func (o *ForumTopicModelSearchV1Forum) GetForumNameOk() (*string, bool)

GetForumNameOk returns a tuple with the ForumName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelSearchV1Forum) HasForumId ¶

func (o *ForumTopicModelSearchV1Forum) HasForumId() bool

HasForumId returns a boolean if a field has been set.

func (*ForumTopicModelSearchV1Forum) HasForumName ¶

func (o *ForumTopicModelSearchV1Forum) HasForumName() bool

HasForumName returns a boolean if a field has been set.

func (ForumTopicModelSearchV1Forum) MarshalJSON ¶

func (o ForumTopicModelSearchV1Forum) MarshalJSON() ([]byte, error)

func (*ForumTopicModelSearchV1Forum) SetForumId ¶

func (o *ForumTopicModelSearchV1Forum) SetForumId(v int64)

SetForumId gets a reference to the given int64 and assigns it to the ForumId field.

func (*ForumTopicModelSearchV1Forum) SetForumName ¶

func (o *ForumTopicModelSearchV1Forum) SetForumName(v string)

SetForumName gets a reference to the given string and assigns it to the ForumName field.

func (ForumTopicModelSearchV1Forum) ToMap ¶

func (o ForumTopicModelSearchV1Forum) ToMap() (map[string]interface{}, error)

type ForumTopicModelSearchV1Stats ¶

type ForumTopicModelSearchV1Stats struct {
	Posts *int64 `json:"posts,omitempty"`
	Views *int64 `json:"views,omitempty"`
}

ForumTopicModelSearchV1Stats struct for ForumTopicModelSearchV1Stats

func NewForumTopicModelSearchV1Stats ¶

func NewForumTopicModelSearchV1Stats() *ForumTopicModelSearchV1Stats

NewForumTopicModelSearchV1Stats instantiates a new ForumTopicModelSearchV1Stats object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumTopicModelSearchV1StatsWithDefaults ¶

func NewForumTopicModelSearchV1StatsWithDefaults() *ForumTopicModelSearchV1Stats

NewForumTopicModelSearchV1StatsWithDefaults instantiates a new ForumTopicModelSearchV1Stats object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumTopicModelSearchV1Stats) GetPosts ¶

func (o *ForumTopicModelSearchV1Stats) GetPosts() int64

GetPosts returns the Posts field value if set, zero value otherwise.

func (*ForumTopicModelSearchV1Stats) GetPostsOk ¶

func (o *ForumTopicModelSearchV1Stats) GetPostsOk() (*int64, bool)

GetPostsOk returns a tuple with the Posts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelSearchV1Stats) GetViews ¶

func (o *ForumTopicModelSearchV1Stats) GetViews() int64

GetViews returns the Views field value if set, zero value otherwise.

func (*ForumTopicModelSearchV1Stats) GetViewsOk ¶

func (o *ForumTopicModelSearchV1Stats) GetViewsOk() (*int64, bool)

GetViewsOk returns a tuple with the Views field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelSearchV1Stats) HasPosts ¶

func (o *ForumTopicModelSearchV1Stats) HasPosts() bool

HasPosts returns a boolean if a field has been set.

func (*ForumTopicModelSearchV1Stats) HasViews ¶

func (o *ForumTopicModelSearchV1Stats) HasViews() bool

HasViews returns a boolean if a field has been set.

func (ForumTopicModelSearchV1Stats) MarshalJSON ¶

func (o ForumTopicModelSearchV1Stats) MarshalJSON() ([]byte, error)

func (*ForumTopicModelSearchV1Stats) SetPosts ¶

func (o *ForumTopicModelSearchV1Stats) SetPosts(v int64)

SetPosts gets a reference to the given int64 and assigns it to the Posts field.

func (*ForumTopicModelSearchV1Stats) SetViews ¶

func (o *ForumTopicModelSearchV1Stats) SetViews(v int64)

SetViews gets a reference to the given int64 and assigns it to the Views field.

func (ForumTopicModelSearchV1Stats) ToMap ¶

func (o ForumTopicModelSearchV1Stats) ToMap() (map[string]interface{}, error)

type ForumTopicModelUpdateV1 ¶

type ForumTopicModelUpdateV1 struct {
	Topic *string                       `json:"topic,omitempty"`
	Forum *ForumTopicModelUpdateV1Forum `json:"forum,omitempty"`
	Admin *ForumTopicModelUpdateV1Admin `json:"admin,omitempty"`
}

ForumTopicModelUpdateV1 struct for ForumTopicModelUpdateV1

func NewForumTopicModelUpdateV1 ¶

func NewForumTopicModelUpdateV1() *ForumTopicModelUpdateV1

NewForumTopicModelUpdateV1 instantiates a new ForumTopicModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumTopicModelUpdateV1WithDefaults ¶

func NewForumTopicModelUpdateV1WithDefaults() *ForumTopicModelUpdateV1

NewForumTopicModelUpdateV1WithDefaults instantiates a new ForumTopicModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumTopicModelUpdateV1) GetAdmin ¶

GetAdmin returns the Admin field value if set, zero value otherwise.

func (*ForumTopicModelUpdateV1) GetAdminOk ¶

GetAdminOk returns a tuple with the Admin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelUpdateV1) GetForum ¶

GetForum returns the Forum field value if set, zero value otherwise.

func (*ForumTopicModelUpdateV1) GetForumOk ¶

GetForumOk returns a tuple with the Forum field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelUpdateV1) GetTopic ¶

func (o *ForumTopicModelUpdateV1) GetTopic() string

GetTopic returns the Topic field value if set, zero value otherwise.

func (*ForumTopicModelUpdateV1) GetTopicOk ¶

func (o *ForumTopicModelUpdateV1) GetTopicOk() (*string, bool)

GetTopicOk returns a tuple with the Topic field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelUpdateV1) HasAdmin ¶

func (o *ForumTopicModelUpdateV1) HasAdmin() bool

HasAdmin returns a boolean if a field has been set.

func (*ForumTopicModelUpdateV1) HasForum ¶

func (o *ForumTopicModelUpdateV1) HasForum() bool

HasForum returns a boolean if a field has been set.

func (*ForumTopicModelUpdateV1) HasTopic ¶

func (o *ForumTopicModelUpdateV1) HasTopic() bool

HasTopic returns a boolean if a field has been set.

func (ForumTopicModelUpdateV1) MarshalJSON ¶

func (o ForumTopicModelUpdateV1) MarshalJSON() ([]byte, error)

func (*ForumTopicModelUpdateV1) SetAdmin ¶

SetAdmin gets a reference to the given ForumTopicModelUpdateV1Admin and assigns it to the Admin field.

func (*ForumTopicModelUpdateV1) SetForum ¶

SetForum gets a reference to the given ForumTopicModelUpdateV1Forum and assigns it to the Forum field.

func (*ForumTopicModelUpdateV1) SetTopic ¶

func (o *ForumTopicModelUpdateV1) SetTopic(v string)

SetTopic gets a reference to the given string and assigns it to the Topic field.

func (ForumTopicModelUpdateV1) ToMap ¶

func (o ForumTopicModelUpdateV1) ToMap() (map[string]interface{}, error)

type ForumTopicModelUpdateV1Admin ¶

type ForumTopicModelUpdateV1Admin struct {
	Pinned *bool `json:"pinned,omitempty"`
	Locked *bool `json:"locked,omitempty"`
	Global *bool `json:"global,omitempty"`
}

ForumTopicModelUpdateV1Admin struct for ForumTopicModelUpdateV1Admin

func NewForumTopicModelUpdateV1Admin ¶

func NewForumTopicModelUpdateV1Admin() *ForumTopicModelUpdateV1Admin

NewForumTopicModelUpdateV1Admin instantiates a new ForumTopicModelUpdateV1Admin object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumTopicModelUpdateV1AdminWithDefaults ¶

func NewForumTopicModelUpdateV1AdminWithDefaults() *ForumTopicModelUpdateV1Admin

NewForumTopicModelUpdateV1AdminWithDefaults instantiates a new ForumTopicModelUpdateV1Admin object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumTopicModelUpdateV1Admin) GetGlobal ¶

func (o *ForumTopicModelUpdateV1Admin) GetGlobal() bool

GetGlobal returns the Global field value if set, zero value otherwise.

func (*ForumTopicModelUpdateV1Admin) GetGlobalOk ¶

func (o *ForumTopicModelUpdateV1Admin) GetGlobalOk() (*bool, bool)

GetGlobalOk returns a tuple with the Global field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelUpdateV1Admin) GetLocked ¶

func (o *ForumTopicModelUpdateV1Admin) GetLocked() bool

GetLocked returns the Locked field value if set, zero value otherwise.

func (*ForumTopicModelUpdateV1Admin) GetLockedOk ¶

func (o *ForumTopicModelUpdateV1Admin) GetLockedOk() (*bool, bool)

GetLockedOk returns a tuple with the Locked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelUpdateV1Admin) GetPinned ¶

func (o *ForumTopicModelUpdateV1Admin) GetPinned() bool

GetPinned returns the Pinned field value if set, zero value otherwise.

func (*ForumTopicModelUpdateV1Admin) GetPinnedOk ¶

func (o *ForumTopicModelUpdateV1Admin) GetPinnedOk() (*bool, bool)

GetPinnedOk returns a tuple with the Pinned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelUpdateV1Admin) HasGlobal ¶

func (o *ForumTopicModelUpdateV1Admin) HasGlobal() bool

HasGlobal returns a boolean if a field has been set.

func (*ForumTopicModelUpdateV1Admin) HasLocked ¶

func (o *ForumTopicModelUpdateV1Admin) HasLocked() bool

HasLocked returns a boolean if a field has been set.

func (*ForumTopicModelUpdateV1Admin) HasPinned ¶

func (o *ForumTopicModelUpdateV1Admin) HasPinned() bool

HasPinned returns a boolean if a field has been set.

func (ForumTopicModelUpdateV1Admin) MarshalJSON ¶

func (o ForumTopicModelUpdateV1Admin) MarshalJSON() ([]byte, error)

func (*ForumTopicModelUpdateV1Admin) SetGlobal ¶

func (o *ForumTopicModelUpdateV1Admin) SetGlobal(v bool)

SetGlobal gets a reference to the given bool and assigns it to the Global field.

func (*ForumTopicModelUpdateV1Admin) SetLocked ¶

func (o *ForumTopicModelUpdateV1Admin) SetLocked(v bool)

SetLocked gets a reference to the given bool and assigns it to the Locked field.

func (*ForumTopicModelUpdateV1Admin) SetPinned ¶

func (o *ForumTopicModelUpdateV1Admin) SetPinned(v bool)

SetPinned gets a reference to the given bool and assigns it to the Pinned field.

func (ForumTopicModelUpdateV1Admin) ToMap ¶

func (o ForumTopicModelUpdateV1Admin) ToMap() (map[string]interface{}, error)

type ForumTopicModelUpdateV1Forum ¶

type ForumTopicModelUpdateV1Forum struct {
	ForumId *int64 `json:"forum_id,omitempty"`
}

ForumTopicModelUpdateV1Forum struct for ForumTopicModelUpdateV1Forum

func NewForumTopicModelUpdateV1Forum ¶

func NewForumTopicModelUpdateV1Forum() *ForumTopicModelUpdateV1Forum

NewForumTopicModelUpdateV1Forum instantiates a new ForumTopicModelUpdateV1Forum object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumTopicModelUpdateV1ForumWithDefaults ¶

func NewForumTopicModelUpdateV1ForumWithDefaults() *ForumTopicModelUpdateV1Forum

NewForumTopicModelUpdateV1ForumWithDefaults instantiates a new ForumTopicModelUpdateV1Forum object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumTopicModelUpdateV1Forum) GetForumId ¶

func (o *ForumTopicModelUpdateV1Forum) GetForumId() int64

GetForumId returns the ForumId field value if set, zero value otherwise.

func (*ForumTopicModelUpdateV1Forum) GetForumIdOk ¶

func (o *ForumTopicModelUpdateV1Forum) GetForumIdOk() (*int64, bool)

GetForumIdOk returns a tuple with the ForumId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelUpdateV1Forum) HasForumId ¶

func (o *ForumTopicModelUpdateV1Forum) HasForumId() bool

HasForumId returns a boolean if a field has been set.

func (ForumTopicModelUpdateV1Forum) MarshalJSON ¶

func (o ForumTopicModelUpdateV1Forum) MarshalJSON() ([]byte, error)

func (*ForumTopicModelUpdateV1Forum) SetForumId ¶

func (o *ForumTopicModelUpdateV1Forum) SetForumId(v int64)

SetForumId gets a reference to the given int64 and assigns it to the ForumId field.

func (ForumTopicModelUpdateV1Forum) ToMap ¶

func (o ForumTopicModelUpdateV1Forum) ToMap() (map[string]interface{}, error)

type ForumTopicModelV1 ¶

type ForumTopicModelV1 struct {
	TopicId      *int64                  `json:"topic_id,omitempty"`
	Topic        *string                 `json:"topic,omitempty"`
	Url          *string                 `json:"url,omitempty"`
	LastPost     *ForumPostModelSearchV1 `json:"last_post,omitempty"`
	Stats        *ForumTopicModelV1Stats `json:"stats,omitempty"`
	Forum        *ForumTopicModelV1Forum `json:"forum,omitempty"`
	IsPoll       *bool                   `json:"is_poll,omitempty"`
	Poll         *ForumPollModelV1       `json:"poll,omitempty"`
	Admin        *ForumTopicModelV1Admin `json:"admin,omitempty"`
	TopicStarter *UserModelSearchV1      `json:"topic_starter,omitempty"`
	TimeAdded    *TimeV1                 `json:"time_added,omitempty"`
}

ForumTopicModelV1 struct for ForumTopicModelV1

func NewForumTopicModelV1 ¶

func NewForumTopicModelV1() *ForumTopicModelV1

NewForumTopicModelV1 instantiates a new ForumTopicModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumTopicModelV1WithDefaults ¶

func NewForumTopicModelV1WithDefaults() *ForumTopicModelV1

NewForumTopicModelV1WithDefaults instantiates a new ForumTopicModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumTopicModelV1) GetAdmin ¶

GetAdmin returns the Admin field value if set, zero value otherwise.

func (*ForumTopicModelV1) GetAdminOk ¶

func (o *ForumTopicModelV1) GetAdminOk() (*ForumTopicModelV1Admin, bool)

GetAdminOk returns a tuple with the Admin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelV1) GetForum ¶

GetForum returns the Forum field value if set, zero value otherwise.

func (*ForumTopicModelV1) GetForumOk ¶

func (o *ForumTopicModelV1) GetForumOk() (*ForumTopicModelV1Forum, bool)

GetForumOk returns a tuple with the Forum field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelV1) GetIsPoll ¶

func (o *ForumTopicModelV1) GetIsPoll() bool

GetIsPoll returns the IsPoll field value if set, zero value otherwise.

func (*ForumTopicModelV1) GetIsPollOk ¶

func (o *ForumTopicModelV1) GetIsPollOk() (*bool, bool)

GetIsPollOk returns a tuple with the IsPoll field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelV1) GetLastPost ¶

func (o *ForumTopicModelV1) GetLastPost() ForumPostModelSearchV1

GetLastPost returns the LastPost field value if set, zero value otherwise.

func (*ForumTopicModelV1) GetLastPostOk ¶

func (o *ForumTopicModelV1) GetLastPostOk() (*ForumPostModelSearchV1, bool)

GetLastPostOk returns a tuple with the LastPost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelV1) GetPoll ¶

func (o *ForumTopicModelV1) GetPoll() ForumPollModelV1

GetPoll returns the Poll field value if set, zero value otherwise.

func (*ForumTopicModelV1) GetPollOk ¶

func (o *ForumTopicModelV1) GetPollOk() (*ForumPollModelV1, bool)

GetPollOk returns a tuple with the Poll field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelV1) GetStats ¶

GetStats returns the Stats field value if set, zero value otherwise.

func (*ForumTopicModelV1) GetStatsOk ¶

func (o *ForumTopicModelV1) GetStatsOk() (*ForumTopicModelV1Stats, bool)

GetStatsOk returns a tuple with the Stats field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelV1) GetTimeAdded ¶

func (o *ForumTopicModelV1) GetTimeAdded() TimeV1

GetTimeAdded returns the TimeAdded field value if set, zero value otherwise.

func (*ForumTopicModelV1) GetTimeAddedOk ¶

func (o *ForumTopicModelV1) GetTimeAddedOk() (*TimeV1, bool)

GetTimeAddedOk returns a tuple with the TimeAdded field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelV1) GetTopic ¶

func (o *ForumTopicModelV1) GetTopic() string

GetTopic returns the Topic field value if set, zero value otherwise.

func (*ForumTopicModelV1) GetTopicId ¶

func (o *ForumTopicModelV1) GetTopicId() int64

GetTopicId returns the TopicId field value if set, zero value otherwise.

func (*ForumTopicModelV1) GetTopicIdOk ¶

func (o *ForumTopicModelV1) GetTopicIdOk() (*int64, bool)

GetTopicIdOk returns a tuple with the TopicId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelV1) GetTopicOk ¶

func (o *ForumTopicModelV1) GetTopicOk() (*string, bool)

GetTopicOk returns a tuple with the Topic field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelV1) GetTopicStarter ¶

func (o *ForumTopicModelV1) GetTopicStarter() UserModelSearchV1

GetTopicStarter returns the TopicStarter field value if set, zero value otherwise.

func (*ForumTopicModelV1) GetTopicStarterOk ¶

func (o *ForumTopicModelV1) GetTopicStarterOk() (*UserModelSearchV1, bool)

GetTopicStarterOk returns a tuple with the TopicStarter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelV1) GetUrl ¶

func (o *ForumTopicModelV1) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*ForumTopicModelV1) GetUrlOk ¶

func (o *ForumTopicModelV1) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelV1) HasAdmin ¶

func (o *ForumTopicModelV1) HasAdmin() bool

HasAdmin returns a boolean if a field has been set.

func (*ForumTopicModelV1) HasForum ¶

func (o *ForumTopicModelV1) HasForum() bool

HasForum returns a boolean if a field has been set.

func (*ForumTopicModelV1) HasIsPoll ¶

func (o *ForumTopicModelV1) HasIsPoll() bool

HasIsPoll returns a boolean if a field has been set.

func (*ForumTopicModelV1) HasLastPost ¶

func (o *ForumTopicModelV1) HasLastPost() bool

HasLastPost returns a boolean if a field has been set.

func (*ForumTopicModelV1) HasPoll ¶

func (o *ForumTopicModelV1) HasPoll() bool

HasPoll returns a boolean if a field has been set.

func (*ForumTopicModelV1) HasStats ¶

func (o *ForumTopicModelV1) HasStats() bool

HasStats returns a boolean if a field has been set.

func (*ForumTopicModelV1) HasTimeAdded ¶

func (o *ForumTopicModelV1) HasTimeAdded() bool

HasTimeAdded returns a boolean if a field has been set.

func (*ForumTopicModelV1) HasTopic ¶

func (o *ForumTopicModelV1) HasTopic() bool

HasTopic returns a boolean if a field has been set.

func (*ForumTopicModelV1) HasTopicId ¶

func (o *ForumTopicModelV1) HasTopicId() bool

HasTopicId returns a boolean if a field has been set.

func (*ForumTopicModelV1) HasTopicStarter ¶

func (o *ForumTopicModelV1) HasTopicStarter() bool

HasTopicStarter returns a boolean if a field has been set.

func (*ForumTopicModelV1) HasUrl ¶

func (o *ForumTopicModelV1) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (ForumTopicModelV1) MarshalJSON ¶

func (o ForumTopicModelV1) MarshalJSON() ([]byte, error)

func (*ForumTopicModelV1) SetAdmin ¶

SetAdmin gets a reference to the given ForumTopicModelV1Admin and assigns it to the Admin field.

func (*ForumTopicModelV1) SetForum ¶

SetForum gets a reference to the given ForumTopicModelV1Forum and assigns it to the Forum field.

func (*ForumTopicModelV1) SetIsPoll ¶

func (o *ForumTopicModelV1) SetIsPoll(v bool)

SetIsPoll gets a reference to the given bool and assigns it to the IsPoll field.

func (*ForumTopicModelV1) SetLastPost ¶

func (o *ForumTopicModelV1) SetLastPost(v ForumPostModelSearchV1)

SetLastPost gets a reference to the given ForumPostModelSearchV1 and assigns it to the LastPost field.

func (*ForumTopicModelV1) SetPoll ¶

func (o *ForumTopicModelV1) SetPoll(v ForumPollModelV1)

SetPoll gets a reference to the given ForumPollModelV1 and assigns it to the Poll field.

func (*ForumTopicModelV1) SetStats ¶

SetStats gets a reference to the given ForumTopicModelV1Stats and assigns it to the Stats field.

func (*ForumTopicModelV1) SetTimeAdded ¶

func (o *ForumTopicModelV1) SetTimeAdded(v TimeV1)

SetTimeAdded gets a reference to the given TimeV1 and assigns it to the TimeAdded field.

func (*ForumTopicModelV1) SetTopic ¶

func (o *ForumTopicModelV1) SetTopic(v string)

SetTopic gets a reference to the given string and assigns it to the Topic field.

func (*ForumTopicModelV1) SetTopicId ¶

func (o *ForumTopicModelV1) SetTopicId(v int64)

SetTopicId gets a reference to the given int64 and assigns it to the TopicId field.

func (*ForumTopicModelV1) SetTopicStarter ¶

func (o *ForumTopicModelV1) SetTopicStarter(v UserModelSearchV1)

SetTopicStarter gets a reference to the given UserModelSearchV1 and assigns it to the TopicStarter field.

func (*ForumTopicModelV1) SetUrl ¶

func (o *ForumTopicModelV1) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (ForumTopicModelV1) ToMap ¶

func (o ForumTopicModelV1) ToMap() (map[string]interface{}, error)

type ForumTopicModelV1Admin ¶

type ForumTopicModelV1Admin struct {
	Pinned *bool `json:"pinned,omitempty"`
	Locked *bool `json:"locked,omitempty"`
	Global *bool `json:"global,omitempty"`
}

ForumTopicModelV1Admin struct for ForumTopicModelV1Admin

func NewForumTopicModelV1Admin ¶

func NewForumTopicModelV1Admin() *ForumTopicModelV1Admin

NewForumTopicModelV1Admin instantiates a new ForumTopicModelV1Admin object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumTopicModelV1AdminWithDefaults ¶

func NewForumTopicModelV1AdminWithDefaults() *ForumTopicModelV1Admin

NewForumTopicModelV1AdminWithDefaults instantiates a new ForumTopicModelV1Admin object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumTopicModelV1Admin) GetGlobal ¶

func (o *ForumTopicModelV1Admin) GetGlobal() bool

GetGlobal returns the Global field value if set, zero value otherwise.

func (*ForumTopicModelV1Admin) GetGlobalOk ¶

func (o *ForumTopicModelV1Admin) GetGlobalOk() (*bool, bool)

GetGlobalOk returns a tuple with the Global field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelV1Admin) GetLocked ¶

func (o *ForumTopicModelV1Admin) GetLocked() bool

GetLocked returns the Locked field value if set, zero value otherwise.

func (*ForumTopicModelV1Admin) GetLockedOk ¶

func (o *ForumTopicModelV1Admin) GetLockedOk() (*bool, bool)

GetLockedOk returns a tuple with the Locked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelV1Admin) GetPinned ¶

func (o *ForumTopicModelV1Admin) GetPinned() bool

GetPinned returns the Pinned field value if set, zero value otherwise.

func (*ForumTopicModelV1Admin) GetPinnedOk ¶

func (o *ForumTopicModelV1Admin) GetPinnedOk() (*bool, bool)

GetPinnedOk returns a tuple with the Pinned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelV1Admin) HasGlobal ¶

func (o *ForumTopicModelV1Admin) HasGlobal() bool

HasGlobal returns a boolean if a field has been set.

func (*ForumTopicModelV1Admin) HasLocked ¶

func (o *ForumTopicModelV1Admin) HasLocked() bool

HasLocked returns a boolean if a field has been set.

func (*ForumTopicModelV1Admin) HasPinned ¶

func (o *ForumTopicModelV1Admin) HasPinned() bool

HasPinned returns a boolean if a field has been set.

func (ForumTopicModelV1Admin) MarshalJSON ¶

func (o ForumTopicModelV1Admin) MarshalJSON() ([]byte, error)

func (*ForumTopicModelV1Admin) SetGlobal ¶

func (o *ForumTopicModelV1Admin) SetGlobal(v bool)

SetGlobal gets a reference to the given bool and assigns it to the Global field.

func (*ForumTopicModelV1Admin) SetLocked ¶

func (o *ForumTopicModelV1Admin) SetLocked(v bool)

SetLocked gets a reference to the given bool and assigns it to the Locked field.

func (*ForumTopicModelV1Admin) SetPinned ¶

func (o *ForumTopicModelV1Admin) SetPinned(v bool)

SetPinned gets a reference to the given bool and assigns it to the Pinned field.

func (ForumTopicModelV1Admin) ToMap ¶

func (o ForumTopicModelV1Admin) ToMap() (map[string]interface{}, error)

type ForumTopicModelV1Forum ¶

type ForumTopicModelV1Forum struct {
	ForumId   *int64  `json:"forum_id,omitempty"`
	ForumName *string `json:"forum_name,omitempty"`
}

ForumTopicModelV1Forum struct for ForumTopicModelV1Forum

func NewForumTopicModelV1Forum ¶

func NewForumTopicModelV1Forum() *ForumTopicModelV1Forum

NewForumTopicModelV1Forum instantiates a new ForumTopicModelV1Forum object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumTopicModelV1ForumWithDefaults ¶

func NewForumTopicModelV1ForumWithDefaults() *ForumTopicModelV1Forum

NewForumTopicModelV1ForumWithDefaults instantiates a new ForumTopicModelV1Forum object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumTopicModelV1Forum) GetForumId ¶

func (o *ForumTopicModelV1Forum) GetForumId() int64

GetForumId returns the ForumId field value if set, zero value otherwise.

func (*ForumTopicModelV1Forum) GetForumIdOk ¶

func (o *ForumTopicModelV1Forum) GetForumIdOk() (*int64, bool)

GetForumIdOk returns a tuple with the ForumId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelV1Forum) GetForumName ¶

func (o *ForumTopicModelV1Forum) GetForumName() string

GetForumName returns the ForumName field value if set, zero value otherwise.

func (*ForumTopicModelV1Forum) GetForumNameOk ¶

func (o *ForumTopicModelV1Forum) GetForumNameOk() (*string, bool)

GetForumNameOk returns a tuple with the ForumName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelV1Forum) HasForumId ¶

func (o *ForumTopicModelV1Forum) HasForumId() bool

HasForumId returns a boolean if a field has been set.

func (*ForumTopicModelV1Forum) HasForumName ¶

func (o *ForumTopicModelV1Forum) HasForumName() bool

HasForumName returns a boolean if a field has been set.

func (ForumTopicModelV1Forum) MarshalJSON ¶

func (o ForumTopicModelV1Forum) MarshalJSON() ([]byte, error)

func (*ForumTopicModelV1Forum) SetForumId ¶

func (o *ForumTopicModelV1Forum) SetForumId(v int64)

SetForumId gets a reference to the given int64 and assigns it to the ForumId field.

func (*ForumTopicModelV1Forum) SetForumName ¶

func (o *ForumTopicModelV1Forum) SetForumName(v string)

SetForumName gets a reference to the given string and assigns it to the ForumName field.

func (ForumTopicModelV1Forum) ToMap ¶

func (o ForumTopicModelV1Forum) ToMap() (map[string]interface{}, error)

type ForumTopicModelV1Stats ¶

type ForumTopicModelV1Stats struct {
	Posts *int64 `json:"posts,omitempty"`
	Views *int64 `json:"views,omitempty"`
}

ForumTopicModelV1Stats struct for ForumTopicModelV1Stats

func NewForumTopicModelV1Stats ¶

func NewForumTopicModelV1Stats() *ForumTopicModelV1Stats

NewForumTopicModelV1Stats instantiates a new ForumTopicModelV1Stats object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumTopicModelV1StatsWithDefaults ¶

func NewForumTopicModelV1StatsWithDefaults() *ForumTopicModelV1Stats

NewForumTopicModelV1StatsWithDefaults instantiates a new ForumTopicModelV1Stats object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumTopicModelV1Stats) GetPosts ¶

func (o *ForumTopicModelV1Stats) GetPosts() int64

GetPosts returns the Posts field value if set, zero value otherwise.

func (*ForumTopicModelV1Stats) GetPostsOk ¶

func (o *ForumTopicModelV1Stats) GetPostsOk() (*int64, bool)

GetPostsOk returns a tuple with the Posts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelV1Stats) GetViews ¶

func (o *ForumTopicModelV1Stats) GetViews() int64

GetViews returns the Views field value if set, zero value otherwise.

func (*ForumTopicModelV1Stats) GetViewsOk ¶

func (o *ForumTopicModelV1Stats) GetViewsOk() (*int64, bool)

GetViewsOk returns a tuple with the Views field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumTopicModelV1Stats) HasPosts ¶

func (o *ForumTopicModelV1Stats) HasPosts() bool

HasPosts returns a boolean if a field has been set.

func (*ForumTopicModelV1Stats) HasViews ¶

func (o *ForumTopicModelV1Stats) HasViews() bool

HasViews returns a boolean if a field has been set.

func (ForumTopicModelV1Stats) MarshalJSON ¶

func (o ForumTopicModelV1Stats) MarshalJSON() ([]byte, error)

func (*ForumTopicModelV1Stats) SetPosts ¶

func (o *ForumTopicModelV1Stats) SetPosts(v int64)

SetPosts gets a reference to the given int64 and assigns it to the Posts field.

func (*ForumTopicModelV1Stats) SetViews ¶

func (o *ForumTopicModelV1Stats) SetViews(v int64)

SetViews gets a reference to the given int64 and assigns it to the Views field.

func (ForumTopicModelV1Stats) ToMap ¶

func (o ForumTopicModelV1Stats) ToMap() (map[string]interface{}, error)

type ForumWarnModelPublicV1 ¶

type ForumWarnModelPublicV1 struct {
	TimeAdded *TimeV1 `json:"time_added,omitempty"`
	Level     int64   `json:"level"`
}

ForumWarnModelPublicV1 struct for ForumWarnModelPublicV1

func NewForumWarnModelPublicV1 ¶

func NewForumWarnModelPublicV1(level int64) *ForumWarnModelPublicV1

NewForumWarnModelPublicV1 instantiates a new ForumWarnModelPublicV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumWarnModelPublicV1WithDefaults ¶

func NewForumWarnModelPublicV1WithDefaults() *ForumWarnModelPublicV1

NewForumWarnModelPublicV1WithDefaults instantiates a new ForumWarnModelPublicV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumWarnModelPublicV1) GetLevel ¶

func (o *ForumWarnModelPublicV1) GetLevel() int64

GetLevel returns the Level field value

func (*ForumWarnModelPublicV1) GetLevelOk ¶

func (o *ForumWarnModelPublicV1) GetLevelOk() (*int64, bool)

GetLevelOk returns a tuple with the Level field value and a boolean to check if the value has been set.

func (*ForumWarnModelPublicV1) GetTimeAdded ¶

func (o *ForumWarnModelPublicV1) GetTimeAdded() TimeV1

GetTimeAdded returns the TimeAdded field value if set, zero value otherwise.

func (*ForumWarnModelPublicV1) GetTimeAddedOk ¶

func (o *ForumWarnModelPublicV1) GetTimeAddedOk() (*TimeV1, bool)

GetTimeAddedOk returns a tuple with the TimeAdded field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumWarnModelPublicV1) HasTimeAdded ¶

func (o *ForumWarnModelPublicV1) HasTimeAdded() bool

HasTimeAdded returns a boolean if a field has been set.

func (ForumWarnModelPublicV1) MarshalJSON ¶

func (o ForumWarnModelPublicV1) MarshalJSON() ([]byte, error)

func (*ForumWarnModelPublicV1) SetLevel ¶

func (o *ForumWarnModelPublicV1) SetLevel(v int64)

SetLevel sets field value

func (*ForumWarnModelPublicV1) SetTimeAdded ¶

func (o *ForumWarnModelPublicV1) SetTimeAdded(v TimeV1)

SetTimeAdded gets a reference to the given TimeV1 and assigns it to the TimeAdded field.

func (ForumWarnModelPublicV1) ToMap ¶

func (o ForumWarnModelPublicV1) ToMap() (map[string]interface{}, error)

type ForumWarnModelUpdateV1 ¶

type ForumWarnModelUpdateV1 struct {
	Level      int64  `json:"level"`
	Reason     string `json:"reason"`
	SendReason *bool  `json:"send_reason,omitempty"`
}

ForumWarnModelUpdateV1 struct for ForumWarnModelUpdateV1

func NewForumWarnModelUpdateV1 ¶

func NewForumWarnModelUpdateV1(level int64, reason string) *ForumWarnModelUpdateV1

NewForumWarnModelUpdateV1 instantiates a new ForumWarnModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumWarnModelUpdateV1WithDefaults ¶

func NewForumWarnModelUpdateV1WithDefaults() *ForumWarnModelUpdateV1

NewForumWarnModelUpdateV1WithDefaults instantiates a new ForumWarnModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumWarnModelUpdateV1) GetLevel ¶

func (o *ForumWarnModelUpdateV1) GetLevel() int64

GetLevel returns the Level field value

func (*ForumWarnModelUpdateV1) GetLevelOk ¶

func (o *ForumWarnModelUpdateV1) GetLevelOk() (*int64, bool)

GetLevelOk returns a tuple with the Level field value and a boolean to check if the value has been set.

func (*ForumWarnModelUpdateV1) GetReason ¶

func (o *ForumWarnModelUpdateV1) GetReason() string

GetReason returns the Reason field value

func (*ForumWarnModelUpdateV1) GetReasonOk ¶

func (o *ForumWarnModelUpdateV1) GetReasonOk() (*string, bool)

GetReasonOk returns a tuple with the Reason field value and a boolean to check if the value has been set.

func (*ForumWarnModelUpdateV1) GetSendReason ¶

func (o *ForumWarnModelUpdateV1) GetSendReason() bool

GetSendReason returns the SendReason field value if set, zero value otherwise.

func (*ForumWarnModelUpdateV1) GetSendReasonOk ¶

func (o *ForumWarnModelUpdateV1) GetSendReasonOk() (*bool, bool)

GetSendReasonOk returns a tuple with the SendReason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumWarnModelUpdateV1) HasSendReason ¶

func (o *ForumWarnModelUpdateV1) HasSendReason() bool

HasSendReason returns a boolean if a field has been set.

func (ForumWarnModelUpdateV1) MarshalJSON ¶

func (o ForumWarnModelUpdateV1) MarshalJSON() ([]byte, error)

func (*ForumWarnModelUpdateV1) SetLevel ¶

func (o *ForumWarnModelUpdateV1) SetLevel(v int64)

SetLevel sets field value

func (*ForumWarnModelUpdateV1) SetReason ¶

func (o *ForumWarnModelUpdateV1) SetReason(v string)

SetReason sets field value

func (*ForumWarnModelUpdateV1) SetSendReason ¶

func (o *ForumWarnModelUpdateV1) SetSendReason(v bool)

SetSendReason gets a reference to the given bool and assigns it to the SendReason field.

func (ForumWarnModelUpdateV1) ToMap ¶

func (o ForumWarnModelUpdateV1) ToMap() (map[string]interface{}, error)

type ForumWarnModelV1 ¶

type ForumWarnModelV1 struct {
	UserId     *int64             `json:"user_id,omitempty"`
	TimeAdded  *TimeV1            `json:"time_added,omitempty"`
	Level      int64              `json:"level"`
	Reason     string             `json:"reason"`
	SendReason *bool              `json:"send_reason,omitempty"`
	ByUser     *UserModelSearchV1 `json:"by_user,omitempty"`
}

ForumWarnModelV1 struct for ForumWarnModelV1

func NewForumWarnModelV1 ¶

func NewForumWarnModelV1(level int64, reason string) *ForumWarnModelV1

NewForumWarnModelV1 instantiates a new ForumWarnModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForumWarnModelV1WithDefaults ¶

func NewForumWarnModelV1WithDefaults() *ForumWarnModelV1

NewForumWarnModelV1WithDefaults instantiates a new ForumWarnModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForumWarnModelV1) GetByUser ¶

func (o *ForumWarnModelV1) GetByUser() UserModelSearchV1

GetByUser returns the ByUser field value if set, zero value otherwise.

func (*ForumWarnModelV1) GetByUserOk ¶

func (o *ForumWarnModelV1) GetByUserOk() (*UserModelSearchV1, bool)

GetByUserOk returns a tuple with the ByUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumWarnModelV1) GetLevel ¶

func (o *ForumWarnModelV1) GetLevel() int64

GetLevel returns the Level field value

func (*ForumWarnModelV1) GetLevelOk ¶

func (o *ForumWarnModelV1) GetLevelOk() (*int64, bool)

GetLevelOk returns a tuple with the Level field value and a boolean to check if the value has been set.

func (*ForumWarnModelV1) GetReason ¶

func (o *ForumWarnModelV1) GetReason() string

GetReason returns the Reason field value

func (*ForumWarnModelV1) GetReasonOk ¶

func (o *ForumWarnModelV1) GetReasonOk() (*string, bool)

GetReasonOk returns a tuple with the Reason field value and a boolean to check if the value has been set.

func (*ForumWarnModelV1) GetSendReason ¶

func (o *ForumWarnModelV1) GetSendReason() bool

GetSendReason returns the SendReason field value if set, zero value otherwise.

func (*ForumWarnModelV1) GetSendReasonOk ¶

func (o *ForumWarnModelV1) GetSendReasonOk() (*bool, bool)

GetSendReasonOk returns a tuple with the SendReason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumWarnModelV1) GetTimeAdded ¶

func (o *ForumWarnModelV1) GetTimeAdded() TimeV1

GetTimeAdded returns the TimeAdded field value if set, zero value otherwise.

func (*ForumWarnModelV1) GetTimeAddedOk ¶

func (o *ForumWarnModelV1) GetTimeAddedOk() (*TimeV1, bool)

GetTimeAddedOk returns a tuple with the TimeAdded field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumWarnModelV1) GetUserId ¶

func (o *ForumWarnModelV1) GetUserId() int64

GetUserId returns the UserId field value if set, zero value otherwise.

func (*ForumWarnModelV1) GetUserIdOk ¶

func (o *ForumWarnModelV1) GetUserIdOk() (*int64, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForumWarnModelV1) HasByUser ¶

func (o *ForumWarnModelV1) HasByUser() bool

HasByUser returns a boolean if a field has been set.

func (*ForumWarnModelV1) HasSendReason ¶

func (o *ForumWarnModelV1) HasSendReason() bool

HasSendReason returns a boolean if a field has been set.

func (*ForumWarnModelV1) HasTimeAdded ¶

func (o *ForumWarnModelV1) HasTimeAdded() bool

HasTimeAdded returns a boolean if a field has been set.

func (*ForumWarnModelV1) HasUserId ¶

func (o *ForumWarnModelV1) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (ForumWarnModelV1) MarshalJSON ¶

func (o ForumWarnModelV1) MarshalJSON() ([]byte, error)

func (*ForumWarnModelV1) SetByUser ¶

func (o *ForumWarnModelV1) SetByUser(v UserModelSearchV1)

SetByUser gets a reference to the given UserModelSearchV1 and assigns it to the ByUser field.

func (*ForumWarnModelV1) SetLevel ¶

func (o *ForumWarnModelV1) SetLevel(v int64)

SetLevel sets field value

func (*ForumWarnModelV1) SetReason ¶

func (o *ForumWarnModelV1) SetReason(v string)

SetReason sets field value

func (*ForumWarnModelV1) SetSendReason ¶

func (o *ForumWarnModelV1) SetSendReason(v bool)

SetSendReason gets a reference to the given bool and assigns it to the SendReason field.

func (*ForumWarnModelV1) SetTimeAdded ¶

func (o *ForumWarnModelV1) SetTimeAdded(v TimeV1)

SetTimeAdded gets a reference to the given TimeV1 and assigns it to the TimeAdded field.

func (*ForumWarnModelV1) SetUserId ¶

func (o *ForumWarnModelV1) SetUserId(v int64)

SetUserId gets a reference to the given int64 and assigns it to the UserId field.

func (ForumWarnModelV1) ToMap ¶

func (o ForumWarnModelV1) ToMap() (map[string]interface{}, error)

type GenericOpenAPIError ¶

type GenericOpenAPIError struct {
	// contains filtered or unexported fields
}

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body ¶

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error ¶

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model ¶

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type GenreAPIService ¶

type GenreAPIService service

GenreAPIService GenreAPI service

func (*GenreAPIService) AddGenre ¶

AddGenre add a genre

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAddGenreRequest

func (*GenreAPIService) AddGenreExecute ¶

func (a *GenreAPIService) AddGenreExecute(r ApiAddGenreRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*GenreAPIService) DeleteGenre ¶

func (a *GenreAPIService) DeleteGenre(ctx context.Context, id int64) ApiDeleteGenreRequest

DeleteGenre delete a genre

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of genre
@return ApiDeleteGenreRequest

func (*GenreAPIService) DeleteGenreExecute ¶

func (a *GenreAPIService) DeleteGenreExecute(r ApiDeleteGenreRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*GenreAPIService) RetrieveGenreById ¶

func (a *GenreAPIService) RetrieveGenreById(ctx context.Context, id int64) ApiRetrieveGenreByIdRequest

RetrieveGenreById get genres

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Genre id
@return ApiRetrieveGenreByIdRequest

func (*GenreAPIService) RetrieveGenreByIdExecute ¶

func (a *GenreAPIService) RetrieveGenreByIdExecute(r ApiRetrieveGenreByIdRequest) (*GenreModelStatsV1, *http.Response, error)

Execute executes the request

@return GenreModelStatsV1

func (*GenreAPIService) RetrieveGenres ¶

RetrieveGenres get genres

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiRetrieveGenresRequest

func (*GenreAPIService) RetrieveGenresExecute ¶

func (a *GenreAPIService) RetrieveGenresExecute(r ApiRetrieveGenresRequest) ([]GenreModelStatsV1, *http.Response, error)

Execute executes the request

@return []GenreModelStatsV1

func (*GenreAPIService) UpdateGenre ¶

func (a *GenreAPIService) UpdateGenre(ctx context.Context, id int64) ApiUpdateGenreRequest

UpdateGenre update a genre

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of genre
@return ApiUpdateGenreRequest

func (*GenreAPIService) UpdateGenreExecute ¶

func (a *GenreAPIService) UpdateGenreExecute(r ApiUpdateGenreRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

type GenreModelStatsV1 ¶

type GenreModelStatsV1 struct {
	Id          *int64                  `json:"id,omitempty"`
	Genre       *string                 `json:"genre,omitempty"`
	Description *string                 `json:"description,omitempty"`
	Stats       *GenreModelStatsV1Stats `json:"stats,omitempty"`
	Demographic *bool                   `json:"demographic,omitempty"`
}

GenreModelStatsV1 struct for GenreModelStatsV1

func NewGenreModelStatsV1 ¶

func NewGenreModelStatsV1() *GenreModelStatsV1

NewGenreModelStatsV1 instantiates a new GenreModelStatsV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGenreModelStatsV1WithDefaults ¶

func NewGenreModelStatsV1WithDefaults() *GenreModelStatsV1

NewGenreModelStatsV1WithDefaults instantiates a new GenreModelStatsV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GenreModelStatsV1) GetDemographic ¶

func (o *GenreModelStatsV1) GetDemographic() bool

GetDemographic returns the Demographic field value if set, zero value otherwise.

func (*GenreModelStatsV1) GetDemographicOk ¶

func (o *GenreModelStatsV1) GetDemographicOk() (*bool, bool)

GetDemographicOk returns a tuple with the Demographic field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GenreModelStatsV1) GetDescription ¶

func (o *GenreModelStatsV1) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*GenreModelStatsV1) GetDescriptionOk ¶

func (o *GenreModelStatsV1) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GenreModelStatsV1) GetGenre ¶

func (o *GenreModelStatsV1) GetGenre() string

GetGenre returns the Genre field value if set, zero value otherwise.

func (*GenreModelStatsV1) GetGenreOk ¶

func (o *GenreModelStatsV1) GetGenreOk() (*string, bool)

GetGenreOk returns a tuple with the Genre field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GenreModelStatsV1) GetId ¶

func (o *GenreModelStatsV1) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*GenreModelStatsV1) GetIdOk ¶

func (o *GenreModelStatsV1) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GenreModelStatsV1) GetStats ¶

GetStats returns the Stats field value if set, zero value otherwise.

func (*GenreModelStatsV1) GetStatsOk ¶

func (o *GenreModelStatsV1) GetStatsOk() (*GenreModelStatsV1Stats, bool)

GetStatsOk returns a tuple with the Stats field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GenreModelStatsV1) HasDemographic ¶

func (o *GenreModelStatsV1) HasDemographic() bool

HasDemographic returns a boolean if a field has been set.

func (*GenreModelStatsV1) HasDescription ¶

func (o *GenreModelStatsV1) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*GenreModelStatsV1) HasGenre ¶

func (o *GenreModelStatsV1) HasGenre() bool

HasGenre returns a boolean if a field has been set.

func (*GenreModelStatsV1) HasId ¶

func (o *GenreModelStatsV1) HasId() bool

HasId returns a boolean if a field has been set.

func (*GenreModelStatsV1) HasStats ¶

func (o *GenreModelStatsV1) HasStats() bool

HasStats returns a boolean if a field has been set.

func (GenreModelStatsV1) MarshalJSON ¶

func (o GenreModelStatsV1) MarshalJSON() ([]byte, error)

func (*GenreModelStatsV1) SetDemographic ¶

func (o *GenreModelStatsV1) SetDemographic(v bool)

SetDemographic gets a reference to the given bool and assigns it to the Demographic field.

func (*GenreModelStatsV1) SetDescription ¶

func (o *GenreModelStatsV1) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*GenreModelStatsV1) SetGenre ¶

func (o *GenreModelStatsV1) SetGenre(v string)

SetGenre gets a reference to the given string and assigns it to the Genre field.

func (*GenreModelStatsV1) SetId ¶

func (o *GenreModelStatsV1) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*GenreModelStatsV1) SetStats ¶

SetStats gets a reference to the given GenreModelStatsV1Stats and assigns it to the Stats field.

func (GenreModelStatsV1) ToMap ¶

func (o GenreModelStatsV1) ToMap() (map[string]interface{}, error)

type GenreModelStatsV1Stats ¶

type GenreModelStatsV1Stats struct {
	Series     *int64 `json:"series,omitempty"`
	Authors    *int64 `json:"authors,omitempty"`
	Filters    *int64 `json:"filters,omitempty"`
	Highlights *int64 `json:"highlights,omitempty"`
}

GenreModelStatsV1Stats struct for GenreModelStatsV1Stats

func NewGenreModelStatsV1Stats ¶

func NewGenreModelStatsV1Stats() *GenreModelStatsV1Stats

NewGenreModelStatsV1Stats instantiates a new GenreModelStatsV1Stats object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGenreModelStatsV1StatsWithDefaults ¶

func NewGenreModelStatsV1StatsWithDefaults() *GenreModelStatsV1Stats

NewGenreModelStatsV1StatsWithDefaults instantiates a new GenreModelStatsV1Stats object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GenreModelStatsV1Stats) GetAuthors ¶

func (o *GenreModelStatsV1Stats) GetAuthors() int64

GetAuthors returns the Authors field value if set, zero value otherwise.

func (*GenreModelStatsV1Stats) GetAuthorsOk ¶

func (o *GenreModelStatsV1Stats) GetAuthorsOk() (*int64, bool)

GetAuthorsOk returns a tuple with the Authors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GenreModelStatsV1Stats) GetFilters ¶

func (o *GenreModelStatsV1Stats) GetFilters() int64

GetFilters returns the Filters field value if set, zero value otherwise.

func (*GenreModelStatsV1Stats) GetFiltersOk ¶

func (o *GenreModelStatsV1Stats) GetFiltersOk() (*int64, bool)

GetFiltersOk returns a tuple with the Filters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GenreModelStatsV1Stats) GetHighlights ¶

func (o *GenreModelStatsV1Stats) GetHighlights() int64

GetHighlights returns the Highlights field value if set, zero value otherwise.

func (*GenreModelStatsV1Stats) GetHighlightsOk ¶

func (o *GenreModelStatsV1Stats) GetHighlightsOk() (*int64, bool)

GetHighlightsOk returns a tuple with the Highlights field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GenreModelStatsV1Stats) GetSeries ¶

func (o *GenreModelStatsV1Stats) GetSeries() int64

GetSeries returns the Series field value if set, zero value otherwise.

func (*GenreModelStatsV1Stats) GetSeriesOk ¶

func (o *GenreModelStatsV1Stats) GetSeriesOk() (*int64, bool)

GetSeriesOk returns a tuple with the Series field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GenreModelStatsV1Stats) HasAuthors ¶

func (o *GenreModelStatsV1Stats) HasAuthors() bool

HasAuthors returns a boolean if a field has been set.

func (*GenreModelStatsV1Stats) HasFilters ¶

func (o *GenreModelStatsV1Stats) HasFilters() bool

HasFilters returns a boolean if a field has been set.

func (*GenreModelStatsV1Stats) HasHighlights ¶

func (o *GenreModelStatsV1Stats) HasHighlights() bool

HasHighlights returns a boolean if a field has been set.

func (*GenreModelStatsV1Stats) HasSeries ¶

func (o *GenreModelStatsV1Stats) HasSeries() bool

HasSeries returns a boolean if a field has been set.

func (GenreModelStatsV1Stats) MarshalJSON ¶

func (o GenreModelStatsV1Stats) MarshalJSON() ([]byte, error)

func (*GenreModelStatsV1Stats) SetAuthors ¶

func (o *GenreModelStatsV1Stats) SetAuthors(v int64)

SetAuthors gets a reference to the given int64 and assigns it to the Authors field.

func (*GenreModelStatsV1Stats) SetFilters ¶

func (o *GenreModelStatsV1Stats) SetFilters(v int64)

SetFilters gets a reference to the given int64 and assigns it to the Filters field.

func (*GenreModelStatsV1Stats) SetHighlights ¶

func (o *GenreModelStatsV1Stats) SetHighlights(v int64)

SetHighlights gets a reference to the given int64 and assigns it to the Highlights field.

func (*GenreModelStatsV1Stats) SetSeries ¶

func (o *GenreModelStatsV1Stats) SetSeries(v int64)

SetSeries gets a reference to the given int64 and assigns it to the Series field.

func (GenreModelStatsV1Stats) ToMap ¶

func (o GenreModelStatsV1Stats) ToMap() (map[string]interface{}, error)

type GenreModelUpdateV1 ¶

type GenreModelUpdateV1 struct {
	Genre       *string `json:"genre,omitempty"`
	Description *string `json:"description,omitempty"`
	Demographic *bool   `json:"demographic,omitempty"`
}

GenreModelUpdateV1 struct for GenreModelUpdateV1

func NewGenreModelUpdateV1 ¶

func NewGenreModelUpdateV1() *GenreModelUpdateV1

NewGenreModelUpdateV1 instantiates a new GenreModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGenreModelUpdateV1WithDefaults ¶

func NewGenreModelUpdateV1WithDefaults() *GenreModelUpdateV1

NewGenreModelUpdateV1WithDefaults instantiates a new GenreModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GenreModelUpdateV1) GetDemographic ¶

func (o *GenreModelUpdateV1) GetDemographic() bool

GetDemographic returns the Demographic field value if set, zero value otherwise.

func (*GenreModelUpdateV1) GetDemographicOk ¶

func (o *GenreModelUpdateV1) GetDemographicOk() (*bool, bool)

GetDemographicOk returns a tuple with the Demographic field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GenreModelUpdateV1) GetDescription ¶

func (o *GenreModelUpdateV1) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*GenreModelUpdateV1) GetDescriptionOk ¶

func (o *GenreModelUpdateV1) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GenreModelUpdateV1) GetGenre ¶

func (o *GenreModelUpdateV1) GetGenre() string

GetGenre returns the Genre field value if set, zero value otherwise.

func (*GenreModelUpdateV1) GetGenreOk ¶

func (o *GenreModelUpdateV1) GetGenreOk() (*string, bool)

GetGenreOk returns a tuple with the Genre field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GenreModelUpdateV1) HasDemographic ¶

func (o *GenreModelUpdateV1) HasDemographic() bool

HasDemographic returns a boolean if a field has been set.

func (*GenreModelUpdateV1) HasDescription ¶

func (o *GenreModelUpdateV1) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*GenreModelUpdateV1) HasGenre ¶

func (o *GenreModelUpdateV1) HasGenre() bool

HasGenre returns a boolean if a field has been set.

func (GenreModelUpdateV1) MarshalJSON ¶

func (o GenreModelUpdateV1) MarshalJSON() ([]byte, error)

func (*GenreModelUpdateV1) SetDemographic ¶

func (o *GenreModelUpdateV1) SetDemographic(v bool)

SetDemographic gets a reference to the given bool and assigns it to the Demographic field.

func (*GenreModelUpdateV1) SetDescription ¶

func (o *GenreModelUpdateV1) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*GenreModelUpdateV1) SetGenre ¶

func (o *GenreModelUpdateV1) SetGenre(v string)

SetGenre gets a reference to the given string and assigns it to the Genre field.

func (GenreModelUpdateV1) ToMap ¶

func (o GenreModelUpdateV1) ToMap() (map[string]interface{}, error)

type GenreModelV1 ¶

type GenreModelV1 struct {
	Id          *int64  `json:"id,omitempty"`
	Genre       *string `json:"genre,omitempty"`
	Description *string `json:"description,omitempty"`
	Demographic *bool   `json:"demographic,omitempty"`
}

GenreModelV1 struct for GenreModelV1

func NewGenreModelV1 ¶

func NewGenreModelV1() *GenreModelV1

NewGenreModelV1 instantiates a new GenreModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGenreModelV1WithDefaults ¶

func NewGenreModelV1WithDefaults() *GenreModelV1

NewGenreModelV1WithDefaults instantiates a new GenreModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GenreModelV1) GetDemographic ¶

func (o *GenreModelV1) GetDemographic() bool

GetDemographic returns the Demographic field value if set, zero value otherwise.

func (*GenreModelV1) GetDemographicOk ¶

func (o *GenreModelV1) GetDemographicOk() (*bool, bool)

GetDemographicOk returns a tuple with the Demographic field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GenreModelV1) GetDescription ¶

func (o *GenreModelV1) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*GenreModelV1) GetDescriptionOk ¶

func (o *GenreModelV1) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GenreModelV1) GetGenre ¶

func (o *GenreModelV1) GetGenre() string

GetGenre returns the Genre field value if set, zero value otherwise.

func (*GenreModelV1) GetGenreOk ¶

func (o *GenreModelV1) GetGenreOk() (*string, bool)

GetGenreOk returns a tuple with the Genre field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GenreModelV1) GetId ¶

func (o *GenreModelV1) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*GenreModelV1) GetIdOk ¶

func (o *GenreModelV1) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GenreModelV1) HasDemographic ¶

func (o *GenreModelV1) HasDemographic() bool

HasDemographic returns a boolean if a field has been set.

func (*GenreModelV1) HasDescription ¶

func (o *GenreModelV1) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*GenreModelV1) HasGenre ¶

func (o *GenreModelV1) HasGenre() bool

HasGenre returns a boolean if a field has been set.

func (*GenreModelV1) HasId ¶

func (o *GenreModelV1) HasId() bool

HasId returns a boolean if a field has been set.

func (GenreModelV1) MarshalJSON ¶

func (o GenreModelV1) MarshalJSON() ([]byte, error)

func (*GenreModelV1) SetDemographic ¶

func (o *GenreModelV1) SetDemographic(v bool)

SetDemographic gets a reference to the given bool and assigns it to the Demographic field.

func (*GenreModelV1) SetDescription ¶

func (o *GenreModelV1) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*GenreModelV1) SetGenre ¶

func (o *GenreModelV1) SetGenre(v string)

SetGenre gets a reference to the given string and assigns it to the Genre field.

func (*GenreModelV1) SetId ¶

func (o *GenreModelV1) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (GenreModelV1) ToMap ¶

func (o GenreModelV1) ToMap() (map[string]interface{}, error)

type GroupsAPIService ¶

type GroupsAPIService service

GroupsAPIService GroupsAPI service

func (*GroupsAPIService) AddGroup ¶

AddGroup add an group

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAddGroupRequest

func (*GroupsAPIService) AddGroupExecute ¶

Execute executes the request

@return ApiResponseV1

func (*GroupsAPIService) DeleteGroup ¶

DeleteGroup delete a group

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of group
@return ApiDeleteGroupRequest

func (*GroupsAPIService) DeleteGroupExecute ¶

func (a *GroupsAPIService) DeleteGroupExecute(r ApiDeleteGroupRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*GroupsAPIService) RejectGroup ¶

RejectGroup reject and delete a group

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of group
@return ApiRejectGroupRequest

func (*GroupsAPIService) RejectGroupExecute ¶

func (a *GroupsAPIService) RejectGroupExecute(r ApiRejectGroupRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*GroupsAPIService) RetrieveGroup ¶

func (a *GroupsAPIService) RetrieveGroup(ctx context.Context, id int64) ApiRetrieveGroupRequest

RetrieveGroup get a specific group

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Group id
@return ApiRetrieveGroupRequest

func (*GroupsAPIService) RetrieveGroupExecute ¶

func (a *GroupsAPIService) RetrieveGroupExecute(r ApiRetrieveGroupRequest) (*GroupsModelV1, *http.Response, error)

Execute executes the request

@return GroupsModelV1

func (*GroupsAPIService) RetrieveGroupSeries ¶

func (a *GroupsAPIService) RetrieveGroupSeries(ctx context.Context, id int64) ApiRetrieveGroupSeriesRequest

RetrieveGroupSeries get the list of series and release frequency for a specific group

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Group id
@return ApiRetrieveGroupSeriesRequest

func (*GroupsAPIService) RetrieveGroupSeriesExecute ¶

Execute executes the request

@return GroupsSeriesListResponseV1

func (*GroupsAPIService) SearchGroupsPost ¶

SearchGroupsPost search groups

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchGroupsPostRequest

func (*GroupsAPIService) SearchGroupsPostExecute ¶

Execute executes the request

@return GroupsSearchResponseV1

func (*GroupsAPIService) UpdateGroup ¶

UpdateGroup update an group

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of group
@return ApiUpdateGroupRequest

func (*GroupsAPIService) UpdateGroupExecute ¶

func (a *GroupsAPIService) UpdateGroupExecute(r ApiUpdateGroupRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

type GroupsModelSearchV1 ¶

type GroupsModelSearchV1 struct {
	GroupId *int64                     `json:"group_id,omitempty"`
	Name    *string                    `json:"name,omitempty"`
	Url     *string                    `json:"url,omitempty"`
	Social  *GroupsModelSearchV1Social `json:"social,omitempty"`
	Active  *bool                      `json:"active,omitempty"`
	Notes   *string                    `json:"notes,omitempty"`
	AddedBy *UserModelSearchV1         `json:"added_by,omitempty"`
}

GroupsModelSearchV1 struct for GroupsModelSearchV1

func NewGroupsModelSearchV1 ¶

func NewGroupsModelSearchV1() *GroupsModelSearchV1

NewGroupsModelSearchV1 instantiates a new GroupsModelSearchV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsModelSearchV1WithDefaults ¶

func NewGroupsModelSearchV1WithDefaults() *GroupsModelSearchV1

NewGroupsModelSearchV1WithDefaults instantiates a new GroupsModelSearchV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsModelSearchV1) GetActive ¶

func (o *GroupsModelSearchV1) GetActive() bool

GetActive returns the Active field value if set, zero value otherwise.

func (*GroupsModelSearchV1) GetActiveOk ¶

func (o *GroupsModelSearchV1) GetActiveOk() (*bool, bool)

GetActiveOk returns a tuple with the Active field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelSearchV1) GetAddedBy ¶

func (o *GroupsModelSearchV1) GetAddedBy() UserModelSearchV1

GetAddedBy returns the AddedBy field value if set, zero value otherwise.

func (*GroupsModelSearchV1) GetAddedByOk ¶

func (o *GroupsModelSearchV1) GetAddedByOk() (*UserModelSearchV1, bool)

GetAddedByOk returns a tuple with the AddedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelSearchV1) GetGroupId ¶

func (o *GroupsModelSearchV1) GetGroupId() int64

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*GroupsModelSearchV1) GetGroupIdOk ¶

func (o *GroupsModelSearchV1) GetGroupIdOk() (*int64, bool)

GetGroupIdOk returns a tuple with the GroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelSearchV1) GetName ¶

func (o *GroupsModelSearchV1) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*GroupsModelSearchV1) GetNameOk ¶

func (o *GroupsModelSearchV1) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelSearchV1) GetNotes ¶

func (o *GroupsModelSearchV1) GetNotes() string

GetNotes returns the Notes field value if set, zero value otherwise.

func (*GroupsModelSearchV1) GetNotesOk ¶

func (o *GroupsModelSearchV1) GetNotesOk() (*string, bool)

GetNotesOk returns a tuple with the Notes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelSearchV1) GetSocial ¶

GetSocial returns the Social field value if set, zero value otherwise.

func (*GroupsModelSearchV1) GetSocialOk ¶

func (o *GroupsModelSearchV1) GetSocialOk() (*GroupsModelSearchV1Social, bool)

GetSocialOk returns a tuple with the Social field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelSearchV1) GetUrl ¶

func (o *GroupsModelSearchV1) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*GroupsModelSearchV1) GetUrlOk ¶

func (o *GroupsModelSearchV1) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelSearchV1) HasActive ¶

func (o *GroupsModelSearchV1) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*GroupsModelSearchV1) HasAddedBy ¶

func (o *GroupsModelSearchV1) HasAddedBy() bool

HasAddedBy returns a boolean if a field has been set.

func (*GroupsModelSearchV1) HasGroupId ¶

func (o *GroupsModelSearchV1) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*GroupsModelSearchV1) HasName ¶

func (o *GroupsModelSearchV1) HasName() bool

HasName returns a boolean if a field has been set.

func (*GroupsModelSearchV1) HasNotes ¶

func (o *GroupsModelSearchV1) HasNotes() bool

HasNotes returns a boolean if a field has been set.

func (*GroupsModelSearchV1) HasSocial ¶

func (o *GroupsModelSearchV1) HasSocial() bool

HasSocial returns a boolean if a field has been set.

func (*GroupsModelSearchV1) HasUrl ¶

func (o *GroupsModelSearchV1) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (GroupsModelSearchV1) MarshalJSON ¶

func (o GroupsModelSearchV1) MarshalJSON() ([]byte, error)

func (*GroupsModelSearchV1) SetActive ¶

func (o *GroupsModelSearchV1) SetActive(v bool)

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*GroupsModelSearchV1) SetAddedBy ¶

func (o *GroupsModelSearchV1) SetAddedBy(v UserModelSearchV1)

SetAddedBy gets a reference to the given UserModelSearchV1 and assigns it to the AddedBy field.

func (*GroupsModelSearchV1) SetGroupId ¶

func (o *GroupsModelSearchV1) SetGroupId(v int64)

SetGroupId gets a reference to the given int64 and assigns it to the GroupId field.

func (*GroupsModelSearchV1) SetName ¶

func (o *GroupsModelSearchV1) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*GroupsModelSearchV1) SetNotes ¶

func (o *GroupsModelSearchV1) SetNotes(v string)

SetNotes gets a reference to the given string and assigns it to the Notes field.

func (*GroupsModelSearchV1) SetSocial ¶

SetSocial gets a reference to the given GroupsModelSearchV1Social and assigns it to the Social field.

func (*GroupsModelSearchV1) SetUrl ¶

func (o *GroupsModelSearchV1) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (GroupsModelSearchV1) ToMap ¶

func (o GroupsModelSearchV1) ToMap() (map[string]interface{}, error)

type GroupsModelSearchV1Social ¶

type GroupsModelSearchV1Social struct {
	Site     *string                       `json:"site,omitempty"`
	Facebook *string                       `json:"facebook,omitempty"`
	Twitter  *string                       `json:"twitter,omitempty"`
	Irc      *GroupsModelSearchV1SocialIrc `json:"irc,omitempty"`
	Forum    *string                       `json:"forum,omitempty"`
	Discord  *string                       `json:"discord,omitempty"`
}

GroupsModelSearchV1Social struct for GroupsModelSearchV1Social

func NewGroupsModelSearchV1Social ¶

func NewGroupsModelSearchV1Social() *GroupsModelSearchV1Social

NewGroupsModelSearchV1Social instantiates a new GroupsModelSearchV1Social object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsModelSearchV1SocialWithDefaults ¶

func NewGroupsModelSearchV1SocialWithDefaults() *GroupsModelSearchV1Social

NewGroupsModelSearchV1SocialWithDefaults instantiates a new GroupsModelSearchV1Social object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsModelSearchV1Social) GetDiscord ¶

func (o *GroupsModelSearchV1Social) GetDiscord() string

GetDiscord returns the Discord field value if set, zero value otherwise.

func (*GroupsModelSearchV1Social) GetDiscordOk ¶

func (o *GroupsModelSearchV1Social) GetDiscordOk() (*string, bool)

GetDiscordOk returns a tuple with the Discord field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelSearchV1Social) GetFacebook ¶

func (o *GroupsModelSearchV1Social) GetFacebook() string

GetFacebook returns the Facebook field value if set, zero value otherwise.

func (*GroupsModelSearchV1Social) GetFacebookOk ¶

func (o *GroupsModelSearchV1Social) GetFacebookOk() (*string, bool)

GetFacebookOk returns a tuple with the Facebook field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelSearchV1Social) GetForum ¶

func (o *GroupsModelSearchV1Social) GetForum() string

GetForum returns the Forum field value if set, zero value otherwise.

func (*GroupsModelSearchV1Social) GetForumOk ¶

func (o *GroupsModelSearchV1Social) GetForumOk() (*string, bool)

GetForumOk returns a tuple with the Forum field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelSearchV1Social) GetIrc ¶

GetIrc returns the Irc field value if set, zero value otherwise.

func (*GroupsModelSearchV1Social) GetIrcOk ¶

GetIrcOk returns a tuple with the Irc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelSearchV1Social) GetSite ¶

func (o *GroupsModelSearchV1Social) GetSite() string

GetSite returns the Site field value if set, zero value otherwise.

func (*GroupsModelSearchV1Social) GetSiteOk ¶

func (o *GroupsModelSearchV1Social) GetSiteOk() (*string, bool)

GetSiteOk returns a tuple with the Site field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelSearchV1Social) GetTwitter ¶

func (o *GroupsModelSearchV1Social) GetTwitter() string

GetTwitter returns the Twitter field value if set, zero value otherwise.

func (*GroupsModelSearchV1Social) GetTwitterOk ¶

func (o *GroupsModelSearchV1Social) GetTwitterOk() (*string, bool)

GetTwitterOk returns a tuple with the Twitter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelSearchV1Social) HasDiscord ¶

func (o *GroupsModelSearchV1Social) HasDiscord() bool

HasDiscord returns a boolean if a field has been set.

func (*GroupsModelSearchV1Social) HasFacebook ¶

func (o *GroupsModelSearchV1Social) HasFacebook() bool

HasFacebook returns a boolean if a field has been set.

func (*GroupsModelSearchV1Social) HasForum ¶

func (o *GroupsModelSearchV1Social) HasForum() bool

HasForum returns a boolean if a field has been set.

func (*GroupsModelSearchV1Social) HasIrc ¶

func (o *GroupsModelSearchV1Social) HasIrc() bool

HasIrc returns a boolean if a field has been set.

func (*GroupsModelSearchV1Social) HasSite ¶

func (o *GroupsModelSearchV1Social) HasSite() bool

HasSite returns a boolean if a field has been set.

func (*GroupsModelSearchV1Social) HasTwitter ¶

func (o *GroupsModelSearchV1Social) HasTwitter() bool

HasTwitter returns a boolean if a field has been set.

func (GroupsModelSearchV1Social) MarshalJSON ¶

func (o GroupsModelSearchV1Social) MarshalJSON() ([]byte, error)

func (*GroupsModelSearchV1Social) SetDiscord ¶

func (o *GroupsModelSearchV1Social) SetDiscord(v string)

SetDiscord gets a reference to the given string and assigns it to the Discord field.

func (*GroupsModelSearchV1Social) SetFacebook ¶

func (o *GroupsModelSearchV1Social) SetFacebook(v string)

SetFacebook gets a reference to the given string and assigns it to the Facebook field.

func (*GroupsModelSearchV1Social) SetForum ¶

func (o *GroupsModelSearchV1Social) SetForum(v string)

SetForum gets a reference to the given string and assigns it to the Forum field.

func (*GroupsModelSearchV1Social) SetIrc ¶

SetIrc gets a reference to the given GroupsModelSearchV1SocialIrc and assigns it to the Irc field.

func (*GroupsModelSearchV1Social) SetSite ¶

func (o *GroupsModelSearchV1Social) SetSite(v string)

SetSite gets a reference to the given string and assigns it to the Site field.

func (*GroupsModelSearchV1Social) SetTwitter ¶

func (o *GroupsModelSearchV1Social) SetTwitter(v string)

SetTwitter gets a reference to the given string and assigns it to the Twitter field.

func (GroupsModelSearchV1Social) ToMap ¶

func (o GroupsModelSearchV1Social) ToMap() (map[string]interface{}, error)

type GroupsModelSearchV1SocialIrc ¶

type GroupsModelSearchV1SocialIrc struct {
	Channel *string `json:"channel,omitempty"`
	Server  *string `json:"server,omitempty"`
}

GroupsModelSearchV1SocialIrc struct for GroupsModelSearchV1SocialIrc

func NewGroupsModelSearchV1SocialIrc ¶

func NewGroupsModelSearchV1SocialIrc() *GroupsModelSearchV1SocialIrc

NewGroupsModelSearchV1SocialIrc instantiates a new GroupsModelSearchV1SocialIrc object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsModelSearchV1SocialIrcWithDefaults ¶

func NewGroupsModelSearchV1SocialIrcWithDefaults() *GroupsModelSearchV1SocialIrc

NewGroupsModelSearchV1SocialIrcWithDefaults instantiates a new GroupsModelSearchV1SocialIrc object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsModelSearchV1SocialIrc) GetChannel ¶

func (o *GroupsModelSearchV1SocialIrc) GetChannel() string

GetChannel returns the Channel field value if set, zero value otherwise.

func (*GroupsModelSearchV1SocialIrc) GetChannelOk ¶

func (o *GroupsModelSearchV1SocialIrc) GetChannelOk() (*string, bool)

GetChannelOk returns a tuple with the Channel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelSearchV1SocialIrc) GetServer ¶

func (o *GroupsModelSearchV1SocialIrc) GetServer() string

GetServer returns the Server field value if set, zero value otherwise.

func (*GroupsModelSearchV1SocialIrc) GetServerOk ¶

func (o *GroupsModelSearchV1SocialIrc) GetServerOk() (*string, bool)

GetServerOk returns a tuple with the Server field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelSearchV1SocialIrc) HasChannel ¶

func (o *GroupsModelSearchV1SocialIrc) HasChannel() bool

HasChannel returns a boolean if a field has been set.

func (*GroupsModelSearchV1SocialIrc) HasServer ¶

func (o *GroupsModelSearchV1SocialIrc) HasServer() bool

HasServer returns a boolean if a field has been set.

func (GroupsModelSearchV1SocialIrc) MarshalJSON ¶

func (o GroupsModelSearchV1SocialIrc) MarshalJSON() ([]byte, error)

func (*GroupsModelSearchV1SocialIrc) SetChannel ¶

func (o *GroupsModelSearchV1SocialIrc) SetChannel(v string)

SetChannel gets a reference to the given string and assigns it to the Channel field.

func (*GroupsModelSearchV1SocialIrc) SetServer ¶

func (o *GroupsModelSearchV1SocialIrc) SetServer(v string)

SetServer gets a reference to the given string and assigns it to the Server field.

func (GroupsModelSearchV1SocialIrc) ToMap ¶

func (o GroupsModelSearchV1SocialIrc) ToMap() (map[string]interface{}, error)

type GroupsModelUpdateV1 ¶

type GroupsModelUpdateV1 struct {
	Name       *string                         `json:"name,omitempty"`
	Associated []GroupsModelUpdateV1Associated `json:"associated,omitempty"`
	Social     *GroupsModelUpdateV1Social      `json:"social,omitempty"`
	Active     *bool                           `json:"active,omitempty"`
	Notes      *string                         `json:"notes,omitempty"`
	Admin      *GroupsModelUpdateV1Admin       `json:"admin,omitempty"`
}

GroupsModelUpdateV1 struct for GroupsModelUpdateV1

func NewGroupsModelUpdateV1 ¶

func NewGroupsModelUpdateV1() *GroupsModelUpdateV1

NewGroupsModelUpdateV1 instantiates a new GroupsModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsModelUpdateV1WithDefaults ¶

func NewGroupsModelUpdateV1WithDefaults() *GroupsModelUpdateV1

NewGroupsModelUpdateV1WithDefaults instantiates a new GroupsModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsModelUpdateV1) GetActive ¶

func (o *GroupsModelUpdateV1) GetActive() bool

GetActive returns the Active field value if set, zero value otherwise.

func (*GroupsModelUpdateV1) GetActiveOk ¶

func (o *GroupsModelUpdateV1) GetActiveOk() (*bool, bool)

GetActiveOk returns a tuple with the Active field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelUpdateV1) GetAdmin ¶

GetAdmin returns the Admin field value if set, zero value otherwise.

func (*GroupsModelUpdateV1) GetAdminOk ¶

GetAdminOk returns a tuple with the Admin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelUpdateV1) GetAssociated ¶

GetAssociated returns the Associated field value if set, zero value otherwise.

func (*GroupsModelUpdateV1) GetAssociatedOk ¶

func (o *GroupsModelUpdateV1) GetAssociatedOk() ([]GroupsModelUpdateV1Associated, bool)

GetAssociatedOk returns a tuple with the Associated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelUpdateV1) GetName ¶

func (o *GroupsModelUpdateV1) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*GroupsModelUpdateV1) GetNameOk ¶

func (o *GroupsModelUpdateV1) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelUpdateV1) GetNotes ¶

func (o *GroupsModelUpdateV1) GetNotes() string

GetNotes returns the Notes field value if set, zero value otherwise.

func (*GroupsModelUpdateV1) GetNotesOk ¶

func (o *GroupsModelUpdateV1) GetNotesOk() (*string, bool)

GetNotesOk returns a tuple with the Notes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelUpdateV1) GetSocial ¶

GetSocial returns the Social field value if set, zero value otherwise.

func (*GroupsModelUpdateV1) GetSocialOk ¶

func (o *GroupsModelUpdateV1) GetSocialOk() (*GroupsModelUpdateV1Social, bool)

GetSocialOk returns a tuple with the Social field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelUpdateV1) HasActive ¶

func (o *GroupsModelUpdateV1) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*GroupsModelUpdateV1) HasAdmin ¶

func (o *GroupsModelUpdateV1) HasAdmin() bool

HasAdmin returns a boolean if a field has been set.

func (*GroupsModelUpdateV1) HasAssociated ¶

func (o *GroupsModelUpdateV1) HasAssociated() bool

HasAssociated returns a boolean if a field has been set.

func (*GroupsModelUpdateV1) HasName ¶

func (o *GroupsModelUpdateV1) HasName() bool

HasName returns a boolean if a field has been set.

func (*GroupsModelUpdateV1) HasNotes ¶

func (o *GroupsModelUpdateV1) HasNotes() bool

HasNotes returns a boolean if a field has been set.

func (*GroupsModelUpdateV1) HasSocial ¶

func (o *GroupsModelUpdateV1) HasSocial() bool

HasSocial returns a boolean if a field has been set.

func (GroupsModelUpdateV1) MarshalJSON ¶

func (o GroupsModelUpdateV1) MarshalJSON() ([]byte, error)

func (*GroupsModelUpdateV1) SetActive ¶

func (o *GroupsModelUpdateV1) SetActive(v bool)

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*GroupsModelUpdateV1) SetAdmin ¶

SetAdmin gets a reference to the given GroupsModelUpdateV1Admin and assigns it to the Admin field.

func (*GroupsModelUpdateV1) SetAssociated ¶

func (o *GroupsModelUpdateV1) SetAssociated(v []GroupsModelUpdateV1Associated)

SetAssociated gets a reference to the given []GroupsModelUpdateV1Associated and assigns it to the Associated field.

func (*GroupsModelUpdateV1) SetName ¶

func (o *GroupsModelUpdateV1) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*GroupsModelUpdateV1) SetNotes ¶

func (o *GroupsModelUpdateV1) SetNotes(v string)

SetNotes gets a reference to the given string and assigns it to the Notes field.

func (*GroupsModelUpdateV1) SetSocial ¶

SetSocial gets a reference to the given GroupsModelUpdateV1Social and assigns it to the Social field.

func (GroupsModelUpdateV1) ToMap ¶

func (o GroupsModelUpdateV1) ToMap() (map[string]interface{}, error)

type GroupsModelUpdateV1Admin ¶

type GroupsModelUpdateV1Admin struct {
	Approved *bool `json:"approved,omitempty"`
	Hold     *bool `json:"hold,omitempty"`
}

GroupsModelUpdateV1Admin struct for GroupsModelUpdateV1Admin

func NewGroupsModelUpdateV1Admin ¶

func NewGroupsModelUpdateV1Admin() *GroupsModelUpdateV1Admin

NewGroupsModelUpdateV1Admin instantiates a new GroupsModelUpdateV1Admin object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsModelUpdateV1AdminWithDefaults ¶

func NewGroupsModelUpdateV1AdminWithDefaults() *GroupsModelUpdateV1Admin

NewGroupsModelUpdateV1AdminWithDefaults instantiates a new GroupsModelUpdateV1Admin object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsModelUpdateV1Admin) GetApproved ¶

func (o *GroupsModelUpdateV1Admin) GetApproved() bool

GetApproved returns the Approved field value if set, zero value otherwise.

func (*GroupsModelUpdateV1Admin) GetApprovedOk ¶

func (o *GroupsModelUpdateV1Admin) GetApprovedOk() (*bool, bool)

GetApprovedOk returns a tuple with the Approved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelUpdateV1Admin) GetHold ¶

func (o *GroupsModelUpdateV1Admin) GetHold() bool

GetHold returns the Hold field value if set, zero value otherwise.

func (*GroupsModelUpdateV1Admin) GetHoldOk ¶

func (o *GroupsModelUpdateV1Admin) GetHoldOk() (*bool, bool)

GetHoldOk returns a tuple with the Hold field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelUpdateV1Admin) HasApproved ¶

func (o *GroupsModelUpdateV1Admin) HasApproved() bool

HasApproved returns a boolean if a field has been set.

func (*GroupsModelUpdateV1Admin) HasHold ¶

func (o *GroupsModelUpdateV1Admin) HasHold() bool

HasHold returns a boolean if a field has been set.

func (GroupsModelUpdateV1Admin) MarshalJSON ¶

func (o GroupsModelUpdateV1Admin) MarshalJSON() ([]byte, error)

func (*GroupsModelUpdateV1Admin) SetApproved ¶

func (o *GroupsModelUpdateV1Admin) SetApproved(v bool)

SetApproved gets a reference to the given bool and assigns it to the Approved field.

func (*GroupsModelUpdateV1Admin) SetHold ¶

func (o *GroupsModelUpdateV1Admin) SetHold(v bool)

SetHold gets a reference to the given bool and assigns it to the Hold field.

func (GroupsModelUpdateV1Admin) ToMap ¶

func (o GroupsModelUpdateV1Admin) ToMap() (map[string]interface{}, error)

type GroupsModelUpdateV1Associated ¶

type GroupsModelUpdateV1Associated struct {
	Name *string `json:"name,omitempty"`
}

GroupsModelUpdateV1Associated struct for GroupsModelUpdateV1Associated

func NewGroupsModelUpdateV1Associated ¶

func NewGroupsModelUpdateV1Associated() *GroupsModelUpdateV1Associated

NewGroupsModelUpdateV1Associated instantiates a new GroupsModelUpdateV1Associated object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsModelUpdateV1AssociatedWithDefaults ¶

func NewGroupsModelUpdateV1AssociatedWithDefaults() *GroupsModelUpdateV1Associated

NewGroupsModelUpdateV1AssociatedWithDefaults instantiates a new GroupsModelUpdateV1Associated object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsModelUpdateV1Associated) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*GroupsModelUpdateV1Associated) GetNameOk ¶

func (o *GroupsModelUpdateV1Associated) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelUpdateV1Associated) HasName ¶

func (o *GroupsModelUpdateV1Associated) HasName() bool

HasName returns a boolean if a field has been set.

func (GroupsModelUpdateV1Associated) MarshalJSON ¶

func (o GroupsModelUpdateV1Associated) MarshalJSON() ([]byte, error)

func (*GroupsModelUpdateV1Associated) SetName ¶

func (o *GroupsModelUpdateV1Associated) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (GroupsModelUpdateV1Associated) ToMap ¶

func (o GroupsModelUpdateV1Associated) ToMap() (map[string]interface{}, error)

type GroupsModelUpdateV1Social ¶

type GroupsModelUpdateV1Social struct {
	Site     *string                       `json:"site,omitempty"`
	Facebook *string                       `json:"facebook,omitempty"`
	Twitter  *string                       `json:"twitter,omitempty"`
	Irc      *GroupsModelUpdateV1SocialIrc `json:"irc,omitempty"`
	Forum    *string                       `json:"forum,omitempty"`
	Discord  *string                       `json:"discord,omitempty"`
}

GroupsModelUpdateV1Social struct for GroupsModelUpdateV1Social

func NewGroupsModelUpdateV1Social ¶

func NewGroupsModelUpdateV1Social() *GroupsModelUpdateV1Social

NewGroupsModelUpdateV1Social instantiates a new GroupsModelUpdateV1Social object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsModelUpdateV1SocialWithDefaults ¶

func NewGroupsModelUpdateV1SocialWithDefaults() *GroupsModelUpdateV1Social

NewGroupsModelUpdateV1SocialWithDefaults instantiates a new GroupsModelUpdateV1Social object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsModelUpdateV1Social) GetDiscord ¶

func (o *GroupsModelUpdateV1Social) GetDiscord() string

GetDiscord returns the Discord field value if set, zero value otherwise.

func (*GroupsModelUpdateV1Social) GetDiscordOk ¶

func (o *GroupsModelUpdateV1Social) GetDiscordOk() (*string, bool)

GetDiscordOk returns a tuple with the Discord field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelUpdateV1Social) GetFacebook ¶

func (o *GroupsModelUpdateV1Social) GetFacebook() string

GetFacebook returns the Facebook field value if set, zero value otherwise.

func (*GroupsModelUpdateV1Social) GetFacebookOk ¶

func (o *GroupsModelUpdateV1Social) GetFacebookOk() (*string, bool)

GetFacebookOk returns a tuple with the Facebook field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelUpdateV1Social) GetForum ¶

func (o *GroupsModelUpdateV1Social) GetForum() string

GetForum returns the Forum field value if set, zero value otherwise.

func (*GroupsModelUpdateV1Social) GetForumOk ¶

func (o *GroupsModelUpdateV1Social) GetForumOk() (*string, bool)

GetForumOk returns a tuple with the Forum field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelUpdateV1Social) GetIrc ¶

GetIrc returns the Irc field value if set, zero value otherwise.

func (*GroupsModelUpdateV1Social) GetIrcOk ¶

GetIrcOk returns a tuple with the Irc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelUpdateV1Social) GetSite ¶

func (o *GroupsModelUpdateV1Social) GetSite() string

GetSite returns the Site field value if set, zero value otherwise.

func (*GroupsModelUpdateV1Social) GetSiteOk ¶

func (o *GroupsModelUpdateV1Social) GetSiteOk() (*string, bool)

GetSiteOk returns a tuple with the Site field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelUpdateV1Social) GetTwitter ¶

func (o *GroupsModelUpdateV1Social) GetTwitter() string

GetTwitter returns the Twitter field value if set, zero value otherwise.

func (*GroupsModelUpdateV1Social) GetTwitterOk ¶

func (o *GroupsModelUpdateV1Social) GetTwitterOk() (*string, bool)

GetTwitterOk returns a tuple with the Twitter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelUpdateV1Social) HasDiscord ¶

func (o *GroupsModelUpdateV1Social) HasDiscord() bool

HasDiscord returns a boolean if a field has been set.

func (*GroupsModelUpdateV1Social) HasFacebook ¶

func (o *GroupsModelUpdateV1Social) HasFacebook() bool

HasFacebook returns a boolean if a field has been set.

func (*GroupsModelUpdateV1Social) HasForum ¶

func (o *GroupsModelUpdateV1Social) HasForum() bool

HasForum returns a boolean if a field has been set.

func (*GroupsModelUpdateV1Social) HasIrc ¶

func (o *GroupsModelUpdateV1Social) HasIrc() bool

HasIrc returns a boolean if a field has been set.

func (*GroupsModelUpdateV1Social) HasSite ¶

func (o *GroupsModelUpdateV1Social) HasSite() bool

HasSite returns a boolean if a field has been set.

func (*GroupsModelUpdateV1Social) HasTwitter ¶

func (o *GroupsModelUpdateV1Social) HasTwitter() bool

HasTwitter returns a boolean if a field has been set.

func (GroupsModelUpdateV1Social) MarshalJSON ¶

func (o GroupsModelUpdateV1Social) MarshalJSON() ([]byte, error)

func (*GroupsModelUpdateV1Social) SetDiscord ¶

func (o *GroupsModelUpdateV1Social) SetDiscord(v string)

SetDiscord gets a reference to the given string and assigns it to the Discord field.

func (*GroupsModelUpdateV1Social) SetFacebook ¶

func (o *GroupsModelUpdateV1Social) SetFacebook(v string)

SetFacebook gets a reference to the given string and assigns it to the Facebook field.

func (*GroupsModelUpdateV1Social) SetForum ¶

func (o *GroupsModelUpdateV1Social) SetForum(v string)

SetForum gets a reference to the given string and assigns it to the Forum field.

func (*GroupsModelUpdateV1Social) SetIrc ¶

SetIrc gets a reference to the given GroupsModelUpdateV1SocialIrc and assigns it to the Irc field.

func (*GroupsModelUpdateV1Social) SetSite ¶

func (o *GroupsModelUpdateV1Social) SetSite(v string)

SetSite gets a reference to the given string and assigns it to the Site field.

func (*GroupsModelUpdateV1Social) SetTwitter ¶

func (o *GroupsModelUpdateV1Social) SetTwitter(v string)

SetTwitter gets a reference to the given string and assigns it to the Twitter field.

func (GroupsModelUpdateV1Social) ToMap ¶

func (o GroupsModelUpdateV1Social) ToMap() (map[string]interface{}, error)

type GroupsModelUpdateV1SocialIrc ¶

type GroupsModelUpdateV1SocialIrc struct {
	Channel *string `json:"channel,omitempty"`
	Server  *string `json:"server,omitempty"`
}

GroupsModelUpdateV1SocialIrc struct for GroupsModelUpdateV1SocialIrc

func NewGroupsModelUpdateV1SocialIrc ¶

func NewGroupsModelUpdateV1SocialIrc() *GroupsModelUpdateV1SocialIrc

NewGroupsModelUpdateV1SocialIrc instantiates a new GroupsModelUpdateV1SocialIrc object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsModelUpdateV1SocialIrcWithDefaults ¶

func NewGroupsModelUpdateV1SocialIrcWithDefaults() *GroupsModelUpdateV1SocialIrc

NewGroupsModelUpdateV1SocialIrcWithDefaults instantiates a new GroupsModelUpdateV1SocialIrc object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsModelUpdateV1SocialIrc) GetChannel ¶

func (o *GroupsModelUpdateV1SocialIrc) GetChannel() string

GetChannel returns the Channel field value if set, zero value otherwise.

func (*GroupsModelUpdateV1SocialIrc) GetChannelOk ¶

func (o *GroupsModelUpdateV1SocialIrc) GetChannelOk() (*string, bool)

GetChannelOk returns a tuple with the Channel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelUpdateV1SocialIrc) GetServer ¶

func (o *GroupsModelUpdateV1SocialIrc) GetServer() string

GetServer returns the Server field value if set, zero value otherwise.

func (*GroupsModelUpdateV1SocialIrc) GetServerOk ¶

func (o *GroupsModelUpdateV1SocialIrc) GetServerOk() (*string, bool)

GetServerOk returns a tuple with the Server field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelUpdateV1SocialIrc) HasChannel ¶

func (o *GroupsModelUpdateV1SocialIrc) HasChannel() bool

HasChannel returns a boolean if a field has been set.

func (*GroupsModelUpdateV1SocialIrc) HasServer ¶

func (o *GroupsModelUpdateV1SocialIrc) HasServer() bool

HasServer returns a boolean if a field has been set.

func (GroupsModelUpdateV1SocialIrc) MarshalJSON ¶

func (o GroupsModelUpdateV1SocialIrc) MarshalJSON() ([]byte, error)

func (*GroupsModelUpdateV1SocialIrc) SetChannel ¶

func (o *GroupsModelUpdateV1SocialIrc) SetChannel(v string)

SetChannel gets a reference to the given string and assigns it to the Channel field.

func (*GroupsModelUpdateV1SocialIrc) SetServer ¶

func (o *GroupsModelUpdateV1SocialIrc) SetServer(v string)

SetServer gets a reference to the given string and assigns it to the Server field.

func (GroupsModelUpdateV1SocialIrc) ToMap ¶

func (o GroupsModelUpdateV1SocialIrc) ToMap() (map[string]interface{}, error)

type GroupsModelV1 ¶

type GroupsModelV1 struct {
	GroupId    *int64                    `json:"group_id,omitempty"`
	Name       *string                   `json:"name,omitempty"`
	Url        *string                   `json:"url,omitempty"`
	Associated []GroupsModelV1Associated `json:"associated,omitempty"`
	Social     *GroupsModelV1Social      `json:"social,omitempty"`
	Active     *bool                     `json:"active,omitempty"`
	Notes      *string                   `json:"notes,omitempty"`
	AddedBy    *UserModelSearchV1        `json:"added_by,omitempty"`
	Admin      *GroupsModelV1Admin       `json:"admin,omitempty"`
}

GroupsModelV1 struct for GroupsModelV1

func NewGroupsModelV1 ¶

func NewGroupsModelV1() *GroupsModelV1

NewGroupsModelV1 instantiates a new GroupsModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsModelV1WithDefaults ¶

func NewGroupsModelV1WithDefaults() *GroupsModelV1

NewGroupsModelV1WithDefaults instantiates a new GroupsModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsModelV1) GetActive ¶

func (o *GroupsModelV1) GetActive() bool

GetActive returns the Active field value if set, zero value otherwise.

func (*GroupsModelV1) GetActiveOk ¶

func (o *GroupsModelV1) GetActiveOk() (*bool, bool)

GetActiveOk returns a tuple with the Active field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelV1) GetAddedBy ¶

func (o *GroupsModelV1) GetAddedBy() UserModelSearchV1

GetAddedBy returns the AddedBy field value if set, zero value otherwise.

func (*GroupsModelV1) GetAddedByOk ¶

func (o *GroupsModelV1) GetAddedByOk() (*UserModelSearchV1, bool)

GetAddedByOk returns a tuple with the AddedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelV1) GetAdmin ¶

func (o *GroupsModelV1) GetAdmin() GroupsModelV1Admin

GetAdmin returns the Admin field value if set, zero value otherwise.

func (*GroupsModelV1) GetAdminOk ¶

func (o *GroupsModelV1) GetAdminOk() (*GroupsModelV1Admin, bool)

GetAdminOk returns a tuple with the Admin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelV1) GetAssociated ¶

func (o *GroupsModelV1) GetAssociated() []GroupsModelV1Associated

GetAssociated returns the Associated field value if set, zero value otherwise.

func (*GroupsModelV1) GetAssociatedOk ¶

func (o *GroupsModelV1) GetAssociatedOk() ([]GroupsModelV1Associated, bool)

GetAssociatedOk returns a tuple with the Associated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelV1) GetGroupId ¶

func (o *GroupsModelV1) GetGroupId() int64

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*GroupsModelV1) GetGroupIdOk ¶

func (o *GroupsModelV1) GetGroupIdOk() (*int64, bool)

GetGroupIdOk returns a tuple with the GroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelV1) GetName ¶

func (o *GroupsModelV1) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*GroupsModelV1) GetNameOk ¶

func (o *GroupsModelV1) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelV1) GetNotes ¶

func (o *GroupsModelV1) GetNotes() string

GetNotes returns the Notes field value if set, zero value otherwise.

func (*GroupsModelV1) GetNotesOk ¶

func (o *GroupsModelV1) GetNotesOk() (*string, bool)

GetNotesOk returns a tuple with the Notes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelV1) GetSocial ¶

func (o *GroupsModelV1) GetSocial() GroupsModelV1Social

GetSocial returns the Social field value if set, zero value otherwise.

func (*GroupsModelV1) GetSocialOk ¶

func (o *GroupsModelV1) GetSocialOk() (*GroupsModelV1Social, bool)

GetSocialOk returns a tuple with the Social field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelV1) GetUrl ¶

func (o *GroupsModelV1) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*GroupsModelV1) GetUrlOk ¶

func (o *GroupsModelV1) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelV1) HasActive ¶

func (o *GroupsModelV1) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*GroupsModelV1) HasAddedBy ¶

func (o *GroupsModelV1) HasAddedBy() bool

HasAddedBy returns a boolean if a field has been set.

func (*GroupsModelV1) HasAdmin ¶

func (o *GroupsModelV1) HasAdmin() bool

HasAdmin returns a boolean if a field has been set.

func (*GroupsModelV1) HasAssociated ¶

func (o *GroupsModelV1) HasAssociated() bool

HasAssociated returns a boolean if a field has been set.

func (*GroupsModelV1) HasGroupId ¶

func (o *GroupsModelV1) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*GroupsModelV1) HasName ¶

func (o *GroupsModelV1) HasName() bool

HasName returns a boolean if a field has been set.

func (*GroupsModelV1) HasNotes ¶

func (o *GroupsModelV1) HasNotes() bool

HasNotes returns a boolean if a field has been set.

func (*GroupsModelV1) HasSocial ¶

func (o *GroupsModelV1) HasSocial() bool

HasSocial returns a boolean if a field has been set.

func (*GroupsModelV1) HasUrl ¶

func (o *GroupsModelV1) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (GroupsModelV1) MarshalJSON ¶

func (o GroupsModelV1) MarshalJSON() ([]byte, error)

func (*GroupsModelV1) SetActive ¶

func (o *GroupsModelV1) SetActive(v bool)

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*GroupsModelV1) SetAddedBy ¶

func (o *GroupsModelV1) SetAddedBy(v UserModelSearchV1)

SetAddedBy gets a reference to the given UserModelSearchV1 and assigns it to the AddedBy field.

func (*GroupsModelV1) SetAdmin ¶

func (o *GroupsModelV1) SetAdmin(v GroupsModelV1Admin)

SetAdmin gets a reference to the given GroupsModelV1Admin and assigns it to the Admin field.

func (*GroupsModelV1) SetAssociated ¶

func (o *GroupsModelV1) SetAssociated(v []GroupsModelV1Associated)

SetAssociated gets a reference to the given []GroupsModelV1Associated and assigns it to the Associated field.

func (*GroupsModelV1) SetGroupId ¶

func (o *GroupsModelV1) SetGroupId(v int64)

SetGroupId gets a reference to the given int64 and assigns it to the GroupId field.

func (*GroupsModelV1) SetName ¶

func (o *GroupsModelV1) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*GroupsModelV1) SetNotes ¶

func (o *GroupsModelV1) SetNotes(v string)

SetNotes gets a reference to the given string and assigns it to the Notes field.

func (*GroupsModelV1) SetSocial ¶

func (o *GroupsModelV1) SetSocial(v GroupsModelV1Social)

SetSocial gets a reference to the given GroupsModelV1Social and assigns it to the Social field.

func (*GroupsModelV1) SetUrl ¶

func (o *GroupsModelV1) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (GroupsModelV1) ToMap ¶

func (o GroupsModelV1) ToMap() (map[string]interface{}, error)

type GroupsModelV1Admin ¶

type GroupsModelV1Admin struct {
	Approved *bool `json:"approved,omitempty"`
	Hold     *bool `json:"hold,omitempty"`
}

GroupsModelV1Admin struct for GroupsModelV1Admin

func NewGroupsModelV1Admin ¶

func NewGroupsModelV1Admin() *GroupsModelV1Admin

NewGroupsModelV1Admin instantiates a new GroupsModelV1Admin object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsModelV1AdminWithDefaults ¶

func NewGroupsModelV1AdminWithDefaults() *GroupsModelV1Admin

NewGroupsModelV1AdminWithDefaults instantiates a new GroupsModelV1Admin object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsModelV1Admin) GetApproved ¶

func (o *GroupsModelV1Admin) GetApproved() bool

GetApproved returns the Approved field value if set, zero value otherwise.

func (*GroupsModelV1Admin) GetApprovedOk ¶

func (o *GroupsModelV1Admin) GetApprovedOk() (*bool, bool)

GetApprovedOk returns a tuple with the Approved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelV1Admin) GetHold ¶

func (o *GroupsModelV1Admin) GetHold() bool

GetHold returns the Hold field value if set, zero value otherwise.

func (*GroupsModelV1Admin) GetHoldOk ¶

func (o *GroupsModelV1Admin) GetHoldOk() (*bool, bool)

GetHoldOk returns a tuple with the Hold field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelV1Admin) HasApproved ¶

func (o *GroupsModelV1Admin) HasApproved() bool

HasApproved returns a boolean if a field has been set.

func (*GroupsModelV1Admin) HasHold ¶

func (o *GroupsModelV1Admin) HasHold() bool

HasHold returns a boolean if a field has been set.

func (GroupsModelV1Admin) MarshalJSON ¶

func (o GroupsModelV1Admin) MarshalJSON() ([]byte, error)

func (*GroupsModelV1Admin) SetApproved ¶

func (o *GroupsModelV1Admin) SetApproved(v bool)

SetApproved gets a reference to the given bool and assigns it to the Approved field.

func (*GroupsModelV1Admin) SetHold ¶

func (o *GroupsModelV1Admin) SetHold(v bool)

SetHold gets a reference to the given bool and assigns it to the Hold field.

func (GroupsModelV1Admin) ToMap ¶

func (o GroupsModelV1Admin) ToMap() (map[string]interface{}, error)

type GroupsModelV1Associated ¶

type GroupsModelV1Associated struct {
	Name *string `json:"name,omitempty"`
}

GroupsModelV1Associated struct for GroupsModelV1Associated

func NewGroupsModelV1Associated ¶

func NewGroupsModelV1Associated() *GroupsModelV1Associated

NewGroupsModelV1Associated instantiates a new GroupsModelV1Associated object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsModelV1AssociatedWithDefaults ¶

func NewGroupsModelV1AssociatedWithDefaults() *GroupsModelV1Associated

NewGroupsModelV1AssociatedWithDefaults instantiates a new GroupsModelV1Associated object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsModelV1Associated) GetName ¶

func (o *GroupsModelV1Associated) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*GroupsModelV1Associated) GetNameOk ¶

func (o *GroupsModelV1Associated) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelV1Associated) HasName ¶

func (o *GroupsModelV1Associated) HasName() bool

HasName returns a boolean if a field has been set.

func (GroupsModelV1Associated) MarshalJSON ¶

func (o GroupsModelV1Associated) MarshalJSON() ([]byte, error)

func (*GroupsModelV1Associated) SetName ¶

func (o *GroupsModelV1Associated) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (GroupsModelV1Associated) ToMap ¶

func (o GroupsModelV1Associated) ToMap() (map[string]interface{}, error)

type GroupsModelV1Social ¶

type GroupsModelV1Social struct {
	Site     *string                 `json:"site,omitempty"`
	Facebook *string                 `json:"facebook,omitempty"`
	Twitter  *string                 `json:"twitter,omitempty"`
	Irc      *GroupsModelV1SocialIrc `json:"irc,omitempty"`
	Forum    *string                 `json:"forum,omitempty"`
	Discord  *string                 `json:"discord,omitempty"`
}

GroupsModelV1Social struct for GroupsModelV1Social

func NewGroupsModelV1Social ¶

func NewGroupsModelV1Social() *GroupsModelV1Social

NewGroupsModelV1Social instantiates a new GroupsModelV1Social object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsModelV1SocialWithDefaults ¶

func NewGroupsModelV1SocialWithDefaults() *GroupsModelV1Social

NewGroupsModelV1SocialWithDefaults instantiates a new GroupsModelV1Social object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsModelV1Social) GetDiscord ¶

func (o *GroupsModelV1Social) GetDiscord() string

GetDiscord returns the Discord field value if set, zero value otherwise.

func (*GroupsModelV1Social) GetDiscordOk ¶

func (o *GroupsModelV1Social) GetDiscordOk() (*string, bool)

GetDiscordOk returns a tuple with the Discord field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelV1Social) GetFacebook ¶

func (o *GroupsModelV1Social) GetFacebook() string

GetFacebook returns the Facebook field value if set, zero value otherwise.

func (*GroupsModelV1Social) GetFacebookOk ¶

func (o *GroupsModelV1Social) GetFacebookOk() (*string, bool)

GetFacebookOk returns a tuple with the Facebook field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelV1Social) GetForum ¶

func (o *GroupsModelV1Social) GetForum() string

GetForum returns the Forum field value if set, zero value otherwise.

func (*GroupsModelV1Social) GetForumOk ¶

func (o *GroupsModelV1Social) GetForumOk() (*string, bool)

GetForumOk returns a tuple with the Forum field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelV1Social) GetIrc ¶

GetIrc returns the Irc field value if set, zero value otherwise.

func (*GroupsModelV1Social) GetIrcOk ¶

GetIrcOk returns a tuple with the Irc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelV1Social) GetSite ¶

func (o *GroupsModelV1Social) GetSite() string

GetSite returns the Site field value if set, zero value otherwise.

func (*GroupsModelV1Social) GetSiteOk ¶

func (o *GroupsModelV1Social) GetSiteOk() (*string, bool)

GetSiteOk returns a tuple with the Site field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelV1Social) GetTwitter ¶

func (o *GroupsModelV1Social) GetTwitter() string

GetTwitter returns the Twitter field value if set, zero value otherwise.

func (*GroupsModelV1Social) GetTwitterOk ¶

func (o *GroupsModelV1Social) GetTwitterOk() (*string, bool)

GetTwitterOk returns a tuple with the Twitter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelV1Social) HasDiscord ¶

func (o *GroupsModelV1Social) HasDiscord() bool

HasDiscord returns a boolean if a field has been set.

func (*GroupsModelV1Social) HasFacebook ¶

func (o *GroupsModelV1Social) HasFacebook() bool

HasFacebook returns a boolean if a field has been set.

func (*GroupsModelV1Social) HasForum ¶

func (o *GroupsModelV1Social) HasForum() bool

HasForum returns a boolean if a field has been set.

func (*GroupsModelV1Social) HasIrc ¶

func (o *GroupsModelV1Social) HasIrc() bool

HasIrc returns a boolean if a field has been set.

func (*GroupsModelV1Social) HasSite ¶

func (o *GroupsModelV1Social) HasSite() bool

HasSite returns a boolean if a field has been set.

func (*GroupsModelV1Social) HasTwitter ¶

func (o *GroupsModelV1Social) HasTwitter() bool

HasTwitter returns a boolean if a field has been set.

func (GroupsModelV1Social) MarshalJSON ¶

func (o GroupsModelV1Social) MarshalJSON() ([]byte, error)

func (*GroupsModelV1Social) SetDiscord ¶

func (o *GroupsModelV1Social) SetDiscord(v string)

SetDiscord gets a reference to the given string and assigns it to the Discord field.

func (*GroupsModelV1Social) SetFacebook ¶

func (o *GroupsModelV1Social) SetFacebook(v string)

SetFacebook gets a reference to the given string and assigns it to the Facebook field.

func (*GroupsModelV1Social) SetForum ¶

func (o *GroupsModelV1Social) SetForum(v string)

SetForum gets a reference to the given string and assigns it to the Forum field.

func (*GroupsModelV1Social) SetIrc ¶

SetIrc gets a reference to the given GroupsModelV1SocialIrc and assigns it to the Irc field.

func (*GroupsModelV1Social) SetSite ¶

func (o *GroupsModelV1Social) SetSite(v string)

SetSite gets a reference to the given string and assigns it to the Site field.

func (*GroupsModelV1Social) SetTwitter ¶

func (o *GroupsModelV1Social) SetTwitter(v string)

SetTwitter gets a reference to the given string and assigns it to the Twitter field.

func (GroupsModelV1Social) ToMap ¶

func (o GroupsModelV1Social) ToMap() (map[string]interface{}, error)

type GroupsModelV1SocialIrc ¶

type GroupsModelV1SocialIrc struct {
	Channel *string `json:"channel,omitempty"`
	Server  *string `json:"server,omitempty"`
}

GroupsModelV1SocialIrc struct for GroupsModelV1SocialIrc

func NewGroupsModelV1SocialIrc ¶

func NewGroupsModelV1SocialIrc() *GroupsModelV1SocialIrc

NewGroupsModelV1SocialIrc instantiates a new GroupsModelV1SocialIrc object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsModelV1SocialIrcWithDefaults ¶

func NewGroupsModelV1SocialIrcWithDefaults() *GroupsModelV1SocialIrc

NewGroupsModelV1SocialIrcWithDefaults instantiates a new GroupsModelV1SocialIrc object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsModelV1SocialIrc) GetChannel ¶

func (o *GroupsModelV1SocialIrc) GetChannel() string

GetChannel returns the Channel field value if set, zero value otherwise.

func (*GroupsModelV1SocialIrc) GetChannelOk ¶

func (o *GroupsModelV1SocialIrc) GetChannelOk() (*string, bool)

GetChannelOk returns a tuple with the Channel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelV1SocialIrc) GetServer ¶

func (o *GroupsModelV1SocialIrc) GetServer() string

GetServer returns the Server field value if set, zero value otherwise.

func (*GroupsModelV1SocialIrc) GetServerOk ¶

func (o *GroupsModelV1SocialIrc) GetServerOk() (*string, bool)

GetServerOk returns a tuple with the Server field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsModelV1SocialIrc) HasChannel ¶

func (o *GroupsModelV1SocialIrc) HasChannel() bool

HasChannel returns a boolean if a field has been set.

func (*GroupsModelV1SocialIrc) HasServer ¶

func (o *GroupsModelV1SocialIrc) HasServer() bool

HasServer returns a boolean if a field has been set.

func (GroupsModelV1SocialIrc) MarshalJSON ¶

func (o GroupsModelV1SocialIrc) MarshalJSON() ([]byte, error)

func (*GroupsModelV1SocialIrc) SetChannel ¶

func (o *GroupsModelV1SocialIrc) SetChannel(v string)

SetChannel gets a reference to the given string and assigns it to the Channel field.

func (*GroupsModelV1SocialIrc) SetServer ¶

func (o *GroupsModelV1SocialIrc) SetServer(v string)

SetServer gets a reference to the given string and assigns it to the Server field.

func (GroupsModelV1SocialIrc) ToMap ¶

func (o GroupsModelV1SocialIrc) ToMap() (map[string]interface{}, error)

type GroupsSearchRequestV1 ¶

type GroupsSearchRequestV1 struct {
	Search  *string `json:"search,omitempty"`
	AddedBy *int64  `json:"added_by,omitempty"`
	Page    *int64  `json:"page,omitempty"`
	Perpage *int64  `json:"perpage,omitempty"`
	Letter  *string `json:"letter,omitempty"`
	Active  *bool   `json:"active,omitempty"`
	Pending *bool   `json:"pending,omitempty"`
}

GroupsSearchRequestV1 struct for GroupsSearchRequestV1

func NewGroupsSearchRequestV1 ¶

func NewGroupsSearchRequestV1() *GroupsSearchRequestV1

NewGroupsSearchRequestV1 instantiates a new GroupsSearchRequestV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsSearchRequestV1WithDefaults ¶

func NewGroupsSearchRequestV1WithDefaults() *GroupsSearchRequestV1

NewGroupsSearchRequestV1WithDefaults instantiates a new GroupsSearchRequestV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsSearchRequestV1) GetActive ¶

func (o *GroupsSearchRequestV1) GetActive() bool

GetActive returns the Active field value if set, zero value otherwise.

func (*GroupsSearchRequestV1) GetActiveOk ¶

func (o *GroupsSearchRequestV1) GetActiveOk() (*bool, bool)

GetActiveOk returns a tuple with the Active field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsSearchRequestV1) GetAddedBy ¶

func (o *GroupsSearchRequestV1) GetAddedBy() int64

GetAddedBy returns the AddedBy field value if set, zero value otherwise.

func (*GroupsSearchRequestV1) GetAddedByOk ¶

func (o *GroupsSearchRequestV1) GetAddedByOk() (*int64, bool)

GetAddedByOk returns a tuple with the AddedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsSearchRequestV1) GetLetter ¶

func (o *GroupsSearchRequestV1) GetLetter() string

GetLetter returns the Letter field value if set, zero value otherwise.

func (*GroupsSearchRequestV1) GetLetterOk ¶

func (o *GroupsSearchRequestV1) GetLetterOk() (*string, bool)

GetLetterOk returns a tuple with the Letter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsSearchRequestV1) GetPage ¶

func (o *GroupsSearchRequestV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*GroupsSearchRequestV1) GetPageOk ¶

func (o *GroupsSearchRequestV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsSearchRequestV1) GetPending ¶

func (o *GroupsSearchRequestV1) GetPending() bool

GetPending returns the Pending field value if set, zero value otherwise.

func (*GroupsSearchRequestV1) GetPendingOk ¶

func (o *GroupsSearchRequestV1) GetPendingOk() (*bool, bool)

GetPendingOk returns a tuple with the Pending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsSearchRequestV1) GetPerpage ¶

func (o *GroupsSearchRequestV1) GetPerpage() int64

GetPerpage returns the Perpage field value if set, zero value otherwise.

func (*GroupsSearchRequestV1) GetPerpageOk ¶

func (o *GroupsSearchRequestV1) GetPerpageOk() (*int64, bool)

GetPerpageOk returns a tuple with the Perpage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsSearchRequestV1) GetSearch ¶

func (o *GroupsSearchRequestV1) GetSearch() string

GetSearch returns the Search field value if set, zero value otherwise.

func (*GroupsSearchRequestV1) GetSearchOk ¶

func (o *GroupsSearchRequestV1) GetSearchOk() (*string, bool)

GetSearchOk returns a tuple with the Search field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsSearchRequestV1) HasActive ¶

func (o *GroupsSearchRequestV1) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*GroupsSearchRequestV1) HasAddedBy ¶

func (o *GroupsSearchRequestV1) HasAddedBy() bool

HasAddedBy returns a boolean if a field has been set.

func (*GroupsSearchRequestV1) HasLetter ¶

func (o *GroupsSearchRequestV1) HasLetter() bool

HasLetter returns a boolean if a field has been set.

func (*GroupsSearchRequestV1) HasPage ¶

func (o *GroupsSearchRequestV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*GroupsSearchRequestV1) HasPending ¶

func (o *GroupsSearchRequestV1) HasPending() bool

HasPending returns a boolean if a field has been set.

func (*GroupsSearchRequestV1) HasPerpage ¶

func (o *GroupsSearchRequestV1) HasPerpage() bool

HasPerpage returns a boolean if a field has been set.

func (*GroupsSearchRequestV1) HasSearch ¶

func (o *GroupsSearchRequestV1) HasSearch() bool

HasSearch returns a boolean if a field has been set.

func (GroupsSearchRequestV1) MarshalJSON ¶

func (o GroupsSearchRequestV1) MarshalJSON() ([]byte, error)

func (*GroupsSearchRequestV1) SetActive ¶

func (o *GroupsSearchRequestV1) SetActive(v bool)

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*GroupsSearchRequestV1) SetAddedBy ¶

func (o *GroupsSearchRequestV1) SetAddedBy(v int64)

SetAddedBy gets a reference to the given int64 and assigns it to the AddedBy field.

func (*GroupsSearchRequestV1) SetLetter ¶

func (o *GroupsSearchRequestV1) SetLetter(v string)

SetLetter gets a reference to the given string and assigns it to the Letter field.

func (*GroupsSearchRequestV1) SetPage ¶

func (o *GroupsSearchRequestV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*GroupsSearchRequestV1) SetPending ¶

func (o *GroupsSearchRequestV1) SetPending(v bool)

SetPending gets a reference to the given bool and assigns it to the Pending field.

func (*GroupsSearchRequestV1) SetPerpage ¶

func (o *GroupsSearchRequestV1) SetPerpage(v int64)

SetPerpage gets a reference to the given int64 and assigns it to the Perpage field.

func (*GroupsSearchRequestV1) SetSearch ¶

func (o *GroupsSearchRequestV1) SetSearch(v string)

SetSearch gets a reference to the given string and assigns it to the Search field.

func (GroupsSearchRequestV1) ToMap ¶

func (o GroupsSearchRequestV1) ToMap() (map[string]interface{}, error)

type GroupsSearchResponseV1 ¶

type GroupsSearchResponseV1 struct {
	TotalHits *int64                          `json:"total_hits,omitempty"`
	Page      *int64                          `json:"page,omitempty"`
	PerPage   *int64                          `json:"per_page,omitempty"`
	Results   []GroupsSearchResponseV1Results `json:"results,omitempty"`
}

GroupsSearchResponseV1 struct for GroupsSearchResponseV1

func NewGroupsSearchResponseV1 ¶

func NewGroupsSearchResponseV1() *GroupsSearchResponseV1

NewGroupsSearchResponseV1 instantiates a new GroupsSearchResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsSearchResponseV1WithDefaults ¶

func NewGroupsSearchResponseV1WithDefaults() *GroupsSearchResponseV1

NewGroupsSearchResponseV1WithDefaults instantiates a new GroupsSearchResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsSearchResponseV1) GetPage ¶

func (o *GroupsSearchResponseV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*GroupsSearchResponseV1) GetPageOk ¶

func (o *GroupsSearchResponseV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsSearchResponseV1) GetPerPage ¶

func (o *GroupsSearchResponseV1) GetPerPage() int64

GetPerPage returns the PerPage field value if set, zero value otherwise.

func (*GroupsSearchResponseV1) GetPerPageOk ¶

func (o *GroupsSearchResponseV1) GetPerPageOk() (*int64, bool)

GetPerPageOk returns a tuple with the PerPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsSearchResponseV1) GetResults ¶

GetResults returns the Results field value if set, zero value otherwise.

func (*GroupsSearchResponseV1) GetResultsOk ¶

GetResultsOk returns a tuple with the Results field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsSearchResponseV1) GetTotalHits ¶

func (o *GroupsSearchResponseV1) GetTotalHits() int64

GetTotalHits returns the TotalHits field value if set, zero value otherwise.

func (*GroupsSearchResponseV1) GetTotalHitsOk ¶

func (o *GroupsSearchResponseV1) GetTotalHitsOk() (*int64, bool)

GetTotalHitsOk returns a tuple with the TotalHits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsSearchResponseV1) HasPage ¶

func (o *GroupsSearchResponseV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*GroupsSearchResponseV1) HasPerPage ¶

func (o *GroupsSearchResponseV1) HasPerPage() bool

HasPerPage returns a boolean if a field has been set.

func (*GroupsSearchResponseV1) HasResults ¶

func (o *GroupsSearchResponseV1) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*GroupsSearchResponseV1) HasTotalHits ¶

func (o *GroupsSearchResponseV1) HasTotalHits() bool

HasTotalHits returns a boolean if a field has been set.

func (GroupsSearchResponseV1) MarshalJSON ¶

func (o GroupsSearchResponseV1) MarshalJSON() ([]byte, error)

func (*GroupsSearchResponseV1) SetPage ¶

func (o *GroupsSearchResponseV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*GroupsSearchResponseV1) SetPerPage ¶

func (o *GroupsSearchResponseV1) SetPerPage(v int64)

SetPerPage gets a reference to the given int64 and assigns it to the PerPage field.

func (*GroupsSearchResponseV1) SetResults ¶

SetResults gets a reference to the given []GroupsSearchResponseV1Results and assigns it to the Results field.

func (*GroupsSearchResponseV1) SetTotalHits ¶

func (o *GroupsSearchResponseV1) SetTotalHits(v int64)

SetTotalHits gets a reference to the given int64 and assigns it to the TotalHits field.

func (GroupsSearchResponseV1) ToMap ¶

func (o GroupsSearchResponseV1) ToMap() (map[string]interface{}, error)

type GroupsSearchResponseV1Results ¶

type GroupsSearchResponseV1Results struct {
	Record  *GroupsModelSearchV1 `json:"record,omitempty"`
	HitName *string              `json:"hit_name,omitempty"`
}

GroupsSearchResponseV1Results struct for GroupsSearchResponseV1Results

func NewGroupsSearchResponseV1Results ¶

func NewGroupsSearchResponseV1Results() *GroupsSearchResponseV1Results

NewGroupsSearchResponseV1Results instantiates a new GroupsSearchResponseV1Results object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsSearchResponseV1ResultsWithDefaults ¶

func NewGroupsSearchResponseV1ResultsWithDefaults() *GroupsSearchResponseV1Results

NewGroupsSearchResponseV1ResultsWithDefaults instantiates a new GroupsSearchResponseV1Results object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsSearchResponseV1Results) GetHitName ¶

func (o *GroupsSearchResponseV1Results) GetHitName() string

GetHitName returns the HitName field value if set, zero value otherwise.

func (*GroupsSearchResponseV1Results) GetHitNameOk ¶

func (o *GroupsSearchResponseV1Results) GetHitNameOk() (*string, bool)

GetHitNameOk returns a tuple with the HitName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsSearchResponseV1Results) GetRecord ¶

GetRecord returns the Record field value if set, zero value otherwise.

func (*GroupsSearchResponseV1Results) GetRecordOk ¶

GetRecordOk returns a tuple with the Record field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsSearchResponseV1Results) HasHitName ¶

func (o *GroupsSearchResponseV1Results) HasHitName() bool

HasHitName returns a boolean if a field has been set.

func (*GroupsSearchResponseV1Results) HasRecord ¶

func (o *GroupsSearchResponseV1Results) HasRecord() bool

HasRecord returns a boolean if a field has been set.

func (GroupsSearchResponseV1Results) MarshalJSON ¶

func (o GroupsSearchResponseV1Results) MarshalJSON() ([]byte, error)

func (*GroupsSearchResponseV1Results) SetHitName ¶

func (o *GroupsSearchResponseV1Results) SetHitName(v string)

SetHitName gets a reference to the given string and assigns it to the HitName field.

func (*GroupsSearchResponseV1Results) SetRecord ¶

SetRecord gets a reference to the given GroupsModelSearchV1 and assigns it to the Record field.

func (GroupsSearchResponseV1Results) ToMap ¶

func (o GroupsSearchResponseV1Results) ToMap() (map[string]interface{}, error)

type GroupsSeriesListResponseV1 ¶

type GroupsSeriesListResponseV1 struct {
	ReleaseFrequency *string                                      `json:"release_frequency,omitempty"`
	SeriesTitles     []GroupsSeriesListResponseV1SeriesTitles     `json:"series_titles,omitempty"`
	SeriesGenres     []GroupsSeriesListResponseV1SeriesGenres     `json:"series_genres,omitempty"`
	SeriesCategories []GroupsSeriesListResponseV1SeriesCategories `json:"series_categories,omitempty"`
}

GroupsSeriesListResponseV1 struct for GroupsSeriesListResponseV1

func NewGroupsSeriesListResponseV1 ¶

func NewGroupsSeriesListResponseV1() *GroupsSeriesListResponseV1

NewGroupsSeriesListResponseV1 instantiates a new GroupsSeriesListResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsSeriesListResponseV1WithDefaults ¶

func NewGroupsSeriesListResponseV1WithDefaults() *GroupsSeriesListResponseV1

NewGroupsSeriesListResponseV1WithDefaults instantiates a new GroupsSeriesListResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsSeriesListResponseV1) GetReleaseFrequency ¶

func (o *GroupsSeriesListResponseV1) GetReleaseFrequency() string

GetReleaseFrequency returns the ReleaseFrequency field value if set, zero value otherwise.

func (*GroupsSeriesListResponseV1) GetReleaseFrequencyOk ¶

func (o *GroupsSeriesListResponseV1) GetReleaseFrequencyOk() (*string, bool)

GetReleaseFrequencyOk returns a tuple with the ReleaseFrequency field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsSeriesListResponseV1) GetSeriesCategories ¶

GetSeriesCategories returns the SeriesCategories field value if set, zero value otherwise.

func (*GroupsSeriesListResponseV1) GetSeriesCategoriesOk ¶

GetSeriesCategoriesOk returns a tuple with the SeriesCategories field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsSeriesListResponseV1) GetSeriesGenres ¶

GetSeriesGenres returns the SeriesGenres field value if set, zero value otherwise.

func (*GroupsSeriesListResponseV1) GetSeriesGenresOk ¶

GetSeriesGenresOk returns a tuple with the SeriesGenres field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsSeriesListResponseV1) GetSeriesTitles ¶

GetSeriesTitles returns the SeriesTitles field value if set, zero value otherwise.

func (*GroupsSeriesListResponseV1) GetSeriesTitlesOk ¶

GetSeriesTitlesOk returns a tuple with the SeriesTitles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsSeriesListResponseV1) HasReleaseFrequency ¶

func (o *GroupsSeriesListResponseV1) HasReleaseFrequency() bool

HasReleaseFrequency returns a boolean if a field has been set.

func (*GroupsSeriesListResponseV1) HasSeriesCategories ¶

func (o *GroupsSeriesListResponseV1) HasSeriesCategories() bool

HasSeriesCategories returns a boolean if a field has been set.

func (*GroupsSeriesListResponseV1) HasSeriesGenres ¶

func (o *GroupsSeriesListResponseV1) HasSeriesGenres() bool

HasSeriesGenres returns a boolean if a field has been set.

func (*GroupsSeriesListResponseV1) HasSeriesTitles ¶

func (o *GroupsSeriesListResponseV1) HasSeriesTitles() bool

HasSeriesTitles returns a boolean if a field has been set.

func (GroupsSeriesListResponseV1) MarshalJSON ¶

func (o GroupsSeriesListResponseV1) MarshalJSON() ([]byte, error)

func (*GroupsSeriesListResponseV1) SetReleaseFrequency ¶

func (o *GroupsSeriesListResponseV1) SetReleaseFrequency(v string)

SetReleaseFrequency gets a reference to the given string and assigns it to the ReleaseFrequency field.

func (*GroupsSeriesListResponseV1) SetSeriesCategories ¶

SetSeriesCategories gets a reference to the given []GroupsSeriesListResponseV1SeriesCategories and assigns it to the SeriesCategories field.

func (*GroupsSeriesListResponseV1) SetSeriesGenres ¶

SetSeriesGenres gets a reference to the given []GroupsSeriesListResponseV1SeriesGenres and assigns it to the SeriesGenres field.

func (*GroupsSeriesListResponseV1) SetSeriesTitles ¶

SetSeriesTitles gets a reference to the given []GroupsSeriesListResponseV1SeriesTitles and assigns it to the SeriesTitles field.

func (GroupsSeriesListResponseV1) ToMap ¶

func (o GroupsSeriesListResponseV1) ToMap() (map[string]interface{}, error)

type GroupsSeriesListResponseV1SeriesCategories ¶

type GroupsSeriesListResponseV1SeriesCategories struct {
	Category *string `json:"category,omitempty"`
	Votes    *int64  `json:"votes,omitempty"`
}

GroupsSeriesListResponseV1SeriesCategories struct for GroupsSeriesListResponseV1SeriesCategories

func NewGroupsSeriesListResponseV1SeriesCategories ¶

func NewGroupsSeriesListResponseV1SeriesCategories() *GroupsSeriesListResponseV1SeriesCategories

NewGroupsSeriesListResponseV1SeriesCategories instantiates a new GroupsSeriesListResponseV1SeriesCategories object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsSeriesListResponseV1SeriesCategoriesWithDefaults ¶

func NewGroupsSeriesListResponseV1SeriesCategoriesWithDefaults() *GroupsSeriesListResponseV1SeriesCategories

NewGroupsSeriesListResponseV1SeriesCategoriesWithDefaults instantiates a new GroupsSeriesListResponseV1SeriesCategories object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsSeriesListResponseV1SeriesCategories) GetCategory ¶

GetCategory returns the Category field value if set, zero value otherwise.

func (*GroupsSeriesListResponseV1SeriesCategories) GetCategoryOk ¶

GetCategoryOk returns a tuple with the Category field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsSeriesListResponseV1SeriesCategories) GetVotes ¶

GetVotes returns the Votes field value if set, zero value otherwise.

func (*GroupsSeriesListResponseV1SeriesCategories) GetVotesOk ¶

GetVotesOk returns a tuple with the Votes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsSeriesListResponseV1SeriesCategories) HasCategory ¶

HasCategory returns a boolean if a field has been set.

func (*GroupsSeriesListResponseV1SeriesCategories) HasVotes ¶

HasVotes returns a boolean if a field has been set.

func (GroupsSeriesListResponseV1SeriesCategories) MarshalJSON ¶

func (*GroupsSeriesListResponseV1SeriesCategories) SetCategory ¶

SetCategory gets a reference to the given string and assigns it to the Category field.

func (*GroupsSeriesListResponseV1SeriesCategories) SetVotes ¶

SetVotes gets a reference to the given int64 and assigns it to the Votes field.

func (GroupsSeriesListResponseV1SeriesCategories) ToMap ¶

func (o GroupsSeriesListResponseV1SeriesCategories) ToMap() (map[string]interface{}, error)

type GroupsSeriesListResponseV1SeriesGenres ¶

type GroupsSeriesListResponseV1SeriesGenres struct {
	Genre *string `json:"genre,omitempty"`
	Count *int64  `json:"count,omitempty"`
}

GroupsSeriesListResponseV1SeriesGenres struct for GroupsSeriesListResponseV1SeriesGenres

func NewGroupsSeriesListResponseV1SeriesGenres ¶

func NewGroupsSeriesListResponseV1SeriesGenres() *GroupsSeriesListResponseV1SeriesGenres

NewGroupsSeriesListResponseV1SeriesGenres instantiates a new GroupsSeriesListResponseV1SeriesGenres object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsSeriesListResponseV1SeriesGenresWithDefaults ¶

func NewGroupsSeriesListResponseV1SeriesGenresWithDefaults() *GroupsSeriesListResponseV1SeriesGenres

NewGroupsSeriesListResponseV1SeriesGenresWithDefaults instantiates a new GroupsSeriesListResponseV1SeriesGenres object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsSeriesListResponseV1SeriesGenres) GetCount ¶

GetCount returns the Count field value if set, zero value otherwise.

func (*GroupsSeriesListResponseV1SeriesGenres) GetCountOk ¶

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsSeriesListResponseV1SeriesGenres) GetGenre ¶

GetGenre returns the Genre field value if set, zero value otherwise.

func (*GroupsSeriesListResponseV1SeriesGenres) GetGenreOk ¶

GetGenreOk returns a tuple with the Genre field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsSeriesListResponseV1SeriesGenres) HasCount ¶

HasCount returns a boolean if a field has been set.

func (*GroupsSeriesListResponseV1SeriesGenres) HasGenre ¶

HasGenre returns a boolean if a field has been set.

func (GroupsSeriesListResponseV1SeriesGenres) MarshalJSON ¶

func (o GroupsSeriesListResponseV1SeriesGenres) MarshalJSON() ([]byte, error)

func (*GroupsSeriesListResponseV1SeriesGenres) SetCount ¶

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*GroupsSeriesListResponseV1SeriesGenres) SetGenre ¶

SetGenre gets a reference to the given string and assigns it to the Genre field.

func (GroupsSeriesListResponseV1SeriesGenres) ToMap ¶

func (o GroupsSeriesListResponseV1SeriesGenres) ToMap() (map[string]interface{}, error)

type GroupsSeriesListResponseV1SeriesTitles ¶

type GroupsSeriesListResponseV1SeriesTitles struct {
	Title       *string `json:"title,omitempty"`
	SeriesId    *int64  `json:"series_id,omitempty"`
	LastUpdated *TimeV1 `json:"last_updated,omitempty"`
}

GroupsSeriesListResponseV1SeriesTitles struct for GroupsSeriesListResponseV1SeriesTitles

func NewGroupsSeriesListResponseV1SeriesTitles ¶

func NewGroupsSeriesListResponseV1SeriesTitles() *GroupsSeriesListResponseV1SeriesTitles

NewGroupsSeriesListResponseV1SeriesTitles instantiates a new GroupsSeriesListResponseV1SeriesTitles object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsSeriesListResponseV1SeriesTitlesWithDefaults ¶

func NewGroupsSeriesListResponseV1SeriesTitlesWithDefaults() *GroupsSeriesListResponseV1SeriesTitles

NewGroupsSeriesListResponseV1SeriesTitlesWithDefaults instantiates a new GroupsSeriesListResponseV1SeriesTitles object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsSeriesListResponseV1SeriesTitles) GetLastUpdated ¶

func (o *GroupsSeriesListResponseV1SeriesTitles) GetLastUpdated() TimeV1

GetLastUpdated returns the LastUpdated field value if set, zero value otherwise.

func (*GroupsSeriesListResponseV1SeriesTitles) GetLastUpdatedOk ¶

func (o *GroupsSeriesListResponseV1SeriesTitles) GetLastUpdatedOk() (*TimeV1, bool)

GetLastUpdatedOk returns a tuple with the LastUpdated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsSeriesListResponseV1SeriesTitles) GetSeriesId ¶

GetSeriesId returns the SeriesId field value if set, zero value otherwise.

func (*GroupsSeriesListResponseV1SeriesTitles) GetSeriesIdOk ¶

func (o *GroupsSeriesListResponseV1SeriesTitles) GetSeriesIdOk() (*int64, bool)

GetSeriesIdOk returns a tuple with the SeriesId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsSeriesListResponseV1SeriesTitles) GetTitle ¶

GetTitle returns the Title field value if set, zero value otherwise.

func (*GroupsSeriesListResponseV1SeriesTitles) GetTitleOk ¶

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsSeriesListResponseV1SeriesTitles) HasLastUpdated ¶

func (o *GroupsSeriesListResponseV1SeriesTitles) HasLastUpdated() bool

HasLastUpdated returns a boolean if a field has been set.

func (*GroupsSeriesListResponseV1SeriesTitles) HasSeriesId ¶

HasSeriesId returns a boolean if a field has been set.

func (*GroupsSeriesListResponseV1SeriesTitles) HasTitle ¶

HasTitle returns a boolean if a field has been set.

func (GroupsSeriesListResponseV1SeriesTitles) MarshalJSON ¶

func (o GroupsSeriesListResponseV1SeriesTitles) MarshalJSON() ([]byte, error)

func (*GroupsSeriesListResponseV1SeriesTitles) SetLastUpdated ¶

func (o *GroupsSeriesListResponseV1SeriesTitles) SetLastUpdated(v TimeV1)

SetLastUpdated gets a reference to the given TimeV1 and assigns it to the LastUpdated field.

func (*GroupsSeriesListResponseV1SeriesTitles) SetSeriesId ¶

SetSeriesId gets a reference to the given int64 and assigns it to the SeriesId field.

func (*GroupsSeriesListResponseV1SeriesTitles) SetTitle ¶

SetTitle gets a reference to the given string and assigns it to the Title field.

func (GroupsSeriesListResponseV1SeriesTitles) ToMap ¶

func (o GroupsSeriesListResponseV1SeriesTitles) ToMap() (map[string]interface{}, error)

type ImageModelV1 ¶

type ImageModelV1 struct {
	Url    *ImageModelV1Url `json:"url,omitempty"`
	Height *int64           `json:"height,omitempty"`
	Width  *int64           `json:"width,omitempty"`
}

ImageModelV1 struct for ImageModelV1

func NewImageModelV1 ¶

func NewImageModelV1() *ImageModelV1

NewImageModelV1 instantiates a new ImageModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewImageModelV1WithDefaults ¶

func NewImageModelV1WithDefaults() *ImageModelV1

NewImageModelV1WithDefaults instantiates a new ImageModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ImageModelV1) GetHeight ¶

func (o *ImageModelV1) GetHeight() int64

GetHeight returns the Height field value if set, zero value otherwise.

func (*ImageModelV1) GetHeightOk ¶

func (o *ImageModelV1) GetHeightOk() (*int64, bool)

GetHeightOk returns a tuple with the Height field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ImageModelV1) GetUrl ¶

func (o *ImageModelV1) GetUrl() ImageModelV1Url

GetUrl returns the Url field value if set, zero value otherwise.

func (*ImageModelV1) GetUrlOk ¶

func (o *ImageModelV1) GetUrlOk() (*ImageModelV1Url, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ImageModelV1) GetWidth ¶

func (o *ImageModelV1) GetWidth() int64

GetWidth returns the Width field value if set, zero value otherwise.

func (*ImageModelV1) GetWidthOk ¶

func (o *ImageModelV1) GetWidthOk() (*int64, bool)

GetWidthOk returns a tuple with the Width field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ImageModelV1) HasHeight ¶

func (o *ImageModelV1) HasHeight() bool

HasHeight returns a boolean if a field has been set.

func (*ImageModelV1) HasUrl ¶

func (o *ImageModelV1) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (*ImageModelV1) HasWidth ¶

func (o *ImageModelV1) HasWidth() bool

HasWidth returns a boolean if a field has been set.

func (ImageModelV1) MarshalJSON ¶

func (o ImageModelV1) MarshalJSON() ([]byte, error)

func (*ImageModelV1) SetHeight ¶

func (o *ImageModelV1) SetHeight(v int64)

SetHeight gets a reference to the given int64 and assigns it to the Height field.

func (*ImageModelV1) SetUrl ¶

func (o *ImageModelV1) SetUrl(v ImageModelV1Url)

SetUrl gets a reference to the given ImageModelV1Url and assigns it to the Url field.

func (*ImageModelV1) SetWidth ¶

func (o *ImageModelV1) SetWidth(v int64)

SetWidth gets a reference to the given int64 and assigns it to the Width field.

func (ImageModelV1) ToMap ¶

func (o ImageModelV1) ToMap() (map[string]interface{}, error)

type ImageModelV1Url ¶

type ImageModelV1Url struct {
	Original *string `json:"original,omitempty"`
	Thumb    *string `json:"thumb,omitempty"`
}

ImageModelV1Url struct for ImageModelV1Url

func NewImageModelV1Url ¶

func NewImageModelV1Url() *ImageModelV1Url

NewImageModelV1Url instantiates a new ImageModelV1Url object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewImageModelV1UrlWithDefaults ¶

func NewImageModelV1UrlWithDefaults() *ImageModelV1Url

NewImageModelV1UrlWithDefaults instantiates a new ImageModelV1Url object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ImageModelV1Url) GetOriginal ¶

func (o *ImageModelV1Url) GetOriginal() string

GetOriginal returns the Original field value if set, zero value otherwise.

func (*ImageModelV1Url) GetOriginalOk ¶

func (o *ImageModelV1Url) GetOriginalOk() (*string, bool)

GetOriginalOk returns a tuple with the Original field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ImageModelV1Url) GetThumb ¶

func (o *ImageModelV1Url) GetThumb() string

GetThumb returns the Thumb field value if set, zero value otherwise.

func (*ImageModelV1Url) GetThumbOk ¶

func (o *ImageModelV1Url) GetThumbOk() (*string, bool)

GetThumbOk returns a tuple with the Thumb field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ImageModelV1Url) HasOriginal ¶

func (o *ImageModelV1Url) HasOriginal() bool

HasOriginal returns a boolean if a field has been set.

func (*ImageModelV1Url) HasThumb ¶

func (o *ImageModelV1Url) HasThumb() bool

HasThumb returns a boolean if a field has been set.

func (ImageModelV1Url) MarshalJSON ¶

func (o ImageModelV1Url) MarshalJSON() ([]byte, error)

func (*ImageModelV1Url) SetOriginal ¶

func (o *ImageModelV1Url) SetOriginal(v string)

SetOriginal gets a reference to the given string and assigns it to the Original field.

func (*ImageModelV1Url) SetThumb ¶

func (o *ImageModelV1Url) SetThumb(v string)

SetThumb gets a reference to the given string and assigns it to the Thumb field.

func (ImageModelV1Url) ToMap ¶

func (o ImageModelV1Url) ToMap() (map[string]interface{}, error)

type ListsAPIService ¶

type ListsAPIService service

ListsAPIService ListsAPI service

func (*ListsAPIService) AddCustomList ¶

AddCustomList add a custom user list

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAddCustomListRequest

func (*ListsAPIService) AddCustomListExecute ¶

func (a *ListsAPIService) AddCustomListExecute(r ApiAddCustomListRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ListsAPIService) AddListSeries ¶

AddListSeries add a series to a list

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAddListSeriesRequest

func (*ListsAPIService) AddListSeriesBulk ¶

func (a *ListsAPIService) AddListSeriesBulk(ctx context.Context, id int64) ApiAddListSeriesBulkRequest

AddListSeriesBulk add a list of series to a list

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of list
@return ApiAddListSeriesBulkRequest

func (*ListsAPIService) AddListSeriesBulkExecute ¶

func (a *ListsAPIService) AddListSeriesBulkExecute(r ApiAddListSeriesBulkRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ListsAPIService) AddListSeriesExecute ¶

func (a *ListsAPIService) AddListSeriesExecute(r ApiAddListSeriesRequest) (*http.Response, error)

Execute executes the request

func (*ListsAPIService) DeleteCustomList ¶

func (a *ListsAPIService) DeleteCustomList(ctx context.Context, id int64) ApiDeleteCustomListRequest

DeleteCustomList remove a custom list

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of list
@return ApiDeleteCustomListRequest

func (*ListsAPIService) DeleteCustomListExecute ¶

func (a *ListsAPIService) DeleteCustomListExecute(r ApiDeleteCustomListRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ListsAPIService) DeleteListSeries ¶

func (a *ListsAPIService) DeleteListSeries(ctx context.Context) ApiDeleteListSeriesRequest

DeleteListSeries remove a series from a list

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeleteListSeriesRequest

func (*ListsAPIService) DeleteListSeriesExecute ¶

func (a *ListsAPIService) DeleteListSeriesExecute(r ApiDeleteListSeriesRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ListsAPIService) RetrieveListById ¶

func (a *ListsAPIService) RetrieveListById(ctx context.Context, id int64) ApiRetrieveListByIdRequest

RetrieveListById retrieve list metadata and options

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id List id
@return ApiRetrieveListByIdRequest

func (*ListsAPIService) RetrieveListByIdExecute ¶

func (a *ListsAPIService) RetrieveListByIdExecute(r ApiRetrieveListByIdRequest) (*ListsModelV1, *http.Response, error)

Execute executes the request

@return ListsModelV1

func (*ListsAPIService) RetrieveListSeries ¶

func (a *ListsAPIService) RetrieveListSeries(ctx context.Context, seriesId int64) ApiRetrieveListSeriesRequest

RetrieveListSeries retrieve list series item

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param seriesId Series id
@return ApiRetrieveListSeriesRequest

func (*ListsAPIService) RetrieveListSeriesExecute ¶

func (a *ListsAPIService) RetrieveListSeriesExecute(r ApiRetrieveListSeriesRequest) (*ListsSeriesModelV1, *http.Response, error)

Execute executes the request

@return ListsSeriesModelV1

func (*ListsAPIService) RetrieveLists ¶

RetrieveLists retrieve list of user lists

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiRetrieveListsRequest

func (*ListsAPIService) RetrieveListsExecute ¶

func (a *ListsAPIService) RetrieveListsExecute(r ApiRetrieveListsRequest) ([]ListsModelV1, *http.Response, error)

Execute executes the request

@return []ListsModelV1

func (*ListsAPIService) RetrievePublicListStats ¶

func (a *ListsAPIService) RetrievePublicListStats(ctx context.Context, userId int64) ApiRetrievePublicListStatsRequest

RetrievePublicListStats retrieve stats for user public lists

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userId User id
@return ApiRetrievePublicListStatsRequest

func (*ListsAPIService) RetrievePublicListStatsExecute ¶

Execute executes the request

@return ListsPublicStatsModelV1

func (*ListsAPIService) RetrievePublicLists ¶

func (a *ListsAPIService) RetrievePublicLists(ctx context.Context, userId int64) ApiRetrievePublicListsRequest

RetrievePublicLists retrieve list of user lists

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userId User id
@return ApiRetrievePublicListsRequest

func (*ListsAPIService) RetrievePublicListsExecute ¶

func (a *ListsAPIService) RetrievePublicListsExecute(r ApiRetrievePublicListsRequest) ([]ListsModelV1, *http.Response, error)

Execute executes the request

@return []ListsModelV1

func (*ListsAPIService) RetrieveSimilarUsersBySeries ¶

func (a *ListsAPIService) RetrieveSimilarUsersBySeries(ctx context.Context, listName string, seriesId int64) ApiRetrieveSimilarUsersBySeriesRequest

RetrieveSimilarUsersBySeries retrieve users who have similar interests based on series

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param listName name of list
@param seriesId Series id
@return ApiRetrieveSimilarUsersBySeriesRequest

func (*ListsAPIService) RetrieveSimilarUsersBySeriesExecute ¶

Execute executes the request

@return ListsSimilarUsersResponseV1

func (*ListsAPIService) SearchListsPost ¶

func (a *ListsAPIService) SearchListsPost(ctx context.Context, id int64) ApiSearchListsPostRequest

SearchListsPost search lists

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id list id to search
@return ApiSearchListsPostRequest

func (*ListsAPIService) SearchListsPostExecute ¶

Execute executes the request

@return ListsSearchResponseV1

func (*ListsAPIService) SearchPublicListsPost ¶

func (a *ListsAPIService) SearchPublicListsPost(ctx context.Context, userId int64, id int64) ApiSearchPublicListsPostRequest

SearchPublicListsPost search lists

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userId User id
@param id list id to search
@return ApiSearchPublicListsPostRequest

func (*ListsAPIService) SearchPublicListsPostExecute ¶

Execute executes the request

@return ListsPublicSearchResponseV1

func (*ListsAPIService) UpdateList ¶

func (a *ListsAPIService) UpdateList(ctx context.Context, id int64) ApiUpdateListRequest

UpdateList update a user list

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of list
@return ApiUpdateListRequest

func (*ListsAPIService) UpdateListExecute ¶

func (a *ListsAPIService) UpdateListExecute(r ApiUpdateListRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ListsAPIService) UpdateListSeries ¶

func (a *ListsAPIService) UpdateListSeries(ctx context.Context) ApiUpdateListSeriesRequest

UpdateListSeries update a series list item

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUpdateListSeriesRequest

func (*ListsAPIService) UpdateListSeriesExecute ¶

func (a *ListsAPIService) UpdateListSeriesExecute(r ApiUpdateListSeriesRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

type ListsBulkAddModelV1 ¶

type ListsBulkAddModelV1 struct {
	Priority    *string `json:"priority,omitempty"`
	SeriesTitle *string `json:"series_title,omitempty"`
}

ListsBulkAddModelV1 struct for ListsBulkAddModelV1

func NewListsBulkAddModelV1 ¶

func NewListsBulkAddModelV1() *ListsBulkAddModelV1

NewListsBulkAddModelV1 instantiates a new ListsBulkAddModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListsBulkAddModelV1WithDefaults ¶

func NewListsBulkAddModelV1WithDefaults() *ListsBulkAddModelV1

NewListsBulkAddModelV1WithDefaults instantiates a new ListsBulkAddModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListsBulkAddModelV1) GetPriority ¶

func (o *ListsBulkAddModelV1) GetPriority() string

GetPriority returns the Priority field value if set, zero value otherwise.

func (*ListsBulkAddModelV1) GetPriorityOk ¶

func (o *ListsBulkAddModelV1) GetPriorityOk() (*string, bool)

GetPriorityOk returns a tuple with the Priority field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsBulkAddModelV1) GetSeriesTitle ¶

func (o *ListsBulkAddModelV1) GetSeriesTitle() string

GetSeriesTitle returns the SeriesTitle field value if set, zero value otherwise.

func (*ListsBulkAddModelV1) GetSeriesTitleOk ¶

func (o *ListsBulkAddModelV1) GetSeriesTitleOk() (*string, bool)

GetSeriesTitleOk returns a tuple with the SeriesTitle field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsBulkAddModelV1) HasPriority ¶

func (o *ListsBulkAddModelV1) HasPriority() bool

HasPriority returns a boolean if a field has been set.

func (*ListsBulkAddModelV1) HasSeriesTitle ¶

func (o *ListsBulkAddModelV1) HasSeriesTitle() bool

HasSeriesTitle returns a boolean if a field has been set.

func (ListsBulkAddModelV1) MarshalJSON ¶

func (o ListsBulkAddModelV1) MarshalJSON() ([]byte, error)

func (*ListsBulkAddModelV1) SetPriority ¶

func (o *ListsBulkAddModelV1) SetPriority(v string)

SetPriority gets a reference to the given string and assigns it to the Priority field.

func (*ListsBulkAddModelV1) SetSeriesTitle ¶

func (o *ListsBulkAddModelV1) SetSeriesTitle(v string)

SetSeriesTitle gets a reference to the given string and assigns it to the SeriesTitle field.

func (ListsBulkAddModelV1) ToMap ¶

func (o ListsBulkAddModelV1) ToMap() (map[string]interface{}, error)

type ListsModelUpdateV1 ¶

type ListsModelUpdateV1 struct {
	Title       *string                    `json:"title,omitempty"`
	Description *string                    `json:"description,omitempty"`
	Type        *string                    `json:"type,omitempty"`
	Icon        *string                    `json:"icon,omitempty"`
	Options     *ListsModelUpdateV1Options `json:"options,omitempty"`
}

ListsModelUpdateV1 struct for ListsModelUpdateV1

func NewListsModelUpdateV1 ¶

func NewListsModelUpdateV1() *ListsModelUpdateV1

NewListsModelUpdateV1 instantiates a new ListsModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListsModelUpdateV1WithDefaults ¶

func NewListsModelUpdateV1WithDefaults() *ListsModelUpdateV1

NewListsModelUpdateV1WithDefaults instantiates a new ListsModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListsModelUpdateV1) GetDescription ¶

func (o *ListsModelUpdateV1) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ListsModelUpdateV1) GetDescriptionOk ¶

func (o *ListsModelUpdateV1) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsModelUpdateV1) GetIcon ¶

func (o *ListsModelUpdateV1) GetIcon() string

GetIcon returns the Icon field value if set, zero value otherwise.

func (*ListsModelUpdateV1) GetIconOk ¶

func (o *ListsModelUpdateV1) GetIconOk() (*string, bool)

GetIconOk returns a tuple with the Icon field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsModelUpdateV1) GetOptions ¶

GetOptions returns the Options field value if set, zero value otherwise.

func (*ListsModelUpdateV1) GetOptionsOk ¶

func (o *ListsModelUpdateV1) GetOptionsOk() (*ListsModelUpdateV1Options, bool)

GetOptionsOk returns a tuple with the Options field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsModelUpdateV1) GetTitle ¶

func (o *ListsModelUpdateV1) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*ListsModelUpdateV1) GetTitleOk ¶

func (o *ListsModelUpdateV1) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsModelUpdateV1) GetType ¶

func (o *ListsModelUpdateV1) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ListsModelUpdateV1) GetTypeOk ¶

func (o *ListsModelUpdateV1) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsModelUpdateV1) HasDescription ¶

func (o *ListsModelUpdateV1) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ListsModelUpdateV1) HasIcon ¶

func (o *ListsModelUpdateV1) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (*ListsModelUpdateV1) HasOptions ¶

func (o *ListsModelUpdateV1) HasOptions() bool

HasOptions returns a boolean if a field has been set.

func (*ListsModelUpdateV1) HasTitle ¶

func (o *ListsModelUpdateV1) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*ListsModelUpdateV1) HasType ¶

func (o *ListsModelUpdateV1) HasType() bool

HasType returns a boolean if a field has been set.

func (ListsModelUpdateV1) MarshalJSON ¶

func (o ListsModelUpdateV1) MarshalJSON() ([]byte, error)

func (*ListsModelUpdateV1) SetDescription ¶

func (o *ListsModelUpdateV1) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ListsModelUpdateV1) SetIcon ¶

func (o *ListsModelUpdateV1) SetIcon(v string)

SetIcon gets a reference to the given string and assigns it to the Icon field.

func (*ListsModelUpdateV1) SetOptions ¶

SetOptions gets a reference to the given ListsModelUpdateV1Options and assigns it to the Options field.

func (*ListsModelUpdateV1) SetTitle ¶

func (o *ListsModelUpdateV1) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*ListsModelUpdateV1) SetType ¶

func (o *ListsModelUpdateV1) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (ListsModelUpdateV1) ToMap ¶

func (o ListsModelUpdateV1) ToMap() (map[string]interface{}, error)

type ListsModelUpdateV1Options ¶

type ListsModelUpdateV1Options struct {
	Public            *bool   `json:"public,omitempty"`
	Sort              *string `json:"sort,omitempty"`
	ShowRating        *bool   `json:"show_rating,omitempty"`
	ShowStatus        *bool   `json:"show_status,omitempty"`
	ShowComment       *string `json:"show_comment,omitempty"`
	ShowPerPage       *int64  `json:"show_per_page,omitempty"`
	ShowLatestChapter *bool   `json:"show_latest_chapter,omitempty"`
}

ListsModelUpdateV1Options struct for ListsModelUpdateV1Options

func NewListsModelUpdateV1Options ¶

func NewListsModelUpdateV1Options() *ListsModelUpdateV1Options

NewListsModelUpdateV1Options instantiates a new ListsModelUpdateV1Options object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListsModelUpdateV1OptionsWithDefaults ¶

func NewListsModelUpdateV1OptionsWithDefaults() *ListsModelUpdateV1Options

NewListsModelUpdateV1OptionsWithDefaults instantiates a new ListsModelUpdateV1Options object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListsModelUpdateV1Options) GetPublic ¶

func (o *ListsModelUpdateV1Options) GetPublic() bool

GetPublic returns the Public field value if set, zero value otherwise.

func (*ListsModelUpdateV1Options) GetPublicOk ¶

func (o *ListsModelUpdateV1Options) GetPublicOk() (*bool, bool)

GetPublicOk returns a tuple with the Public field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsModelUpdateV1Options) GetShowComment ¶

func (o *ListsModelUpdateV1Options) GetShowComment() string

GetShowComment returns the ShowComment field value if set, zero value otherwise.

func (*ListsModelUpdateV1Options) GetShowCommentOk ¶

func (o *ListsModelUpdateV1Options) GetShowCommentOk() (*string, bool)

GetShowCommentOk returns a tuple with the ShowComment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsModelUpdateV1Options) GetShowLatestChapter ¶

func (o *ListsModelUpdateV1Options) GetShowLatestChapter() bool

GetShowLatestChapter returns the ShowLatestChapter field value if set, zero value otherwise.

func (*ListsModelUpdateV1Options) GetShowLatestChapterOk ¶

func (o *ListsModelUpdateV1Options) GetShowLatestChapterOk() (*bool, bool)

GetShowLatestChapterOk returns a tuple with the ShowLatestChapter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsModelUpdateV1Options) GetShowPerPage ¶

func (o *ListsModelUpdateV1Options) GetShowPerPage() int64

GetShowPerPage returns the ShowPerPage field value if set, zero value otherwise.

func (*ListsModelUpdateV1Options) GetShowPerPageOk ¶

func (o *ListsModelUpdateV1Options) GetShowPerPageOk() (*int64, bool)

GetShowPerPageOk returns a tuple with the ShowPerPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsModelUpdateV1Options) GetShowRating ¶

func (o *ListsModelUpdateV1Options) GetShowRating() bool

GetShowRating returns the ShowRating field value if set, zero value otherwise.

func (*ListsModelUpdateV1Options) GetShowRatingOk ¶

func (o *ListsModelUpdateV1Options) GetShowRatingOk() (*bool, bool)

GetShowRatingOk returns a tuple with the ShowRating field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsModelUpdateV1Options) GetShowStatus ¶

func (o *ListsModelUpdateV1Options) GetShowStatus() bool

GetShowStatus returns the ShowStatus field value if set, zero value otherwise.

func (*ListsModelUpdateV1Options) GetShowStatusOk ¶

func (o *ListsModelUpdateV1Options) GetShowStatusOk() (*bool, bool)

GetShowStatusOk returns a tuple with the ShowStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsModelUpdateV1Options) GetSort ¶

func (o *ListsModelUpdateV1Options) GetSort() string

GetSort returns the Sort field value if set, zero value otherwise.

func (*ListsModelUpdateV1Options) GetSortOk ¶

func (o *ListsModelUpdateV1Options) GetSortOk() (*string, bool)

GetSortOk returns a tuple with the Sort field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsModelUpdateV1Options) HasPublic ¶

func (o *ListsModelUpdateV1Options) HasPublic() bool

HasPublic returns a boolean if a field has been set.

func (*ListsModelUpdateV1Options) HasShowComment ¶

func (o *ListsModelUpdateV1Options) HasShowComment() bool

HasShowComment returns a boolean if a field has been set.

func (*ListsModelUpdateV1Options) HasShowLatestChapter ¶

func (o *ListsModelUpdateV1Options) HasShowLatestChapter() bool

HasShowLatestChapter returns a boolean if a field has been set.

func (*ListsModelUpdateV1Options) HasShowPerPage ¶

func (o *ListsModelUpdateV1Options) HasShowPerPage() bool

HasShowPerPage returns a boolean if a field has been set.

func (*ListsModelUpdateV1Options) HasShowRating ¶

func (o *ListsModelUpdateV1Options) HasShowRating() bool

HasShowRating returns a boolean if a field has been set.

func (*ListsModelUpdateV1Options) HasShowStatus ¶

func (o *ListsModelUpdateV1Options) HasShowStatus() bool

HasShowStatus returns a boolean if a field has been set.

func (*ListsModelUpdateV1Options) HasSort ¶

func (o *ListsModelUpdateV1Options) HasSort() bool

HasSort returns a boolean if a field has been set.

func (ListsModelUpdateV1Options) MarshalJSON ¶

func (o ListsModelUpdateV1Options) MarshalJSON() ([]byte, error)

func (*ListsModelUpdateV1Options) SetPublic ¶

func (o *ListsModelUpdateV1Options) SetPublic(v bool)

SetPublic gets a reference to the given bool and assigns it to the Public field.

func (*ListsModelUpdateV1Options) SetShowComment ¶

func (o *ListsModelUpdateV1Options) SetShowComment(v string)

SetShowComment gets a reference to the given string and assigns it to the ShowComment field.

func (*ListsModelUpdateV1Options) SetShowLatestChapter ¶

func (o *ListsModelUpdateV1Options) SetShowLatestChapter(v bool)

SetShowLatestChapter gets a reference to the given bool and assigns it to the ShowLatestChapter field.

func (*ListsModelUpdateV1Options) SetShowPerPage ¶

func (o *ListsModelUpdateV1Options) SetShowPerPage(v int64)

SetShowPerPage gets a reference to the given int64 and assigns it to the ShowPerPage field.

func (*ListsModelUpdateV1Options) SetShowRating ¶

func (o *ListsModelUpdateV1Options) SetShowRating(v bool)

SetShowRating gets a reference to the given bool and assigns it to the ShowRating field.

func (*ListsModelUpdateV1Options) SetShowStatus ¶

func (o *ListsModelUpdateV1Options) SetShowStatus(v bool)

SetShowStatus gets a reference to the given bool and assigns it to the ShowStatus field.

func (*ListsModelUpdateV1Options) SetSort ¶

func (o *ListsModelUpdateV1Options) SetSort(v string)

SetSort gets a reference to the given string and assigns it to the Sort field.

func (ListsModelUpdateV1Options) ToMap ¶

func (o ListsModelUpdateV1Options) ToMap() (map[string]interface{}, error)

type ListsModelV1 ¶

type ListsModelV1 struct {
	ListId      *int64               `json:"list_id,omitempty"`
	Title       *string              `json:"title,omitempty"`
	Description *string              `json:"description,omitempty"`
	Type        *string              `json:"type,omitempty"`
	Icon        *string              `json:"icon,omitempty"`
	Custom      *bool                `json:"custom,omitempty"`
	Options     *ListsModelV1Options `json:"options,omitempty"`
}

ListsModelV1 struct for ListsModelV1

func NewListsModelV1 ¶

func NewListsModelV1() *ListsModelV1

NewListsModelV1 instantiates a new ListsModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListsModelV1WithDefaults ¶

func NewListsModelV1WithDefaults() *ListsModelV1

NewListsModelV1WithDefaults instantiates a new ListsModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListsModelV1) GetCustom ¶

func (o *ListsModelV1) GetCustom() bool

GetCustom returns the Custom field value if set, zero value otherwise.

func (*ListsModelV1) GetCustomOk ¶

func (o *ListsModelV1) GetCustomOk() (*bool, bool)

GetCustomOk returns a tuple with the Custom field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsModelV1) GetDescription ¶

func (o *ListsModelV1) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ListsModelV1) GetDescriptionOk ¶

func (o *ListsModelV1) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsModelV1) GetIcon ¶

func (o *ListsModelV1) GetIcon() string

GetIcon returns the Icon field value if set, zero value otherwise.

func (*ListsModelV1) GetIconOk ¶

func (o *ListsModelV1) GetIconOk() (*string, bool)

GetIconOk returns a tuple with the Icon field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsModelV1) GetListId ¶

func (o *ListsModelV1) GetListId() int64

GetListId returns the ListId field value if set, zero value otherwise.

func (*ListsModelV1) GetListIdOk ¶

func (o *ListsModelV1) GetListIdOk() (*int64, bool)

GetListIdOk returns a tuple with the ListId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsModelV1) GetOptions ¶

func (o *ListsModelV1) GetOptions() ListsModelV1Options

GetOptions returns the Options field value if set, zero value otherwise.

func (*ListsModelV1) GetOptionsOk ¶

func (o *ListsModelV1) GetOptionsOk() (*ListsModelV1Options, bool)

GetOptionsOk returns a tuple with the Options field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsModelV1) GetTitle ¶

func (o *ListsModelV1) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*ListsModelV1) GetTitleOk ¶

func (o *ListsModelV1) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsModelV1) GetType ¶

func (o *ListsModelV1) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ListsModelV1) GetTypeOk ¶

func (o *ListsModelV1) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsModelV1) HasCustom ¶

func (o *ListsModelV1) HasCustom() bool

HasCustom returns a boolean if a field has been set.

func (*ListsModelV1) HasDescription ¶

func (o *ListsModelV1) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ListsModelV1) HasIcon ¶

func (o *ListsModelV1) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (*ListsModelV1) HasListId ¶

func (o *ListsModelV1) HasListId() bool

HasListId returns a boolean if a field has been set.

func (*ListsModelV1) HasOptions ¶

func (o *ListsModelV1) HasOptions() bool

HasOptions returns a boolean if a field has been set.

func (*ListsModelV1) HasTitle ¶

func (o *ListsModelV1) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*ListsModelV1) HasType ¶

func (o *ListsModelV1) HasType() bool

HasType returns a boolean if a field has been set.

func (ListsModelV1) MarshalJSON ¶

func (o ListsModelV1) MarshalJSON() ([]byte, error)

func (*ListsModelV1) SetCustom ¶

func (o *ListsModelV1) SetCustom(v bool)

SetCustom gets a reference to the given bool and assigns it to the Custom field.

func (*ListsModelV1) SetDescription ¶

func (o *ListsModelV1) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ListsModelV1) SetIcon ¶

func (o *ListsModelV1) SetIcon(v string)

SetIcon gets a reference to the given string and assigns it to the Icon field.

func (*ListsModelV1) SetListId ¶

func (o *ListsModelV1) SetListId(v int64)

SetListId gets a reference to the given int64 and assigns it to the ListId field.

func (*ListsModelV1) SetOptions ¶

func (o *ListsModelV1) SetOptions(v ListsModelV1Options)

SetOptions gets a reference to the given ListsModelV1Options and assigns it to the Options field.

func (*ListsModelV1) SetTitle ¶

func (o *ListsModelV1) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*ListsModelV1) SetType ¶

func (o *ListsModelV1) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (ListsModelV1) ToMap ¶

func (o ListsModelV1) ToMap() (map[string]interface{}, error)

type ListsModelV1Options ¶

type ListsModelV1Options struct {
	Public            *bool   `json:"public,omitempty"`
	Sort              *string `json:"sort,omitempty"`
	ShowRating        *bool   `json:"show_rating,omitempty"`
	ShowStatus        *bool   `json:"show_status,omitempty"`
	ShowComment       *string `json:"show_comment,omitempty"`
	ShowPerPage       *int64  `json:"show_per_page,omitempty"`
	ShowLatestChapter *bool   `json:"show_latest_chapter,omitempty"`
}

ListsModelV1Options struct for ListsModelV1Options

func NewListsModelV1Options ¶

func NewListsModelV1Options() *ListsModelV1Options

NewListsModelV1Options instantiates a new ListsModelV1Options object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListsModelV1OptionsWithDefaults ¶

func NewListsModelV1OptionsWithDefaults() *ListsModelV1Options

NewListsModelV1OptionsWithDefaults instantiates a new ListsModelV1Options object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListsModelV1Options) GetPublic ¶

func (o *ListsModelV1Options) GetPublic() bool

GetPublic returns the Public field value if set, zero value otherwise.

func (*ListsModelV1Options) GetPublicOk ¶

func (o *ListsModelV1Options) GetPublicOk() (*bool, bool)

GetPublicOk returns a tuple with the Public field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsModelV1Options) GetShowComment ¶

func (o *ListsModelV1Options) GetShowComment() string

GetShowComment returns the ShowComment field value if set, zero value otherwise.

func (*ListsModelV1Options) GetShowCommentOk ¶

func (o *ListsModelV1Options) GetShowCommentOk() (*string, bool)

GetShowCommentOk returns a tuple with the ShowComment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsModelV1Options) GetShowLatestChapter ¶

func (o *ListsModelV1Options) GetShowLatestChapter() bool

GetShowLatestChapter returns the ShowLatestChapter field value if set, zero value otherwise.

func (*ListsModelV1Options) GetShowLatestChapterOk ¶

func (o *ListsModelV1Options) GetShowLatestChapterOk() (*bool, bool)

GetShowLatestChapterOk returns a tuple with the ShowLatestChapter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsModelV1Options) GetShowPerPage ¶

func (o *ListsModelV1Options) GetShowPerPage() int64

GetShowPerPage returns the ShowPerPage field value if set, zero value otherwise.

func (*ListsModelV1Options) GetShowPerPageOk ¶

func (o *ListsModelV1Options) GetShowPerPageOk() (*int64, bool)

GetShowPerPageOk returns a tuple with the ShowPerPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsModelV1Options) GetShowRating ¶

func (o *ListsModelV1Options) GetShowRating() bool

GetShowRating returns the ShowRating field value if set, zero value otherwise.

func (*ListsModelV1Options) GetShowRatingOk ¶

func (o *ListsModelV1Options) GetShowRatingOk() (*bool, bool)

GetShowRatingOk returns a tuple with the ShowRating field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsModelV1Options) GetShowStatus ¶

func (o *ListsModelV1Options) GetShowStatus() bool

GetShowStatus returns the ShowStatus field value if set, zero value otherwise.

func (*ListsModelV1Options) GetShowStatusOk ¶

func (o *ListsModelV1Options) GetShowStatusOk() (*bool, bool)

GetShowStatusOk returns a tuple with the ShowStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsModelV1Options) GetSort ¶

func (o *ListsModelV1Options) GetSort() string

GetSort returns the Sort field value if set, zero value otherwise.

func (*ListsModelV1Options) GetSortOk ¶

func (o *ListsModelV1Options) GetSortOk() (*string, bool)

GetSortOk returns a tuple with the Sort field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsModelV1Options) HasPublic ¶

func (o *ListsModelV1Options) HasPublic() bool

HasPublic returns a boolean if a field has been set.

func (*ListsModelV1Options) HasShowComment ¶

func (o *ListsModelV1Options) HasShowComment() bool

HasShowComment returns a boolean if a field has been set.

func (*ListsModelV1Options) HasShowLatestChapter ¶

func (o *ListsModelV1Options) HasShowLatestChapter() bool

HasShowLatestChapter returns a boolean if a field has been set.

func (*ListsModelV1Options) HasShowPerPage ¶

func (o *ListsModelV1Options) HasShowPerPage() bool

HasShowPerPage returns a boolean if a field has been set.

func (*ListsModelV1Options) HasShowRating ¶

func (o *ListsModelV1Options) HasShowRating() bool

HasShowRating returns a boolean if a field has been set.

func (*ListsModelV1Options) HasShowStatus ¶

func (o *ListsModelV1Options) HasShowStatus() bool

HasShowStatus returns a boolean if a field has been set.

func (*ListsModelV1Options) HasSort ¶

func (o *ListsModelV1Options) HasSort() bool

HasSort returns a boolean if a field has been set.

func (ListsModelV1Options) MarshalJSON ¶

func (o ListsModelV1Options) MarshalJSON() ([]byte, error)

func (*ListsModelV1Options) SetPublic ¶

func (o *ListsModelV1Options) SetPublic(v bool)

SetPublic gets a reference to the given bool and assigns it to the Public field.

func (*ListsModelV1Options) SetShowComment ¶

func (o *ListsModelV1Options) SetShowComment(v string)

SetShowComment gets a reference to the given string and assigns it to the ShowComment field.

func (*ListsModelV1Options) SetShowLatestChapter ¶

func (o *ListsModelV1Options) SetShowLatestChapter(v bool)

SetShowLatestChapter gets a reference to the given bool and assigns it to the ShowLatestChapter field.

func (*ListsModelV1Options) SetShowPerPage ¶

func (o *ListsModelV1Options) SetShowPerPage(v int64)

SetShowPerPage gets a reference to the given int64 and assigns it to the ShowPerPage field.

func (*ListsModelV1Options) SetShowRating ¶

func (o *ListsModelV1Options) SetShowRating(v bool)

SetShowRating gets a reference to the given bool and assigns it to the ShowRating field.

func (*ListsModelV1Options) SetShowStatus ¶

func (o *ListsModelV1Options) SetShowStatus(v bool)

SetShowStatus gets a reference to the given bool and assigns it to the ShowStatus field.

func (*ListsModelV1Options) SetSort ¶

func (o *ListsModelV1Options) SetSort(v string)

SetSort gets a reference to the given string and assigns it to the Sort field.

func (ListsModelV1Options) ToMap ¶

func (o ListsModelV1Options) ToMap() (map[string]interface{}, error)

type ListsPublicSearchResponseV1 ¶

type ListsPublicSearchResponseV1 struct {
	TotalHits *int64                               `json:"total_hits,omitempty"`
	Page      *int64                               `json:"page,omitempty"`
	PerPage   *int64                               `json:"per_page,omitempty"`
	List      *ListsModelV1                        `json:"list,omitempty"`
	Results   []ListsPublicSearchResponseV1Results `json:"results,omitempty"`
}

ListsPublicSearchResponseV1 struct for ListsPublicSearchResponseV1

func NewListsPublicSearchResponseV1 ¶

func NewListsPublicSearchResponseV1() *ListsPublicSearchResponseV1

NewListsPublicSearchResponseV1 instantiates a new ListsPublicSearchResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListsPublicSearchResponseV1WithDefaults ¶

func NewListsPublicSearchResponseV1WithDefaults() *ListsPublicSearchResponseV1

NewListsPublicSearchResponseV1WithDefaults instantiates a new ListsPublicSearchResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListsPublicSearchResponseV1) GetList ¶

GetList returns the List field value if set, zero value otherwise.

func (*ListsPublicSearchResponseV1) GetListOk ¶

func (o *ListsPublicSearchResponseV1) GetListOk() (*ListsModelV1, bool)

GetListOk returns a tuple with the List field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsPublicSearchResponseV1) GetPage ¶

func (o *ListsPublicSearchResponseV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*ListsPublicSearchResponseV1) GetPageOk ¶

func (o *ListsPublicSearchResponseV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsPublicSearchResponseV1) GetPerPage ¶

func (o *ListsPublicSearchResponseV1) GetPerPage() int64

GetPerPage returns the PerPage field value if set, zero value otherwise.

func (*ListsPublicSearchResponseV1) GetPerPageOk ¶

func (o *ListsPublicSearchResponseV1) GetPerPageOk() (*int64, bool)

GetPerPageOk returns a tuple with the PerPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsPublicSearchResponseV1) GetResults ¶

GetResults returns the Results field value if set, zero value otherwise.

func (*ListsPublicSearchResponseV1) GetResultsOk ¶

GetResultsOk returns a tuple with the Results field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsPublicSearchResponseV1) GetTotalHits ¶

func (o *ListsPublicSearchResponseV1) GetTotalHits() int64

GetTotalHits returns the TotalHits field value if set, zero value otherwise.

func (*ListsPublicSearchResponseV1) GetTotalHitsOk ¶

func (o *ListsPublicSearchResponseV1) GetTotalHitsOk() (*int64, bool)

GetTotalHitsOk returns a tuple with the TotalHits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsPublicSearchResponseV1) HasList ¶

func (o *ListsPublicSearchResponseV1) HasList() bool

HasList returns a boolean if a field has been set.

func (*ListsPublicSearchResponseV1) HasPage ¶

func (o *ListsPublicSearchResponseV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*ListsPublicSearchResponseV1) HasPerPage ¶

func (o *ListsPublicSearchResponseV1) HasPerPage() bool

HasPerPage returns a boolean if a field has been set.

func (*ListsPublicSearchResponseV1) HasResults ¶

func (o *ListsPublicSearchResponseV1) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*ListsPublicSearchResponseV1) HasTotalHits ¶

func (o *ListsPublicSearchResponseV1) HasTotalHits() bool

HasTotalHits returns a boolean if a field has been set.

func (ListsPublicSearchResponseV1) MarshalJSON ¶

func (o ListsPublicSearchResponseV1) MarshalJSON() ([]byte, error)

func (*ListsPublicSearchResponseV1) SetList ¶

SetList gets a reference to the given ListsModelV1 and assigns it to the List field.

func (*ListsPublicSearchResponseV1) SetPage ¶

func (o *ListsPublicSearchResponseV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*ListsPublicSearchResponseV1) SetPerPage ¶

func (o *ListsPublicSearchResponseV1) SetPerPage(v int64)

SetPerPage gets a reference to the given int64 and assigns it to the PerPage field.

func (*ListsPublicSearchResponseV1) SetResults ¶

SetResults gets a reference to the given []ListsPublicSearchResponseV1Results and assigns it to the Results field.

func (*ListsPublicSearchResponseV1) SetTotalHits ¶

func (o *ListsPublicSearchResponseV1) SetTotalHits(v int64)

SetTotalHits gets a reference to the given int64 and assigns it to the TotalHits field.

func (ListsPublicSearchResponseV1) ToMap ¶

func (o ListsPublicSearchResponseV1) ToMap() (map[string]interface{}, error)

type ListsPublicSearchResponseV1Results ¶

type ListsPublicSearchResponseV1Results struct {
	SeriesId    *int64                                      `json:"series_id,omitempty"`
	SeriesTitle *string                                     `json:"series_title,omitempty"`
	Volume      *int64                                      `json:"volume,omitempty"`
	Chapter     *int64                                      `json:"chapter,omitempty"`
	Metadata    *ListsPublicSearchResponseV1ResultsMetadata `json:"metadata,omitempty"`
}

ListsPublicSearchResponseV1Results struct for ListsPublicSearchResponseV1Results

func NewListsPublicSearchResponseV1Results ¶

func NewListsPublicSearchResponseV1Results() *ListsPublicSearchResponseV1Results

NewListsPublicSearchResponseV1Results instantiates a new ListsPublicSearchResponseV1Results object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListsPublicSearchResponseV1ResultsWithDefaults ¶

func NewListsPublicSearchResponseV1ResultsWithDefaults() *ListsPublicSearchResponseV1Results

NewListsPublicSearchResponseV1ResultsWithDefaults instantiates a new ListsPublicSearchResponseV1Results object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListsPublicSearchResponseV1Results) GetChapter ¶

func (o *ListsPublicSearchResponseV1Results) GetChapter() int64

GetChapter returns the Chapter field value if set, zero value otherwise.

func (*ListsPublicSearchResponseV1Results) GetChapterOk ¶

func (o *ListsPublicSearchResponseV1Results) GetChapterOk() (*int64, bool)

GetChapterOk returns a tuple with the Chapter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsPublicSearchResponseV1Results) GetMetadata ¶

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ListsPublicSearchResponseV1Results) GetMetadataOk ¶

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsPublicSearchResponseV1Results) GetSeriesId ¶

func (o *ListsPublicSearchResponseV1Results) GetSeriesId() int64

GetSeriesId returns the SeriesId field value if set, zero value otherwise.

func (*ListsPublicSearchResponseV1Results) GetSeriesIdOk ¶

func (o *ListsPublicSearchResponseV1Results) GetSeriesIdOk() (*int64, bool)

GetSeriesIdOk returns a tuple with the SeriesId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsPublicSearchResponseV1Results) GetSeriesTitle ¶

func (o *ListsPublicSearchResponseV1Results) GetSeriesTitle() string

GetSeriesTitle returns the SeriesTitle field value if set, zero value otherwise.

func (*ListsPublicSearchResponseV1Results) GetSeriesTitleOk ¶

func (o *ListsPublicSearchResponseV1Results) GetSeriesTitleOk() (*string, bool)

GetSeriesTitleOk returns a tuple with the SeriesTitle field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsPublicSearchResponseV1Results) GetVolume ¶

GetVolume returns the Volume field value if set, zero value otherwise.

func (*ListsPublicSearchResponseV1Results) GetVolumeOk ¶

func (o *ListsPublicSearchResponseV1Results) GetVolumeOk() (*int64, bool)

GetVolumeOk returns a tuple with the Volume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsPublicSearchResponseV1Results) HasChapter ¶

func (o *ListsPublicSearchResponseV1Results) HasChapter() bool

HasChapter returns a boolean if a field has been set.

func (*ListsPublicSearchResponseV1Results) HasMetadata ¶

func (o *ListsPublicSearchResponseV1Results) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ListsPublicSearchResponseV1Results) HasSeriesId ¶

func (o *ListsPublicSearchResponseV1Results) HasSeriesId() bool

HasSeriesId returns a boolean if a field has been set.

func (*ListsPublicSearchResponseV1Results) HasSeriesTitle ¶

func (o *ListsPublicSearchResponseV1Results) HasSeriesTitle() bool

HasSeriesTitle returns a boolean if a field has been set.

func (*ListsPublicSearchResponseV1Results) HasVolume ¶

HasVolume returns a boolean if a field has been set.

func (ListsPublicSearchResponseV1Results) MarshalJSON ¶

func (o ListsPublicSearchResponseV1Results) MarshalJSON() ([]byte, error)

func (*ListsPublicSearchResponseV1Results) SetChapter ¶

func (o *ListsPublicSearchResponseV1Results) SetChapter(v int64)

SetChapter gets a reference to the given int64 and assigns it to the Chapter field.

func (*ListsPublicSearchResponseV1Results) SetMetadata ¶

SetMetadata gets a reference to the given ListsPublicSearchResponseV1ResultsMetadata and assigns it to the Metadata field.

func (*ListsPublicSearchResponseV1Results) SetSeriesId ¶

func (o *ListsPublicSearchResponseV1Results) SetSeriesId(v int64)

SetSeriesId gets a reference to the given int64 and assigns it to the SeriesId field.

func (*ListsPublicSearchResponseV1Results) SetSeriesTitle ¶

func (o *ListsPublicSearchResponseV1Results) SetSeriesTitle(v string)

SetSeriesTitle gets a reference to the given string and assigns it to the SeriesTitle field.

func (*ListsPublicSearchResponseV1Results) SetVolume ¶

func (o *ListsPublicSearchResponseV1Results) SetVolume(v int64)

SetVolume gets a reference to the given int64 and assigns it to the Volume field.

func (ListsPublicSearchResponseV1Results) ToMap ¶

func (o ListsPublicSearchResponseV1Results) ToMap() (map[string]interface{}, error)

type ListsPublicSearchResponseV1ResultsMetadata ¶

type ListsPublicSearchResponseV1ResultsMetadata struct {
	UserRating  *float32                                               `json:"user_rating,omitempty"`
	UserComment *ListsPublicSearchResponseV1ResultsMetadataUserComment `json:"user_comment,omitempty"`
	UserList    *ListsSeriesModelV1                                    `json:"user_list,omitempty"`
}

ListsPublicSearchResponseV1ResultsMetadata struct for ListsPublicSearchResponseV1ResultsMetadata

func NewListsPublicSearchResponseV1ResultsMetadata ¶

func NewListsPublicSearchResponseV1ResultsMetadata() *ListsPublicSearchResponseV1ResultsMetadata

NewListsPublicSearchResponseV1ResultsMetadata instantiates a new ListsPublicSearchResponseV1ResultsMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListsPublicSearchResponseV1ResultsMetadataWithDefaults ¶

func NewListsPublicSearchResponseV1ResultsMetadataWithDefaults() *ListsPublicSearchResponseV1ResultsMetadata

NewListsPublicSearchResponseV1ResultsMetadataWithDefaults instantiates a new ListsPublicSearchResponseV1ResultsMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListsPublicSearchResponseV1ResultsMetadata) GetUserComment ¶

GetUserComment returns the UserComment field value if set, zero value otherwise.

func (*ListsPublicSearchResponseV1ResultsMetadata) GetUserCommentOk ¶

GetUserCommentOk returns a tuple with the UserComment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsPublicSearchResponseV1ResultsMetadata) GetUserList ¶

GetUserList returns the UserList field value if set, zero value otherwise.

func (*ListsPublicSearchResponseV1ResultsMetadata) GetUserListOk ¶

GetUserListOk returns a tuple with the UserList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsPublicSearchResponseV1ResultsMetadata) GetUserRating ¶

GetUserRating returns the UserRating field value if set, zero value otherwise.

func (*ListsPublicSearchResponseV1ResultsMetadata) GetUserRatingOk ¶

func (o *ListsPublicSearchResponseV1ResultsMetadata) GetUserRatingOk() (*float32, bool)

GetUserRatingOk returns a tuple with the UserRating field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsPublicSearchResponseV1ResultsMetadata) HasUserComment ¶

HasUserComment returns a boolean if a field has been set.

func (*ListsPublicSearchResponseV1ResultsMetadata) HasUserList ¶

HasUserList returns a boolean if a field has been set.

func (*ListsPublicSearchResponseV1ResultsMetadata) HasUserRating ¶

HasUserRating returns a boolean if a field has been set.

func (ListsPublicSearchResponseV1ResultsMetadata) MarshalJSON ¶

func (*ListsPublicSearchResponseV1ResultsMetadata) SetUserComment ¶

SetUserComment gets a reference to the given ListsPublicSearchResponseV1ResultsMetadataUserComment and assigns it to the UserComment field.

func (*ListsPublicSearchResponseV1ResultsMetadata) SetUserList ¶

SetUserList gets a reference to the given ListsSeriesModelV1 and assigns it to the UserList field.

func (*ListsPublicSearchResponseV1ResultsMetadata) SetUserRating ¶

SetUserRating gets a reference to the given float32 and assigns it to the UserRating field.

func (ListsPublicSearchResponseV1ResultsMetadata) ToMap ¶

func (o ListsPublicSearchResponseV1ResultsMetadata) ToMap() (map[string]interface{}, error)

type ListsPublicSearchResponseV1ResultsMetadataUserComment ¶

type ListsPublicSearchResponseV1ResultsMetadataUserComment struct {
	CommentId      *int64  `json:"comment_id,omitempty"`
	CommentPreview *string `json:"comment_preview,omitempty"`
}

ListsPublicSearchResponseV1ResultsMetadataUserComment struct for ListsPublicSearchResponseV1ResultsMetadataUserComment

func NewListsPublicSearchResponseV1ResultsMetadataUserComment ¶

func NewListsPublicSearchResponseV1ResultsMetadataUserComment() *ListsPublicSearchResponseV1ResultsMetadataUserComment

NewListsPublicSearchResponseV1ResultsMetadataUserComment instantiates a new ListsPublicSearchResponseV1ResultsMetadataUserComment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListsPublicSearchResponseV1ResultsMetadataUserCommentWithDefaults ¶

func NewListsPublicSearchResponseV1ResultsMetadataUserCommentWithDefaults() *ListsPublicSearchResponseV1ResultsMetadataUserComment

NewListsPublicSearchResponseV1ResultsMetadataUserCommentWithDefaults instantiates a new ListsPublicSearchResponseV1ResultsMetadataUserComment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListsPublicSearchResponseV1ResultsMetadataUserComment) GetCommentId ¶

GetCommentId returns the CommentId field value if set, zero value otherwise.

func (*ListsPublicSearchResponseV1ResultsMetadataUserComment) GetCommentIdOk ¶

GetCommentIdOk returns a tuple with the CommentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsPublicSearchResponseV1ResultsMetadataUserComment) GetCommentPreview ¶

GetCommentPreview returns the CommentPreview field value if set, zero value otherwise.

func (*ListsPublicSearchResponseV1ResultsMetadataUserComment) GetCommentPreviewOk ¶

GetCommentPreviewOk returns a tuple with the CommentPreview field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsPublicSearchResponseV1ResultsMetadataUserComment) HasCommentId ¶

HasCommentId returns a boolean if a field has been set.

func (*ListsPublicSearchResponseV1ResultsMetadataUserComment) HasCommentPreview ¶

HasCommentPreview returns a boolean if a field has been set.

func (ListsPublicSearchResponseV1ResultsMetadataUserComment) MarshalJSON ¶

func (*ListsPublicSearchResponseV1ResultsMetadataUserComment) SetCommentId ¶

SetCommentId gets a reference to the given int64 and assigns it to the CommentId field.

func (*ListsPublicSearchResponseV1ResultsMetadataUserComment) SetCommentPreview ¶

SetCommentPreview gets a reference to the given string and assigns it to the CommentPreview field.

func (ListsPublicSearchResponseV1ResultsMetadataUserComment) ToMap ¶

type ListsPublicStatsModelV1 ¶

type ListsPublicStatsModelV1 struct {
	Genres []ListsPublicStatsModelV1Genres `json:"genres,omitempty"`
}

ListsPublicStatsModelV1 struct for ListsPublicStatsModelV1

func NewListsPublicStatsModelV1 ¶

func NewListsPublicStatsModelV1() *ListsPublicStatsModelV1

NewListsPublicStatsModelV1 instantiates a new ListsPublicStatsModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListsPublicStatsModelV1WithDefaults ¶

func NewListsPublicStatsModelV1WithDefaults() *ListsPublicStatsModelV1

NewListsPublicStatsModelV1WithDefaults instantiates a new ListsPublicStatsModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListsPublicStatsModelV1) GetGenres ¶

GetGenres returns the Genres field value if set, zero value otherwise.

func (*ListsPublicStatsModelV1) GetGenresOk ¶

GetGenresOk returns a tuple with the Genres field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsPublicStatsModelV1) HasGenres ¶

func (o *ListsPublicStatsModelV1) HasGenres() bool

HasGenres returns a boolean if a field has been set.

func (ListsPublicStatsModelV1) MarshalJSON ¶

func (o ListsPublicStatsModelV1) MarshalJSON() ([]byte, error)

func (*ListsPublicStatsModelV1) SetGenres ¶

SetGenres gets a reference to the given []ListsPublicStatsModelV1Genres and assigns it to the Genres field.

func (ListsPublicStatsModelV1) ToMap ¶

func (o ListsPublicStatsModelV1) ToMap() (map[string]interface{}, error)

type ListsPublicStatsModelV1Genres ¶

type ListsPublicStatsModelV1Genres struct {
	GenreName *string `json:"genre_name,omitempty"`
	Count     *int64  `json:"count,omitempty"`
}

ListsPublicStatsModelV1Genres struct for ListsPublicStatsModelV1Genres

func NewListsPublicStatsModelV1Genres ¶

func NewListsPublicStatsModelV1Genres() *ListsPublicStatsModelV1Genres

NewListsPublicStatsModelV1Genres instantiates a new ListsPublicStatsModelV1Genres object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListsPublicStatsModelV1GenresWithDefaults ¶

func NewListsPublicStatsModelV1GenresWithDefaults() *ListsPublicStatsModelV1Genres

NewListsPublicStatsModelV1GenresWithDefaults instantiates a new ListsPublicStatsModelV1Genres object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListsPublicStatsModelV1Genres) GetCount ¶

func (o *ListsPublicStatsModelV1Genres) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*ListsPublicStatsModelV1Genres) GetCountOk ¶

func (o *ListsPublicStatsModelV1Genres) GetCountOk() (*int64, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsPublicStatsModelV1Genres) GetGenreName ¶

func (o *ListsPublicStatsModelV1Genres) GetGenreName() string

GetGenreName returns the GenreName field value if set, zero value otherwise.

func (*ListsPublicStatsModelV1Genres) GetGenreNameOk ¶

func (o *ListsPublicStatsModelV1Genres) GetGenreNameOk() (*string, bool)

GetGenreNameOk returns a tuple with the GenreName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsPublicStatsModelV1Genres) HasCount ¶

func (o *ListsPublicStatsModelV1Genres) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ListsPublicStatsModelV1Genres) HasGenreName ¶

func (o *ListsPublicStatsModelV1Genres) HasGenreName() bool

HasGenreName returns a boolean if a field has been set.

func (ListsPublicStatsModelV1Genres) MarshalJSON ¶

func (o ListsPublicStatsModelV1Genres) MarshalJSON() ([]byte, error)

func (*ListsPublicStatsModelV1Genres) SetCount ¶

func (o *ListsPublicStatsModelV1Genres) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ListsPublicStatsModelV1Genres) SetGenreName ¶

func (o *ListsPublicStatsModelV1Genres) SetGenreName(v string)

SetGenreName gets a reference to the given string and assigns it to the GenreName field.

func (ListsPublicStatsModelV1Genres) ToMap ¶

func (o ListsPublicStatsModelV1Genres) ToMap() (map[string]interface{}, error)

type ListsSearchRequestV1 ¶

type ListsSearchRequestV1 struct {
	Page    *int64 `json:"page,omitempty"`
	Perpage *int64 `json:"perpage,omitempty"`
}

ListsSearchRequestV1 struct for ListsSearchRequestV1

func NewListsSearchRequestV1 ¶

func NewListsSearchRequestV1() *ListsSearchRequestV1

NewListsSearchRequestV1 instantiates a new ListsSearchRequestV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListsSearchRequestV1WithDefaults ¶

func NewListsSearchRequestV1WithDefaults() *ListsSearchRequestV1

NewListsSearchRequestV1WithDefaults instantiates a new ListsSearchRequestV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListsSearchRequestV1) GetPage ¶

func (o *ListsSearchRequestV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*ListsSearchRequestV1) GetPageOk ¶

func (o *ListsSearchRequestV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSearchRequestV1) GetPerpage ¶

func (o *ListsSearchRequestV1) GetPerpage() int64

GetPerpage returns the Perpage field value if set, zero value otherwise.

func (*ListsSearchRequestV1) GetPerpageOk ¶

func (o *ListsSearchRequestV1) GetPerpageOk() (*int64, bool)

GetPerpageOk returns a tuple with the Perpage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSearchRequestV1) HasPage ¶

func (o *ListsSearchRequestV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*ListsSearchRequestV1) HasPerpage ¶

func (o *ListsSearchRequestV1) HasPerpage() bool

HasPerpage returns a boolean if a field has been set.

func (ListsSearchRequestV1) MarshalJSON ¶

func (o ListsSearchRequestV1) MarshalJSON() ([]byte, error)

func (*ListsSearchRequestV1) SetPage ¶

func (o *ListsSearchRequestV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*ListsSearchRequestV1) SetPerpage ¶

func (o *ListsSearchRequestV1) SetPerpage(v int64)

SetPerpage gets a reference to the given int64 and assigns it to the Perpage field.

func (ListsSearchRequestV1) ToMap ¶

func (o ListsSearchRequestV1) ToMap() (map[string]interface{}, error)

type ListsSearchResponseV1 ¶

type ListsSearchResponseV1 struct {
	TotalHits *int64                         `json:"total_hits,omitempty"`
	Page      *int64                         `json:"page,omitempty"`
	PerPage   *int64                         `json:"per_page,omitempty"`
	List      *ListsModelV1                  `json:"list,omitempty"`
	Results   []ListsSearchResponseV1Results `json:"results,omitempty"`
}

ListsSearchResponseV1 struct for ListsSearchResponseV1

func NewListsSearchResponseV1 ¶

func NewListsSearchResponseV1() *ListsSearchResponseV1

NewListsSearchResponseV1 instantiates a new ListsSearchResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListsSearchResponseV1WithDefaults ¶

func NewListsSearchResponseV1WithDefaults() *ListsSearchResponseV1

NewListsSearchResponseV1WithDefaults instantiates a new ListsSearchResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListsSearchResponseV1) GetList ¶

func (o *ListsSearchResponseV1) GetList() ListsModelV1

GetList returns the List field value if set, zero value otherwise.

func (*ListsSearchResponseV1) GetListOk ¶

func (o *ListsSearchResponseV1) GetListOk() (*ListsModelV1, bool)

GetListOk returns a tuple with the List field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSearchResponseV1) GetPage ¶

func (o *ListsSearchResponseV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*ListsSearchResponseV1) GetPageOk ¶

func (o *ListsSearchResponseV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSearchResponseV1) GetPerPage ¶

func (o *ListsSearchResponseV1) GetPerPage() int64

GetPerPage returns the PerPage field value if set, zero value otherwise.

func (*ListsSearchResponseV1) GetPerPageOk ¶

func (o *ListsSearchResponseV1) GetPerPageOk() (*int64, bool)

GetPerPageOk returns a tuple with the PerPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSearchResponseV1) GetResults ¶

GetResults returns the Results field value if set, zero value otherwise.

func (*ListsSearchResponseV1) GetResultsOk ¶

GetResultsOk returns a tuple with the Results field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSearchResponseV1) GetTotalHits ¶

func (o *ListsSearchResponseV1) GetTotalHits() int64

GetTotalHits returns the TotalHits field value if set, zero value otherwise.

func (*ListsSearchResponseV1) GetTotalHitsOk ¶

func (o *ListsSearchResponseV1) GetTotalHitsOk() (*int64, bool)

GetTotalHitsOk returns a tuple with the TotalHits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSearchResponseV1) HasList ¶

func (o *ListsSearchResponseV1) HasList() bool

HasList returns a boolean if a field has been set.

func (*ListsSearchResponseV1) HasPage ¶

func (o *ListsSearchResponseV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*ListsSearchResponseV1) HasPerPage ¶

func (o *ListsSearchResponseV1) HasPerPage() bool

HasPerPage returns a boolean if a field has been set.

func (*ListsSearchResponseV1) HasResults ¶

func (o *ListsSearchResponseV1) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*ListsSearchResponseV1) HasTotalHits ¶

func (o *ListsSearchResponseV1) HasTotalHits() bool

HasTotalHits returns a boolean if a field has been set.

func (ListsSearchResponseV1) MarshalJSON ¶

func (o ListsSearchResponseV1) MarshalJSON() ([]byte, error)

func (*ListsSearchResponseV1) SetList ¶

func (o *ListsSearchResponseV1) SetList(v ListsModelV1)

SetList gets a reference to the given ListsModelV1 and assigns it to the List field.

func (*ListsSearchResponseV1) SetPage ¶

func (o *ListsSearchResponseV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*ListsSearchResponseV1) SetPerPage ¶

func (o *ListsSearchResponseV1) SetPerPage(v int64)

SetPerPage gets a reference to the given int64 and assigns it to the PerPage field.

func (*ListsSearchResponseV1) SetResults ¶

SetResults gets a reference to the given []ListsSearchResponseV1Results and assigns it to the Results field.

func (*ListsSearchResponseV1) SetTotalHits ¶

func (o *ListsSearchResponseV1) SetTotalHits(v int64)

SetTotalHits gets a reference to the given int64 and assigns it to the TotalHits field.

func (ListsSearchResponseV1) ToMap ¶

func (o ListsSearchResponseV1) ToMap() (map[string]interface{}, error)

type ListsSearchResponseV1Results ¶

type ListsSearchResponseV1Results struct {
	Record   *ListsSeriesModelV1                   `json:"record,omitempty"`
	Metadata *ListsSearchResponseV1ResultsMetadata `json:"metadata,omitempty"`
}

ListsSearchResponseV1Results struct for ListsSearchResponseV1Results

func NewListsSearchResponseV1Results ¶

func NewListsSearchResponseV1Results() *ListsSearchResponseV1Results

NewListsSearchResponseV1Results instantiates a new ListsSearchResponseV1Results object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListsSearchResponseV1ResultsWithDefaults ¶

func NewListsSearchResponseV1ResultsWithDefaults() *ListsSearchResponseV1Results

NewListsSearchResponseV1ResultsWithDefaults instantiates a new ListsSearchResponseV1Results object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListsSearchResponseV1Results) GetMetadata ¶

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ListsSearchResponseV1Results) GetMetadataOk ¶

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSearchResponseV1Results) GetRecord ¶

GetRecord returns the Record field value if set, zero value otherwise.

func (*ListsSearchResponseV1Results) GetRecordOk ¶

GetRecordOk returns a tuple with the Record field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSearchResponseV1Results) HasMetadata ¶

func (o *ListsSearchResponseV1Results) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ListsSearchResponseV1Results) HasRecord ¶

func (o *ListsSearchResponseV1Results) HasRecord() bool

HasRecord returns a boolean if a field has been set.

func (ListsSearchResponseV1Results) MarshalJSON ¶

func (o ListsSearchResponseV1Results) MarshalJSON() ([]byte, error)

func (*ListsSearchResponseV1Results) SetMetadata ¶

SetMetadata gets a reference to the given ListsSearchResponseV1ResultsMetadata and assigns it to the Metadata field.

func (*ListsSearchResponseV1Results) SetRecord ¶

SetRecord gets a reference to the given ListsSeriesModelV1 and assigns it to the Record field.

func (ListsSearchResponseV1Results) ToMap ¶

func (o ListsSearchResponseV1Results) ToMap() (map[string]interface{}, error)

type ListsSearchResponseV1ResultsMetadata ¶

type ListsSearchResponseV1ResultsMetadata struct {
	Series     *SeriesModelSearchV1 `json:"series,omitempty"`
	UserRating *float32             `json:"user_rating,omitempty"`
}

ListsSearchResponseV1ResultsMetadata struct for ListsSearchResponseV1ResultsMetadata

func NewListsSearchResponseV1ResultsMetadata ¶

func NewListsSearchResponseV1ResultsMetadata() *ListsSearchResponseV1ResultsMetadata

NewListsSearchResponseV1ResultsMetadata instantiates a new ListsSearchResponseV1ResultsMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListsSearchResponseV1ResultsMetadataWithDefaults ¶

func NewListsSearchResponseV1ResultsMetadataWithDefaults() *ListsSearchResponseV1ResultsMetadata

NewListsSearchResponseV1ResultsMetadataWithDefaults instantiates a new ListsSearchResponseV1ResultsMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListsSearchResponseV1ResultsMetadata) GetSeries ¶

GetSeries returns the Series field value if set, zero value otherwise.

func (*ListsSearchResponseV1ResultsMetadata) GetSeriesOk ¶

GetSeriesOk returns a tuple with the Series field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSearchResponseV1ResultsMetadata) GetUserRating ¶

func (o *ListsSearchResponseV1ResultsMetadata) GetUserRating() float32

GetUserRating returns the UserRating field value if set, zero value otherwise.

func (*ListsSearchResponseV1ResultsMetadata) GetUserRatingOk ¶

func (o *ListsSearchResponseV1ResultsMetadata) GetUserRatingOk() (*float32, bool)

GetUserRatingOk returns a tuple with the UserRating field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSearchResponseV1ResultsMetadata) HasSeries ¶

HasSeries returns a boolean if a field has been set.

func (*ListsSearchResponseV1ResultsMetadata) HasUserRating ¶

func (o *ListsSearchResponseV1ResultsMetadata) HasUserRating() bool

HasUserRating returns a boolean if a field has been set.

func (ListsSearchResponseV1ResultsMetadata) MarshalJSON ¶

func (o ListsSearchResponseV1ResultsMetadata) MarshalJSON() ([]byte, error)

func (*ListsSearchResponseV1ResultsMetadata) SetSeries ¶

SetSeries gets a reference to the given SeriesModelSearchV1 and assigns it to the Series field.

func (*ListsSearchResponseV1ResultsMetadata) SetUserRating ¶

func (o *ListsSearchResponseV1ResultsMetadata) SetUserRating(v float32)

SetUserRating gets a reference to the given float32 and assigns it to the UserRating field.

func (ListsSearchResponseV1ResultsMetadata) ToMap ¶

func (o ListsSearchResponseV1ResultsMetadata) ToMap() (map[string]interface{}, error)

type ListsSeriesModelUpdateV1 ¶

type ListsSeriesModelUpdateV1 struct {
	Series   ListsSeriesModelUpdateV1Series  `json:"series"`
	ListId   *int64                          `json:"list_id,omitempty"`
	Status   *ListsSeriesModelUpdateV1Status `json:"status,omitempty"`
	Priority *int64                          `json:"priority,omitempty"`
}

ListsSeriesModelUpdateV1 struct for ListsSeriesModelUpdateV1

func NewListsSeriesModelUpdateV1 ¶

func NewListsSeriesModelUpdateV1(series ListsSeriesModelUpdateV1Series) *ListsSeriesModelUpdateV1

NewListsSeriesModelUpdateV1 instantiates a new ListsSeriesModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListsSeriesModelUpdateV1WithDefaults ¶

func NewListsSeriesModelUpdateV1WithDefaults() *ListsSeriesModelUpdateV1

NewListsSeriesModelUpdateV1WithDefaults instantiates a new ListsSeriesModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListsSeriesModelUpdateV1) GetListId ¶

func (o *ListsSeriesModelUpdateV1) GetListId() int64

GetListId returns the ListId field value if set, zero value otherwise.

func (*ListsSeriesModelUpdateV1) GetListIdOk ¶

func (o *ListsSeriesModelUpdateV1) GetListIdOk() (*int64, bool)

GetListIdOk returns a tuple with the ListId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSeriesModelUpdateV1) GetPriority ¶

func (o *ListsSeriesModelUpdateV1) GetPriority() int64

GetPriority returns the Priority field value if set, zero value otherwise.

func (*ListsSeriesModelUpdateV1) GetPriorityOk ¶

func (o *ListsSeriesModelUpdateV1) GetPriorityOk() (*int64, bool)

GetPriorityOk returns a tuple with the Priority field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSeriesModelUpdateV1) GetSeries ¶

GetSeries returns the Series field value

func (*ListsSeriesModelUpdateV1) GetSeriesOk ¶

GetSeriesOk returns a tuple with the Series field value and a boolean to check if the value has been set.

func (*ListsSeriesModelUpdateV1) GetStatus ¶

GetStatus returns the Status field value if set, zero value otherwise.

func (*ListsSeriesModelUpdateV1) GetStatusOk ¶

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSeriesModelUpdateV1) HasListId ¶

func (o *ListsSeriesModelUpdateV1) HasListId() bool

HasListId returns a boolean if a field has been set.

func (*ListsSeriesModelUpdateV1) HasPriority ¶

func (o *ListsSeriesModelUpdateV1) HasPriority() bool

HasPriority returns a boolean if a field has been set.

func (*ListsSeriesModelUpdateV1) HasStatus ¶

func (o *ListsSeriesModelUpdateV1) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ListsSeriesModelUpdateV1) MarshalJSON ¶

func (o ListsSeriesModelUpdateV1) MarshalJSON() ([]byte, error)

func (*ListsSeriesModelUpdateV1) SetListId ¶

func (o *ListsSeriesModelUpdateV1) SetListId(v int64)

SetListId gets a reference to the given int64 and assigns it to the ListId field.

func (*ListsSeriesModelUpdateV1) SetPriority ¶

func (o *ListsSeriesModelUpdateV1) SetPriority(v int64)

SetPriority gets a reference to the given int64 and assigns it to the Priority field.

func (*ListsSeriesModelUpdateV1) SetSeries ¶

SetSeries sets field value

func (*ListsSeriesModelUpdateV1) SetStatus ¶

SetStatus gets a reference to the given ListsSeriesModelUpdateV1Status and assigns it to the Status field.

func (ListsSeriesModelUpdateV1) ToMap ¶

func (o ListsSeriesModelUpdateV1) ToMap() (map[string]interface{}, error)

type ListsSeriesModelUpdateV1Series ¶

type ListsSeriesModelUpdateV1Series struct {
	Id    int64   `json:"id"`
	Title *string `json:"title,omitempty"`
}

ListsSeriesModelUpdateV1Series struct for ListsSeriesModelUpdateV1Series

func NewListsSeriesModelUpdateV1Series ¶

func NewListsSeriesModelUpdateV1Series(id int64) *ListsSeriesModelUpdateV1Series

NewListsSeriesModelUpdateV1Series instantiates a new ListsSeriesModelUpdateV1Series object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListsSeriesModelUpdateV1SeriesWithDefaults ¶

func NewListsSeriesModelUpdateV1SeriesWithDefaults() *ListsSeriesModelUpdateV1Series

NewListsSeriesModelUpdateV1SeriesWithDefaults instantiates a new ListsSeriesModelUpdateV1Series object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListsSeriesModelUpdateV1Series) GetId ¶

GetId returns the Id field value

func (*ListsSeriesModelUpdateV1Series) GetIdOk ¶

func (o *ListsSeriesModelUpdateV1Series) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ListsSeriesModelUpdateV1Series) GetTitle ¶

func (o *ListsSeriesModelUpdateV1Series) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*ListsSeriesModelUpdateV1Series) GetTitleOk ¶

func (o *ListsSeriesModelUpdateV1Series) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSeriesModelUpdateV1Series) HasTitle ¶

func (o *ListsSeriesModelUpdateV1Series) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (ListsSeriesModelUpdateV1Series) MarshalJSON ¶

func (o ListsSeriesModelUpdateV1Series) MarshalJSON() ([]byte, error)

func (*ListsSeriesModelUpdateV1Series) SetId ¶

SetId sets field value

func (*ListsSeriesModelUpdateV1Series) SetTitle ¶

func (o *ListsSeriesModelUpdateV1Series) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (ListsSeriesModelUpdateV1Series) ToMap ¶

func (o ListsSeriesModelUpdateV1Series) ToMap() (map[string]interface{}, error)

type ListsSeriesModelUpdateV1Status ¶

type ListsSeriesModelUpdateV1Status struct {
	Volume           *int64 `json:"volume,omitempty"`
	Chapter          *int64 `json:"chapter,omitempty"`
	IncrementVolume  *int64 `json:"increment_volume,omitempty"`
	IncrementChapter *int64 `json:"increment_chapter,omitempty"`
}

ListsSeriesModelUpdateV1Status struct for ListsSeriesModelUpdateV1Status

func NewListsSeriesModelUpdateV1Status ¶

func NewListsSeriesModelUpdateV1Status() *ListsSeriesModelUpdateV1Status

NewListsSeriesModelUpdateV1Status instantiates a new ListsSeriesModelUpdateV1Status object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListsSeriesModelUpdateV1StatusWithDefaults ¶

func NewListsSeriesModelUpdateV1StatusWithDefaults() *ListsSeriesModelUpdateV1Status

NewListsSeriesModelUpdateV1StatusWithDefaults instantiates a new ListsSeriesModelUpdateV1Status object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListsSeriesModelUpdateV1Status) GetChapter ¶

func (o *ListsSeriesModelUpdateV1Status) GetChapter() int64

GetChapter returns the Chapter field value if set, zero value otherwise.

func (*ListsSeriesModelUpdateV1Status) GetChapterOk ¶

func (o *ListsSeriesModelUpdateV1Status) GetChapterOk() (*int64, bool)

GetChapterOk returns a tuple with the Chapter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSeriesModelUpdateV1Status) GetIncrementChapter ¶

func (o *ListsSeriesModelUpdateV1Status) GetIncrementChapter() int64

GetIncrementChapter returns the IncrementChapter field value if set, zero value otherwise.

func (*ListsSeriesModelUpdateV1Status) GetIncrementChapterOk ¶

func (o *ListsSeriesModelUpdateV1Status) GetIncrementChapterOk() (*int64, bool)

GetIncrementChapterOk returns a tuple with the IncrementChapter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSeriesModelUpdateV1Status) GetIncrementVolume ¶

func (o *ListsSeriesModelUpdateV1Status) GetIncrementVolume() int64

GetIncrementVolume returns the IncrementVolume field value if set, zero value otherwise.

func (*ListsSeriesModelUpdateV1Status) GetIncrementVolumeOk ¶

func (o *ListsSeriesModelUpdateV1Status) GetIncrementVolumeOk() (*int64, bool)

GetIncrementVolumeOk returns a tuple with the IncrementVolume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSeriesModelUpdateV1Status) GetVolume ¶

func (o *ListsSeriesModelUpdateV1Status) GetVolume() int64

GetVolume returns the Volume field value if set, zero value otherwise.

func (*ListsSeriesModelUpdateV1Status) GetVolumeOk ¶

func (o *ListsSeriesModelUpdateV1Status) GetVolumeOk() (*int64, bool)

GetVolumeOk returns a tuple with the Volume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSeriesModelUpdateV1Status) HasChapter ¶

func (o *ListsSeriesModelUpdateV1Status) HasChapter() bool

HasChapter returns a boolean if a field has been set.

func (*ListsSeriesModelUpdateV1Status) HasIncrementChapter ¶

func (o *ListsSeriesModelUpdateV1Status) HasIncrementChapter() bool

HasIncrementChapter returns a boolean if a field has been set.

func (*ListsSeriesModelUpdateV1Status) HasIncrementVolume ¶

func (o *ListsSeriesModelUpdateV1Status) HasIncrementVolume() bool

HasIncrementVolume returns a boolean if a field has been set.

func (*ListsSeriesModelUpdateV1Status) HasVolume ¶

func (o *ListsSeriesModelUpdateV1Status) HasVolume() bool

HasVolume returns a boolean if a field has been set.

func (ListsSeriesModelUpdateV1Status) MarshalJSON ¶

func (o ListsSeriesModelUpdateV1Status) MarshalJSON() ([]byte, error)

func (*ListsSeriesModelUpdateV1Status) SetChapter ¶

func (o *ListsSeriesModelUpdateV1Status) SetChapter(v int64)

SetChapter gets a reference to the given int64 and assigns it to the Chapter field.

func (*ListsSeriesModelUpdateV1Status) SetIncrementChapter ¶

func (o *ListsSeriesModelUpdateV1Status) SetIncrementChapter(v int64)

SetIncrementChapter gets a reference to the given int64 and assigns it to the IncrementChapter field.

func (*ListsSeriesModelUpdateV1Status) SetIncrementVolume ¶

func (o *ListsSeriesModelUpdateV1Status) SetIncrementVolume(v int64)

SetIncrementVolume gets a reference to the given int64 and assigns it to the IncrementVolume field.

func (*ListsSeriesModelUpdateV1Status) SetVolume ¶

func (o *ListsSeriesModelUpdateV1Status) SetVolume(v int64)

SetVolume gets a reference to the given int64 and assigns it to the Volume field.

func (ListsSeriesModelUpdateV1Status) ToMap ¶

func (o ListsSeriesModelUpdateV1Status) ToMap() (map[string]interface{}, error)

type ListsSeriesModelV1 ¶

type ListsSeriesModelV1 struct {
	Series    ListsSeriesModelV1Series  `json:"series"`
	ListId    *int64                    `json:"list_id,omitempty"`
	ListType  *string                   `json:"list_type,omitempty"`
	ListIcon  *string                   `json:"list_icon,omitempty"`
	Status    *ListsSeriesModelV1Status `json:"status,omitempty"`
	Priority  *int64                    `json:"priority,omitempty"`
	TimeAdded *TimeV1                   `json:"time_added,omitempty"`
}

ListsSeriesModelV1 struct for ListsSeriesModelV1

func NewListsSeriesModelV1 ¶

func NewListsSeriesModelV1(series ListsSeriesModelV1Series) *ListsSeriesModelV1

NewListsSeriesModelV1 instantiates a new ListsSeriesModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListsSeriesModelV1WithDefaults ¶

func NewListsSeriesModelV1WithDefaults() *ListsSeriesModelV1

NewListsSeriesModelV1WithDefaults instantiates a new ListsSeriesModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListsSeriesModelV1) GetListIcon ¶

func (o *ListsSeriesModelV1) GetListIcon() string

GetListIcon returns the ListIcon field value if set, zero value otherwise.

func (*ListsSeriesModelV1) GetListIconOk ¶

func (o *ListsSeriesModelV1) GetListIconOk() (*string, bool)

GetListIconOk returns a tuple with the ListIcon field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSeriesModelV1) GetListId ¶

func (o *ListsSeriesModelV1) GetListId() int64

GetListId returns the ListId field value if set, zero value otherwise.

func (*ListsSeriesModelV1) GetListIdOk ¶

func (o *ListsSeriesModelV1) GetListIdOk() (*int64, bool)

GetListIdOk returns a tuple with the ListId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSeriesModelV1) GetListType ¶

func (o *ListsSeriesModelV1) GetListType() string

GetListType returns the ListType field value if set, zero value otherwise.

func (*ListsSeriesModelV1) GetListTypeOk ¶

func (o *ListsSeriesModelV1) GetListTypeOk() (*string, bool)

GetListTypeOk returns a tuple with the ListType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSeriesModelV1) GetPriority ¶

func (o *ListsSeriesModelV1) GetPriority() int64

GetPriority returns the Priority field value if set, zero value otherwise.

func (*ListsSeriesModelV1) GetPriorityOk ¶

func (o *ListsSeriesModelV1) GetPriorityOk() (*int64, bool)

GetPriorityOk returns a tuple with the Priority field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSeriesModelV1) GetSeries ¶

GetSeries returns the Series field value

func (*ListsSeriesModelV1) GetSeriesOk ¶

func (o *ListsSeriesModelV1) GetSeriesOk() (*ListsSeriesModelV1Series, bool)

GetSeriesOk returns a tuple with the Series field value and a boolean to check if the value has been set.

func (*ListsSeriesModelV1) GetStatus ¶

GetStatus returns the Status field value if set, zero value otherwise.

func (*ListsSeriesModelV1) GetStatusOk ¶

func (o *ListsSeriesModelV1) GetStatusOk() (*ListsSeriesModelV1Status, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSeriesModelV1) GetTimeAdded ¶

func (o *ListsSeriesModelV1) GetTimeAdded() TimeV1

GetTimeAdded returns the TimeAdded field value if set, zero value otherwise.

func (*ListsSeriesModelV1) GetTimeAddedOk ¶

func (o *ListsSeriesModelV1) GetTimeAddedOk() (*TimeV1, bool)

GetTimeAddedOk returns a tuple with the TimeAdded field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSeriesModelV1) HasListIcon ¶

func (o *ListsSeriesModelV1) HasListIcon() bool

HasListIcon returns a boolean if a field has been set.

func (*ListsSeriesModelV1) HasListId ¶

func (o *ListsSeriesModelV1) HasListId() bool

HasListId returns a boolean if a field has been set.

func (*ListsSeriesModelV1) HasListType ¶

func (o *ListsSeriesModelV1) HasListType() bool

HasListType returns a boolean if a field has been set.

func (*ListsSeriesModelV1) HasPriority ¶

func (o *ListsSeriesModelV1) HasPriority() bool

HasPriority returns a boolean if a field has been set.

func (*ListsSeriesModelV1) HasStatus ¶

func (o *ListsSeriesModelV1) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ListsSeriesModelV1) HasTimeAdded ¶

func (o *ListsSeriesModelV1) HasTimeAdded() bool

HasTimeAdded returns a boolean if a field has been set.

func (ListsSeriesModelV1) MarshalJSON ¶

func (o ListsSeriesModelV1) MarshalJSON() ([]byte, error)

func (*ListsSeriesModelV1) SetListIcon ¶

func (o *ListsSeriesModelV1) SetListIcon(v string)

SetListIcon gets a reference to the given string and assigns it to the ListIcon field.

func (*ListsSeriesModelV1) SetListId ¶

func (o *ListsSeriesModelV1) SetListId(v int64)

SetListId gets a reference to the given int64 and assigns it to the ListId field.

func (*ListsSeriesModelV1) SetListType ¶

func (o *ListsSeriesModelV1) SetListType(v string)

SetListType gets a reference to the given string and assigns it to the ListType field.

func (*ListsSeriesModelV1) SetPriority ¶

func (o *ListsSeriesModelV1) SetPriority(v int64)

SetPriority gets a reference to the given int64 and assigns it to the Priority field.

func (*ListsSeriesModelV1) SetSeries ¶

SetSeries sets field value

func (*ListsSeriesModelV1) SetStatus ¶

SetStatus gets a reference to the given ListsSeriesModelV1Status and assigns it to the Status field.

func (*ListsSeriesModelV1) SetTimeAdded ¶

func (o *ListsSeriesModelV1) SetTimeAdded(v TimeV1)

SetTimeAdded gets a reference to the given TimeV1 and assigns it to the TimeAdded field.

func (ListsSeriesModelV1) ToMap ¶

func (o ListsSeriesModelV1) ToMap() (map[string]interface{}, error)

type ListsSeriesModelV1Series ¶

type ListsSeriesModelV1Series struct {
	Id    int64   `json:"id"`
	Title *string `json:"title,omitempty"`
}

ListsSeriesModelV1Series struct for ListsSeriesModelV1Series

func NewListsSeriesModelV1Series ¶

func NewListsSeriesModelV1Series(id int64) *ListsSeriesModelV1Series

NewListsSeriesModelV1Series instantiates a new ListsSeriesModelV1Series object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListsSeriesModelV1SeriesWithDefaults ¶

func NewListsSeriesModelV1SeriesWithDefaults() *ListsSeriesModelV1Series

NewListsSeriesModelV1SeriesWithDefaults instantiates a new ListsSeriesModelV1Series object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListsSeriesModelV1Series) GetId ¶

func (o *ListsSeriesModelV1Series) GetId() int64

GetId returns the Id field value

func (*ListsSeriesModelV1Series) GetIdOk ¶

func (o *ListsSeriesModelV1Series) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ListsSeriesModelV1Series) GetTitle ¶

func (o *ListsSeriesModelV1Series) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*ListsSeriesModelV1Series) GetTitleOk ¶

func (o *ListsSeriesModelV1Series) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSeriesModelV1Series) HasTitle ¶

func (o *ListsSeriesModelV1Series) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (ListsSeriesModelV1Series) MarshalJSON ¶

func (o ListsSeriesModelV1Series) MarshalJSON() ([]byte, error)

func (*ListsSeriesModelV1Series) SetId ¶

func (o *ListsSeriesModelV1Series) SetId(v int64)

SetId sets field value

func (*ListsSeriesModelV1Series) SetTitle ¶

func (o *ListsSeriesModelV1Series) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (ListsSeriesModelV1Series) ToMap ¶

func (o ListsSeriesModelV1Series) ToMap() (map[string]interface{}, error)

type ListsSeriesModelV1Status ¶

type ListsSeriesModelV1Status struct {
	Volume  *int64 `json:"volume,omitempty"`
	Chapter *int64 `json:"chapter,omitempty"`
}

ListsSeriesModelV1Status struct for ListsSeriesModelV1Status

func NewListsSeriesModelV1Status ¶

func NewListsSeriesModelV1Status() *ListsSeriesModelV1Status

NewListsSeriesModelV1Status instantiates a new ListsSeriesModelV1Status object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListsSeriesModelV1StatusWithDefaults ¶

func NewListsSeriesModelV1StatusWithDefaults() *ListsSeriesModelV1Status

NewListsSeriesModelV1StatusWithDefaults instantiates a new ListsSeriesModelV1Status object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListsSeriesModelV1Status) GetChapter ¶

func (o *ListsSeriesModelV1Status) GetChapter() int64

GetChapter returns the Chapter field value if set, zero value otherwise.

func (*ListsSeriesModelV1Status) GetChapterOk ¶

func (o *ListsSeriesModelV1Status) GetChapterOk() (*int64, bool)

GetChapterOk returns a tuple with the Chapter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSeriesModelV1Status) GetVolume ¶

func (o *ListsSeriesModelV1Status) GetVolume() int64

GetVolume returns the Volume field value if set, zero value otherwise.

func (*ListsSeriesModelV1Status) GetVolumeOk ¶

func (o *ListsSeriesModelV1Status) GetVolumeOk() (*int64, bool)

GetVolumeOk returns a tuple with the Volume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSeriesModelV1Status) HasChapter ¶

func (o *ListsSeriesModelV1Status) HasChapter() bool

HasChapter returns a boolean if a field has been set.

func (*ListsSeriesModelV1Status) HasVolume ¶

func (o *ListsSeriesModelV1Status) HasVolume() bool

HasVolume returns a boolean if a field has been set.

func (ListsSeriesModelV1Status) MarshalJSON ¶

func (o ListsSeriesModelV1Status) MarshalJSON() ([]byte, error)

func (*ListsSeriesModelV1Status) SetChapter ¶

func (o *ListsSeriesModelV1Status) SetChapter(v int64)

SetChapter gets a reference to the given int64 and assigns it to the Chapter field.

func (*ListsSeriesModelV1Status) SetVolume ¶

func (o *ListsSeriesModelV1Status) SetVolume(v int64)

SetVolume gets a reference to the given int64 and assigns it to the Volume field.

func (ListsSeriesModelV1Status) ToMap ¶

func (o ListsSeriesModelV1Status) ToMap() (map[string]interface{}, error)

type ListsSimilarUsersResponseV1 ¶

type ListsSimilarUsersResponseV1 struct {
	TotalHits *int64                             `json:"total_hits,omitempty"`
	Users     []ListsSimilarUsersResponseV1Users `json:"users,omitempty"`
}

ListsSimilarUsersResponseV1 struct for ListsSimilarUsersResponseV1

func NewListsSimilarUsersResponseV1 ¶

func NewListsSimilarUsersResponseV1() *ListsSimilarUsersResponseV1

NewListsSimilarUsersResponseV1 instantiates a new ListsSimilarUsersResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListsSimilarUsersResponseV1WithDefaults ¶

func NewListsSimilarUsersResponseV1WithDefaults() *ListsSimilarUsersResponseV1

NewListsSimilarUsersResponseV1WithDefaults instantiates a new ListsSimilarUsersResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListsSimilarUsersResponseV1) GetTotalHits ¶

func (o *ListsSimilarUsersResponseV1) GetTotalHits() int64

GetTotalHits returns the TotalHits field value if set, zero value otherwise.

func (*ListsSimilarUsersResponseV1) GetTotalHitsOk ¶

func (o *ListsSimilarUsersResponseV1) GetTotalHitsOk() (*int64, bool)

GetTotalHitsOk returns a tuple with the TotalHits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSimilarUsersResponseV1) GetUsers ¶

GetUsers returns the Users field value if set, zero value otherwise.

func (*ListsSimilarUsersResponseV1) GetUsersOk ¶

GetUsersOk returns a tuple with the Users field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSimilarUsersResponseV1) HasTotalHits ¶

func (o *ListsSimilarUsersResponseV1) HasTotalHits() bool

HasTotalHits returns a boolean if a field has been set.

func (*ListsSimilarUsersResponseV1) HasUsers ¶

func (o *ListsSimilarUsersResponseV1) HasUsers() bool

HasUsers returns a boolean if a field has been set.

func (ListsSimilarUsersResponseV1) MarshalJSON ¶

func (o ListsSimilarUsersResponseV1) MarshalJSON() ([]byte, error)

func (*ListsSimilarUsersResponseV1) SetTotalHits ¶

func (o *ListsSimilarUsersResponseV1) SetTotalHits(v int64)

SetTotalHits gets a reference to the given int64 and assigns it to the TotalHits field.

func (*ListsSimilarUsersResponseV1) SetUsers ¶

SetUsers gets a reference to the given []ListsSimilarUsersResponseV1Users and assigns it to the Users field.

func (ListsSimilarUsersResponseV1) ToMap ¶

func (o ListsSimilarUsersResponseV1) ToMap() (map[string]interface{}, error)

type ListsSimilarUsersResponseV1Users ¶

type ListsSimilarUsersResponseV1Users struct {
	UserId         *int64   `json:"user_id,omitempty"`
	UserName       *string  `json:"user_name,omitempty"`
	UserRating     *float32 `json:"user_rating,omitempty"`
	IntersectCount *int64   `json:"intersect_count,omitempty"`
	PercentMatch   *int64   `json:"percent_match,omitempty"`
}

ListsSimilarUsersResponseV1Users struct for ListsSimilarUsersResponseV1Users

func NewListsSimilarUsersResponseV1Users ¶

func NewListsSimilarUsersResponseV1Users() *ListsSimilarUsersResponseV1Users

NewListsSimilarUsersResponseV1Users instantiates a new ListsSimilarUsersResponseV1Users object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListsSimilarUsersResponseV1UsersWithDefaults ¶

func NewListsSimilarUsersResponseV1UsersWithDefaults() *ListsSimilarUsersResponseV1Users

NewListsSimilarUsersResponseV1UsersWithDefaults instantiates a new ListsSimilarUsersResponseV1Users object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListsSimilarUsersResponseV1Users) GetIntersectCount ¶

func (o *ListsSimilarUsersResponseV1Users) GetIntersectCount() int64

GetIntersectCount returns the IntersectCount field value if set, zero value otherwise.

func (*ListsSimilarUsersResponseV1Users) GetIntersectCountOk ¶

func (o *ListsSimilarUsersResponseV1Users) GetIntersectCountOk() (*int64, bool)

GetIntersectCountOk returns a tuple with the IntersectCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSimilarUsersResponseV1Users) GetPercentMatch ¶

func (o *ListsSimilarUsersResponseV1Users) GetPercentMatch() int64

GetPercentMatch returns the PercentMatch field value if set, zero value otherwise.

func (*ListsSimilarUsersResponseV1Users) GetPercentMatchOk ¶

func (o *ListsSimilarUsersResponseV1Users) GetPercentMatchOk() (*int64, bool)

GetPercentMatchOk returns a tuple with the PercentMatch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSimilarUsersResponseV1Users) GetUserId ¶

func (o *ListsSimilarUsersResponseV1Users) GetUserId() int64

GetUserId returns the UserId field value if set, zero value otherwise.

func (*ListsSimilarUsersResponseV1Users) GetUserIdOk ¶

func (o *ListsSimilarUsersResponseV1Users) GetUserIdOk() (*int64, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSimilarUsersResponseV1Users) GetUserName ¶

func (o *ListsSimilarUsersResponseV1Users) GetUserName() string

GetUserName returns the UserName field value if set, zero value otherwise.

func (*ListsSimilarUsersResponseV1Users) GetUserNameOk ¶

func (o *ListsSimilarUsersResponseV1Users) GetUserNameOk() (*string, bool)

GetUserNameOk returns a tuple with the UserName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSimilarUsersResponseV1Users) GetUserRating ¶

func (o *ListsSimilarUsersResponseV1Users) GetUserRating() float32

GetUserRating returns the UserRating field value if set, zero value otherwise.

func (*ListsSimilarUsersResponseV1Users) GetUserRatingOk ¶

func (o *ListsSimilarUsersResponseV1Users) GetUserRatingOk() (*float32, bool)

GetUserRatingOk returns a tuple with the UserRating field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListsSimilarUsersResponseV1Users) HasIntersectCount ¶

func (o *ListsSimilarUsersResponseV1Users) HasIntersectCount() bool

HasIntersectCount returns a boolean if a field has been set.

func (*ListsSimilarUsersResponseV1Users) HasPercentMatch ¶

func (o *ListsSimilarUsersResponseV1Users) HasPercentMatch() bool

HasPercentMatch returns a boolean if a field has been set.

func (*ListsSimilarUsersResponseV1Users) HasUserId ¶

func (o *ListsSimilarUsersResponseV1Users) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (*ListsSimilarUsersResponseV1Users) HasUserName ¶

func (o *ListsSimilarUsersResponseV1Users) HasUserName() bool

HasUserName returns a boolean if a field has been set.

func (*ListsSimilarUsersResponseV1Users) HasUserRating ¶

func (o *ListsSimilarUsersResponseV1Users) HasUserRating() bool

HasUserRating returns a boolean if a field has been set.

func (ListsSimilarUsersResponseV1Users) MarshalJSON ¶

func (o ListsSimilarUsersResponseV1Users) MarshalJSON() ([]byte, error)

func (*ListsSimilarUsersResponseV1Users) SetIntersectCount ¶

func (o *ListsSimilarUsersResponseV1Users) SetIntersectCount(v int64)

SetIntersectCount gets a reference to the given int64 and assigns it to the IntersectCount field.

func (*ListsSimilarUsersResponseV1Users) SetPercentMatch ¶

func (o *ListsSimilarUsersResponseV1Users) SetPercentMatch(v int64)

SetPercentMatch gets a reference to the given int64 and assigns it to the PercentMatch field.

func (*ListsSimilarUsersResponseV1Users) SetUserId ¶

func (o *ListsSimilarUsersResponseV1Users) SetUserId(v int64)

SetUserId gets a reference to the given int64 and assigns it to the UserId field.

func (*ListsSimilarUsersResponseV1Users) SetUserName ¶

func (o *ListsSimilarUsersResponseV1Users) SetUserName(v string)

SetUserName gets a reference to the given string and assigns it to the UserName field.

func (*ListsSimilarUsersResponseV1Users) SetUserRating ¶

func (o *ListsSimilarUsersResponseV1Users) SetUserRating(v float32)

SetUserRating gets a reference to the given float32 and assigns it to the UserRating field.

func (ListsSimilarUsersResponseV1Users) ToMap ¶

func (o ListsSimilarUsersResponseV1Users) ToMap() (map[string]interface{}, error)

type MappedNullable ¶

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type MembersAPIService ¶

type MembersAPIService service

MembersAPIService MembersAPI service

func (*MembersAPIService) AddMember ¶

AddMember add a member

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAddMemberRequest

func (*MembersAPIService) AddMemberAvatar ¶

func (a *MembersAPIService) AddMemberAvatar(ctx context.Context, id int64) ApiAddMemberAvatarRequest

AddMemberAvatar add a new member avatar

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Member id
@return ApiAddMemberAvatarRequest

func (*MembersAPIService) AddMemberAvatarExecute ¶

func (a *MembersAPIService) AddMemberAvatarExecute(r ApiAddMemberAvatarRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*MembersAPIService) AddMemberChangeRequest ¶

func (a *MembersAPIService) AddMemberChangeRequest(ctx context.Context, id int64) ApiAddMemberChangeRequestRequest

AddMemberChangeRequest add a change request

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Member id
@return ApiAddMemberChangeRequestRequest

func (*MembersAPIService) AddMemberChangeRequestExecute ¶

func (a *MembersAPIService) AddMemberChangeRequestExecute(r ApiAddMemberChangeRequestRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*MembersAPIService) AddMemberExecute ¶

Execute executes the request

@return ApiResponseV1

func (*MembersAPIService) AddMemberGenreFilter ¶

func (a *MembersAPIService) AddMemberGenreFilter(ctx context.Context, id int64, genreId int64) ApiAddMemberGenreFilterRequest

AddMemberGenreFilter filter a genre for a user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of member
@param genreId genre id
@return ApiAddMemberGenreFilterRequest

func (*MembersAPIService) AddMemberGenreFilterExecute ¶

func (a *MembersAPIService) AddMemberGenreFilterExecute(r ApiAddMemberGenreFilterRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*MembersAPIService) AddMemberGenreHighlight ¶

func (a *MembersAPIService) AddMemberGenreHighlight(ctx context.Context, id int64, genreId int64) ApiAddMemberGenreHighlightRequest

AddMemberGenreHighlight highlight a genre for a user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of member
@param genreId genre id
@return ApiAddMemberGenreHighlightRequest

func (*MembersAPIService) AddMemberGenreHighlightExecute ¶

func (a *MembersAPIService) AddMemberGenreHighlightExecute(r ApiAddMemberGenreHighlightRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*MembersAPIService) AddOrUpdateUserGroup ¶

func (a *MembersAPIService) AddOrUpdateUserGroup(ctx context.Context, id string) ApiAddOrUpdateUserGroupRequest

AddOrUpdateUserGroup add or update a user group

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id user group id
@return ApiAddOrUpdateUserGroupRequest

func (*MembersAPIService) AddOrUpdateUserGroupExecute ¶

func (a *MembersAPIService) AddOrUpdateUserGroupExecute(r ApiAddOrUpdateUserGroupRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*MembersAPIService) AddUserGroupFilter ¶

func (a *MembersAPIService) AddUserGroupFilter(ctx context.Context, id int64, groupId int64) ApiAddUserGroupFilterRequest

AddUserGroupFilter filter a group for a user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of member
@param groupId group id
@return ApiAddUserGroupFilterRequest

func (*MembersAPIService) AddUserGroupFilterExecute ¶

func (a *MembersAPIService) AddUserGroupFilterExecute(r ApiAddUserGroupFilterRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*MembersAPIService) AddUserTopicSubscription ¶

func (a *MembersAPIService) AddUserTopicSubscription(ctx context.Context, id int64, topicId int64) ApiAddUserTopicSubscriptionRequest

AddUserTopicSubscription add a topic subscription for a user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of member
@param topicId topic id
@return ApiAddUserTopicSubscriptionRequest

func (*MembersAPIService) AddUserTopicSubscriptionExecute ¶

func (a *MembersAPIService) AddUserTopicSubscriptionExecute(r ApiAddUserTopicSubscriptionRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*MembersAPIService) ApproveMemberUpgrade ¶

func (a *MembersAPIService) ApproveMemberUpgrade(ctx context.Context, id int64) ApiApproveMemberUpgradeRequest

ApproveMemberUpgrade upgrade a member

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Member id
@return ApiApproveMemberUpgradeRequest

func (*MembersAPIService) ApproveMemberUpgradeExecute ¶

func (a *MembersAPIService) ApproveMemberUpgradeExecute(r ApiApproveMemberUpgradeRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*MembersAPIService) DeleteMember ¶

DeleteMember delete a member

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Member id
@return ApiDeleteMemberRequest

func (*MembersAPIService) DeleteMemberAvatar ¶

func (a *MembersAPIService) DeleteMemberAvatar(ctx context.Context, id int64, avatarId int64) ApiDeleteMemberAvatarRequest

DeleteMemberAvatar delete a member avatar

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Member id
@param avatarId Avatar id
@return ApiDeleteMemberAvatarRequest

func (*MembersAPIService) DeleteMemberAvatarExecute ¶

func (a *MembersAPIService) DeleteMemberAvatarExecute(r ApiDeleteMemberAvatarRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*MembersAPIService) DeleteMemberChangeRequest ¶

func (a *MembersAPIService) DeleteMemberChangeRequest(ctx context.Context, id int64, requestId int64) ApiDeleteMemberChangeRequestRequest

DeleteMemberChangeRequest add a change request

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Member id
@param requestId Change request id
@return ApiDeleteMemberChangeRequestRequest

func (*MembersAPIService) DeleteMemberChangeRequestExecute ¶

func (a *MembersAPIService) DeleteMemberChangeRequestExecute(r ApiDeleteMemberChangeRequestRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*MembersAPIService) DeleteMemberExecute ¶

func (a *MembersAPIService) DeleteMemberExecute(r ApiDeleteMemberRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*MembersAPIService) DeleteUserGroup ¶

DeleteUserGroup delete a user group

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of user group
@return ApiDeleteUserGroupRequest

func (*MembersAPIService) DeleteUserGroupExecute ¶

func (a *MembersAPIService) DeleteUserGroupExecute(r ApiDeleteUserGroupRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*MembersAPIService) RejectMemberUpgrade ¶

func (a *MembersAPIService) RejectMemberUpgrade(ctx context.Context, id int64) ApiRejectMemberUpgradeRequest

RejectMemberUpgrade reject a member upgrade

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Member id
@return ApiRejectMemberUpgradeRequest

func (*MembersAPIService) RejectMemberUpgradeExecute ¶

func (a *MembersAPIService) RejectMemberUpgradeExecute(r ApiRejectMemberUpgradeRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*MembersAPIService) RemoveMemberGenreFilter ¶

func (a *MembersAPIService) RemoveMemberGenreFilter(ctx context.Context, id int64, genreId int64) ApiRemoveMemberGenreFilterRequest

RemoveMemberGenreFilter remove a filter for a genre for a user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of member
@param genreId genre id
@return ApiRemoveMemberGenreFilterRequest

func (*MembersAPIService) RemoveMemberGenreFilterExecute ¶

func (a *MembersAPIService) RemoveMemberGenreFilterExecute(r ApiRemoveMemberGenreFilterRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*MembersAPIService) RemoveMemberGenreHighlight ¶

func (a *MembersAPIService) RemoveMemberGenreHighlight(ctx context.Context, id int64, genreId int64) ApiRemoveMemberGenreHighlightRequest

RemoveMemberGenreHighlight remove a highlight for a genre for a user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of member
@param genreId genre id
@return ApiRemoveMemberGenreHighlightRequest

func (*MembersAPIService) RemoveMemberGenreHighlightExecute ¶

func (a *MembersAPIService) RemoveMemberGenreHighlightExecute(r ApiRemoveMemberGenreHighlightRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*MembersAPIService) RemoveUserGroupFilter ¶

func (a *MembersAPIService) RemoveUserGroupFilter(ctx context.Context, id int64, groupId int64) ApiRemoveUserGroupFilterRequest

RemoveUserGroupFilter remove a filter for a group for a user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of member
@param groupId group id
@return ApiRemoveUserGroupFilterRequest

func (*MembersAPIService) RemoveUserGroupFilterExecute ¶

func (a *MembersAPIService) RemoveUserGroupFilterExecute(r ApiRemoveUserGroupFilterRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*MembersAPIService) RemoveUserTopicSubscription ¶

func (a *MembersAPIService) RemoveUserTopicSubscription(ctx context.Context, id int64, topicId int64) ApiRemoveUserTopicSubscriptionRequest

RemoveUserTopicSubscription remove a topic subscription for a user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of member
@param topicId topic id
@return ApiRemoveUserTopicSubscriptionRequest

func (*MembersAPIService) RemoveUserTopicSubscriptionExecute ¶

func (a *MembersAPIService) RemoveUserTopicSubscriptionExecute(r ApiRemoveUserTopicSubscriptionRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*MembersAPIService) ResetGenreSettings ¶

func (a *MembersAPIService) ResetGenreSettings(ctx context.Context, id int64) ApiResetGenreSettingsRequest

ResetGenreSettings reset genre highlights and filters for a user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of member
@return ApiResetGenreSettingsRequest

func (*MembersAPIService) ResetGenreSettingsExecute ¶

func (a *MembersAPIService) ResetGenreSettingsExecute(r ApiResetGenreSettingsRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*MembersAPIService) RetrieveMember ¶

func (a *MembersAPIService) RetrieveMember(ctx context.Context, id int64) ApiRetrieveMemberRequest

RetrieveMember get a specific members

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Member id
@return ApiRetrieveMemberRequest

func (*MembersAPIService) RetrieveMemberAvatars ¶

func (a *MembersAPIService) RetrieveMemberAvatars(ctx context.Context, id int64) ApiRetrieveMemberAvatarsRequest

RetrieveMemberAvatars get avatars for a specific user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Member id
@return ApiRetrieveMemberAvatarsRequest

func (*MembersAPIService) RetrieveMemberAvatarsExecute ¶

func (a *MembersAPIService) RetrieveMemberAvatarsExecute(r ApiRetrieveMemberAvatarsRequest) ([]AvatarModelV1, *http.Response, error)

Execute executes the request

@return []AvatarModelV1

func (*MembersAPIService) RetrieveMemberChangeRequest ¶

func (a *MembersAPIService) RetrieveMemberChangeRequest(ctx context.Context, id int64, requestId int64) ApiRetrieveMemberChangeRequestRequest

RetrieveMemberChangeRequest get change requests for a specific user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Member id
@param requestId Change request id
@return ApiRetrieveMemberChangeRequestRequest

func (*MembersAPIService) RetrieveMemberChangeRequestExecute ¶

Execute executes the request

@return UserChangeRequestModelV1

func (*MembersAPIService) RetrieveMemberExecute ¶

func (a *MembersAPIService) RetrieveMemberExecute(r ApiRetrieveMemberRequest) (*UserModelV1, *http.Response, error)

Execute executes the request

@return UserModelV1

func (*MembersAPIService) RetrieveMemberGenreFilters ¶

func (a *MembersAPIService) RetrieveMemberGenreFilters(ctx context.Context, id int64) ApiRetrieveMemberGenreFiltersRequest

RetrieveMemberGenreFilters get genre filters for a specific user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Member id
@return ApiRetrieveMemberGenreFiltersRequest

func (*MembersAPIService) RetrieveMemberGenreFiltersExecute ¶

Execute executes the request

@return []UserGenreFilterModelV1

func (*MembersAPIService) RetrieveMemberGenreHighlights ¶

func (a *MembersAPIService) RetrieveMemberGenreHighlights(ctx context.Context, id int64) ApiRetrieveMemberGenreHighlightsRequest

RetrieveMemberGenreHighlights get highlights for a specific user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Member id
@return ApiRetrieveMemberGenreHighlightsRequest

func (*MembersAPIService) RetrieveMemberGenreHighlightsExecute ¶

Execute executes the request

@return []UserGenreHighlightModelV1

func (*MembersAPIService) RetrieveMemberGroupFilters ¶

func (a *MembersAPIService) RetrieveMemberGroupFilters(ctx context.Context, id int64) ApiRetrieveMemberGroupFiltersRequest

RetrieveMemberGroupFilters get group filters for a specific user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Member id
@return ApiRetrieveMemberGroupFiltersRequest

func (*MembersAPIService) RetrieveMemberGroupFiltersExecute ¶

Execute executes the request

@return []UserGroupFilterModelV1

func (*MembersAPIService) RetrieveMemberTopicSubscription ¶

func (a *MembersAPIService) RetrieveMemberTopicSubscription(ctx context.Context, id int64, topicId int64) ApiRetrieveMemberTopicSubscriptionRequest

RetrieveMemberTopicSubscription get a subscription to a specific topic for a user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Member id
@param topicId Topic id
@return ApiRetrieveMemberTopicSubscriptionRequest

func (*MembersAPIService) RetrieveMemberTopicSubscriptionExecute ¶

Execute executes the request

@return UserSubscribedTopicModelV1

func (*MembersAPIService) RetrieveMemberTopicSubscriptions ¶

func (a *MembersAPIService) RetrieveMemberTopicSubscriptions(ctx context.Context, id int64) ApiRetrieveMemberTopicSubscriptionsRequest

RetrieveMemberTopicSubscriptions get topic subscriptions for a specific user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Member id
@return ApiRetrieveMemberTopicSubscriptionsRequest

func (*MembersAPIService) RetrieveMemberTopicSubscriptionsExecute ¶

Execute executes the request

@return []UserSubscribedTopicModelV1

func (*MembersAPIService) RetrieveUserGroupById ¶

func (a *MembersAPIService) RetrieveUserGroupById(ctx context.Context, id string) ApiRetrieveUserGroupByIdRequest

RetrieveUserGroupById get user group

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id user group id
@return ApiRetrieveUserGroupByIdRequest

func (*MembersAPIService) RetrieveUserGroupByIdExecute ¶

func (a *MembersAPIService) RetrieveUserGroupByIdExecute(r ApiRetrieveUserGroupByIdRequest) (*UserGroupModelV1, *http.Response, error)

Execute executes the request

@return UserGroupModelV1

func (*MembersAPIService) RetrieveUserGroups ¶

RetrieveUserGroups get user groups

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiRetrieveUserGroupsRequest

func (*MembersAPIService) RetrieveUserGroupsExecute ¶

func (a *MembersAPIService) RetrieveUserGroupsExecute(r ApiRetrieveUserGroupsRequest) ([]UserGroupModelV1, *http.Response, error)

Execute executes the request

@return []UserGroupModelV1

func (*MembersAPIService) SearchMemberChangeRequests ¶

func (a *MembersAPIService) SearchMemberChangeRequests(ctx context.Context, id int64) ApiSearchMemberChangeRequestsRequest

SearchMemberChangeRequests search change requests for a specific user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Member id
@return ApiSearchMemberChangeRequestsRequest

func (*MembersAPIService) SearchMemberChangeRequestsExecute ¶

Execute executes the request

@return UserChangeRequestSearchResponseV1

func (*MembersAPIService) SearchMembersPost ¶

SearchMembersPost search members

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchMembersPostRequest

func (*MembersAPIService) SearchMembersPostExecute ¶

Execute executes the request

@return UserSearchResponseV1

func (*MembersAPIService) UpdateMember ¶

UpdateMember update a member

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Member id
@return ApiUpdateMemberRequest

func (*MembersAPIService) UpdateMemberChangeRequest ¶

func (a *MembersAPIService) UpdateMemberChangeRequest(ctx context.Context, id int64, requestId int64) ApiUpdateMemberChangeRequestRequest

UpdateMemberChangeRequest update a change request

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Member id
@param requestId Change request id
@return ApiUpdateMemberChangeRequestRequest

func (*MembersAPIService) UpdateMemberChangeRequestExecute ¶

func (a *MembersAPIService) UpdateMemberChangeRequestExecute(r ApiUpdateMemberChangeRequestRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*MembersAPIService) UpdateMemberExecute ¶

func (a *MembersAPIService) UpdateMemberExecute(r ApiUpdateMemberRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

type MiscAPIService ¶

type MiscAPIService service

MiscAPIService MiscAPI service

func (*MiscAPIService) ListOnlineUsers ¶

func (a *MiscAPIService) ListOnlineUsers(ctx context.Context) ApiListOnlineUsersRequest

ListOnlineUsers list online users

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListOnlineUsersRequest

func (*MiscAPIService) ListOnlineUsersExecute ¶

Execute executes the request

@return MiscOnlineUsersModelV1

func (*MiscAPIService) RetrieveSlowTransactionStatus ¶

func (a *MiscAPIService) RetrieveSlowTransactionStatus(ctx context.Context, transactionId string) ApiRetrieveSlowTransactionStatusRequest

RetrieveSlowTransactionStatus get the status of a bulk transaction

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param transactionId the transaction id
@return ApiRetrieveSlowTransactionStatusRequest

func (*MiscAPIService) RetrieveSlowTransactionStatusExecute ¶

Execute executes the request

@return MiscSlowTransactionStatusResponseV1

func (*MiscAPIService) SiteStats ¶

SiteStats show various site stats

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSiteStatsRequest

func (*MiscAPIService) SiteStatsExecute ¶

Execute executes the request

@return MiscStatsModelV1

func (*MiscAPIService) Time ¶

Time get the current time

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTimeRequest

func (*MiscAPIService) TimeExecute ¶

func (a *MiscAPIService) TimeExecute(r ApiTimeRequest) (*TimeV1, *http.Response, error)

Execute executes the request

@return TimeV1

type MiscOnlineUsersModelV1 ¶

type MiscOnlineUsersModelV1 struct {
	Users []MiscOnlineUsersModelV1Users `json:"users,omitempty"`
}

MiscOnlineUsersModelV1 struct for MiscOnlineUsersModelV1

func NewMiscOnlineUsersModelV1 ¶

func NewMiscOnlineUsersModelV1() *MiscOnlineUsersModelV1

NewMiscOnlineUsersModelV1 instantiates a new MiscOnlineUsersModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMiscOnlineUsersModelV1WithDefaults ¶

func NewMiscOnlineUsersModelV1WithDefaults() *MiscOnlineUsersModelV1

NewMiscOnlineUsersModelV1WithDefaults instantiates a new MiscOnlineUsersModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MiscOnlineUsersModelV1) GetUsers ¶

GetUsers returns the Users field value if set, zero value otherwise.

func (*MiscOnlineUsersModelV1) GetUsersOk ¶

GetUsersOk returns a tuple with the Users field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MiscOnlineUsersModelV1) HasUsers ¶

func (o *MiscOnlineUsersModelV1) HasUsers() bool

HasUsers returns a boolean if a field has been set.

func (MiscOnlineUsersModelV1) MarshalJSON ¶

func (o MiscOnlineUsersModelV1) MarshalJSON() ([]byte, error)

func (*MiscOnlineUsersModelV1) SetUsers ¶

SetUsers gets a reference to the given []MiscOnlineUsersModelV1Users and assigns it to the Users field.

func (MiscOnlineUsersModelV1) ToMap ¶

func (o MiscOnlineUsersModelV1) ToMap() (map[string]interface{}, error)

type MiscOnlineUsersModelV1Users ¶

type MiscOnlineUsersModelV1Users struct {
	Record   *UserModelSearchV1                   `json:"record,omitempty"`
	Metadata *MiscOnlineUsersModelV1UsersMetadata `json:"metadata,omitempty"`
}

MiscOnlineUsersModelV1Users struct for MiscOnlineUsersModelV1Users

func NewMiscOnlineUsersModelV1Users ¶

func NewMiscOnlineUsersModelV1Users() *MiscOnlineUsersModelV1Users

NewMiscOnlineUsersModelV1Users instantiates a new MiscOnlineUsersModelV1Users object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMiscOnlineUsersModelV1UsersWithDefaults ¶

func NewMiscOnlineUsersModelV1UsersWithDefaults() *MiscOnlineUsersModelV1Users

NewMiscOnlineUsersModelV1UsersWithDefaults instantiates a new MiscOnlineUsersModelV1Users object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MiscOnlineUsersModelV1Users) GetMetadata ¶

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*MiscOnlineUsersModelV1Users) GetMetadataOk ¶

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MiscOnlineUsersModelV1Users) GetRecord ¶

GetRecord returns the Record field value if set, zero value otherwise.

func (*MiscOnlineUsersModelV1Users) GetRecordOk ¶

func (o *MiscOnlineUsersModelV1Users) GetRecordOk() (*UserModelSearchV1, bool)

GetRecordOk returns a tuple with the Record field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MiscOnlineUsersModelV1Users) HasMetadata ¶

func (o *MiscOnlineUsersModelV1Users) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*MiscOnlineUsersModelV1Users) HasRecord ¶

func (o *MiscOnlineUsersModelV1Users) HasRecord() bool

HasRecord returns a boolean if a field has been set.

func (MiscOnlineUsersModelV1Users) MarshalJSON ¶

func (o MiscOnlineUsersModelV1Users) MarshalJSON() ([]byte, error)

func (*MiscOnlineUsersModelV1Users) SetMetadata ¶

SetMetadata gets a reference to the given MiscOnlineUsersModelV1UsersMetadata and assigns it to the Metadata field.

func (*MiscOnlineUsersModelV1Users) SetRecord ¶

SetRecord gets a reference to the given UserModelSearchV1 and assigns it to the Record field.

func (MiscOnlineUsersModelV1Users) ToMap ¶

func (o MiscOnlineUsersModelV1Users) ToMap() (map[string]interface{}, error)

type MiscOnlineUsersModelV1UsersMetadata ¶

type MiscOnlineUsersModelV1UsersMetadata struct {
	LastActive     *TimeV1 `json:"last_active,omitempty"`
	Invisible      *bool   `json:"invisible,omitempty"`
	SuperModerator *bool   `json:"super_moderator,omitempty"`
}

MiscOnlineUsersModelV1UsersMetadata struct for MiscOnlineUsersModelV1UsersMetadata

func NewMiscOnlineUsersModelV1UsersMetadata ¶

func NewMiscOnlineUsersModelV1UsersMetadata() *MiscOnlineUsersModelV1UsersMetadata

NewMiscOnlineUsersModelV1UsersMetadata instantiates a new MiscOnlineUsersModelV1UsersMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMiscOnlineUsersModelV1UsersMetadataWithDefaults ¶

func NewMiscOnlineUsersModelV1UsersMetadataWithDefaults() *MiscOnlineUsersModelV1UsersMetadata

NewMiscOnlineUsersModelV1UsersMetadataWithDefaults instantiates a new MiscOnlineUsersModelV1UsersMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MiscOnlineUsersModelV1UsersMetadata) GetInvisible ¶

func (o *MiscOnlineUsersModelV1UsersMetadata) GetInvisible() bool

GetInvisible returns the Invisible field value if set, zero value otherwise.

func (*MiscOnlineUsersModelV1UsersMetadata) GetInvisibleOk ¶

func (o *MiscOnlineUsersModelV1UsersMetadata) GetInvisibleOk() (*bool, bool)

GetInvisibleOk returns a tuple with the Invisible field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MiscOnlineUsersModelV1UsersMetadata) GetLastActive ¶

func (o *MiscOnlineUsersModelV1UsersMetadata) GetLastActive() TimeV1

GetLastActive returns the LastActive field value if set, zero value otherwise.

func (*MiscOnlineUsersModelV1UsersMetadata) GetLastActiveOk ¶

func (o *MiscOnlineUsersModelV1UsersMetadata) GetLastActiveOk() (*TimeV1, bool)

GetLastActiveOk returns a tuple with the LastActive field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MiscOnlineUsersModelV1UsersMetadata) GetSuperModerator ¶

func (o *MiscOnlineUsersModelV1UsersMetadata) GetSuperModerator() bool

GetSuperModerator returns the SuperModerator field value if set, zero value otherwise.

func (*MiscOnlineUsersModelV1UsersMetadata) GetSuperModeratorOk ¶

func (o *MiscOnlineUsersModelV1UsersMetadata) GetSuperModeratorOk() (*bool, bool)

GetSuperModeratorOk returns a tuple with the SuperModerator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MiscOnlineUsersModelV1UsersMetadata) HasInvisible ¶

func (o *MiscOnlineUsersModelV1UsersMetadata) HasInvisible() bool

HasInvisible returns a boolean if a field has been set.

func (*MiscOnlineUsersModelV1UsersMetadata) HasLastActive ¶

func (o *MiscOnlineUsersModelV1UsersMetadata) HasLastActive() bool

HasLastActive returns a boolean if a field has been set.

func (*MiscOnlineUsersModelV1UsersMetadata) HasSuperModerator ¶

func (o *MiscOnlineUsersModelV1UsersMetadata) HasSuperModerator() bool

HasSuperModerator returns a boolean if a field has been set.

func (MiscOnlineUsersModelV1UsersMetadata) MarshalJSON ¶

func (o MiscOnlineUsersModelV1UsersMetadata) MarshalJSON() ([]byte, error)

func (*MiscOnlineUsersModelV1UsersMetadata) SetInvisible ¶

func (o *MiscOnlineUsersModelV1UsersMetadata) SetInvisible(v bool)

SetInvisible gets a reference to the given bool and assigns it to the Invisible field.

func (*MiscOnlineUsersModelV1UsersMetadata) SetLastActive ¶

func (o *MiscOnlineUsersModelV1UsersMetadata) SetLastActive(v TimeV1)

SetLastActive gets a reference to the given TimeV1 and assigns it to the LastActive field.

func (*MiscOnlineUsersModelV1UsersMetadata) SetSuperModerator ¶

func (o *MiscOnlineUsersModelV1UsersMetadata) SetSuperModerator(v bool)

SetSuperModerator gets a reference to the given bool and assigns it to the SuperModerator field.

func (MiscOnlineUsersModelV1UsersMetadata) ToMap ¶

func (o MiscOnlineUsersModelV1UsersMetadata) ToMap() (map[string]interface{}, error)

type MiscSlowTransactionStatusResponseV1 ¶

type MiscSlowTransactionStatusResponseV1 struct {
	State   *string  `json:"state,omitempty"`
	Error   *string  `json:"error,omitempty"`
	Percent *float32 `json:"percent,omitempty"`
	Done    *int64   `json:"done,omitempty"`
	Total   *int64   `json:"total,omitempty"`
	Return  *string  `json:"return,omitempty"`
}

MiscSlowTransactionStatusResponseV1 struct for MiscSlowTransactionStatusResponseV1

func NewMiscSlowTransactionStatusResponseV1 ¶

func NewMiscSlowTransactionStatusResponseV1() *MiscSlowTransactionStatusResponseV1

NewMiscSlowTransactionStatusResponseV1 instantiates a new MiscSlowTransactionStatusResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMiscSlowTransactionStatusResponseV1WithDefaults ¶

func NewMiscSlowTransactionStatusResponseV1WithDefaults() *MiscSlowTransactionStatusResponseV1

NewMiscSlowTransactionStatusResponseV1WithDefaults instantiates a new MiscSlowTransactionStatusResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MiscSlowTransactionStatusResponseV1) GetDone ¶

GetDone returns the Done field value if set, zero value otherwise.

func (*MiscSlowTransactionStatusResponseV1) GetDoneOk ¶

func (o *MiscSlowTransactionStatusResponseV1) GetDoneOk() (*int64, bool)

GetDoneOk returns a tuple with the Done field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MiscSlowTransactionStatusResponseV1) GetError ¶

GetError returns the Error field value if set, zero value otherwise.

func (*MiscSlowTransactionStatusResponseV1) GetErrorOk ¶

func (o *MiscSlowTransactionStatusResponseV1) GetErrorOk() (*string, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MiscSlowTransactionStatusResponseV1) GetPercent ¶

GetPercent returns the Percent field value if set, zero value otherwise.

func (*MiscSlowTransactionStatusResponseV1) GetPercentOk ¶

func (o *MiscSlowTransactionStatusResponseV1) GetPercentOk() (*float32, bool)

GetPercentOk returns a tuple with the Percent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MiscSlowTransactionStatusResponseV1) GetReturn ¶

GetReturn returns the Return field value if set, zero value otherwise.

func (*MiscSlowTransactionStatusResponseV1) GetReturnOk ¶

func (o *MiscSlowTransactionStatusResponseV1) GetReturnOk() (*string, bool)

GetReturnOk returns a tuple with the Return field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MiscSlowTransactionStatusResponseV1) GetState ¶

GetState returns the State field value if set, zero value otherwise.

func (*MiscSlowTransactionStatusResponseV1) GetStateOk ¶

func (o *MiscSlowTransactionStatusResponseV1) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MiscSlowTransactionStatusResponseV1) GetTotal ¶

GetTotal returns the Total field value if set, zero value otherwise.

func (*MiscSlowTransactionStatusResponseV1) GetTotalOk ¶

func (o *MiscSlowTransactionStatusResponseV1) GetTotalOk() (*int64, bool)

GetTotalOk returns a tuple with the Total field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MiscSlowTransactionStatusResponseV1) HasDone ¶

HasDone returns a boolean if a field has been set.

func (*MiscSlowTransactionStatusResponseV1) HasError ¶

HasError returns a boolean if a field has been set.

func (*MiscSlowTransactionStatusResponseV1) HasPercent ¶

func (o *MiscSlowTransactionStatusResponseV1) HasPercent() bool

HasPercent returns a boolean if a field has been set.

func (*MiscSlowTransactionStatusResponseV1) HasReturn ¶

HasReturn returns a boolean if a field has been set.

func (*MiscSlowTransactionStatusResponseV1) HasState ¶

HasState returns a boolean if a field has been set.

func (*MiscSlowTransactionStatusResponseV1) HasTotal ¶

HasTotal returns a boolean if a field has been set.

func (MiscSlowTransactionStatusResponseV1) MarshalJSON ¶

func (o MiscSlowTransactionStatusResponseV1) MarshalJSON() ([]byte, error)

func (*MiscSlowTransactionStatusResponseV1) SetDone ¶

SetDone gets a reference to the given int64 and assigns it to the Done field.

func (*MiscSlowTransactionStatusResponseV1) SetError ¶

SetError gets a reference to the given string and assigns it to the Error field.

func (*MiscSlowTransactionStatusResponseV1) SetPercent ¶

SetPercent gets a reference to the given float32 and assigns it to the Percent field.

func (*MiscSlowTransactionStatusResponseV1) SetReturn ¶

SetReturn gets a reference to the given string and assigns it to the Return field.

func (*MiscSlowTransactionStatusResponseV1) SetState ¶

SetState gets a reference to the given string and assigns it to the State field.

func (*MiscSlowTransactionStatusResponseV1) SetTotal ¶

SetTotal gets a reference to the given int64 and assigns it to the Total field.

func (MiscSlowTransactionStatusResponseV1) ToMap ¶

func (o MiscSlowTransactionStatusResponseV1) ToMap() (map[string]interface{}, error)

type MiscStatsModelV1 ¶

type MiscStatsModelV1 struct {
	TotalUsers       *int64             `json:"total_users,omitempty"`
	LatestUser       *UserModelSearchV1 `json:"latest_user,omitempty"`
	TotalForumTopics *int64             `json:"total_forum_topics,omitempty"`
	TotalForumPosts  *int64             `json:"total_forum_posts,omitempty"`
}

MiscStatsModelV1 struct for MiscStatsModelV1

func NewMiscStatsModelV1 ¶

func NewMiscStatsModelV1() *MiscStatsModelV1

NewMiscStatsModelV1 instantiates a new MiscStatsModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMiscStatsModelV1WithDefaults ¶

func NewMiscStatsModelV1WithDefaults() *MiscStatsModelV1

NewMiscStatsModelV1WithDefaults instantiates a new MiscStatsModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MiscStatsModelV1) GetLatestUser ¶

func (o *MiscStatsModelV1) GetLatestUser() UserModelSearchV1

GetLatestUser returns the LatestUser field value if set, zero value otherwise.

func (*MiscStatsModelV1) GetLatestUserOk ¶

func (o *MiscStatsModelV1) GetLatestUserOk() (*UserModelSearchV1, bool)

GetLatestUserOk returns a tuple with the LatestUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MiscStatsModelV1) GetTotalForumPosts ¶

func (o *MiscStatsModelV1) GetTotalForumPosts() int64

GetTotalForumPosts returns the TotalForumPosts field value if set, zero value otherwise.

func (*MiscStatsModelV1) GetTotalForumPostsOk ¶

func (o *MiscStatsModelV1) GetTotalForumPostsOk() (*int64, bool)

GetTotalForumPostsOk returns a tuple with the TotalForumPosts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MiscStatsModelV1) GetTotalForumTopics ¶

func (o *MiscStatsModelV1) GetTotalForumTopics() int64

GetTotalForumTopics returns the TotalForumTopics field value if set, zero value otherwise.

func (*MiscStatsModelV1) GetTotalForumTopicsOk ¶

func (o *MiscStatsModelV1) GetTotalForumTopicsOk() (*int64, bool)

GetTotalForumTopicsOk returns a tuple with the TotalForumTopics field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MiscStatsModelV1) GetTotalUsers ¶

func (o *MiscStatsModelV1) GetTotalUsers() int64

GetTotalUsers returns the TotalUsers field value if set, zero value otherwise.

func (*MiscStatsModelV1) GetTotalUsersOk ¶

func (o *MiscStatsModelV1) GetTotalUsersOk() (*int64, bool)

GetTotalUsersOk returns a tuple with the TotalUsers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MiscStatsModelV1) HasLatestUser ¶

func (o *MiscStatsModelV1) HasLatestUser() bool

HasLatestUser returns a boolean if a field has been set.

func (*MiscStatsModelV1) HasTotalForumPosts ¶

func (o *MiscStatsModelV1) HasTotalForumPosts() bool

HasTotalForumPosts returns a boolean if a field has been set.

func (*MiscStatsModelV1) HasTotalForumTopics ¶

func (o *MiscStatsModelV1) HasTotalForumTopics() bool

HasTotalForumTopics returns a boolean if a field has been set.

func (*MiscStatsModelV1) HasTotalUsers ¶

func (o *MiscStatsModelV1) HasTotalUsers() bool

HasTotalUsers returns a boolean if a field has been set.

func (MiscStatsModelV1) MarshalJSON ¶

func (o MiscStatsModelV1) MarshalJSON() ([]byte, error)

func (*MiscStatsModelV1) SetLatestUser ¶

func (o *MiscStatsModelV1) SetLatestUser(v UserModelSearchV1)

SetLatestUser gets a reference to the given UserModelSearchV1 and assigns it to the LatestUser field.

func (*MiscStatsModelV1) SetTotalForumPosts ¶

func (o *MiscStatsModelV1) SetTotalForumPosts(v int64)

SetTotalForumPosts gets a reference to the given int64 and assigns it to the TotalForumPosts field.

func (*MiscStatsModelV1) SetTotalForumTopics ¶

func (o *MiscStatsModelV1) SetTotalForumTopics(v int64)

SetTotalForumTopics gets a reference to the given int64 and assigns it to the TotalForumTopics field.

func (*MiscStatsModelV1) SetTotalUsers ¶

func (o *MiscStatsModelV1) SetTotalUsers(v int64)

SetTotalUsers gets a reference to the given int64 and assigns it to the TotalUsers field.

func (MiscStatsModelV1) ToMap ¶

func (o MiscStatsModelV1) ToMap() (map[string]interface{}, error)

type NullableAboutusCategoryModelUpdateV1 ¶

type NullableAboutusCategoryModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullableAboutusCategoryModelUpdateV1) Get ¶

func (NullableAboutusCategoryModelUpdateV1) IsSet ¶

func (NullableAboutusCategoryModelUpdateV1) MarshalJSON ¶

func (v NullableAboutusCategoryModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableAboutusCategoryModelUpdateV1) Set ¶

func (*NullableAboutusCategoryModelUpdateV1) UnmarshalJSON ¶

func (v *NullableAboutusCategoryModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableAboutusCategoryModelUpdateV1) Unset ¶

type NullableAboutusCategoryModelV1 ¶

type NullableAboutusCategoryModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableAboutusCategoryModelV1) Get ¶

func (NullableAboutusCategoryModelV1) IsSet ¶

func (NullableAboutusCategoryModelV1) MarshalJSON ¶

func (v NullableAboutusCategoryModelV1) MarshalJSON() ([]byte, error)

func (*NullableAboutusCategoryModelV1) Set ¶

func (*NullableAboutusCategoryModelV1) UnmarshalJSON ¶

func (v *NullableAboutusCategoryModelV1) UnmarshalJSON(src []byte) error

func (*NullableAboutusCategoryModelV1) Unset ¶

func (v *NullableAboutusCategoryModelV1) Unset()

type NullableAboutusCategoryReorderModelV1 ¶

type NullableAboutusCategoryReorderModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableAboutusCategoryReorderModelV1) Get ¶

func (NullableAboutusCategoryReorderModelV1) IsSet ¶

func (NullableAboutusCategoryReorderModelV1) MarshalJSON ¶

func (v NullableAboutusCategoryReorderModelV1) MarshalJSON() ([]byte, error)

func (*NullableAboutusCategoryReorderModelV1) Set ¶

func (*NullableAboutusCategoryReorderModelV1) UnmarshalJSON ¶

func (v *NullableAboutusCategoryReorderModelV1) UnmarshalJSON(src []byte) error

func (*NullableAboutusCategoryReorderModelV1) Unset ¶

type NullableAboutusDescriptionModelV1 ¶

type NullableAboutusDescriptionModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableAboutusDescriptionModelV1) Get ¶

func (NullableAboutusDescriptionModelV1) IsSet ¶

func (NullableAboutusDescriptionModelV1) MarshalJSON ¶

func (v NullableAboutusDescriptionModelV1) MarshalJSON() ([]byte, error)

func (*NullableAboutusDescriptionModelV1) Set ¶

func (*NullableAboutusDescriptionModelV1) UnmarshalJSON ¶

func (v *NullableAboutusDescriptionModelV1) UnmarshalJSON(src []byte) error

func (*NullableAboutusDescriptionModelV1) Unset ¶

type NullableAboutusUserModelUpdateV1 ¶

type NullableAboutusUserModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullableAboutusUserModelUpdateV1) Get ¶

func (NullableAboutusUserModelUpdateV1) IsSet ¶

func (NullableAboutusUserModelUpdateV1) MarshalJSON ¶

func (v NullableAboutusUserModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableAboutusUserModelUpdateV1) Set ¶

func (*NullableAboutusUserModelUpdateV1) UnmarshalJSON ¶

func (v *NullableAboutusUserModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableAboutusUserModelUpdateV1) Unset ¶

type NullableAboutusUserModelV1 ¶

type NullableAboutusUserModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullableAboutusUserModelV1 ¶

func NewNullableAboutusUserModelV1(val *AboutusUserModelV1) *NullableAboutusUserModelV1

func (NullableAboutusUserModelV1) Get ¶

func (NullableAboutusUserModelV1) IsSet ¶

func (v NullableAboutusUserModelV1) IsSet() bool

func (NullableAboutusUserModelV1) MarshalJSON ¶

func (v NullableAboutusUserModelV1) MarshalJSON() ([]byte, error)

func (*NullableAboutusUserModelV1) Set ¶

func (*NullableAboutusUserModelV1) UnmarshalJSON ¶

func (v *NullableAboutusUserModelV1) UnmarshalJSON(src []byte) error

func (*NullableAboutusUserModelV1) Unset ¶

func (v *NullableAboutusUserModelV1) Unset()

type NullableAboutusUserReorderModelV1 ¶

type NullableAboutusUserReorderModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableAboutusUserReorderModelV1) Get ¶

func (NullableAboutusUserReorderModelV1) IsSet ¶

func (NullableAboutusUserReorderModelV1) MarshalJSON ¶

func (v NullableAboutusUserReorderModelV1) MarshalJSON() ([]byte, error)

func (*NullableAboutusUserReorderModelV1) Set ¶

func (*NullableAboutusUserReorderModelV1) UnmarshalJSON ¶

func (v *NullableAboutusUserReorderModelV1) UnmarshalJSON(src []byte) error

func (*NullableAboutusUserReorderModelV1) Unset ¶

type NullableAccountForgotPassModelV1 ¶

type NullableAccountForgotPassModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableAccountForgotPassModelV1) Get ¶

func (NullableAccountForgotPassModelV1) IsSet ¶

func (NullableAccountForgotPassModelV1) MarshalJSON ¶

func (v NullableAccountForgotPassModelV1) MarshalJSON() ([]byte, error)

func (*NullableAccountForgotPassModelV1) Set ¶

func (*NullableAccountForgotPassModelV1) UnmarshalJSON ¶

func (v *NullableAccountForgotPassModelV1) UnmarshalJSON(src []byte) error

func (*NullableAccountForgotPassModelV1) Unset ¶

type NullableAccountLoginModelV1 ¶

type NullableAccountLoginModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableAccountLoginModelV1) Get ¶

func (NullableAccountLoginModelV1) IsSet ¶

func (NullableAccountLoginModelV1) MarshalJSON ¶

func (v NullableAccountLoginModelV1) MarshalJSON() ([]byte, error)

func (*NullableAccountLoginModelV1) Set ¶

func (*NullableAccountLoginModelV1) UnmarshalJSON ¶

func (v *NullableAccountLoginModelV1) UnmarshalJSON(src []byte) error

func (*NullableAccountLoginModelV1) Unset ¶

func (v *NullableAccountLoginModelV1) Unset()

type NullableApiResponseV1 ¶

type NullableApiResponseV1 struct {
	// contains filtered or unexported fields
}

func NewNullableApiResponseV1 ¶

func NewNullableApiResponseV1(val *ApiResponseV1) *NullableApiResponseV1

func (NullableApiResponseV1) Get ¶

func (NullableApiResponseV1) IsSet ¶

func (v NullableApiResponseV1) IsSet() bool

func (NullableApiResponseV1) MarshalJSON ¶

func (v NullableApiResponseV1) MarshalJSON() ([]byte, error)

func (*NullableApiResponseV1) Set ¶

func (v *NullableApiResponseV1) Set(val *ApiResponseV1)

func (*NullableApiResponseV1) UnmarshalJSON ¶

func (v *NullableApiResponseV1) UnmarshalJSON(src []byte) error

func (*NullableApiResponseV1) Unset ¶

func (v *NullableApiResponseV1) Unset()

type NullableAuthorsLockModelUpdateV1 ¶

type NullableAuthorsLockModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullableAuthorsLockModelUpdateV1) Get ¶

func (NullableAuthorsLockModelUpdateV1) IsSet ¶

func (NullableAuthorsLockModelUpdateV1) MarshalJSON ¶

func (v NullableAuthorsLockModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableAuthorsLockModelUpdateV1) Set ¶

func (*NullableAuthorsLockModelUpdateV1) UnmarshalJSON ¶

func (v *NullableAuthorsLockModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableAuthorsLockModelUpdateV1) Unset ¶

type NullableAuthorsLockModelV1 ¶

type NullableAuthorsLockModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullableAuthorsLockModelV1 ¶

func NewNullableAuthorsLockModelV1(val *AuthorsLockModelV1) *NullableAuthorsLockModelV1

func (NullableAuthorsLockModelV1) Get ¶

func (NullableAuthorsLockModelV1) IsSet ¶

func (v NullableAuthorsLockModelV1) IsSet() bool

func (NullableAuthorsLockModelV1) MarshalJSON ¶

func (v NullableAuthorsLockModelV1) MarshalJSON() ([]byte, error)

func (*NullableAuthorsLockModelV1) Set ¶

func (*NullableAuthorsLockModelV1) UnmarshalJSON ¶

func (v *NullableAuthorsLockModelV1) UnmarshalJSON(src []byte) error

func (*NullableAuthorsLockModelV1) Unset ¶

func (v *NullableAuthorsLockModelV1) Unset()

type NullableAuthorsModelSearchV1 ¶

type NullableAuthorsModelSearchV1 struct {
	// contains filtered or unexported fields
}

func (NullableAuthorsModelSearchV1) Get ¶

func (NullableAuthorsModelSearchV1) IsSet ¶

func (NullableAuthorsModelSearchV1) MarshalJSON ¶

func (v NullableAuthorsModelSearchV1) MarshalJSON() ([]byte, error)

func (*NullableAuthorsModelSearchV1) Set ¶

func (*NullableAuthorsModelSearchV1) UnmarshalJSON ¶

func (v *NullableAuthorsModelSearchV1) UnmarshalJSON(src []byte) error

func (*NullableAuthorsModelSearchV1) Unset ¶

func (v *NullableAuthorsModelSearchV1) Unset()

type NullableAuthorsModelSearchV1Stats ¶

type NullableAuthorsModelSearchV1Stats struct {
	// contains filtered or unexported fields
}

func (NullableAuthorsModelSearchV1Stats) Get ¶

func (NullableAuthorsModelSearchV1Stats) IsSet ¶

func (NullableAuthorsModelSearchV1Stats) MarshalJSON ¶

func (v NullableAuthorsModelSearchV1Stats) MarshalJSON() ([]byte, error)

func (*NullableAuthorsModelSearchV1Stats) Set ¶

func (*NullableAuthorsModelSearchV1Stats) UnmarshalJSON ¶

func (v *NullableAuthorsModelSearchV1Stats) UnmarshalJSON(src []byte) error

func (*NullableAuthorsModelSearchV1Stats) Unset ¶

type NullableAuthorsModelUpdateV1 ¶

type NullableAuthorsModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullableAuthorsModelUpdateV1) Get ¶

func (NullableAuthorsModelUpdateV1) IsSet ¶

func (NullableAuthorsModelUpdateV1) MarshalJSON ¶

func (v NullableAuthorsModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableAuthorsModelUpdateV1) Set ¶

func (*NullableAuthorsModelUpdateV1) UnmarshalJSON ¶

func (v *NullableAuthorsModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableAuthorsModelUpdateV1) Unset ¶

func (v *NullableAuthorsModelUpdateV1) Unset()

type NullableAuthorsModelUpdateV1Admin ¶

type NullableAuthorsModelUpdateV1Admin struct {
	// contains filtered or unexported fields
}

func (NullableAuthorsModelUpdateV1Admin) Get ¶

func (NullableAuthorsModelUpdateV1Admin) IsSet ¶

func (NullableAuthorsModelUpdateV1Admin) MarshalJSON ¶

func (v NullableAuthorsModelUpdateV1Admin) MarshalJSON() ([]byte, error)

func (*NullableAuthorsModelUpdateV1Admin) Set ¶

func (*NullableAuthorsModelUpdateV1Admin) UnmarshalJSON ¶

func (v *NullableAuthorsModelUpdateV1Admin) UnmarshalJSON(src []byte) error

func (*NullableAuthorsModelUpdateV1Admin) Unset ¶

type NullableAuthorsModelUpdateV1Associated ¶

type NullableAuthorsModelUpdateV1Associated struct {
	// contains filtered or unexported fields
}

func (NullableAuthorsModelUpdateV1Associated) Get ¶

func (NullableAuthorsModelUpdateV1Associated) IsSet ¶

func (NullableAuthorsModelUpdateV1Associated) MarshalJSON ¶

func (v NullableAuthorsModelUpdateV1Associated) MarshalJSON() ([]byte, error)

func (*NullableAuthorsModelUpdateV1Associated) Set ¶

func (*NullableAuthorsModelUpdateV1Associated) UnmarshalJSON ¶

func (v *NullableAuthorsModelUpdateV1Associated) UnmarshalJSON(src []byte) error

func (*NullableAuthorsModelUpdateV1Associated) Unset ¶

type NullableAuthorsModelUpdateV1Social ¶

type NullableAuthorsModelUpdateV1Social struct {
	// contains filtered or unexported fields
}

func (NullableAuthorsModelUpdateV1Social) Get ¶

func (NullableAuthorsModelUpdateV1Social) IsSet ¶

func (NullableAuthorsModelUpdateV1Social) MarshalJSON ¶

func (v NullableAuthorsModelUpdateV1Social) MarshalJSON() ([]byte, error)

func (*NullableAuthorsModelUpdateV1Social) Set ¶

func (*NullableAuthorsModelUpdateV1Social) UnmarshalJSON ¶

func (v *NullableAuthorsModelUpdateV1Social) UnmarshalJSON(src []byte) error

func (*NullableAuthorsModelUpdateV1Social) Unset ¶

type NullableAuthorsModelV1 ¶

type NullableAuthorsModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullableAuthorsModelV1 ¶

func NewNullableAuthorsModelV1(val *AuthorsModelV1) *NullableAuthorsModelV1

func (NullableAuthorsModelV1) Get ¶

func (NullableAuthorsModelV1) IsSet ¶

func (v NullableAuthorsModelV1) IsSet() bool

func (NullableAuthorsModelV1) MarshalJSON ¶

func (v NullableAuthorsModelV1) MarshalJSON() ([]byte, error)

func (*NullableAuthorsModelV1) Set ¶

func (*NullableAuthorsModelV1) UnmarshalJSON ¶

func (v *NullableAuthorsModelV1) UnmarshalJSON(src []byte) error

func (*NullableAuthorsModelV1) Unset ¶

func (v *NullableAuthorsModelV1) Unset()

type NullableAuthorsModelV1Admin ¶

type NullableAuthorsModelV1Admin struct {
	// contains filtered or unexported fields
}

func (NullableAuthorsModelV1Admin) Get ¶

func (NullableAuthorsModelV1Admin) IsSet ¶

func (NullableAuthorsModelV1Admin) MarshalJSON ¶

func (v NullableAuthorsModelV1Admin) MarshalJSON() ([]byte, error)

func (*NullableAuthorsModelV1Admin) Set ¶

func (*NullableAuthorsModelV1Admin) UnmarshalJSON ¶

func (v *NullableAuthorsModelV1Admin) UnmarshalJSON(src []byte) error

func (*NullableAuthorsModelV1Admin) Unset ¶

func (v *NullableAuthorsModelV1Admin) Unset()

type NullableAuthorsModelV1Associated ¶

type NullableAuthorsModelV1Associated struct {
	// contains filtered or unexported fields
}

func (NullableAuthorsModelV1Associated) Get ¶

func (NullableAuthorsModelV1Associated) IsSet ¶

func (NullableAuthorsModelV1Associated) MarshalJSON ¶

func (v NullableAuthorsModelV1Associated) MarshalJSON() ([]byte, error)

func (*NullableAuthorsModelV1Associated) Set ¶

func (*NullableAuthorsModelV1Associated) UnmarshalJSON ¶

func (v *NullableAuthorsModelV1Associated) UnmarshalJSON(src []byte) error

func (*NullableAuthorsModelV1Associated) Unset ¶

type NullableAuthorsModelV1Social ¶

type NullableAuthorsModelV1Social struct {
	// contains filtered or unexported fields
}

func (NullableAuthorsModelV1Social) Get ¶

func (NullableAuthorsModelV1Social) IsSet ¶

func (NullableAuthorsModelV1Social) MarshalJSON ¶

func (v NullableAuthorsModelV1Social) MarshalJSON() ([]byte, error)

func (*NullableAuthorsModelV1Social) Set ¶

func (*NullableAuthorsModelV1Social) UnmarshalJSON ¶

func (v *NullableAuthorsModelV1Social) UnmarshalJSON(src []byte) error

func (*NullableAuthorsModelV1Social) Unset ¶

func (v *NullableAuthorsModelV1Social) Unset()

type NullableAuthorsModelV1Stats ¶

type NullableAuthorsModelV1Stats struct {
	// contains filtered or unexported fields
}

func (NullableAuthorsModelV1Stats) Get ¶

func (NullableAuthorsModelV1Stats) IsSet ¶

func (NullableAuthorsModelV1Stats) MarshalJSON ¶

func (v NullableAuthorsModelV1Stats) MarshalJSON() ([]byte, error)

func (*NullableAuthorsModelV1Stats) Set ¶

func (*NullableAuthorsModelV1Stats) UnmarshalJSON ¶

func (v *NullableAuthorsModelV1Stats) UnmarshalJSON(src []byte) error

func (*NullableAuthorsModelV1Stats) Unset ¶

func (v *NullableAuthorsModelV1Stats) Unset()

type NullableAuthorsSearchRequestV1 ¶

type NullableAuthorsSearchRequestV1 struct {
	// contains filtered or unexported fields
}

func (NullableAuthorsSearchRequestV1) Get ¶

func (NullableAuthorsSearchRequestV1) IsSet ¶

func (NullableAuthorsSearchRequestV1) MarshalJSON ¶

func (v NullableAuthorsSearchRequestV1) MarshalJSON() ([]byte, error)

func (*NullableAuthorsSearchRequestV1) Set ¶

func (*NullableAuthorsSearchRequestV1) UnmarshalJSON ¶

func (v *NullableAuthorsSearchRequestV1) UnmarshalJSON(src []byte) error

func (*NullableAuthorsSearchRequestV1) Unset ¶

func (v *NullableAuthorsSearchRequestV1) Unset()

type NullableAuthorsSearchResponseV1 ¶

type NullableAuthorsSearchResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullableAuthorsSearchResponseV1) Get ¶

func (NullableAuthorsSearchResponseV1) IsSet ¶

func (NullableAuthorsSearchResponseV1) MarshalJSON ¶

func (v NullableAuthorsSearchResponseV1) MarshalJSON() ([]byte, error)

func (*NullableAuthorsSearchResponseV1) Set ¶

func (*NullableAuthorsSearchResponseV1) UnmarshalJSON ¶

func (v *NullableAuthorsSearchResponseV1) UnmarshalJSON(src []byte) error

func (*NullableAuthorsSearchResponseV1) Unset ¶

type NullableAuthorsSearchResponseV1Results ¶

type NullableAuthorsSearchResponseV1Results struct {
	// contains filtered or unexported fields
}

func (NullableAuthorsSearchResponseV1Results) Get ¶

func (NullableAuthorsSearchResponseV1Results) IsSet ¶

func (NullableAuthorsSearchResponseV1Results) MarshalJSON ¶

func (v NullableAuthorsSearchResponseV1Results) MarshalJSON() ([]byte, error)

func (*NullableAuthorsSearchResponseV1Results) Set ¶

func (*NullableAuthorsSearchResponseV1Results) UnmarshalJSON ¶

func (v *NullableAuthorsSearchResponseV1Results) UnmarshalJSON(src []byte) error

func (*NullableAuthorsSearchResponseV1Results) Unset ¶

type NullableAuthorsSeriesListRequestV1 ¶

type NullableAuthorsSeriesListRequestV1 struct {
	// contains filtered or unexported fields
}

func (NullableAuthorsSeriesListRequestV1) Get ¶

func (NullableAuthorsSeriesListRequestV1) IsSet ¶

func (NullableAuthorsSeriesListRequestV1) MarshalJSON ¶

func (v NullableAuthorsSeriesListRequestV1) MarshalJSON() ([]byte, error)

func (*NullableAuthorsSeriesListRequestV1) Set ¶

func (*NullableAuthorsSeriesListRequestV1) UnmarshalJSON ¶

func (v *NullableAuthorsSeriesListRequestV1) UnmarshalJSON(src []byte) error

func (*NullableAuthorsSeriesListRequestV1) Unset ¶

type NullableAuthorsSeriesListResponseV1 ¶

type NullableAuthorsSeriesListResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullableAuthorsSeriesListResponseV1) Get ¶

func (NullableAuthorsSeriesListResponseV1) IsSet ¶

func (NullableAuthorsSeriesListResponseV1) MarshalJSON ¶

func (v NullableAuthorsSeriesListResponseV1) MarshalJSON() ([]byte, error)

func (*NullableAuthorsSeriesListResponseV1) Set ¶

func (*NullableAuthorsSeriesListResponseV1) UnmarshalJSON ¶

func (v *NullableAuthorsSeriesListResponseV1) UnmarshalJSON(src []byte) error

func (*NullableAuthorsSeriesListResponseV1) Unset ¶

type NullableAuthorsSeriesListResponseV1GenreList ¶

type NullableAuthorsSeriesListResponseV1GenreList struct {
	// contains filtered or unexported fields
}

func (NullableAuthorsSeriesListResponseV1GenreList) Get ¶

func (NullableAuthorsSeriesListResponseV1GenreList) IsSet ¶

func (NullableAuthorsSeriesListResponseV1GenreList) MarshalJSON ¶

func (*NullableAuthorsSeriesListResponseV1GenreList) Set ¶

func (*NullableAuthorsSeriesListResponseV1GenreList) UnmarshalJSON ¶

func (*NullableAuthorsSeriesListResponseV1GenreList) Unset ¶

type NullableAuthorsSeriesListResponseV1SeriesList ¶

type NullableAuthorsSeriesListResponseV1SeriesList struct {
	// contains filtered or unexported fields
}

func (NullableAuthorsSeriesListResponseV1SeriesList) Get ¶

func (NullableAuthorsSeriesListResponseV1SeriesList) IsSet ¶

func (NullableAuthorsSeriesListResponseV1SeriesList) MarshalJSON ¶

func (*NullableAuthorsSeriesListResponseV1SeriesList) Set ¶

func (*NullableAuthorsSeriesListResponseV1SeriesList) UnmarshalJSON ¶

func (*NullableAuthorsSeriesListResponseV1SeriesList) Unset ¶

type NullableAuthorsSeriesListResponseV1SeriesListMetadata ¶

type NullableAuthorsSeriesListResponseV1SeriesListMetadata struct {
	// contains filtered or unexported fields
}

func (NullableAuthorsSeriesListResponseV1SeriesListMetadata) Get ¶

func (NullableAuthorsSeriesListResponseV1SeriesListMetadata) IsSet ¶

func (NullableAuthorsSeriesListResponseV1SeriesListMetadata) MarshalJSON ¶

func (*NullableAuthorsSeriesListResponseV1SeriesListMetadata) Set ¶

func (*NullableAuthorsSeriesListResponseV1SeriesListMetadata) UnmarshalJSON ¶

func (*NullableAuthorsSeriesListResponseV1SeriesListMetadata) Unset ¶

type NullableAvatarModelSearchV1 ¶

type NullableAvatarModelSearchV1 struct {
	// contains filtered or unexported fields
}

func (NullableAvatarModelSearchV1) Get ¶

func (NullableAvatarModelSearchV1) IsSet ¶

func (NullableAvatarModelSearchV1) MarshalJSON ¶

func (v NullableAvatarModelSearchV1) MarshalJSON() ([]byte, error)

func (*NullableAvatarModelSearchV1) Set ¶

func (*NullableAvatarModelSearchV1) UnmarshalJSON ¶

func (v *NullableAvatarModelSearchV1) UnmarshalJSON(src []byte) error

func (*NullableAvatarModelSearchV1) Unset ¶

func (v *NullableAvatarModelSearchV1) Unset()

type NullableAvatarModelUpdateV1 ¶

type NullableAvatarModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullableAvatarModelUpdateV1) Get ¶

func (NullableAvatarModelUpdateV1) IsSet ¶

func (NullableAvatarModelUpdateV1) MarshalJSON ¶

func (v NullableAvatarModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableAvatarModelUpdateV1) Set ¶

func (*NullableAvatarModelUpdateV1) UnmarshalJSON ¶

func (v *NullableAvatarModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableAvatarModelUpdateV1) Unset ¶

func (v *NullableAvatarModelUpdateV1) Unset()

type NullableAvatarModelV1 ¶

type NullableAvatarModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullableAvatarModelV1 ¶

func NewNullableAvatarModelV1(val *AvatarModelV1) *NullableAvatarModelV1

func (NullableAvatarModelV1) Get ¶

func (NullableAvatarModelV1) IsSet ¶

func (v NullableAvatarModelV1) IsSet() bool

func (NullableAvatarModelV1) MarshalJSON ¶

func (v NullableAvatarModelV1) MarshalJSON() ([]byte, error)

func (*NullableAvatarModelV1) Set ¶

func (v *NullableAvatarModelV1) Set(val *AvatarModelV1)

func (*NullableAvatarModelV1) UnmarshalJSON ¶

func (v *NullableAvatarModelV1) UnmarshalJSON(src []byte) error

func (*NullableAvatarModelV1) Unset ¶

func (v *NullableAvatarModelV1) Unset()

type NullableBirthdayModelV1 ¶

type NullableBirthdayModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullableBirthdayModelV1 ¶

func NewNullableBirthdayModelV1(val *BirthdayModelV1) *NullableBirthdayModelV1

func (NullableBirthdayModelV1) Get ¶

func (NullableBirthdayModelV1) IsSet ¶

func (v NullableBirthdayModelV1) IsSet() bool

func (NullableBirthdayModelV1) MarshalJSON ¶

func (v NullableBirthdayModelV1) MarshalJSON() ([]byte, error)

func (*NullableBirthdayModelV1) Set ¶

func (*NullableBirthdayModelV1) UnmarshalJSON ¶

func (v *NullableBirthdayModelV1) UnmarshalJSON(src []byte) error

func (*NullableBirthdayModelV1) Unset ¶

func (v *NullableBirthdayModelV1) Unset()

type NullableBool ¶

type NullableBool struct {
	// contains filtered or unexported fields
}

func NewNullableBool ¶

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get ¶

func (v NullableBool) Get() *bool

func (NullableBool) IsSet ¶

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON ¶

func (v NullableBool) MarshalJSON() ([]byte, error)

func (*NullableBool) Set ¶

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON ¶

func (v *NullableBool) UnmarshalJSON(src []byte) error

func (*NullableBool) Unset ¶

func (v *NullableBool) Unset()

type NullableCategoriesModelSearchV1 ¶

type NullableCategoriesModelSearchV1 struct {
	// contains filtered or unexported fields
}

func (NullableCategoriesModelSearchV1) Get ¶

func (NullableCategoriesModelSearchV1) IsSet ¶

func (NullableCategoriesModelSearchV1) MarshalJSON ¶

func (v NullableCategoriesModelSearchV1) MarshalJSON() ([]byte, error)

func (*NullableCategoriesModelSearchV1) Set ¶

func (*NullableCategoriesModelSearchV1) UnmarshalJSON ¶

func (v *NullableCategoriesModelSearchV1) UnmarshalJSON(src []byte) error

func (*NullableCategoriesModelSearchV1) Unset ¶

type NullableCategoriesModelUpdateV1 ¶

type NullableCategoriesModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullableCategoriesModelUpdateV1) Get ¶

func (NullableCategoriesModelUpdateV1) IsSet ¶

func (NullableCategoriesModelUpdateV1) MarshalJSON ¶

func (v NullableCategoriesModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableCategoriesModelUpdateV1) Set ¶

func (*NullableCategoriesModelUpdateV1) UnmarshalJSON ¶

func (v *NullableCategoriesModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableCategoriesModelUpdateV1) Unset ¶

type NullableCategoriesModelV1 ¶

type NullableCategoriesModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullableCategoriesModelV1 ¶

func NewNullableCategoriesModelV1(val *CategoriesModelV1) *NullableCategoriesModelV1

func (NullableCategoriesModelV1) Get ¶

func (NullableCategoriesModelV1) IsSet ¶

func (v NullableCategoriesModelV1) IsSet() bool

func (NullableCategoriesModelV1) MarshalJSON ¶

func (v NullableCategoriesModelV1) MarshalJSON() ([]byte, error)

func (*NullableCategoriesModelV1) Set ¶

func (*NullableCategoriesModelV1) UnmarshalJSON ¶

func (v *NullableCategoriesModelV1) UnmarshalJSON(src []byte) error

func (*NullableCategoriesModelV1) Unset ¶

func (v *NullableCategoriesModelV1) Unset()

type NullableCategoriesSearchRequestV1 ¶

type NullableCategoriesSearchRequestV1 struct {
	// contains filtered or unexported fields
}

func (NullableCategoriesSearchRequestV1) Get ¶

func (NullableCategoriesSearchRequestV1) IsSet ¶

func (NullableCategoriesSearchRequestV1) MarshalJSON ¶

func (v NullableCategoriesSearchRequestV1) MarshalJSON() ([]byte, error)

func (*NullableCategoriesSearchRequestV1) Set ¶

func (*NullableCategoriesSearchRequestV1) UnmarshalJSON ¶

func (v *NullableCategoriesSearchRequestV1) UnmarshalJSON(src []byte) error

func (*NullableCategoriesSearchRequestV1) Unset ¶

type NullableCategoriesSearchResponseV1 ¶

type NullableCategoriesSearchResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullableCategoriesSearchResponseV1) Get ¶

func (NullableCategoriesSearchResponseV1) IsSet ¶

func (NullableCategoriesSearchResponseV1) MarshalJSON ¶

func (v NullableCategoriesSearchResponseV1) MarshalJSON() ([]byte, error)

func (*NullableCategoriesSearchResponseV1) Set ¶

func (*NullableCategoriesSearchResponseV1) UnmarshalJSON ¶

func (v *NullableCategoriesSearchResponseV1) UnmarshalJSON(src []byte) error

func (*NullableCategoriesSearchResponseV1) Unset ¶

type NullableCategoriesSearchResponseV1Results ¶

type NullableCategoriesSearchResponseV1Results struct {
	// contains filtered or unexported fields
}

func (NullableCategoriesSearchResponseV1Results) Get ¶

func (NullableCategoriesSearchResponseV1Results) IsSet ¶

func (NullableCategoriesSearchResponseV1Results) MarshalJSON ¶

func (*NullableCategoriesSearchResponseV1Results) Set ¶

func (*NullableCategoriesSearchResponseV1Results) UnmarshalJSON ¶

func (v *NullableCategoriesSearchResponseV1Results) UnmarshalJSON(src []byte) error

func (*NullableCategoriesSearchResponseV1Results) Unset ¶

type NullableConvoBulkModelV1 ¶

type NullableConvoBulkModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullableConvoBulkModelV1 ¶

func NewNullableConvoBulkModelV1(val *ConvoBulkModelV1) *NullableConvoBulkModelV1

func (NullableConvoBulkModelV1) Get ¶

func (NullableConvoBulkModelV1) IsSet ¶

func (v NullableConvoBulkModelV1) IsSet() bool

func (NullableConvoBulkModelV1) MarshalJSON ¶

func (v NullableConvoBulkModelV1) MarshalJSON() ([]byte, error)

func (*NullableConvoBulkModelV1) Set ¶

func (*NullableConvoBulkModelV1) UnmarshalJSON ¶

func (v *NullableConvoBulkModelV1) UnmarshalJSON(src []byte) error

func (*NullableConvoBulkModelV1) Unset ¶

func (v *NullableConvoBulkModelV1) Unset()

type NullableConvoMessageListRequestV1 ¶

type NullableConvoMessageListRequestV1 struct {
	// contains filtered or unexported fields
}

func (NullableConvoMessageListRequestV1) Get ¶

func (NullableConvoMessageListRequestV1) IsSet ¶

func (NullableConvoMessageListRequestV1) MarshalJSON ¶

func (v NullableConvoMessageListRequestV1) MarshalJSON() ([]byte, error)

func (*NullableConvoMessageListRequestV1) Set ¶

func (*NullableConvoMessageListRequestV1) UnmarshalJSON ¶

func (v *NullableConvoMessageListRequestV1) UnmarshalJSON(src []byte) error

func (*NullableConvoMessageListRequestV1) Unset ¶

type NullableConvoMessageModelUpdateV1 ¶

type NullableConvoMessageModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullableConvoMessageModelUpdateV1) Get ¶

func (NullableConvoMessageModelUpdateV1) IsSet ¶

func (NullableConvoMessageModelUpdateV1) MarshalJSON ¶

func (v NullableConvoMessageModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableConvoMessageModelUpdateV1) Set ¶

func (*NullableConvoMessageModelUpdateV1) UnmarshalJSON ¶

func (v *NullableConvoMessageModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableConvoMessageModelUpdateV1) Unset ¶

type NullableConvoMessageModelV1 ¶

type NullableConvoMessageModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableConvoMessageModelV1) Get ¶

func (NullableConvoMessageModelV1) IsSet ¶

func (NullableConvoMessageModelV1) MarshalJSON ¶

func (v NullableConvoMessageModelV1) MarshalJSON() ([]byte, error)

func (*NullableConvoMessageModelV1) Set ¶

func (*NullableConvoMessageModelV1) UnmarshalJSON ¶

func (v *NullableConvoMessageModelV1) UnmarshalJSON(src []byte) error

func (*NullableConvoMessageModelV1) Unset ¶

func (v *NullableConvoMessageModelV1) Unset()

type NullableConvoMessageSearchRequestV1 ¶

type NullableConvoMessageSearchRequestV1 struct {
	// contains filtered or unexported fields
}

func (NullableConvoMessageSearchRequestV1) Get ¶

func (NullableConvoMessageSearchRequestV1) IsSet ¶

func (NullableConvoMessageSearchRequestV1) MarshalJSON ¶

func (v NullableConvoMessageSearchRequestV1) MarshalJSON() ([]byte, error)

func (*NullableConvoMessageSearchRequestV1) Set ¶

func (*NullableConvoMessageSearchRequestV1) UnmarshalJSON ¶

func (v *NullableConvoMessageSearchRequestV1) UnmarshalJSON(src []byte) error

func (*NullableConvoMessageSearchRequestV1) Unset ¶

type NullableConvoMessageSearchResponseV1 ¶

type NullableConvoMessageSearchResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullableConvoMessageSearchResponseV1) Get ¶

func (NullableConvoMessageSearchResponseV1) IsSet ¶

func (NullableConvoMessageSearchResponseV1) MarshalJSON ¶

func (v NullableConvoMessageSearchResponseV1) MarshalJSON() ([]byte, error)

func (*NullableConvoMessageSearchResponseV1) Set ¶

func (*NullableConvoMessageSearchResponseV1) UnmarshalJSON ¶

func (v *NullableConvoMessageSearchResponseV1) UnmarshalJSON(src []byte) error

func (*NullableConvoMessageSearchResponseV1) Unset ¶

type NullableConvoMessageSearchResponseV1Results ¶

type NullableConvoMessageSearchResponseV1Results struct {
	// contains filtered or unexported fields
}

func (NullableConvoMessageSearchResponseV1Results) Get ¶

func (NullableConvoMessageSearchResponseV1Results) IsSet ¶

func (NullableConvoMessageSearchResponseV1Results) MarshalJSON ¶

func (*NullableConvoMessageSearchResponseV1Results) Set ¶

func (*NullableConvoMessageSearchResponseV1Results) UnmarshalJSON ¶

func (v *NullableConvoMessageSearchResponseV1Results) UnmarshalJSON(src []byte) error

func (*NullableConvoMessageSearchResponseV1Results) Unset ¶

type NullableConvoMessageSearchResponseV1ResultsMetadata ¶

type NullableConvoMessageSearchResponseV1ResultsMetadata struct {
	// contains filtered or unexported fields
}

func (NullableConvoMessageSearchResponseV1ResultsMetadata) Get ¶

func (NullableConvoMessageSearchResponseV1ResultsMetadata) IsSet ¶

func (NullableConvoMessageSearchResponseV1ResultsMetadata) MarshalJSON ¶

func (*NullableConvoMessageSearchResponseV1ResultsMetadata) Set ¶

func (*NullableConvoMessageSearchResponseV1ResultsMetadata) UnmarshalJSON ¶

func (*NullableConvoMessageSearchResponseV1ResultsMetadata) Unset ¶

type NullableConvoModelAddV1 ¶

type NullableConvoModelAddV1 struct {
	// contains filtered or unexported fields
}

func NewNullableConvoModelAddV1 ¶

func NewNullableConvoModelAddV1(val *ConvoModelAddV1) *NullableConvoModelAddV1

func (NullableConvoModelAddV1) Get ¶

func (NullableConvoModelAddV1) IsSet ¶

func (v NullableConvoModelAddV1) IsSet() bool

func (NullableConvoModelAddV1) MarshalJSON ¶

func (v NullableConvoModelAddV1) MarshalJSON() ([]byte, error)

func (*NullableConvoModelAddV1) Set ¶

func (*NullableConvoModelAddV1) UnmarshalJSON ¶

func (v *NullableConvoModelAddV1) UnmarshalJSON(src []byte) error

func (*NullableConvoModelAddV1) Unset ¶

func (v *NullableConvoModelAddV1) Unset()

type NullableConvoModelUpdateV1 ¶

type NullableConvoModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func NewNullableConvoModelUpdateV1 ¶

func NewNullableConvoModelUpdateV1(val *ConvoModelUpdateV1) *NullableConvoModelUpdateV1

func (NullableConvoModelUpdateV1) Get ¶

func (NullableConvoModelUpdateV1) IsSet ¶

func (v NullableConvoModelUpdateV1) IsSet() bool

func (NullableConvoModelUpdateV1) MarshalJSON ¶

func (v NullableConvoModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableConvoModelUpdateV1) Set ¶

func (*NullableConvoModelUpdateV1) UnmarshalJSON ¶

func (v *NullableConvoModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableConvoModelUpdateV1) Unset ¶

func (v *NullableConvoModelUpdateV1) Unset()

type NullableConvoModelV1 ¶

type NullableConvoModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullableConvoModelV1 ¶

func NewNullableConvoModelV1(val *ConvoModelV1) *NullableConvoModelV1

func (NullableConvoModelV1) Get ¶

func (NullableConvoModelV1) IsSet ¶

func (v NullableConvoModelV1) IsSet() bool

func (NullableConvoModelV1) MarshalJSON ¶

func (v NullableConvoModelV1) MarshalJSON() ([]byte, error)

func (*NullableConvoModelV1) Set ¶

func (v *NullableConvoModelV1) Set(val *ConvoModelV1)

func (*NullableConvoModelV1) UnmarshalJSON ¶

func (v *NullableConvoModelV1) UnmarshalJSON(src []byte) error

func (*NullableConvoModelV1) Unset ¶

func (v *NullableConvoModelV1) Unset()

type NullableConvoParticipantModelAddV1 ¶

type NullableConvoParticipantModelAddV1 struct {
	// contains filtered or unexported fields
}

func (NullableConvoParticipantModelAddV1) Get ¶

func (NullableConvoParticipantModelAddV1) IsSet ¶

func (NullableConvoParticipantModelAddV1) MarshalJSON ¶

func (v NullableConvoParticipantModelAddV1) MarshalJSON() ([]byte, error)

func (*NullableConvoParticipantModelAddV1) Set ¶

func (*NullableConvoParticipantModelAddV1) UnmarshalJSON ¶

func (v *NullableConvoParticipantModelAddV1) UnmarshalJSON(src []byte) error

func (*NullableConvoParticipantModelAddV1) Unset ¶

type NullableConvoParticipantModelV1 ¶

type NullableConvoParticipantModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableConvoParticipantModelV1) Get ¶

func (NullableConvoParticipantModelV1) IsSet ¶

func (NullableConvoParticipantModelV1) MarshalJSON ¶

func (v NullableConvoParticipantModelV1) MarshalJSON() ([]byte, error)

func (*NullableConvoParticipantModelV1) Set ¶

func (*NullableConvoParticipantModelV1) UnmarshalJSON ¶

func (v *NullableConvoParticipantModelV1) UnmarshalJSON(src []byte) error

func (*NullableConvoParticipantModelV1) Unset ¶

type NullableConvoSearchRequestV1 ¶

type NullableConvoSearchRequestV1 struct {
	// contains filtered or unexported fields
}

func (NullableConvoSearchRequestV1) Get ¶

func (NullableConvoSearchRequestV1) IsSet ¶

func (NullableConvoSearchRequestV1) MarshalJSON ¶

func (v NullableConvoSearchRequestV1) MarshalJSON() ([]byte, error)

func (*NullableConvoSearchRequestV1) Set ¶

func (*NullableConvoSearchRequestV1) UnmarshalJSON ¶

func (v *NullableConvoSearchRequestV1) UnmarshalJSON(src []byte) error

func (*NullableConvoSearchRequestV1) Unset ¶

func (v *NullableConvoSearchRequestV1) Unset()

type NullableConvoSearchResponseV1 ¶

type NullableConvoSearchResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullableConvoSearchResponseV1) Get ¶

func (NullableConvoSearchResponseV1) IsSet ¶

func (NullableConvoSearchResponseV1) MarshalJSON ¶

func (v NullableConvoSearchResponseV1) MarshalJSON() ([]byte, error)

func (*NullableConvoSearchResponseV1) Set ¶

func (*NullableConvoSearchResponseV1) UnmarshalJSON ¶

func (v *NullableConvoSearchResponseV1) UnmarshalJSON(src []byte) error

func (*NullableConvoSearchResponseV1) Unset ¶

func (v *NullableConvoSearchResponseV1) Unset()

type NullableConvoSearchResponseV1Results ¶

type NullableConvoSearchResponseV1Results struct {
	// contains filtered or unexported fields
}

func (NullableConvoSearchResponseV1Results) Get ¶

func (NullableConvoSearchResponseV1Results) IsSet ¶

func (NullableConvoSearchResponseV1Results) MarshalJSON ¶

func (v NullableConvoSearchResponseV1Results) MarshalJSON() ([]byte, error)

func (*NullableConvoSearchResponseV1Results) Set ¶

func (*NullableConvoSearchResponseV1Results) UnmarshalJSON ¶

func (v *NullableConvoSearchResponseV1Results) UnmarshalJSON(src []byte) error

func (*NullableConvoSearchResponseV1Results) Unset ¶

type NullableConvoSearchResponseV1ResultsMetadata ¶

type NullableConvoSearchResponseV1ResultsMetadata struct {
	// contains filtered or unexported fields
}

func (NullableConvoSearchResponseV1ResultsMetadata) Get ¶

func (NullableConvoSearchResponseV1ResultsMetadata) IsSet ¶

func (NullableConvoSearchResponseV1ResultsMetadata) MarshalJSON ¶

func (*NullableConvoSearchResponseV1ResultsMetadata) Set ¶

func (*NullableConvoSearchResponseV1ResultsMetadata) UnmarshalJSON ¶

func (*NullableConvoSearchResponseV1ResultsMetadata) Unset ¶

type NullableConvoUserIgnoreModelV1 ¶

type NullableConvoUserIgnoreModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableConvoUserIgnoreModelV1) Get ¶

func (NullableConvoUserIgnoreModelV1) IsSet ¶

func (NullableConvoUserIgnoreModelV1) MarshalJSON ¶

func (v NullableConvoUserIgnoreModelV1) MarshalJSON() ([]byte, error)

func (*NullableConvoUserIgnoreModelV1) Set ¶

func (*NullableConvoUserIgnoreModelV1) UnmarshalJSON ¶

func (v *NullableConvoUserIgnoreModelV1) UnmarshalJSON(src []byte) error

func (*NullableConvoUserIgnoreModelV1) Unset ¶

func (v *NullableConvoUserIgnoreModelV1) Unset()

type NullableFaqCategoryModelUpdateV1 ¶

type NullableFaqCategoryModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullableFaqCategoryModelUpdateV1) Get ¶

func (NullableFaqCategoryModelUpdateV1) IsSet ¶

func (NullableFaqCategoryModelUpdateV1) MarshalJSON ¶

func (v NullableFaqCategoryModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableFaqCategoryModelUpdateV1) Set ¶

func (*NullableFaqCategoryModelUpdateV1) UnmarshalJSON ¶

func (v *NullableFaqCategoryModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableFaqCategoryModelUpdateV1) Unset ¶

type NullableFaqCategoryModelV1 ¶

type NullableFaqCategoryModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullableFaqCategoryModelV1 ¶

func NewNullableFaqCategoryModelV1(val *FaqCategoryModelV1) *NullableFaqCategoryModelV1

func (NullableFaqCategoryModelV1) Get ¶

func (NullableFaqCategoryModelV1) IsSet ¶

func (v NullableFaqCategoryModelV1) IsSet() bool

func (NullableFaqCategoryModelV1) MarshalJSON ¶

func (v NullableFaqCategoryModelV1) MarshalJSON() ([]byte, error)

func (*NullableFaqCategoryModelV1) Set ¶

func (*NullableFaqCategoryModelV1) UnmarshalJSON ¶

func (v *NullableFaqCategoryModelV1) UnmarshalJSON(src []byte) error

func (*NullableFaqCategoryModelV1) Unset ¶

func (v *NullableFaqCategoryModelV1) Unset()

type NullableFaqCategoryQuestionsModelV1 ¶

type NullableFaqCategoryQuestionsModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableFaqCategoryQuestionsModelV1) Get ¶

func (NullableFaqCategoryQuestionsModelV1) IsSet ¶

func (NullableFaqCategoryQuestionsModelV1) MarshalJSON ¶

func (v NullableFaqCategoryQuestionsModelV1) MarshalJSON() ([]byte, error)

func (*NullableFaqCategoryQuestionsModelV1) Set ¶

func (*NullableFaqCategoryQuestionsModelV1) UnmarshalJSON ¶

func (v *NullableFaqCategoryQuestionsModelV1) UnmarshalJSON(src []byte) error

func (*NullableFaqCategoryQuestionsModelV1) Unset ¶

type NullableFaqCategoryReorderModelV1 ¶

type NullableFaqCategoryReorderModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableFaqCategoryReorderModelV1) Get ¶

func (NullableFaqCategoryReorderModelV1) IsSet ¶

func (NullableFaqCategoryReorderModelV1) MarshalJSON ¶

func (v NullableFaqCategoryReorderModelV1) MarshalJSON() ([]byte, error)

func (*NullableFaqCategoryReorderModelV1) Set ¶

func (*NullableFaqCategoryReorderModelV1) UnmarshalJSON ¶

func (v *NullableFaqCategoryReorderModelV1) UnmarshalJSON(src []byte) error

func (*NullableFaqCategoryReorderModelV1) Unset ¶

type NullableFaqQuestionModelUpdateV1 ¶

type NullableFaqQuestionModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullableFaqQuestionModelUpdateV1) Get ¶

func (NullableFaqQuestionModelUpdateV1) IsSet ¶

func (NullableFaqQuestionModelUpdateV1) MarshalJSON ¶

func (v NullableFaqQuestionModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableFaqQuestionModelUpdateV1) Set ¶

func (*NullableFaqQuestionModelUpdateV1) UnmarshalJSON ¶

func (v *NullableFaqQuestionModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableFaqQuestionModelUpdateV1) Unset ¶

type NullableFaqQuestionModelV1 ¶

type NullableFaqQuestionModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullableFaqQuestionModelV1 ¶

func NewNullableFaqQuestionModelV1(val *FaqQuestionModelV1) *NullableFaqQuestionModelV1

func (NullableFaqQuestionModelV1) Get ¶

func (NullableFaqQuestionModelV1) IsSet ¶

func (v NullableFaqQuestionModelV1) IsSet() bool

func (NullableFaqQuestionModelV1) MarshalJSON ¶

func (v NullableFaqQuestionModelV1) MarshalJSON() ([]byte, error)

func (*NullableFaqQuestionModelV1) Set ¶

func (*NullableFaqQuestionModelV1) UnmarshalJSON ¶

func (v *NullableFaqQuestionModelV1) UnmarshalJSON(src []byte) error

func (*NullableFaqQuestionModelV1) Unset ¶

func (v *NullableFaqQuestionModelV1) Unset()

type NullableFaqQuestionOnlyModelV1 ¶

type NullableFaqQuestionOnlyModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableFaqQuestionOnlyModelV1) Get ¶

func (NullableFaqQuestionOnlyModelV1) IsSet ¶

func (NullableFaqQuestionOnlyModelV1) MarshalJSON ¶

func (v NullableFaqQuestionOnlyModelV1) MarshalJSON() ([]byte, error)

func (*NullableFaqQuestionOnlyModelV1) Set ¶

func (*NullableFaqQuestionOnlyModelV1) UnmarshalJSON ¶

func (v *NullableFaqQuestionOnlyModelV1) UnmarshalJSON(src []byte) error

func (*NullableFaqQuestionOnlyModelV1) Unset ¶

func (v *NullableFaqQuestionOnlyModelV1) Unset()

type NullableFaqQuestionReorderModelV1 ¶

type NullableFaqQuestionReorderModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableFaqQuestionReorderModelV1) Get ¶

func (NullableFaqQuestionReorderModelV1) IsSet ¶

func (NullableFaqQuestionReorderModelV1) MarshalJSON ¶

func (v NullableFaqQuestionReorderModelV1) MarshalJSON() ([]byte, error)

func (*NullableFaqQuestionReorderModelV1) Set ¶

func (*NullableFaqQuestionReorderModelV1) UnmarshalJSON ¶

func (v *NullableFaqQuestionReorderModelV1) UnmarshalJSON(src []byte) error

func (*NullableFaqQuestionReorderModelV1) Unset ¶

type NullableFloat32 ¶

type NullableFloat32 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat32 ¶

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get ¶

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet ¶

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON ¶

func (v NullableFloat32) MarshalJSON() ([]byte, error)

func (*NullableFloat32) Set ¶

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON ¶

func (v *NullableFloat32) UnmarshalJSON(src []byte) error

func (*NullableFloat32) Unset ¶

func (v *NullableFloat32) Unset()

type NullableFloat64 ¶

type NullableFloat64 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat64 ¶

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get ¶

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet ¶

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON ¶

func (v NullableFloat64) MarshalJSON() ([]byte, error)

func (*NullableFloat64) Set ¶

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON ¶

func (v *NullableFloat64) UnmarshalJSON(src []byte) error

func (*NullableFloat64) Unset ¶

func (v *NullableFloat64) Unset()

type NullableForumAdminHistoryModelV1 ¶

type NullableForumAdminHistoryModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumAdminHistoryModelV1) Get ¶

func (NullableForumAdminHistoryModelV1) IsSet ¶

func (NullableForumAdminHistoryModelV1) MarshalJSON ¶

func (v NullableForumAdminHistoryModelV1) MarshalJSON() ([]byte, error)

func (*NullableForumAdminHistoryModelV1) Set ¶

func (*NullableForumAdminHistoryModelV1) UnmarshalJSON ¶

func (v *NullableForumAdminHistoryModelV1) UnmarshalJSON(src []byte) error

func (*NullableForumAdminHistoryModelV1) Unset ¶

type NullableForumAdminHistorySearchRequestV1 ¶

type NullableForumAdminHistorySearchRequestV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumAdminHistorySearchRequestV1) Get ¶

func (NullableForumAdminHistorySearchRequestV1) IsSet ¶

func (NullableForumAdminHistorySearchRequestV1) MarshalJSON ¶

func (*NullableForumAdminHistorySearchRequestV1) Set ¶

func (*NullableForumAdminHistorySearchRequestV1) UnmarshalJSON ¶

func (v *NullableForumAdminHistorySearchRequestV1) UnmarshalJSON(src []byte) error

func (*NullableForumAdminHistorySearchRequestV1) Unset ¶

type NullableForumAdminHistorySearchResponseV1 ¶

type NullableForumAdminHistorySearchResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumAdminHistorySearchResponseV1) Get ¶

func (NullableForumAdminHistorySearchResponseV1) IsSet ¶

func (NullableForumAdminHistorySearchResponseV1) MarshalJSON ¶

func (*NullableForumAdminHistorySearchResponseV1) Set ¶

func (*NullableForumAdminHistorySearchResponseV1) UnmarshalJSON ¶

func (v *NullableForumAdminHistorySearchResponseV1) UnmarshalJSON(src []byte) error

func (*NullableForumAdminHistorySearchResponseV1) Unset ¶

type NullableForumAdminHistorySearchResponseV1Results ¶

type NullableForumAdminHistorySearchResponseV1Results struct {
	// contains filtered or unexported fields
}

func (NullableForumAdminHistorySearchResponseV1Results) Get ¶

func (NullableForumAdminHistorySearchResponseV1Results) IsSet ¶

func (NullableForumAdminHistorySearchResponseV1Results) MarshalJSON ¶

func (*NullableForumAdminHistorySearchResponseV1Results) Set ¶

func (*NullableForumAdminHistorySearchResponseV1Results) UnmarshalJSON ¶

func (*NullableForumAdminHistorySearchResponseV1Results) Unset ¶

type NullableForumAdminModelUpdateV1 ¶

type NullableForumAdminModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumAdminModelUpdateV1) Get ¶

func (NullableForumAdminModelUpdateV1) IsSet ¶

func (NullableForumAdminModelUpdateV1) MarshalJSON ¶

func (v NullableForumAdminModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableForumAdminModelUpdateV1) Set ¶

func (*NullableForumAdminModelUpdateV1) UnmarshalJSON ¶

func (v *NullableForumAdminModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableForumAdminModelUpdateV1) Unset ¶

type NullableForumAdminModelV1 ¶

type NullableForumAdminModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullableForumAdminModelV1 ¶

func NewNullableForumAdminModelV1(val *ForumAdminModelV1) *NullableForumAdminModelV1

func (NullableForumAdminModelV1) Get ¶

func (NullableForumAdminModelV1) IsSet ¶

func (v NullableForumAdminModelV1) IsSet() bool

func (NullableForumAdminModelV1) MarshalJSON ¶

func (v NullableForumAdminModelV1) MarshalJSON() ([]byte, error)

func (*NullableForumAdminModelV1) Set ¶

func (*NullableForumAdminModelV1) UnmarshalJSON ¶

func (v *NullableForumAdminModelV1) UnmarshalJSON(src []byte) error

func (*NullableForumAdminModelV1) Unset ¶

func (v *NullableForumAdminModelV1) Unset()

type NullableForumCategoryModelListV1 ¶

type NullableForumCategoryModelListV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumCategoryModelListV1) Get ¶

func (NullableForumCategoryModelListV1) IsSet ¶

func (NullableForumCategoryModelListV1) MarshalJSON ¶

func (v NullableForumCategoryModelListV1) MarshalJSON() ([]byte, error)

func (*NullableForumCategoryModelListV1) Set ¶

func (*NullableForumCategoryModelListV1) UnmarshalJSON ¶

func (v *NullableForumCategoryModelListV1) UnmarshalJSON(src []byte) error

func (*NullableForumCategoryModelListV1) Unset ¶

type NullableForumCategoryModelListV1Forums ¶

type NullableForumCategoryModelListV1Forums struct {
	// contains filtered or unexported fields
}

func (NullableForumCategoryModelListV1Forums) Get ¶

func (NullableForumCategoryModelListV1Forums) IsSet ¶

func (NullableForumCategoryModelListV1Forums) MarshalJSON ¶

func (v NullableForumCategoryModelListV1Forums) MarshalJSON() ([]byte, error)

func (*NullableForumCategoryModelListV1Forums) Set ¶

func (*NullableForumCategoryModelListV1Forums) UnmarshalJSON ¶

func (v *NullableForumCategoryModelListV1Forums) UnmarshalJSON(src []byte) error

func (*NullableForumCategoryModelListV1Forums) Unset ¶

type NullableForumCategoryModelUpdateV1 ¶

type NullableForumCategoryModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumCategoryModelUpdateV1) Get ¶

func (NullableForumCategoryModelUpdateV1) IsSet ¶

func (NullableForumCategoryModelUpdateV1) MarshalJSON ¶

func (v NullableForumCategoryModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableForumCategoryModelUpdateV1) Set ¶

func (*NullableForumCategoryModelUpdateV1) UnmarshalJSON ¶

func (v *NullableForumCategoryModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableForumCategoryModelUpdateV1) Unset ¶

type NullableForumCategoryModelV1 ¶

type NullableForumCategoryModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumCategoryModelV1) Get ¶

func (NullableForumCategoryModelV1) IsSet ¶

func (NullableForumCategoryModelV1) MarshalJSON ¶

func (v NullableForumCategoryModelV1) MarshalJSON() ([]byte, error)

func (*NullableForumCategoryModelV1) Set ¶

func (*NullableForumCategoryModelV1) UnmarshalJSON ¶

func (v *NullableForumCategoryModelV1) UnmarshalJSON(src []byte) error

func (*NullableForumCategoryModelV1) Unset ¶

func (v *NullableForumCategoryModelV1) Unset()

type NullableForumForumModelListV1 ¶

type NullableForumForumModelListV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumForumModelListV1) Get ¶

func (NullableForumForumModelListV1) IsSet ¶

func (NullableForumForumModelListV1) MarshalJSON ¶

func (v NullableForumForumModelListV1) MarshalJSON() ([]byte, error)

func (*NullableForumForumModelListV1) Set ¶

func (*NullableForumForumModelListV1) UnmarshalJSON ¶

func (v *NullableForumForumModelListV1) UnmarshalJSON(src []byte) error

func (*NullableForumForumModelListV1) Unset ¶

func (v *NullableForumForumModelListV1) Unset()

type NullableForumForumModelListV1Admin ¶

type NullableForumForumModelListV1Admin struct {
	// contains filtered or unexported fields
}

func (NullableForumForumModelListV1Admin) Get ¶

func (NullableForumForumModelListV1Admin) IsSet ¶

func (NullableForumForumModelListV1Admin) MarshalJSON ¶

func (v NullableForumForumModelListV1Admin) MarshalJSON() ([]byte, error)

func (*NullableForumForumModelListV1Admin) Set ¶

func (*NullableForumForumModelListV1Admin) UnmarshalJSON ¶

func (v *NullableForumForumModelListV1Admin) UnmarshalJSON(src []byte) error

func (*NullableForumForumModelListV1Admin) Unset ¶

type NullableForumForumModelListV1Stats ¶

type NullableForumForumModelListV1Stats struct {
	// contains filtered or unexported fields
}

func (NullableForumForumModelListV1Stats) Get ¶

func (NullableForumForumModelListV1Stats) IsSet ¶

func (NullableForumForumModelListV1Stats) MarshalJSON ¶

func (v NullableForumForumModelListV1Stats) MarshalJSON() ([]byte, error)

func (*NullableForumForumModelListV1Stats) Set ¶

func (*NullableForumForumModelListV1Stats) UnmarshalJSON ¶

func (v *NullableForumForumModelListV1Stats) UnmarshalJSON(src []byte) error

func (*NullableForumForumModelListV1Stats) Unset ¶

type NullableForumForumModelUpdateV1 ¶

type NullableForumForumModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumForumModelUpdateV1) Get ¶

func (NullableForumForumModelUpdateV1) IsSet ¶

func (NullableForumForumModelUpdateV1) MarshalJSON ¶

func (v NullableForumForumModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableForumForumModelUpdateV1) Set ¶

func (*NullableForumForumModelUpdateV1) UnmarshalJSON ¶

func (v *NullableForumForumModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableForumForumModelUpdateV1) Unset ¶

type NullableForumForumModelUpdateV1Admin ¶

type NullableForumForumModelUpdateV1Admin struct {
	// contains filtered or unexported fields
}

func (NullableForumForumModelUpdateV1Admin) Get ¶

func (NullableForumForumModelUpdateV1Admin) IsSet ¶

func (NullableForumForumModelUpdateV1Admin) MarshalJSON ¶

func (v NullableForumForumModelUpdateV1Admin) MarshalJSON() ([]byte, error)

func (*NullableForumForumModelUpdateV1Admin) Set ¶

func (*NullableForumForumModelUpdateV1Admin) UnmarshalJSON ¶

func (v *NullableForumForumModelUpdateV1Admin) UnmarshalJSON(src []byte) error

func (*NullableForumForumModelUpdateV1Admin) Unset ¶

type NullableForumForumModelV1 ¶

type NullableForumForumModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullableForumForumModelV1 ¶

func NewNullableForumForumModelV1(val *ForumForumModelV1) *NullableForumForumModelV1

func (NullableForumForumModelV1) Get ¶

func (NullableForumForumModelV1) IsSet ¶

func (v NullableForumForumModelV1) IsSet() bool

func (NullableForumForumModelV1) MarshalJSON ¶

func (v NullableForumForumModelV1) MarshalJSON() ([]byte, error)

func (*NullableForumForumModelV1) Set ¶

func (*NullableForumForumModelV1) UnmarshalJSON ¶

func (v *NullableForumForumModelV1) UnmarshalJSON(src []byte) error

func (*NullableForumForumModelV1) Unset ¶

func (v *NullableForumForumModelV1) Unset()

type NullableForumForumModelV1Admin ¶

type NullableForumForumModelV1Admin struct {
	// contains filtered or unexported fields
}

func (NullableForumForumModelV1Admin) Get ¶

func (NullableForumForumModelV1Admin) IsSet ¶

func (NullableForumForumModelV1Admin) MarshalJSON ¶

func (v NullableForumForumModelV1Admin) MarshalJSON() ([]byte, error)

func (*NullableForumForumModelV1Admin) Set ¶

func (*NullableForumForumModelV1Admin) UnmarshalJSON ¶

func (v *NullableForumForumModelV1Admin) UnmarshalJSON(src []byte) error

func (*NullableForumForumModelV1Admin) Unset ¶

func (v *NullableForumForumModelV1Admin) Unset()

type NullableForumForumModelV1Category ¶

type NullableForumForumModelV1Category struct {
	// contains filtered or unexported fields
}

func (NullableForumForumModelV1Category) Get ¶

func (NullableForumForumModelV1Category) IsSet ¶

func (NullableForumForumModelV1Category) MarshalJSON ¶

func (v NullableForumForumModelV1Category) MarshalJSON() ([]byte, error)

func (*NullableForumForumModelV1Category) Set ¶

func (*NullableForumForumModelV1Category) UnmarshalJSON ¶

func (v *NullableForumForumModelV1Category) UnmarshalJSON(src []byte) error

func (*NullableForumForumModelV1Category) Unset ¶

type NullableForumForumModelV1Stats ¶

type NullableForumForumModelV1Stats struct {
	// contains filtered or unexported fields
}

func (NullableForumForumModelV1Stats) Get ¶

func (NullableForumForumModelV1Stats) IsSet ¶

func (NullableForumForumModelV1Stats) MarshalJSON ¶

func (v NullableForumForumModelV1Stats) MarshalJSON() ([]byte, error)

func (*NullableForumForumModelV1Stats) Set ¶

func (*NullableForumForumModelV1Stats) UnmarshalJSON ¶

func (v *NullableForumForumModelV1Stats) UnmarshalJSON(src []byte) error

func (*NullableForumForumModelV1Stats) Unset ¶

func (v *NullableForumForumModelV1Stats) Unset()

type NullableForumLookupResponseV1 ¶

type NullableForumLookupResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumLookupResponseV1) Get ¶

func (NullableForumLookupResponseV1) IsSet ¶

func (NullableForumLookupResponseV1) MarshalJSON ¶

func (v NullableForumLookupResponseV1) MarshalJSON() ([]byte, error)

func (*NullableForumLookupResponseV1) Set ¶

func (*NullableForumLookupResponseV1) UnmarshalJSON ¶

func (v *NullableForumLookupResponseV1) UnmarshalJSON(src []byte) error

func (*NullableForumLookupResponseV1) Unset ¶

func (v *NullableForumLookupResponseV1) Unset()

type NullableForumPollAnswerModelUpdateV1 ¶

type NullableForumPollAnswerModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumPollAnswerModelUpdateV1) Get ¶

func (NullableForumPollAnswerModelUpdateV1) IsSet ¶

func (NullableForumPollAnswerModelUpdateV1) MarshalJSON ¶

func (v NullableForumPollAnswerModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableForumPollAnswerModelUpdateV1) Set ¶

func (*NullableForumPollAnswerModelUpdateV1) UnmarshalJSON ¶

func (v *NullableForumPollAnswerModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableForumPollAnswerModelUpdateV1) Unset ¶

type NullableForumPollAnswerModelV1 ¶

type NullableForumPollAnswerModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumPollAnswerModelV1) Get ¶

func (NullableForumPollAnswerModelV1) IsSet ¶

func (NullableForumPollAnswerModelV1) MarshalJSON ¶

func (v NullableForumPollAnswerModelV1) MarshalJSON() ([]byte, error)

func (*NullableForumPollAnswerModelV1) Set ¶

func (*NullableForumPollAnswerModelV1) UnmarshalJSON ¶

func (v *NullableForumPollAnswerModelV1) UnmarshalJSON(src []byte) error

func (*NullableForumPollAnswerModelV1) Unset ¶

func (v *NullableForumPollAnswerModelV1) Unset()

type NullableForumPollAnswerModelV1Image ¶

type NullableForumPollAnswerModelV1Image struct {
	// contains filtered or unexported fields
}

func (NullableForumPollAnswerModelV1Image) Get ¶

func (NullableForumPollAnswerModelV1Image) IsSet ¶

func (NullableForumPollAnswerModelV1Image) MarshalJSON ¶

func (v NullableForumPollAnswerModelV1Image) MarshalJSON() ([]byte, error)

func (*NullableForumPollAnswerModelV1Image) Set ¶

func (*NullableForumPollAnswerModelV1Image) UnmarshalJSON ¶

func (v *NullableForumPollAnswerModelV1Image) UnmarshalJSON(src []byte) error

func (*NullableForumPollAnswerModelV1Image) Unset ¶

type NullableForumPollModelUpdateV1 ¶

type NullableForumPollModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumPollModelUpdateV1) Get ¶

func (NullableForumPollModelUpdateV1) IsSet ¶

func (NullableForumPollModelUpdateV1) MarshalJSON ¶

func (v NullableForumPollModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableForumPollModelUpdateV1) Set ¶

func (*NullableForumPollModelUpdateV1) UnmarshalJSON ¶

func (v *NullableForumPollModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableForumPollModelUpdateV1) Unset ¶

func (v *NullableForumPollModelUpdateV1) Unset()

type NullableForumPollModelV1 ¶

type NullableForumPollModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullableForumPollModelV1 ¶

func NewNullableForumPollModelV1(val *ForumPollModelV1) *NullableForumPollModelV1

func (NullableForumPollModelV1) Get ¶

func (NullableForumPollModelV1) IsSet ¶

func (v NullableForumPollModelV1) IsSet() bool

func (NullableForumPollModelV1) MarshalJSON ¶

func (v NullableForumPollModelV1) MarshalJSON() ([]byte, error)

func (*NullableForumPollModelV1) Set ¶

func (*NullableForumPollModelV1) UnmarshalJSON ¶

func (v *NullableForumPollModelV1) UnmarshalJSON(src []byte) error

func (*NullableForumPollModelV1) Unset ¶

func (v *NullableForumPollModelV1) Unset()

type NullableForumPollModelV1Admin ¶

type NullableForumPollModelV1Admin struct {
	// contains filtered or unexported fields
}

func (NullableForumPollModelV1Admin) Get ¶

func (NullableForumPollModelV1Admin) IsSet ¶

func (NullableForumPollModelV1Admin) MarshalJSON ¶

func (v NullableForumPollModelV1Admin) MarshalJSON() ([]byte, error)

func (*NullableForumPollModelV1Admin) Set ¶

func (*NullableForumPollModelV1Admin) UnmarshalJSON ¶

func (v *NullableForumPollModelV1Admin) UnmarshalJSON(src []byte) error

func (*NullableForumPollModelV1Admin) Unset ¶

func (v *NullableForumPollModelV1Admin) Unset()

type NullableForumPollTempImageModelV1 ¶

type NullableForumPollTempImageModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumPollTempImageModelV1) Get ¶

func (NullableForumPollTempImageModelV1) IsSet ¶

func (NullableForumPollTempImageModelV1) MarshalJSON ¶

func (v NullableForumPollTempImageModelV1) MarshalJSON() ([]byte, error)

func (*NullableForumPollTempImageModelV1) Set ¶

func (*NullableForumPollTempImageModelV1) UnmarshalJSON ¶

func (v *NullableForumPollTempImageModelV1) UnmarshalJSON(src []byte) error

func (*NullableForumPollTempImageModelV1) Unset ¶

type NullableForumPollTempImageModelV1Url ¶

type NullableForumPollTempImageModelV1Url struct {
	// contains filtered or unexported fields
}

func (NullableForumPollTempImageModelV1Url) Get ¶

func (NullableForumPollTempImageModelV1Url) IsSet ¶

func (NullableForumPollTempImageModelV1Url) MarshalJSON ¶

func (v NullableForumPollTempImageModelV1Url) MarshalJSON() ([]byte, error)

func (*NullableForumPollTempImageModelV1Url) Set ¶

func (*NullableForumPollTempImageModelV1Url) UnmarshalJSON ¶

func (v *NullableForumPollTempImageModelV1Url) UnmarshalJSON(src []byte) error

func (*NullableForumPollTempImageModelV1Url) Unset ¶

type NullableForumPollVoteModelV1 ¶

type NullableForumPollVoteModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumPollVoteModelV1) Get ¶

func (NullableForumPollVoteModelV1) IsSet ¶

func (NullableForumPollVoteModelV1) MarshalJSON ¶

func (v NullableForumPollVoteModelV1) MarshalJSON() ([]byte, error)

func (*NullableForumPollVoteModelV1) Set ¶

func (*NullableForumPollVoteModelV1) UnmarshalJSON ¶

func (v *NullableForumPollVoteModelV1) UnmarshalJSON(src []byte) error

func (*NullableForumPollVoteModelV1) Unset ¶

func (v *NullableForumPollVoteModelV1) Unset()

type NullableForumPostByUserResponseV1 ¶

type NullableForumPostByUserResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumPostByUserResponseV1) Get ¶

func (NullableForumPostByUserResponseV1) IsSet ¶

func (NullableForumPostByUserResponseV1) MarshalJSON ¶

func (v NullableForumPostByUserResponseV1) MarshalJSON() ([]byte, error)

func (*NullableForumPostByUserResponseV1) Set ¶

func (*NullableForumPostByUserResponseV1) UnmarshalJSON ¶

func (v *NullableForumPostByUserResponseV1) UnmarshalJSON(src []byte) error

func (*NullableForumPostByUserResponseV1) Unset ¶

type NullableForumPostListResponseV1 ¶

type NullableForumPostListResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumPostListResponseV1) Get ¶

func (NullableForumPostListResponseV1) IsSet ¶

func (NullableForumPostListResponseV1) MarshalJSON ¶

func (v NullableForumPostListResponseV1) MarshalJSON() ([]byte, error)

func (*NullableForumPostListResponseV1) Set ¶

func (*NullableForumPostListResponseV1) UnmarshalJSON ¶

func (v *NullableForumPostListResponseV1) UnmarshalJSON(src []byte) error

func (*NullableForumPostListResponseV1) Unset ¶

type NullableForumPostListResponseV1Results ¶

type NullableForumPostListResponseV1Results struct {
	// contains filtered or unexported fields
}

func (NullableForumPostListResponseV1Results) Get ¶

func (NullableForumPostListResponseV1Results) IsSet ¶

func (NullableForumPostListResponseV1Results) MarshalJSON ¶

func (v NullableForumPostListResponseV1Results) MarshalJSON() ([]byte, error)

func (*NullableForumPostListResponseV1Results) Set ¶

func (*NullableForumPostListResponseV1Results) UnmarshalJSON ¶

func (v *NullableForumPostListResponseV1Results) UnmarshalJSON(src []byte) error

func (*NullableForumPostListResponseV1Results) Unset ¶

type NullableForumPostListResponseV1ResultsMetadata ¶

type NullableForumPostListResponseV1ResultsMetadata struct {
	// contains filtered or unexported fields
}

func (NullableForumPostListResponseV1ResultsMetadata) Get ¶

func (NullableForumPostListResponseV1ResultsMetadata) IsSet ¶

func (NullableForumPostListResponseV1ResultsMetadata) MarshalJSON ¶

func (*NullableForumPostListResponseV1ResultsMetadata) Set ¶

func (*NullableForumPostListResponseV1ResultsMetadata) UnmarshalJSON ¶

func (*NullableForumPostListResponseV1ResultsMetadata) Unset ¶

type NullableForumPostModelSearchV1 ¶

type NullableForumPostModelSearchV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumPostModelSearchV1) Get ¶

func (NullableForumPostModelSearchV1) IsSet ¶

func (NullableForumPostModelSearchV1) MarshalJSON ¶

func (v NullableForumPostModelSearchV1) MarshalJSON() ([]byte, error)

func (*NullableForumPostModelSearchV1) Set ¶

func (*NullableForumPostModelSearchV1) UnmarshalJSON ¶

func (v *NullableForumPostModelSearchV1) UnmarshalJSON(src []byte) error

func (*NullableForumPostModelSearchV1) Unset ¶

func (v *NullableForumPostModelSearchV1) Unset()

type NullableForumPostModelSearchV1Topic ¶

type NullableForumPostModelSearchV1Topic struct {
	// contains filtered or unexported fields
}

func (NullableForumPostModelSearchV1Topic) Get ¶

func (NullableForumPostModelSearchV1Topic) IsSet ¶

func (NullableForumPostModelSearchV1Topic) MarshalJSON ¶

func (v NullableForumPostModelSearchV1Topic) MarshalJSON() ([]byte, error)

func (*NullableForumPostModelSearchV1Topic) Set ¶

func (*NullableForumPostModelSearchV1Topic) UnmarshalJSON ¶

func (v *NullableForumPostModelSearchV1Topic) UnmarshalJSON(src []byte) error

func (*NullableForumPostModelSearchV1Topic) Unset ¶

type NullableForumPostModelUpdateV1 ¶

type NullableForumPostModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumPostModelUpdateV1) Get ¶

func (NullableForumPostModelUpdateV1) IsSet ¶

func (NullableForumPostModelUpdateV1) MarshalJSON ¶

func (v NullableForumPostModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableForumPostModelUpdateV1) Set ¶

func (*NullableForumPostModelUpdateV1) UnmarshalJSON ¶

func (v *NullableForumPostModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableForumPostModelUpdateV1) Unset ¶

func (v *NullableForumPostModelUpdateV1) Unset()

type NullableForumPostModelV1 ¶

type NullableForumPostModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullableForumPostModelV1 ¶

func NewNullableForumPostModelV1(val *ForumPostModelV1) *NullableForumPostModelV1

func (NullableForumPostModelV1) Get ¶

func (NullableForumPostModelV1) IsSet ¶

func (v NullableForumPostModelV1) IsSet() bool

func (NullableForumPostModelV1) MarshalJSON ¶

func (v NullableForumPostModelV1) MarshalJSON() ([]byte, error)

func (*NullableForumPostModelV1) Set ¶

func (*NullableForumPostModelV1) UnmarshalJSON ¶

func (v *NullableForumPostModelV1) UnmarshalJSON(src []byte) error

func (*NullableForumPostModelV1) Unset ¶

func (v *NullableForumPostModelV1) Unset()

type NullableForumPostModelV1LastEdit ¶

type NullableForumPostModelV1LastEdit struct {
	// contains filtered or unexported fields
}

func (NullableForumPostModelV1LastEdit) Get ¶

func (NullableForumPostModelV1LastEdit) IsSet ¶

func (NullableForumPostModelV1LastEdit) MarshalJSON ¶

func (v NullableForumPostModelV1LastEdit) MarshalJSON() ([]byte, error)

func (*NullableForumPostModelV1LastEdit) Set ¶

func (*NullableForumPostModelV1LastEdit) UnmarshalJSON ¶

func (v *NullableForumPostModelV1LastEdit) UnmarshalJSON(src []byte) error

func (*NullableForumPostModelV1LastEdit) Unset ¶

type NullableForumPostModelV1ReplyTo ¶

type NullableForumPostModelV1ReplyTo struct {
	// contains filtered or unexported fields
}

func (NullableForumPostModelV1ReplyTo) Get ¶

func (NullableForumPostModelV1ReplyTo) IsSet ¶

func (NullableForumPostModelV1ReplyTo) MarshalJSON ¶

func (v NullableForumPostModelV1ReplyTo) MarshalJSON() ([]byte, error)

func (*NullableForumPostModelV1ReplyTo) Set ¶

func (*NullableForumPostModelV1ReplyTo) UnmarshalJSON ¶

func (v *NullableForumPostModelV1ReplyTo) UnmarshalJSON(src []byte) error

func (*NullableForumPostModelV1ReplyTo) Unset ¶

type NullableForumPostModelV1ReplyToPostAuthor ¶

type NullableForumPostModelV1ReplyToPostAuthor struct {
	// contains filtered or unexported fields
}

func (NullableForumPostModelV1ReplyToPostAuthor) Get ¶

func (NullableForumPostModelV1ReplyToPostAuthor) IsSet ¶

func (NullableForumPostModelV1ReplyToPostAuthor) MarshalJSON ¶

func (*NullableForumPostModelV1ReplyToPostAuthor) Set ¶

func (*NullableForumPostModelV1ReplyToPostAuthor) UnmarshalJSON ¶

func (v *NullableForumPostModelV1ReplyToPostAuthor) UnmarshalJSON(src []byte) error

func (*NullableForumPostModelV1ReplyToPostAuthor) Unset ¶

type NullableForumPostModelV1Topic ¶

type NullableForumPostModelV1Topic struct {
	// contains filtered or unexported fields
}

func (NullableForumPostModelV1Topic) Get ¶

func (NullableForumPostModelV1Topic) IsSet ¶

func (NullableForumPostModelV1Topic) MarshalJSON ¶

func (v NullableForumPostModelV1Topic) MarshalJSON() ([]byte, error)

func (*NullableForumPostModelV1Topic) Set ¶

func (*NullableForumPostModelV1Topic) UnmarshalJSON ¶

func (v *NullableForumPostModelV1Topic) UnmarshalJSON(src []byte) error

func (*NullableForumPostModelV1Topic) Unset ¶

func (v *NullableForumPostModelV1Topic) Unset()

type NullableForumPostReportModelUpdateV1 ¶

type NullableForumPostReportModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumPostReportModelUpdateV1) Get ¶

func (NullableForumPostReportModelUpdateV1) IsSet ¶

func (NullableForumPostReportModelUpdateV1) MarshalJSON ¶

func (v NullableForumPostReportModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableForumPostReportModelUpdateV1) Set ¶

func (*NullableForumPostReportModelUpdateV1) UnmarshalJSON ¶

func (v *NullableForumPostReportModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableForumPostReportModelUpdateV1) Unset ¶

type NullableForumPostReportModelV1 ¶

type NullableForumPostReportModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumPostReportModelV1) Get ¶

func (NullableForumPostReportModelV1) IsSet ¶

func (NullableForumPostReportModelV1) MarshalJSON ¶

func (v NullableForumPostReportModelV1) MarshalJSON() ([]byte, error)

func (*NullableForumPostReportModelV1) Set ¶

func (*NullableForumPostReportModelV1) UnmarshalJSON ¶

func (v *NullableForumPostReportModelV1) UnmarshalJSON(src []byte) error

func (*NullableForumPostReportModelV1) Unset ¶

func (v *NullableForumPostReportModelV1) Unset()

type NullableForumSearchRequestV1 ¶

type NullableForumSearchRequestV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumSearchRequestV1) Get ¶

func (NullableForumSearchRequestV1) IsSet ¶

func (NullableForumSearchRequestV1) MarshalJSON ¶

func (v NullableForumSearchRequestV1) MarshalJSON() ([]byte, error)

func (*NullableForumSearchRequestV1) Set ¶

func (*NullableForumSearchRequestV1) UnmarshalJSON ¶

func (v *NullableForumSearchRequestV1) UnmarshalJSON(src []byte) error

func (*NullableForumSearchRequestV1) Unset ¶

func (v *NullableForumSearchRequestV1) Unset()

type NullableForumSearchResponseV1 ¶

type NullableForumSearchResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumSearchResponseV1) Get ¶

func (NullableForumSearchResponseV1) IsSet ¶

func (NullableForumSearchResponseV1) MarshalJSON ¶

func (v NullableForumSearchResponseV1) MarshalJSON() ([]byte, error)

func (*NullableForumSearchResponseV1) Set ¶

func (*NullableForumSearchResponseV1) UnmarshalJSON ¶

func (v *NullableForumSearchResponseV1) UnmarshalJSON(src []byte) error

func (*NullableForumSearchResponseV1) Unset ¶

func (v *NullableForumSearchResponseV1) Unset()

type NullableForumSearchResponseV1PostResults ¶

type NullableForumSearchResponseV1PostResults struct {
	// contains filtered or unexported fields
}

func (NullableForumSearchResponseV1PostResults) Get ¶

func (NullableForumSearchResponseV1PostResults) IsSet ¶

func (NullableForumSearchResponseV1PostResults) MarshalJSON ¶

func (*NullableForumSearchResponseV1PostResults) Set ¶

func (*NullableForumSearchResponseV1PostResults) UnmarshalJSON ¶

func (v *NullableForumSearchResponseV1PostResults) UnmarshalJSON(src []byte) error

func (*NullableForumSearchResponseV1PostResults) Unset ¶

type NullableForumSearchResponseV1PostResultsMetadata ¶

type NullableForumSearchResponseV1PostResultsMetadata struct {
	// contains filtered or unexported fields
}

func (NullableForumSearchResponseV1PostResultsMetadata) Get ¶

func (NullableForumSearchResponseV1PostResultsMetadata) IsSet ¶

func (NullableForumSearchResponseV1PostResultsMetadata) MarshalJSON ¶

func (*NullableForumSearchResponseV1PostResultsMetadata) Set ¶

func (*NullableForumSearchResponseV1PostResultsMetadata) UnmarshalJSON ¶

func (*NullableForumSearchResponseV1PostResultsMetadata) Unset ¶

type NullableForumSearchResponseV1PostResultsMetadataForumInfo ¶

type NullableForumSearchResponseV1PostResultsMetadataForumInfo struct {
	// contains filtered or unexported fields
}

func (NullableForumSearchResponseV1PostResultsMetadataForumInfo) Get ¶

func (NullableForumSearchResponseV1PostResultsMetadataForumInfo) IsSet ¶

func (NullableForumSearchResponseV1PostResultsMetadataForumInfo) MarshalJSON ¶

func (*NullableForumSearchResponseV1PostResultsMetadataForumInfo) Set ¶

func (*NullableForumSearchResponseV1PostResultsMetadataForumInfo) UnmarshalJSON ¶

func (*NullableForumSearchResponseV1PostResultsMetadataForumInfo) Unset ¶

type NullableForumSearchResponseV1PostResultsMetadataTopicStats ¶

type NullableForumSearchResponseV1PostResultsMetadataTopicStats struct {
	// contains filtered or unexported fields
}

func (NullableForumSearchResponseV1PostResultsMetadataTopicStats) Get ¶

func (NullableForumSearchResponseV1PostResultsMetadataTopicStats) IsSet ¶

func (NullableForumSearchResponseV1PostResultsMetadataTopicStats) MarshalJSON ¶

func (*NullableForumSearchResponseV1PostResultsMetadataTopicStats) Set ¶

func (*NullableForumSearchResponseV1PostResultsMetadataTopicStats) UnmarshalJSON ¶

func (*NullableForumSearchResponseV1PostResultsMetadataTopicStats) Unset ¶

type NullableForumSearchResponseV1TopicResults ¶

type NullableForumSearchResponseV1TopicResults struct {
	// contains filtered or unexported fields
}

func (NullableForumSearchResponseV1TopicResults) Get ¶

func (NullableForumSearchResponseV1TopicResults) IsSet ¶

func (NullableForumSearchResponseV1TopicResults) MarshalJSON ¶

func (*NullableForumSearchResponseV1TopicResults) Set ¶

func (*NullableForumSearchResponseV1TopicResults) UnmarshalJSON ¶

func (v *NullableForumSearchResponseV1TopicResults) UnmarshalJSON(src []byte) error

func (*NullableForumSearchResponseV1TopicResults) Unset ¶

type NullableForumSearchResponseV1TopicResultsMetadata ¶

type NullableForumSearchResponseV1TopicResultsMetadata struct {
	// contains filtered or unexported fields
}

func (NullableForumSearchResponseV1TopicResultsMetadata) Get ¶

func (NullableForumSearchResponseV1TopicResultsMetadata) IsSet ¶

func (NullableForumSearchResponseV1TopicResultsMetadata) MarshalJSON ¶

func (*NullableForumSearchResponseV1TopicResultsMetadata) Set ¶

func (*NullableForumSearchResponseV1TopicResultsMetadata) UnmarshalJSON ¶

func (*NullableForumSearchResponseV1TopicResultsMetadata) Unset ¶

type NullableForumTopicListRequestV1 ¶

type NullableForumTopicListRequestV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumTopicListRequestV1) Get ¶

func (NullableForumTopicListRequestV1) IsSet ¶

func (NullableForumTopicListRequestV1) MarshalJSON ¶

func (v NullableForumTopicListRequestV1) MarshalJSON() ([]byte, error)

func (*NullableForumTopicListRequestV1) Set ¶

func (*NullableForumTopicListRequestV1) UnmarshalJSON ¶

func (v *NullableForumTopicListRequestV1) UnmarshalJSON(src []byte) error

func (*NullableForumTopicListRequestV1) Unset ¶

type NullableForumTopicListResponseV1 ¶

type NullableForumTopicListResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumTopicListResponseV1) Get ¶

func (NullableForumTopicListResponseV1) IsSet ¶

func (NullableForumTopicListResponseV1) MarshalJSON ¶

func (v NullableForumTopicListResponseV1) MarshalJSON() ([]byte, error)

func (*NullableForumTopicListResponseV1) Set ¶

func (*NullableForumTopicListResponseV1) UnmarshalJSON ¶

func (v *NullableForumTopicListResponseV1) UnmarshalJSON(src []byte) error

func (*NullableForumTopicListResponseV1) Unset ¶

type NullableForumTopicListResponseV1Results ¶

type NullableForumTopicListResponseV1Results struct {
	// contains filtered or unexported fields
}

func (NullableForumTopicListResponseV1Results) Get ¶

func (NullableForumTopicListResponseV1Results) IsSet ¶

func (NullableForumTopicListResponseV1Results) MarshalJSON ¶

func (v NullableForumTopicListResponseV1Results) MarshalJSON() ([]byte, error)

func (*NullableForumTopicListResponseV1Results) Set ¶

func (*NullableForumTopicListResponseV1Results) UnmarshalJSON ¶

func (v *NullableForumTopicListResponseV1Results) UnmarshalJSON(src []byte) error

func (*NullableForumTopicListResponseV1Results) Unset ¶

type NullableForumTopicListResponseV1ResultsMetadata ¶

type NullableForumTopicListResponseV1ResultsMetadata struct {
	// contains filtered or unexported fields
}

func (NullableForumTopicListResponseV1ResultsMetadata) Get ¶

func (NullableForumTopicListResponseV1ResultsMetadata) IsSet ¶

func (NullableForumTopicListResponseV1ResultsMetadata) MarshalJSON ¶

func (*NullableForumTopicListResponseV1ResultsMetadata) Set ¶

func (*NullableForumTopicListResponseV1ResultsMetadata) UnmarshalJSON ¶

func (*NullableForumTopicListResponseV1ResultsMetadata) Unset ¶

type NullableForumTopicModelAddV1 ¶

type NullableForumTopicModelAddV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumTopicModelAddV1) Get ¶

func (NullableForumTopicModelAddV1) IsSet ¶

func (NullableForumTopicModelAddV1) MarshalJSON ¶

func (v NullableForumTopicModelAddV1) MarshalJSON() ([]byte, error)

func (*NullableForumTopicModelAddV1) Set ¶

func (*NullableForumTopicModelAddV1) UnmarshalJSON ¶

func (v *NullableForumTopicModelAddV1) UnmarshalJSON(src []byte) error

func (*NullableForumTopicModelAddV1) Unset ¶

func (v *NullableForumTopicModelAddV1) Unset()

type NullableForumTopicModelSearchV1 ¶

type NullableForumTopicModelSearchV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumTopicModelSearchV1) Get ¶

func (NullableForumTopicModelSearchV1) IsSet ¶

func (NullableForumTopicModelSearchV1) MarshalJSON ¶

func (v NullableForumTopicModelSearchV1) MarshalJSON() ([]byte, error)

func (*NullableForumTopicModelSearchV1) Set ¶

func (*NullableForumTopicModelSearchV1) UnmarshalJSON ¶

func (v *NullableForumTopicModelSearchV1) UnmarshalJSON(src []byte) error

func (*NullableForumTopicModelSearchV1) Unset ¶

type NullableForumTopicModelSearchV1Admin ¶

type NullableForumTopicModelSearchV1Admin struct {
	// contains filtered or unexported fields
}

func (NullableForumTopicModelSearchV1Admin) Get ¶

func (NullableForumTopicModelSearchV1Admin) IsSet ¶

func (NullableForumTopicModelSearchV1Admin) MarshalJSON ¶

func (v NullableForumTopicModelSearchV1Admin) MarshalJSON() ([]byte, error)

func (*NullableForumTopicModelSearchV1Admin) Set ¶

func (*NullableForumTopicModelSearchV1Admin) UnmarshalJSON ¶

func (v *NullableForumTopicModelSearchV1Admin) UnmarshalJSON(src []byte) error

func (*NullableForumTopicModelSearchV1Admin) Unset ¶

type NullableForumTopicModelSearchV1Forum ¶

type NullableForumTopicModelSearchV1Forum struct {
	// contains filtered or unexported fields
}

func (NullableForumTopicModelSearchV1Forum) Get ¶

func (NullableForumTopicModelSearchV1Forum) IsSet ¶

func (NullableForumTopicModelSearchV1Forum) MarshalJSON ¶

func (v NullableForumTopicModelSearchV1Forum) MarshalJSON() ([]byte, error)

func (*NullableForumTopicModelSearchV1Forum) Set ¶

func (*NullableForumTopicModelSearchV1Forum) UnmarshalJSON ¶

func (v *NullableForumTopicModelSearchV1Forum) UnmarshalJSON(src []byte) error

func (*NullableForumTopicModelSearchV1Forum) Unset ¶

type NullableForumTopicModelSearchV1Stats ¶

type NullableForumTopicModelSearchV1Stats struct {
	// contains filtered or unexported fields
}

func (NullableForumTopicModelSearchV1Stats) Get ¶

func (NullableForumTopicModelSearchV1Stats) IsSet ¶

func (NullableForumTopicModelSearchV1Stats) MarshalJSON ¶

func (v NullableForumTopicModelSearchV1Stats) MarshalJSON() ([]byte, error)

func (*NullableForumTopicModelSearchV1Stats) Set ¶

func (*NullableForumTopicModelSearchV1Stats) UnmarshalJSON ¶

func (v *NullableForumTopicModelSearchV1Stats) UnmarshalJSON(src []byte) error

func (*NullableForumTopicModelSearchV1Stats) Unset ¶

type NullableForumTopicModelUpdateV1 ¶

type NullableForumTopicModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumTopicModelUpdateV1) Get ¶

func (NullableForumTopicModelUpdateV1) IsSet ¶

func (NullableForumTopicModelUpdateV1) MarshalJSON ¶

func (v NullableForumTopicModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableForumTopicModelUpdateV1) Set ¶

func (*NullableForumTopicModelUpdateV1) UnmarshalJSON ¶

func (v *NullableForumTopicModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableForumTopicModelUpdateV1) Unset ¶

type NullableForumTopicModelUpdateV1Admin ¶

type NullableForumTopicModelUpdateV1Admin struct {
	// contains filtered or unexported fields
}

func (NullableForumTopicModelUpdateV1Admin) Get ¶

func (NullableForumTopicModelUpdateV1Admin) IsSet ¶

func (NullableForumTopicModelUpdateV1Admin) MarshalJSON ¶

func (v NullableForumTopicModelUpdateV1Admin) MarshalJSON() ([]byte, error)

func (*NullableForumTopicModelUpdateV1Admin) Set ¶

func (*NullableForumTopicModelUpdateV1Admin) UnmarshalJSON ¶

func (v *NullableForumTopicModelUpdateV1Admin) UnmarshalJSON(src []byte) error

func (*NullableForumTopicModelUpdateV1Admin) Unset ¶

type NullableForumTopicModelUpdateV1Forum ¶

type NullableForumTopicModelUpdateV1Forum struct {
	// contains filtered or unexported fields
}

func (NullableForumTopicModelUpdateV1Forum) Get ¶

func (NullableForumTopicModelUpdateV1Forum) IsSet ¶

func (NullableForumTopicModelUpdateV1Forum) MarshalJSON ¶

func (v NullableForumTopicModelUpdateV1Forum) MarshalJSON() ([]byte, error)

func (*NullableForumTopicModelUpdateV1Forum) Set ¶

func (*NullableForumTopicModelUpdateV1Forum) UnmarshalJSON ¶

func (v *NullableForumTopicModelUpdateV1Forum) UnmarshalJSON(src []byte) error

func (*NullableForumTopicModelUpdateV1Forum) Unset ¶

type NullableForumTopicModelV1 ¶

type NullableForumTopicModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullableForumTopicModelV1 ¶

func NewNullableForumTopicModelV1(val *ForumTopicModelV1) *NullableForumTopicModelV1

func (NullableForumTopicModelV1) Get ¶

func (NullableForumTopicModelV1) IsSet ¶

func (v NullableForumTopicModelV1) IsSet() bool

func (NullableForumTopicModelV1) MarshalJSON ¶

func (v NullableForumTopicModelV1) MarshalJSON() ([]byte, error)

func (*NullableForumTopicModelV1) Set ¶

func (*NullableForumTopicModelV1) UnmarshalJSON ¶

func (v *NullableForumTopicModelV1) UnmarshalJSON(src []byte) error

func (*NullableForumTopicModelV1) Unset ¶

func (v *NullableForumTopicModelV1) Unset()

type NullableForumTopicModelV1Admin ¶

type NullableForumTopicModelV1Admin struct {
	// contains filtered or unexported fields
}

func (NullableForumTopicModelV1Admin) Get ¶

func (NullableForumTopicModelV1Admin) IsSet ¶

func (NullableForumTopicModelV1Admin) MarshalJSON ¶

func (v NullableForumTopicModelV1Admin) MarshalJSON() ([]byte, error)

func (*NullableForumTopicModelV1Admin) Set ¶

func (*NullableForumTopicModelV1Admin) UnmarshalJSON ¶

func (v *NullableForumTopicModelV1Admin) UnmarshalJSON(src []byte) error

func (*NullableForumTopicModelV1Admin) Unset ¶

func (v *NullableForumTopicModelV1Admin) Unset()

type NullableForumTopicModelV1Forum ¶

type NullableForumTopicModelV1Forum struct {
	// contains filtered or unexported fields
}

func (NullableForumTopicModelV1Forum) Get ¶

func (NullableForumTopicModelV1Forum) IsSet ¶

func (NullableForumTopicModelV1Forum) MarshalJSON ¶

func (v NullableForumTopicModelV1Forum) MarshalJSON() ([]byte, error)

func (*NullableForumTopicModelV1Forum) Set ¶

func (*NullableForumTopicModelV1Forum) UnmarshalJSON ¶

func (v *NullableForumTopicModelV1Forum) UnmarshalJSON(src []byte) error

func (*NullableForumTopicModelV1Forum) Unset ¶

func (v *NullableForumTopicModelV1Forum) Unset()

type NullableForumTopicModelV1Stats ¶

type NullableForumTopicModelV1Stats struct {
	// contains filtered or unexported fields
}

func (NullableForumTopicModelV1Stats) Get ¶

func (NullableForumTopicModelV1Stats) IsSet ¶

func (NullableForumTopicModelV1Stats) MarshalJSON ¶

func (v NullableForumTopicModelV1Stats) MarshalJSON() ([]byte, error)

func (*NullableForumTopicModelV1Stats) Set ¶

func (*NullableForumTopicModelV1Stats) UnmarshalJSON ¶

func (v *NullableForumTopicModelV1Stats) UnmarshalJSON(src []byte) error

func (*NullableForumTopicModelV1Stats) Unset ¶

func (v *NullableForumTopicModelV1Stats) Unset()

type NullableForumWarnModelPublicV1 ¶

type NullableForumWarnModelPublicV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumWarnModelPublicV1) Get ¶

func (NullableForumWarnModelPublicV1) IsSet ¶

func (NullableForumWarnModelPublicV1) MarshalJSON ¶

func (v NullableForumWarnModelPublicV1) MarshalJSON() ([]byte, error)

func (*NullableForumWarnModelPublicV1) Set ¶

func (*NullableForumWarnModelPublicV1) UnmarshalJSON ¶

func (v *NullableForumWarnModelPublicV1) UnmarshalJSON(src []byte) error

func (*NullableForumWarnModelPublicV1) Unset ¶

func (v *NullableForumWarnModelPublicV1) Unset()

type NullableForumWarnModelUpdateV1 ¶

type NullableForumWarnModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullableForumWarnModelUpdateV1) Get ¶

func (NullableForumWarnModelUpdateV1) IsSet ¶

func (NullableForumWarnModelUpdateV1) MarshalJSON ¶

func (v NullableForumWarnModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableForumWarnModelUpdateV1) Set ¶

func (*NullableForumWarnModelUpdateV1) UnmarshalJSON ¶

func (v *NullableForumWarnModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableForumWarnModelUpdateV1) Unset ¶

func (v *NullableForumWarnModelUpdateV1) Unset()

type NullableForumWarnModelV1 ¶

type NullableForumWarnModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullableForumWarnModelV1 ¶

func NewNullableForumWarnModelV1(val *ForumWarnModelV1) *NullableForumWarnModelV1

func (NullableForumWarnModelV1) Get ¶

func (NullableForumWarnModelV1) IsSet ¶

func (v NullableForumWarnModelV1) IsSet() bool

func (NullableForumWarnModelV1) MarshalJSON ¶

func (v NullableForumWarnModelV1) MarshalJSON() ([]byte, error)

func (*NullableForumWarnModelV1) Set ¶

func (*NullableForumWarnModelV1) UnmarshalJSON ¶

func (v *NullableForumWarnModelV1) UnmarshalJSON(src []byte) error

func (*NullableForumWarnModelV1) Unset ¶

func (v *NullableForumWarnModelV1) Unset()

type NullableGenreModelStatsV1 ¶

type NullableGenreModelStatsV1 struct {
	// contains filtered or unexported fields
}

func NewNullableGenreModelStatsV1 ¶

func NewNullableGenreModelStatsV1(val *GenreModelStatsV1) *NullableGenreModelStatsV1

func (NullableGenreModelStatsV1) Get ¶

func (NullableGenreModelStatsV1) IsSet ¶

func (v NullableGenreModelStatsV1) IsSet() bool

func (NullableGenreModelStatsV1) MarshalJSON ¶

func (v NullableGenreModelStatsV1) MarshalJSON() ([]byte, error)

func (*NullableGenreModelStatsV1) Set ¶

func (*NullableGenreModelStatsV1) UnmarshalJSON ¶

func (v *NullableGenreModelStatsV1) UnmarshalJSON(src []byte) error

func (*NullableGenreModelStatsV1) Unset ¶

func (v *NullableGenreModelStatsV1) Unset()

type NullableGenreModelStatsV1Stats ¶

type NullableGenreModelStatsV1Stats struct {
	// contains filtered or unexported fields
}

func (NullableGenreModelStatsV1Stats) Get ¶

func (NullableGenreModelStatsV1Stats) IsSet ¶

func (NullableGenreModelStatsV1Stats) MarshalJSON ¶

func (v NullableGenreModelStatsV1Stats) MarshalJSON() ([]byte, error)

func (*NullableGenreModelStatsV1Stats) Set ¶

func (*NullableGenreModelStatsV1Stats) UnmarshalJSON ¶

func (v *NullableGenreModelStatsV1Stats) UnmarshalJSON(src []byte) error

func (*NullableGenreModelStatsV1Stats) Unset ¶

func (v *NullableGenreModelStatsV1Stats) Unset()

type NullableGenreModelUpdateV1 ¶

type NullableGenreModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func NewNullableGenreModelUpdateV1 ¶

func NewNullableGenreModelUpdateV1(val *GenreModelUpdateV1) *NullableGenreModelUpdateV1

func (NullableGenreModelUpdateV1) Get ¶

func (NullableGenreModelUpdateV1) IsSet ¶

func (v NullableGenreModelUpdateV1) IsSet() bool

func (NullableGenreModelUpdateV1) MarshalJSON ¶

func (v NullableGenreModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableGenreModelUpdateV1) Set ¶

func (*NullableGenreModelUpdateV1) UnmarshalJSON ¶

func (v *NullableGenreModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableGenreModelUpdateV1) Unset ¶

func (v *NullableGenreModelUpdateV1) Unset()

type NullableGenreModelV1 ¶

type NullableGenreModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullableGenreModelV1 ¶

func NewNullableGenreModelV1(val *GenreModelV1) *NullableGenreModelV1

func (NullableGenreModelV1) Get ¶

func (NullableGenreModelV1) IsSet ¶

func (v NullableGenreModelV1) IsSet() bool

func (NullableGenreModelV1) MarshalJSON ¶

func (v NullableGenreModelV1) MarshalJSON() ([]byte, error)

func (*NullableGenreModelV1) Set ¶

func (v *NullableGenreModelV1) Set(val *GenreModelV1)

func (*NullableGenreModelV1) UnmarshalJSON ¶

func (v *NullableGenreModelV1) UnmarshalJSON(src []byte) error

func (*NullableGenreModelV1) Unset ¶

func (v *NullableGenreModelV1) Unset()

type NullableGroupsModelSearchV1 ¶

type NullableGroupsModelSearchV1 struct {
	// contains filtered or unexported fields
}

func (NullableGroupsModelSearchV1) Get ¶

func (NullableGroupsModelSearchV1) IsSet ¶

func (NullableGroupsModelSearchV1) MarshalJSON ¶

func (v NullableGroupsModelSearchV1) MarshalJSON() ([]byte, error)

func (*NullableGroupsModelSearchV1) Set ¶

func (*NullableGroupsModelSearchV1) UnmarshalJSON ¶

func (v *NullableGroupsModelSearchV1) UnmarshalJSON(src []byte) error

func (*NullableGroupsModelSearchV1) Unset ¶

func (v *NullableGroupsModelSearchV1) Unset()

type NullableGroupsModelSearchV1Social ¶

type NullableGroupsModelSearchV1Social struct {
	// contains filtered or unexported fields
}

func (NullableGroupsModelSearchV1Social) Get ¶

func (NullableGroupsModelSearchV1Social) IsSet ¶

func (NullableGroupsModelSearchV1Social) MarshalJSON ¶

func (v NullableGroupsModelSearchV1Social) MarshalJSON() ([]byte, error)

func (*NullableGroupsModelSearchV1Social) Set ¶

func (*NullableGroupsModelSearchV1Social) UnmarshalJSON ¶

func (v *NullableGroupsModelSearchV1Social) UnmarshalJSON(src []byte) error

func (*NullableGroupsModelSearchV1Social) Unset ¶

type NullableGroupsModelSearchV1SocialIrc ¶

type NullableGroupsModelSearchV1SocialIrc struct {
	// contains filtered or unexported fields
}

func (NullableGroupsModelSearchV1SocialIrc) Get ¶

func (NullableGroupsModelSearchV1SocialIrc) IsSet ¶

func (NullableGroupsModelSearchV1SocialIrc) MarshalJSON ¶

func (v NullableGroupsModelSearchV1SocialIrc) MarshalJSON() ([]byte, error)

func (*NullableGroupsModelSearchV1SocialIrc) Set ¶

func (*NullableGroupsModelSearchV1SocialIrc) UnmarshalJSON ¶

func (v *NullableGroupsModelSearchV1SocialIrc) UnmarshalJSON(src []byte) error

func (*NullableGroupsModelSearchV1SocialIrc) Unset ¶

type NullableGroupsModelUpdateV1 ¶

type NullableGroupsModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullableGroupsModelUpdateV1) Get ¶

func (NullableGroupsModelUpdateV1) IsSet ¶

func (NullableGroupsModelUpdateV1) MarshalJSON ¶

func (v NullableGroupsModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableGroupsModelUpdateV1) Set ¶

func (*NullableGroupsModelUpdateV1) UnmarshalJSON ¶

func (v *NullableGroupsModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableGroupsModelUpdateV1) Unset ¶

func (v *NullableGroupsModelUpdateV1) Unset()

type NullableGroupsModelUpdateV1Admin ¶

type NullableGroupsModelUpdateV1Admin struct {
	// contains filtered or unexported fields
}

func (NullableGroupsModelUpdateV1Admin) Get ¶

func (NullableGroupsModelUpdateV1Admin) IsSet ¶

func (NullableGroupsModelUpdateV1Admin) MarshalJSON ¶

func (v NullableGroupsModelUpdateV1Admin) MarshalJSON() ([]byte, error)

func (*NullableGroupsModelUpdateV1Admin) Set ¶

func (*NullableGroupsModelUpdateV1Admin) UnmarshalJSON ¶

func (v *NullableGroupsModelUpdateV1Admin) UnmarshalJSON(src []byte) error

func (*NullableGroupsModelUpdateV1Admin) Unset ¶

type NullableGroupsModelUpdateV1Associated ¶

type NullableGroupsModelUpdateV1Associated struct {
	// contains filtered or unexported fields
}

func (NullableGroupsModelUpdateV1Associated) Get ¶

func (NullableGroupsModelUpdateV1Associated) IsSet ¶

func (NullableGroupsModelUpdateV1Associated) MarshalJSON ¶

func (v NullableGroupsModelUpdateV1Associated) MarshalJSON() ([]byte, error)

func (*NullableGroupsModelUpdateV1Associated) Set ¶

func (*NullableGroupsModelUpdateV1Associated) UnmarshalJSON ¶

func (v *NullableGroupsModelUpdateV1Associated) UnmarshalJSON(src []byte) error

func (*NullableGroupsModelUpdateV1Associated) Unset ¶

type NullableGroupsModelUpdateV1Social ¶

type NullableGroupsModelUpdateV1Social struct {
	// contains filtered or unexported fields
}

func (NullableGroupsModelUpdateV1Social) Get ¶

func (NullableGroupsModelUpdateV1Social) IsSet ¶

func (NullableGroupsModelUpdateV1Social) MarshalJSON ¶

func (v NullableGroupsModelUpdateV1Social) MarshalJSON() ([]byte, error)

func (*NullableGroupsModelUpdateV1Social) Set ¶

func (*NullableGroupsModelUpdateV1Social) UnmarshalJSON ¶

func (v *NullableGroupsModelUpdateV1Social) UnmarshalJSON(src []byte) error

func (*NullableGroupsModelUpdateV1Social) Unset ¶

type NullableGroupsModelUpdateV1SocialIrc ¶

type NullableGroupsModelUpdateV1SocialIrc struct {
	// contains filtered or unexported fields
}

func (NullableGroupsModelUpdateV1SocialIrc) Get ¶

func (NullableGroupsModelUpdateV1SocialIrc) IsSet ¶

func (NullableGroupsModelUpdateV1SocialIrc) MarshalJSON ¶

func (v NullableGroupsModelUpdateV1SocialIrc) MarshalJSON() ([]byte, error)

func (*NullableGroupsModelUpdateV1SocialIrc) Set ¶

func (*NullableGroupsModelUpdateV1SocialIrc) UnmarshalJSON ¶

func (v *NullableGroupsModelUpdateV1SocialIrc) UnmarshalJSON(src []byte) error

func (*NullableGroupsModelUpdateV1SocialIrc) Unset ¶

type NullableGroupsModelV1 ¶

type NullableGroupsModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullableGroupsModelV1 ¶

func NewNullableGroupsModelV1(val *GroupsModelV1) *NullableGroupsModelV1

func (NullableGroupsModelV1) Get ¶

func (NullableGroupsModelV1) IsSet ¶

func (v NullableGroupsModelV1) IsSet() bool

func (NullableGroupsModelV1) MarshalJSON ¶

func (v NullableGroupsModelV1) MarshalJSON() ([]byte, error)

func (*NullableGroupsModelV1) Set ¶

func (v *NullableGroupsModelV1) Set(val *GroupsModelV1)

func (*NullableGroupsModelV1) UnmarshalJSON ¶

func (v *NullableGroupsModelV1) UnmarshalJSON(src []byte) error

func (*NullableGroupsModelV1) Unset ¶

func (v *NullableGroupsModelV1) Unset()

type NullableGroupsModelV1Admin ¶

type NullableGroupsModelV1Admin struct {
	// contains filtered or unexported fields
}

func NewNullableGroupsModelV1Admin ¶

func NewNullableGroupsModelV1Admin(val *GroupsModelV1Admin) *NullableGroupsModelV1Admin

func (NullableGroupsModelV1Admin) Get ¶

func (NullableGroupsModelV1Admin) IsSet ¶

func (v NullableGroupsModelV1Admin) IsSet() bool

func (NullableGroupsModelV1Admin) MarshalJSON ¶

func (v NullableGroupsModelV1Admin) MarshalJSON() ([]byte, error)

func (*NullableGroupsModelV1Admin) Set ¶

func (*NullableGroupsModelV1Admin) UnmarshalJSON ¶

func (v *NullableGroupsModelV1Admin) UnmarshalJSON(src []byte) error

func (*NullableGroupsModelV1Admin) Unset ¶

func (v *NullableGroupsModelV1Admin) Unset()

type NullableGroupsModelV1Associated ¶

type NullableGroupsModelV1Associated struct {
	// contains filtered or unexported fields
}

func (NullableGroupsModelV1Associated) Get ¶

func (NullableGroupsModelV1Associated) IsSet ¶

func (NullableGroupsModelV1Associated) MarshalJSON ¶

func (v NullableGroupsModelV1Associated) MarshalJSON() ([]byte, error)

func (*NullableGroupsModelV1Associated) Set ¶

func (*NullableGroupsModelV1Associated) UnmarshalJSON ¶

func (v *NullableGroupsModelV1Associated) UnmarshalJSON(src []byte) error

func (*NullableGroupsModelV1Associated) Unset ¶

type NullableGroupsModelV1Social ¶

type NullableGroupsModelV1Social struct {
	// contains filtered or unexported fields
}

func (NullableGroupsModelV1Social) Get ¶

func (NullableGroupsModelV1Social) IsSet ¶

func (NullableGroupsModelV1Social) MarshalJSON ¶

func (v NullableGroupsModelV1Social) MarshalJSON() ([]byte, error)

func (*NullableGroupsModelV1Social) Set ¶

func (*NullableGroupsModelV1Social) UnmarshalJSON ¶

func (v *NullableGroupsModelV1Social) UnmarshalJSON(src []byte) error

func (*NullableGroupsModelV1Social) Unset ¶

func (v *NullableGroupsModelV1Social) Unset()

type NullableGroupsModelV1SocialIrc ¶

type NullableGroupsModelV1SocialIrc struct {
	// contains filtered or unexported fields
}

func (NullableGroupsModelV1SocialIrc) Get ¶

func (NullableGroupsModelV1SocialIrc) IsSet ¶

func (NullableGroupsModelV1SocialIrc) MarshalJSON ¶

func (v NullableGroupsModelV1SocialIrc) MarshalJSON() ([]byte, error)

func (*NullableGroupsModelV1SocialIrc) Set ¶

func (*NullableGroupsModelV1SocialIrc) UnmarshalJSON ¶

func (v *NullableGroupsModelV1SocialIrc) UnmarshalJSON(src []byte) error

func (*NullableGroupsModelV1SocialIrc) Unset ¶

func (v *NullableGroupsModelV1SocialIrc) Unset()

type NullableGroupsSearchRequestV1 ¶

type NullableGroupsSearchRequestV1 struct {
	// contains filtered or unexported fields
}

func (NullableGroupsSearchRequestV1) Get ¶

func (NullableGroupsSearchRequestV1) IsSet ¶

func (NullableGroupsSearchRequestV1) MarshalJSON ¶

func (v NullableGroupsSearchRequestV1) MarshalJSON() ([]byte, error)

func (*NullableGroupsSearchRequestV1) Set ¶

func (*NullableGroupsSearchRequestV1) UnmarshalJSON ¶

func (v *NullableGroupsSearchRequestV1) UnmarshalJSON(src []byte) error

func (*NullableGroupsSearchRequestV1) Unset ¶

func (v *NullableGroupsSearchRequestV1) Unset()

type NullableGroupsSearchResponseV1 ¶

type NullableGroupsSearchResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullableGroupsSearchResponseV1) Get ¶

func (NullableGroupsSearchResponseV1) IsSet ¶

func (NullableGroupsSearchResponseV1) MarshalJSON ¶

func (v NullableGroupsSearchResponseV1) MarshalJSON() ([]byte, error)

func (*NullableGroupsSearchResponseV1) Set ¶

func (*NullableGroupsSearchResponseV1) UnmarshalJSON ¶

func (v *NullableGroupsSearchResponseV1) UnmarshalJSON(src []byte) error

func (*NullableGroupsSearchResponseV1) Unset ¶

func (v *NullableGroupsSearchResponseV1) Unset()

type NullableGroupsSearchResponseV1Results ¶

type NullableGroupsSearchResponseV1Results struct {
	// contains filtered or unexported fields
}

func (NullableGroupsSearchResponseV1Results) Get ¶

func (NullableGroupsSearchResponseV1Results) IsSet ¶

func (NullableGroupsSearchResponseV1Results) MarshalJSON ¶

func (v NullableGroupsSearchResponseV1Results) MarshalJSON() ([]byte, error)

func (*NullableGroupsSearchResponseV1Results) Set ¶

func (*NullableGroupsSearchResponseV1Results) UnmarshalJSON ¶

func (v *NullableGroupsSearchResponseV1Results) UnmarshalJSON(src []byte) error

func (*NullableGroupsSearchResponseV1Results) Unset ¶

type NullableGroupsSeriesListResponseV1 ¶

type NullableGroupsSeriesListResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullableGroupsSeriesListResponseV1) Get ¶

func (NullableGroupsSeriesListResponseV1) IsSet ¶

func (NullableGroupsSeriesListResponseV1) MarshalJSON ¶

func (v NullableGroupsSeriesListResponseV1) MarshalJSON() ([]byte, error)

func (*NullableGroupsSeriesListResponseV1) Set ¶

func (*NullableGroupsSeriesListResponseV1) UnmarshalJSON ¶

func (v *NullableGroupsSeriesListResponseV1) UnmarshalJSON(src []byte) error

func (*NullableGroupsSeriesListResponseV1) Unset ¶

type NullableGroupsSeriesListResponseV1SeriesCategories ¶

type NullableGroupsSeriesListResponseV1SeriesCategories struct {
	// contains filtered or unexported fields
}

func (NullableGroupsSeriesListResponseV1SeriesCategories) Get ¶

func (NullableGroupsSeriesListResponseV1SeriesCategories) IsSet ¶

func (NullableGroupsSeriesListResponseV1SeriesCategories) MarshalJSON ¶

func (*NullableGroupsSeriesListResponseV1SeriesCategories) Set ¶

func (*NullableGroupsSeriesListResponseV1SeriesCategories) UnmarshalJSON ¶

func (*NullableGroupsSeriesListResponseV1SeriesCategories) Unset ¶

type NullableGroupsSeriesListResponseV1SeriesGenres ¶

type NullableGroupsSeriesListResponseV1SeriesGenres struct {
	// contains filtered or unexported fields
}

func (NullableGroupsSeriesListResponseV1SeriesGenres) Get ¶

func (NullableGroupsSeriesListResponseV1SeriesGenres) IsSet ¶

func (NullableGroupsSeriesListResponseV1SeriesGenres) MarshalJSON ¶

func (*NullableGroupsSeriesListResponseV1SeriesGenres) Set ¶

func (*NullableGroupsSeriesListResponseV1SeriesGenres) UnmarshalJSON ¶

func (*NullableGroupsSeriesListResponseV1SeriesGenres) Unset ¶

type NullableGroupsSeriesListResponseV1SeriesTitles ¶

type NullableGroupsSeriesListResponseV1SeriesTitles struct {
	// contains filtered or unexported fields
}

func (NullableGroupsSeriesListResponseV1SeriesTitles) Get ¶

func (NullableGroupsSeriesListResponseV1SeriesTitles) IsSet ¶

func (NullableGroupsSeriesListResponseV1SeriesTitles) MarshalJSON ¶

func (*NullableGroupsSeriesListResponseV1SeriesTitles) Set ¶

func (*NullableGroupsSeriesListResponseV1SeriesTitles) UnmarshalJSON ¶

func (*NullableGroupsSeriesListResponseV1SeriesTitles) Unset ¶

type NullableImageModelV1 ¶

type NullableImageModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullableImageModelV1 ¶

func NewNullableImageModelV1(val *ImageModelV1) *NullableImageModelV1

func (NullableImageModelV1) Get ¶

func (NullableImageModelV1) IsSet ¶

func (v NullableImageModelV1) IsSet() bool

func (NullableImageModelV1) MarshalJSON ¶

func (v NullableImageModelV1) MarshalJSON() ([]byte, error)

func (*NullableImageModelV1) Set ¶

func (v *NullableImageModelV1) Set(val *ImageModelV1)

func (*NullableImageModelV1) UnmarshalJSON ¶

func (v *NullableImageModelV1) UnmarshalJSON(src []byte) error

func (*NullableImageModelV1) Unset ¶

func (v *NullableImageModelV1) Unset()

type NullableImageModelV1Url ¶

type NullableImageModelV1Url struct {
	// contains filtered or unexported fields
}

func NewNullableImageModelV1Url ¶

func NewNullableImageModelV1Url(val *ImageModelV1Url) *NullableImageModelV1Url

func (NullableImageModelV1Url) Get ¶

func (NullableImageModelV1Url) IsSet ¶

func (v NullableImageModelV1Url) IsSet() bool

func (NullableImageModelV1Url) MarshalJSON ¶

func (v NullableImageModelV1Url) MarshalJSON() ([]byte, error)

func (*NullableImageModelV1Url) Set ¶

func (*NullableImageModelV1Url) UnmarshalJSON ¶

func (v *NullableImageModelV1Url) UnmarshalJSON(src []byte) error

func (*NullableImageModelV1Url) Unset ¶

func (v *NullableImageModelV1Url) Unset()

type NullableInt ¶

type NullableInt struct {
	// contains filtered or unexported fields
}

func NewNullableInt ¶

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get ¶

func (v NullableInt) Get() *int

func (NullableInt) IsSet ¶

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON ¶

func (v NullableInt) MarshalJSON() ([]byte, error)

func (*NullableInt) Set ¶

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON ¶

func (v *NullableInt) UnmarshalJSON(src []byte) error

func (*NullableInt) Unset ¶

func (v *NullableInt) Unset()

type NullableInt32 ¶

type NullableInt32 struct {
	// contains filtered or unexported fields
}

func NewNullableInt32 ¶

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get ¶

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet ¶

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON ¶

func (v NullableInt32) MarshalJSON() ([]byte, error)

func (*NullableInt32) Set ¶

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON ¶

func (v *NullableInt32) UnmarshalJSON(src []byte) error

func (*NullableInt32) Unset ¶

func (v *NullableInt32) Unset()

type NullableInt64 ¶

type NullableInt64 struct {
	// contains filtered or unexported fields
}

func NewNullableInt64 ¶

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get ¶

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet ¶

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON ¶

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set ¶

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON ¶

func (v *NullableInt64) UnmarshalJSON(src []byte) error

func (*NullableInt64) Unset ¶

func (v *NullableInt64) Unset()

type NullableListsBulkAddModelV1 ¶

type NullableListsBulkAddModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableListsBulkAddModelV1) Get ¶

func (NullableListsBulkAddModelV1) IsSet ¶

func (NullableListsBulkAddModelV1) MarshalJSON ¶

func (v NullableListsBulkAddModelV1) MarshalJSON() ([]byte, error)

func (*NullableListsBulkAddModelV1) Set ¶

func (*NullableListsBulkAddModelV1) UnmarshalJSON ¶

func (v *NullableListsBulkAddModelV1) UnmarshalJSON(src []byte) error

func (*NullableListsBulkAddModelV1) Unset ¶

func (v *NullableListsBulkAddModelV1) Unset()

type NullableListsModelUpdateV1 ¶

type NullableListsModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func NewNullableListsModelUpdateV1 ¶

func NewNullableListsModelUpdateV1(val *ListsModelUpdateV1) *NullableListsModelUpdateV1

func (NullableListsModelUpdateV1) Get ¶

func (NullableListsModelUpdateV1) IsSet ¶

func (v NullableListsModelUpdateV1) IsSet() bool

func (NullableListsModelUpdateV1) MarshalJSON ¶

func (v NullableListsModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableListsModelUpdateV1) Set ¶

func (*NullableListsModelUpdateV1) UnmarshalJSON ¶

func (v *NullableListsModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableListsModelUpdateV1) Unset ¶

func (v *NullableListsModelUpdateV1) Unset()

type NullableListsModelUpdateV1Options ¶

type NullableListsModelUpdateV1Options struct {
	// contains filtered or unexported fields
}

func (NullableListsModelUpdateV1Options) Get ¶

func (NullableListsModelUpdateV1Options) IsSet ¶

func (NullableListsModelUpdateV1Options) MarshalJSON ¶

func (v NullableListsModelUpdateV1Options) MarshalJSON() ([]byte, error)

func (*NullableListsModelUpdateV1Options) Set ¶

func (*NullableListsModelUpdateV1Options) UnmarshalJSON ¶

func (v *NullableListsModelUpdateV1Options) UnmarshalJSON(src []byte) error

func (*NullableListsModelUpdateV1Options) Unset ¶

type NullableListsModelV1 ¶

type NullableListsModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullableListsModelV1 ¶

func NewNullableListsModelV1(val *ListsModelV1) *NullableListsModelV1

func (NullableListsModelV1) Get ¶

func (NullableListsModelV1) IsSet ¶

func (v NullableListsModelV1) IsSet() bool

func (NullableListsModelV1) MarshalJSON ¶

func (v NullableListsModelV1) MarshalJSON() ([]byte, error)

func (*NullableListsModelV1) Set ¶

func (v *NullableListsModelV1) Set(val *ListsModelV1)

func (*NullableListsModelV1) UnmarshalJSON ¶

func (v *NullableListsModelV1) UnmarshalJSON(src []byte) error

func (*NullableListsModelV1) Unset ¶

func (v *NullableListsModelV1) Unset()

type NullableListsModelV1Options ¶

type NullableListsModelV1Options struct {
	// contains filtered or unexported fields
}

func (NullableListsModelV1Options) Get ¶

func (NullableListsModelV1Options) IsSet ¶

func (NullableListsModelV1Options) MarshalJSON ¶

func (v NullableListsModelV1Options) MarshalJSON() ([]byte, error)

func (*NullableListsModelV1Options) Set ¶

func (*NullableListsModelV1Options) UnmarshalJSON ¶

func (v *NullableListsModelV1Options) UnmarshalJSON(src []byte) error

func (*NullableListsModelV1Options) Unset ¶

func (v *NullableListsModelV1Options) Unset()

type NullableListsPublicSearchResponseV1 ¶

type NullableListsPublicSearchResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullableListsPublicSearchResponseV1) Get ¶

func (NullableListsPublicSearchResponseV1) IsSet ¶

func (NullableListsPublicSearchResponseV1) MarshalJSON ¶

func (v NullableListsPublicSearchResponseV1) MarshalJSON() ([]byte, error)

func (*NullableListsPublicSearchResponseV1) Set ¶

func (*NullableListsPublicSearchResponseV1) UnmarshalJSON ¶

func (v *NullableListsPublicSearchResponseV1) UnmarshalJSON(src []byte) error

func (*NullableListsPublicSearchResponseV1) Unset ¶

type NullableListsPublicSearchResponseV1Results ¶

type NullableListsPublicSearchResponseV1Results struct {
	// contains filtered or unexported fields
}

func (NullableListsPublicSearchResponseV1Results) Get ¶

func (NullableListsPublicSearchResponseV1Results) IsSet ¶

func (NullableListsPublicSearchResponseV1Results) MarshalJSON ¶

func (*NullableListsPublicSearchResponseV1Results) Set ¶

func (*NullableListsPublicSearchResponseV1Results) UnmarshalJSON ¶

func (v *NullableListsPublicSearchResponseV1Results) UnmarshalJSON(src []byte) error

func (*NullableListsPublicSearchResponseV1Results) Unset ¶

type NullableListsPublicSearchResponseV1ResultsMetadata ¶

type NullableListsPublicSearchResponseV1ResultsMetadata struct {
	// contains filtered or unexported fields
}

func (NullableListsPublicSearchResponseV1ResultsMetadata) Get ¶

func (NullableListsPublicSearchResponseV1ResultsMetadata) IsSet ¶

func (NullableListsPublicSearchResponseV1ResultsMetadata) MarshalJSON ¶

func (*NullableListsPublicSearchResponseV1ResultsMetadata) Set ¶

func (*NullableListsPublicSearchResponseV1ResultsMetadata) UnmarshalJSON ¶

func (*NullableListsPublicSearchResponseV1ResultsMetadata) Unset ¶

type NullableListsPublicSearchResponseV1ResultsMetadataUserComment ¶

type NullableListsPublicSearchResponseV1ResultsMetadataUserComment struct {
	// contains filtered or unexported fields
}

func (NullableListsPublicSearchResponseV1ResultsMetadataUserComment) Get ¶

func (NullableListsPublicSearchResponseV1ResultsMetadataUserComment) IsSet ¶

func (NullableListsPublicSearchResponseV1ResultsMetadataUserComment) MarshalJSON ¶

func (*NullableListsPublicSearchResponseV1ResultsMetadataUserComment) Set ¶

func (*NullableListsPublicSearchResponseV1ResultsMetadataUserComment) UnmarshalJSON ¶

func (*NullableListsPublicSearchResponseV1ResultsMetadataUserComment) Unset ¶

type NullableListsPublicStatsModelV1 ¶

type NullableListsPublicStatsModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableListsPublicStatsModelV1) Get ¶

func (NullableListsPublicStatsModelV1) IsSet ¶

func (NullableListsPublicStatsModelV1) MarshalJSON ¶

func (v NullableListsPublicStatsModelV1) MarshalJSON() ([]byte, error)

func (*NullableListsPublicStatsModelV1) Set ¶

func (*NullableListsPublicStatsModelV1) UnmarshalJSON ¶

func (v *NullableListsPublicStatsModelV1) UnmarshalJSON(src []byte) error

func (*NullableListsPublicStatsModelV1) Unset ¶

type NullableListsPublicStatsModelV1Genres ¶

type NullableListsPublicStatsModelV1Genres struct {
	// contains filtered or unexported fields
}

func (NullableListsPublicStatsModelV1Genres) Get ¶

func (NullableListsPublicStatsModelV1Genres) IsSet ¶

func (NullableListsPublicStatsModelV1Genres) MarshalJSON ¶

func (v NullableListsPublicStatsModelV1Genres) MarshalJSON() ([]byte, error)

func (*NullableListsPublicStatsModelV1Genres) Set ¶

func (*NullableListsPublicStatsModelV1Genres) UnmarshalJSON ¶

func (v *NullableListsPublicStatsModelV1Genres) UnmarshalJSON(src []byte) error

func (*NullableListsPublicStatsModelV1Genres) Unset ¶

type NullableListsSearchRequestV1 ¶

type NullableListsSearchRequestV1 struct {
	// contains filtered or unexported fields
}

func (NullableListsSearchRequestV1) Get ¶

func (NullableListsSearchRequestV1) IsSet ¶

func (NullableListsSearchRequestV1) MarshalJSON ¶

func (v NullableListsSearchRequestV1) MarshalJSON() ([]byte, error)

func (*NullableListsSearchRequestV1) Set ¶

func (*NullableListsSearchRequestV1) UnmarshalJSON ¶

func (v *NullableListsSearchRequestV1) UnmarshalJSON(src []byte) error

func (*NullableListsSearchRequestV1) Unset ¶

func (v *NullableListsSearchRequestV1) Unset()

type NullableListsSearchResponseV1 ¶

type NullableListsSearchResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullableListsSearchResponseV1) Get ¶

func (NullableListsSearchResponseV1) IsSet ¶

func (NullableListsSearchResponseV1) MarshalJSON ¶

func (v NullableListsSearchResponseV1) MarshalJSON() ([]byte, error)

func (*NullableListsSearchResponseV1) Set ¶

func (*NullableListsSearchResponseV1) UnmarshalJSON ¶

func (v *NullableListsSearchResponseV1) UnmarshalJSON(src []byte) error

func (*NullableListsSearchResponseV1) Unset ¶

func (v *NullableListsSearchResponseV1) Unset()

type NullableListsSearchResponseV1Results ¶

type NullableListsSearchResponseV1Results struct {
	// contains filtered or unexported fields
}

func (NullableListsSearchResponseV1Results) Get ¶

func (NullableListsSearchResponseV1Results) IsSet ¶

func (NullableListsSearchResponseV1Results) MarshalJSON ¶

func (v NullableListsSearchResponseV1Results) MarshalJSON() ([]byte, error)

func (*NullableListsSearchResponseV1Results) Set ¶

func (*NullableListsSearchResponseV1Results) UnmarshalJSON ¶

func (v *NullableListsSearchResponseV1Results) UnmarshalJSON(src []byte) error

func (*NullableListsSearchResponseV1Results) Unset ¶

type NullableListsSearchResponseV1ResultsMetadata ¶

type NullableListsSearchResponseV1ResultsMetadata struct {
	// contains filtered or unexported fields
}

func (NullableListsSearchResponseV1ResultsMetadata) Get ¶

func (NullableListsSearchResponseV1ResultsMetadata) IsSet ¶

func (NullableListsSearchResponseV1ResultsMetadata) MarshalJSON ¶

func (*NullableListsSearchResponseV1ResultsMetadata) Set ¶

func (*NullableListsSearchResponseV1ResultsMetadata) UnmarshalJSON ¶

func (*NullableListsSearchResponseV1ResultsMetadata) Unset ¶

type NullableListsSeriesModelUpdateV1 ¶

type NullableListsSeriesModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullableListsSeriesModelUpdateV1) Get ¶

func (NullableListsSeriesModelUpdateV1) IsSet ¶

func (NullableListsSeriesModelUpdateV1) MarshalJSON ¶

func (v NullableListsSeriesModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableListsSeriesModelUpdateV1) Set ¶

func (*NullableListsSeriesModelUpdateV1) UnmarshalJSON ¶

func (v *NullableListsSeriesModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableListsSeriesModelUpdateV1) Unset ¶

type NullableListsSeriesModelUpdateV1Series ¶

type NullableListsSeriesModelUpdateV1Series struct {
	// contains filtered or unexported fields
}

func (NullableListsSeriesModelUpdateV1Series) Get ¶

func (NullableListsSeriesModelUpdateV1Series) IsSet ¶

func (NullableListsSeriesModelUpdateV1Series) MarshalJSON ¶

func (v NullableListsSeriesModelUpdateV1Series) MarshalJSON() ([]byte, error)

func (*NullableListsSeriesModelUpdateV1Series) Set ¶

func (*NullableListsSeriesModelUpdateV1Series) UnmarshalJSON ¶

func (v *NullableListsSeriesModelUpdateV1Series) UnmarshalJSON(src []byte) error

func (*NullableListsSeriesModelUpdateV1Series) Unset ¶

type NullableListsSeriesModelUpdateV1Status ¶

type NullableListsSeriesModelUpdateV1Status struct {
	// contains filtered or unexported fields
}

func (NullableListsSeriesModelUpdateV1Status) Get ¶

func (NullableListsSeriesModelUpdateV1Status) IsSet ¶

func (NullableListsSeriesModelUpdateV1Status) MarshalJSON ¶

func (v NullableListsSeriesModelUpdateV1Status) MarshalJSON() ([]byte, error)

func (*NullableListsSeriesModelUpdateV1Status) Set ¶

func (*NullableListsSeriesModelUpdateV1Status) UnmarshalJSON ¶

func (v *NullableListsSeriesModelUpdateV1Status) UnmarshalJSON(src []byte) error

func (*NullableListsSeriesModelUpdateV1Status) Unset ¶

type NullableListsSeriesModelV1 ¶

type NullableListsSeriesModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullableListsSeriesModelV1 ¶

func NewNullableListsSeriesModelV1(val *ListsSeriesModelV1) *NullableListsSeriesModelV1

func (NullableListsSeriesModelV1) Get ¶

func (NullableListsSeriesModelV1) IsSet ¶

func (v NullableListsSeriesModelV1) IsSet() bool

func (NullableListsSeriesModelV1) MarshalJSON ¶

func (v NullableListsSeriesModelV1) MarshalJSON() ([]byte, error)

func (*NullableListsSeriesModelV1) Set ¶

func (*NullableListsSeriesModelV1) UnmarshalJSON ¶

func (v *NullableListsSeriesModelV1) UnmarshalJSON(src []byte) error

func (*NullableListsSeriesModelV1) Unset ¶

func (v *NullableListsSeriesModelV1) Unset()

type NullableListsSeriesModelV1Series ¶

type NullableListsSeriesModelV1Series struct {
	// contains filtered or unexported fields
}

func (NullableListsSeriesModelV1Series) Get ¶

func (NullableListsSeriesModelV1Series) IsSet ¶

func (NullableListsSeriesModelV1Series) MarshalJSON ¶

func (v NullableListsSeriesModelV1Series) MarshalJSON() ([]byte, error)

func (*NullableListsSeriesModelV1Series) Set ¶

func (*NullableListsSeriesModelV1Series) UnmarshalJSON ¶

func (v *NullableListsSeriesModelV1Series) UnmarshalJSON(src []byte) error

func (*NullableListsSeriesModelV1Series) Unset ¶

type NullableListsSeriesModelV1Status ¶

type NullableListsSeriesModelV1Status struct {
	// contains filtered or unexported fields
}

func (NullableListsSeriesModelV1Status) Get ¶

func (NullableListsSeriesModelV1Status) IsSet ¶

func (NullableListsSeriesModelV1Status) MarshalJSON ¶

func (v NullableListsSeriesModelV1Status) MarshalJSON() ([]byte, error)

func (*NullableListsSeriesModelV1Status) Set ¶

func (*NullableListsSeriesModelV1Status) UnmarshalJSON ¶

func (v *NullableListsSeriesModelV1Status) UnmarshalJSON(src []byte) error

func (*NullableListsSeriesModelV1Status) Unset ¶

type NullableListsSimilarUsersResponseV1 ¶

type NullableListsSimilarUsersResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullableListsSimilarUsersResponseV1) Get ¶

func (NullableListsSimilarUsersResponseV1) IsSet ¶

func (NullableListsSimilarUsersResponseV1) MarshalJSON ¶

func (v NullableListsSimilarUsersResponseV1) MarshalJSON() ([]byte, error)

func (*NullableListsSimilarUsersResponseV1) Set ¶

func (*NullableListsSimilarUsersResponseV1) UnmarshalJSON ¶

func (v *NullableListsSimilarUsersResponseV1) UnmarshalJSON(src []byte) error

func (*NullableListsSimilarUsersResponseV1) Unset ¶

type NullableListsSimilarUsersResponseV1Users ¶

type NullableListsSimilarUsersResponseV1Users struct {
	// contains filtered or unexported fields
}

func (NullableListsSimilarUsersResponseV1Users) Get ¶

func (NullableListsSimilarUsersResponseV1Users) IsSet ¶

func (NullableListsSimilarUsersResponseV1Users) MarshalJSON ¶

func (*NullableListsSimilarUsersResponseV1Users) Set ¶

func (*NullableListsSimilarUsersResponseV1Users) UnmarshalJSON ¶

func (v *NullableListsSimilarUsersResponseV1Users) UnmarshalJSON(src []byte) error

func (*NullableListsSimilarUsersResponseV1Users) Unset ¶

type NullableMiscOnlineUsersModelV1 ¶

type NullableMiscOnlineUsersModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableMiscOnlineUsersModelV1) Get ¶

func (NullableMiscOnlineUsersModelV1) IsSet ¶

func (NullableMiscOnlineUsersModelV1) MarshalJSON ¶

func (v NullableMiscOnlineUsersModelV1) MarshalJSON() ([]byte, error)

func (*NullableMiscOnlineUsersModelV1) Set ¶

func (*NullableMiscOnlineUsersModelV1) UnmarshalJSON ¶

func (v *NullableMiscOnlineUsersModelV1) UnmarshalJSON(src []byte) error

func (*NullableMiscOnlineUsersModelV1) Unset ¶

func (v *NullableMiscOnlineUsersModelV1) Unset()

type NullableMiscOnlineUsersModelV1Users ¶

type NullableMiscOnlineUsersModelV1Users struct {
	// contains filtered or unexported fields
}

func (NullableMiscOnlineUsersModelV1Users) Get ¶

func (NullableMiscOnlineUsersModelV1Users) IsSet ¶

func (NullableMiscOnlineUsersModelV1Users) MarshalJSON ¶

func (v NullableMiscOnlineUsersModelV1Users) MarshalJSON() ([]byte, error)

func (*NullableMiscOnlineUsersModelV1Users) Set ¶

func (*NullableMiscOnlineUsersModelV1Users) UnmarshalJSON ¶

func (v *NullableMiscOnlineUsersModelV1Users) UnmarshalJSON(src []byte) error

func (*NullableMiscOnlineUsersModelV1Users) Unset ¶

type NullableMiscOnlineUsersModelV1UsersMetadata ¶

type NullableMiscOnlineUsersModelV1UsersMetadata struct {
	// contains filtered or unexported fields
}

func (NullableMiscOnlineUsersModelV1UsersMetadata) Get ¶

func (NullableMiscOnlineUsersModelV1UsersMetadata) IsSet ¶

func (NullableMiscOnlineUsersModelV1UsersMetadata) MarshalJSON ¶

func (*NullableMiscOnlineUsersModelV1UsersMetadata) Set ¶

func (*NullableMiscOnlineUsersModelV1UsersMetadata) UnmarshalJSON ¶

func (v *NullableMiscOnlineUsersModelV1UsersMetadata) UnmarshalJSON(src []byte) error

func (*NullableMiscOnlineUsersModelV1UsersMetadata) Unset ¶

type NullableMiscSlowTransactionStatusResponseV1 ¶

type NullableMiscSlowTransactionStatusResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullableMiscSlowTransactionStatusResponseV1) Get ¶

func (NullableMiscSlowTransactionStatusResponseV1) IsSet ¶

func (NullableMiscSlowTransactionStatusResponseV1) MarshalJSON ¶

func (*NullableMiscSlowTransactionStatusResponseV1) Set ¶

func (*NullableMiscSlowTransactionStatusResponseV1) UnmarshalJSON ¶

func (v *NullableMiscSlowTransactionStatusResponseV1) UnmarshalJSON(src []byte) error

func (*NullableMiscSlowTransactionStatusResponseV1) Unset ¶

type NullableMiscStatsModelV1 ¶

type NullableMiscStatsModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullableMiscStatsModelV1 ¶

func NewNullableMiscStatsModelV1(val *MiscStatsModelV1) *NullableMiscStatsModelV1

func (NullableMiscStatsModelV1) Get ¶

func (NullableMiscStatsModelV1) IsSet ¶

func (v NullableMiscStatsModelV1) IsSet() bool

func (NullableMiscStatsModelV1) MarshalJSON ¶

func (v NullableMiscStatsModelV1) MarshalJSON() ([]byte, error)

func (*NullableMiscStatsModelV1) Set ¶

func (*NullableMiscStatsModelV1) UnmarshalJSON ¶

func (v *NullableMiscStatsModelV1) UnmarshalJSON(src []byte) error

func (*NullableMiscStatsModelV1) Unset ¶

func (v *NullableMiscStatsModelV1) Unset()

type NullablePerPageSearchRequestV1 ¶

type NullablePerPageSearchRequestV1 struct {
	// contains filtered or unexported fields
}

func (NullablePerPageSearchRequestV1) Get ¶

func (NullablePerPageSearchRequestV1) IsSet ¶

func (NullablePerPageSearchRequestV1) MarshalJSON ¶

func (v NullablePerPageSearchRequestV1) MarshalJSON() ([]byte, error)

func (*NullablePerPageSearchRequestV1) Set ¶

func (*NullablePerPageSearchRequestV1) UnmarshalJSON ¶

func (v *NullablePerPageSearchRequestV1) UnmarshalJSON(src []byte) error

func (*NullablePerPageSearchRequestV1) Unset ¶

func (v *NullablePerPageSearchRequestV1) Unset()

type NullablePollModelUpdateV1 ¶

type NullablePollModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func NewNullablePollModelUpdateV1 ¶

func NewNullablePollModelUpdateV1(val *PollModelUpdateV1) *NullablePollModelUpdateV1

func (NullablePollModelUpdateV1) Get ¶

func (NullablePollModelUpdateV1) IsSet ¶

func (v NullablePollModelUpdateV1) IsSet() bool

func (NullablePollModelUpdateV1) MarshalJSON ¶

func (v NullablePollModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullablePollModelUpdateV1) Set ¶

func (*NullablePollModelUpdateV1) UnmarshalJSON ¶

func (v *NullablePollModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullablePollModelUpdateV1) Unset ¶

func (v *NullablePollModelUpdateV1) Unset()

type NullablePollModelUpdateV1Answers ¶

type NullablePollModelUpdateV1Answers struct {
	// contains filtered or unexported fields
}

func (NullablePollModelUpdateV1Answers) Get ¶

func (NullablePollModelUpdateV1Answers) IsSet ¶

func (NullablePollModelUpdateV1Answers) MarshalJSON ¶

func (v NullablePollModelUpdateV1Answers) MarshalJSON() ([]byte, error)

func (*NullablePollModelUpdateV1Answers) Set ¶

func (*NullablePollModelUpdateV1Answers) UnmarshalJSON ¶

func (v *NullablePollModelUpdateV1Answers) UnmarshalJSON(src []byte) error

func (*NullablePollModelUpdateV1Answers) Unset ¶

type NullablePollModelV1 ¶

type NullablePollModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullablePollModelV1 ¶

func NewNullablePollModelV1(val *PollModelV1) *NullablePollModelV1

func (NullablePollModelV1) Get ¶

func (NullablePollModelV1) IsSet ¶

func (v NullablePollModelV1) IsSet() bool

func (NullablePollModelV1) MarshalJSON ¶

func (v NullablePollModelV1) MarshalJSON() ([]byte, error)

func (*NullablePollModelV1) Set ¶

func (v *NullablePollModelV1) Set(val *PollModelV1)

func (*NullablePollModelV1) UnmarshalJSON ¶

func (v *NullablePollModelV1) UnmarshalJSON(src []byte) error

func (*NullablePollModelV1) Unset ¶

func (v *NullablePollModelV1) Unset()

type NullablePollModelV1Answers ¶

type NullablePollModelV1Answers struct {
	// contains filtered or unexported fields
}

func NewNullablePollModelV1Answers ¶

func NewNullablePollModelV1Answers(val *PollModelV1Answers) *NullablePollModelV1Answers

func (NullablePollModelV1Answers) Get ¶

func (NullablePollModelV1Answers) IsSet ¶

func (v NullablePollModelV1Answers) IsSet() bool

func (NullablePollModelV1Answers) MarshalJSON ¶

func (v NullablePollModelV1Answers) MarshalJSON() ([]byte, error)

func (*NullablePollModelV1Answers) Set ¶

func (*NullablePollModelV1Answers) UnmarshalJSON ¶

func (v *NullablePollModelV1Answers) UnmarshalJSON(src []byte) error

func (*NullablePollModelV1Answers) Unset ¶

func (v *NullablePollModelV1Answers) Unset()

type NullablePollVoteStatusModelV1 ¶

type NullablePollVoteStatusModelV1 struct {
	// contains filtered or unexported fields
}

func (NullablePollVoteStatusModelV1) Get ¶

func (NullablePollVoteStatusModelV1) IsSet ¶

func (NullablePollVoteStatusModelV1) MarshalJSON ¶

func (v NullablePollVoteStatusModelV1) MarshalJSON() ([]byte, error)

func (*NullablePollVoteStatusModelV1) Set ¶

func (*NullablePollVoteStatusModelV1) UnmarshalJSON ¶

func (v *NullablePollVoteStatusModelV1) UnmarshalJSON(src []byte) error

func (*NullablePollVoteStatusModelV1) Unset ¶

func (v *NullablePollVoteStatusModelV1) Unset()

type NullablePublishersModelSearchV1 ¶

type NullablePublishersModelSearchV1 struct {
	// contains filtered or unexported fields
}

func (NullablePublishersModelSearchV1) Get ¶

func (NullablePublishersModelSearchV1) IsSet ¶

func (NullablePublishersModelSearchV1) MarshalJSON ¶

func (v NullablePublishersModelSearchV1) MarshalJSON() ([]byte, error)

func (*NullablePublishersModelSearchV1) Set ¶

func (*NullablePublishersModelSearchV1) UnmarshalJSON ¶

func (v *NullablePublishersModelSearchV1) UnmarshalJSON(src []byte) error

func (*NullablePublishersModelSearchV1) Unset ¶

type NullablePublishersModelSearchV1Stats ¶

type NullablePublishersModelSearchV1Stats struct {
	// contains filtered or unexported fields
}

func (NullablePublishersModelSearchV1Stats) Get ¶

func (NullablePublishersModelSearchV1Stats) IsSet ¶

func (NullablePublishersModelSearchV1Stats) MarshalJSON ¶

func (v NullablePublishersModelSearchV1Stats) MarshalJSON() ([]byte, error)

func (*NullablePublishersModelSearchV1Stats) Set ¶

func (*NullablePublishersModelSearchV1Stats) UnmarshalJSON ¶

func (v *NullablePublishersModelSearchV1Stats) UnmarshalJSON(src []byte) error

func (*NullablePublishersModelSearchV1Stats) Unset ¶

type NullablePublishersModelUpdateV1 ¶

type NullablePublishersModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullablePublishersModelUpdateV1) Get ¶

func (NullablePublishersModelUpdateV1) IsSet ¶

func (NullablePublishersModelUpdateV1) MarshalJSON ¶

func (v NullablePublishersModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullablePublishersModelUpdateV1) Set ¶

func (*NullablePublishersModelUpdateV1) UnmarshalJSON ¶

func (v *NullablePublishersModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullablePublishersModelUpdateV1) Unset ¶

type NullablePublishersModelUpdateV1Admin ¶

type NullablePublishersModelUpdateV1Admin struct {
	// contains filtered or unexported fields
}

func (NullablePublishersModelUpdateV1Admin) Get ¶

func (NullablePublishersModelUpdateV1Admin) IsSet ¶

func (NullablePublishersModelUpdateV1Admin) MarshalJSON ¶

func (v NullablePublishersModelUpdateV1Admin) MarshalJSON() ([]byte, error)

func (*NullablePublishersModelUpdateV1Admin) Set ¶

func (*NullablePublishersModelUpdateV1Admin) UnmarshalJSON ¶

func (v *NullablePublishersModelUpdateV1Admin) UnmarshalJSON(src []byte) error

func (*NullablePublishersModelUpdateV1Admin) Unset ¶

type NullablePublishersModelUpdateV1Associated ¶

type NullablePublishersModelUpdateV1Associated struct {
	// contains filtered or unexported fields
}

func (NullablePublishersModelUpdateV1Associated) Get ¶

func (NullablePublishersModelUpdateV1Associated) IsSet ¶

func (NullablePublishersModelUpdateV1Associated) MarshalJSON ¶

func (*NullablePublishersModelUpdateV1Associated) Set ¶

func (*NullablePublishersModelUpdateV1Associated) UnmarshalJSON ¶

func (v *NullablePublishersModelUpdateV1Associated) UnmarshalJSON(src []byte) error

func (*NullablePublishersModelUpdateV1Associated) Unset ¶

type NullablePublishersModelV1 ¶

type NullablePublishersModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullablePublishersModelV1 ¶

func NewNullablePublishersModelV1(val *PublishersModelV1) *NullablePublishersModelV1

func (NullablePublishersModelV1) Get ¶

func (NullablePublishersModelV1) IsSet ¶

func (v NullablePublishersModelV1) IsSet() bool

func (NullablePublishersModelV1) MarshalJSON ¶

func (v NullablePublishersModelV1) MarshalJSON() ([]byte, error)

func (*NullablePublishersModelV1) Set ¶

func (*NullablePublishersModelV1) UnmarshalJSON ¶

func (v *NullablePublishersModelV1) UnmarshalJSON(src []byte) error

func (*NullablePublishersModelV1) Unset ¶

func (v *NullablePublishersModelV1) Unset()

type NullablePublishersModelV1Admin ¶

type NullablePublishersModelV1Admin struct {
	// contains filtered or unexported fields
}

func (NullablePublishersModelV1Admin) Get ¶

func (NullablePublishersModelV1Admin) IsSet ¶

func (NullablePublishersModelV1Admin) MarshalJSON ¶

func (v NullablePublishersModelV1Admin) MarshalJSON() ([]byte, error)

func (*NullablePublishersModelV1Admin) Set ¶

func (*NullablePublishersModelV1Admin) UnmarshalJSON ¶

func (v *NullablePublishersModelV1Admin) UnmarshalJSON(src []byte) error

func (*NullablePublishersModelV1Admin) Unset ¶

func (v *NullablePublishersModelV1Admin) Unset()

type NullablePublishersModelV1Associated ¶

type NullablePublishersModelV1Associated struct {
	// contains filtered or unexported fields
}

func (NullablePublishersModelV1Associated) Get ¶

func (NullablePublishersModelV1Associated) IsSet ¶

func (NullablePublishersModelV1Associated) MarshalJSON ¶

func (v NullablePublishersModelV1Associated) MarshalJSON() ([]byte, error)

func (*NullablePublishersModelV1Associated) Set ¶

func (*NullablePublishersModelV1Associated) UnmarshalJSON ¶

func (v *NullablePublishersModelV1Associated) UnmarshalJSON(src []byte) error

func (*NullablePublishersModelV1Associated) Unset ¶

type NullablePublishersModelV1Stats ¶

type NullablePublishersModelV1Stats struct {
	// contains filtered or unexported fields
}

func (NullablePublishersModelV1Stats) Get ¶

func (NullablePublishersModelV1Stats) IsSet ¶

func (NullablePublishersModelV1Stats) MarshalJSON ¶

func (v NullablePublishersModelV1Stats) MarshalJSON() ([]byte, error)

func (*NullablePublishersModelV1Stats) Set ¶

func (*NullablePublishersModelV1Stats) UnmarshalJSON ¶

func (v *NullablePublishersModelV1Stats) UnmarshalJSON(src []byte) error

func (*NullablePublishersModelV1Stats) Unset ¶

func (v *NullablePublishersModelV1Stats) Unset()

type NullablePublishersPublicationResponseV1 ¶

type NullablePublishersPublicationResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullablePublishersPublicationResponseV1) Get ¶

func (NullablePublishersPublicationResponseV1) IsSet ¶

func (NullablePublishersPublicationResponseV1) MarshalJSON ¶

func (v NullablePublishersPublicationResponseV1) MarshalJSON() ([]byte, error)

func (*NullablePublishersPublicationResponseV1) Set ¶

func (*NullablePublishersPublicationResponseV1) UnmarshalJSON ¶

func (v *NullablePublishersPublicationResponseV1) UnmarshalJSON(src []byte) error

func (*NullablePublishersPublicationResponseV1) Unset ¶

type NullablePublishersPublicationResponseV1Publisher ¶

type NullablePublishersPublicationResponseV1Publisher struct {
	// contains filtered or unexported fields
}

func (NullablePublishersPublicationResponseV1Publisher) Get ¶

func (NullablePublishersPublicationResponseV1Publisher) IsSet ¶

func (NullablePublishersPublicationResponseV1Publisher) MarshalJSON ¶

func (*NullablePublishersPublicationResponseV1Publisher) Set ¶

func (*NullablePublishersPublicationResponseV1Publisher) UnmarshalJSON ¶

func (*NullablePublishersPublicationResponseV1Publisher) Unset ¶

type NullablePublishersPublicationResponseV1SeriesList ¶

type NullablePublishersPublicationResponseV1SeriesList struct {
	// contains filtered or unexported fields
}

func (NullablePublishersPublicationResponseV1SeriesList) Get ¶

func (NullablePublishersPublicationResponseV1SeriesList) IsSet ¶

func (NullablePublishersPublicationResponseV1SeriesList) MarshalJSON ¶

func (*NullablePublishersPublicationResponseV1SeriesList) Set ¶

func (*NullablePublishersPublicationResponseV1SeriesList) UnmarshalJSON ¶

func (*NullablePublishersPublicationResponseV1SeriesList) Unset ¶

type NullablePublishersSearchRequestV1 ¶

type NullablePublishersSearchRequestV1 struct {
	// contains filtered or unexported fields
}

func (NullablePublishersSearchRequestV1) Get ¶

func (NullablePublishersSearchRequestV1) IsSet ¶

func (NullablePublishersSearchRequestV1) MarshalJSON ¶

func (v NullablePublishersSearchRequestV1) MarshalJSON() ([]byte, error)

func (*NullablePublishersSearchRequestV1) Set ¶

func (*NullablePublishersSearchRequestV1) UnmarshalJSON ¶

func (v *NullablePublishersSearchRequestV1) UnmarshalJSON(src []byte) error

func (*NullablePublishersSearchRequestV1) Unset ¶

type NullablePublishersSearchResponseV1 ¶

type NullablePublishersSearchResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullablePublishersSearchResponseV1) Get ¶

func (NullablePublishersSearchResponseV1) IsSet ¶

func (NullablePublishersSearchResponseV1) MarshalJSON ¶

func (v NullablePublishersSearchResponseV1) MarshalJSON() ([]byte, error)

func (*NullablePublishersSearchResponseV1) Set ¶

func (*NullablePublishersSearchResponseV1) UnmarshalJSON ¶

func (v *NullablePublishersSearchResponseV1) UnmarshalJSON(src []byte) error

func (*NullablePublishersSearchResponseV1) Unset ¶

type NullablePublishersSearchResponseV1Results ¶

type NullablePublishersSearchResponseV1Results struct {
	// contains filtered or unexported fields
}

func (NullablePublishersSearchResponseV1Results) Get ¶

func (NullablePublishersSearchResponseV1Results) IsSet ¶

func (NullablePublishersSearchResponseV1Results) MarshalJSON ¶

func (*NullablePublishersSearchResponseV1Results) Set ¶

func (*NullablePublishersSearchResponseV1Results) UnmarshalJSON ¶

func (v *NullablePublishersSearchResponseV1Results) UnmarshalJSON(src []byte) error

func (*NullablePublishersSearchResponseV1Results) Unset ¶

type NullablePublishersSeriesListResponseV1 ¶

type NullablePublishersSeriesListResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullablePublishersSeriesListResponseV1) Get ¶

func (NullablePublishersSeriesListResponseV1) IsSet ¶

func (NullablePublishersSeriesListResponseV1) MarshalJSON ¶

func (v NullablePublishersSeriesListResponseV1) MarshalJSON() ([]byte, error)

func (*NullablePublishersSeriesListResponseV1) Set ¶

func (*NullablePublishersSeriesListResponseV1) UnmarshalJSON ¶

func (v *NullablePublishersSeriesListResponseV1) UnmarshalJSON(src []byte) error

func (*NullablePublishersSeriesListResponseV1) Unset ¶

type NullablePublishersSeriesListResponseV1PublicationList ¶

type NullablePublishersSeriesListResponseV1PublicationList struct {
	// contains filtered or unexported fields
}

func (NullablePublishersSeriesListResponseV1PublicationList) Get ¶

func (NullablePublishersSeriesListResponseV1PublicationList) IsSet ¶

func (NullablePublishersSeriesListResponseV1PublicationList) MarshalJSON ¶

func (*NullablePublishersSeriesListResponseV1PublicationList) Set ¶

func (*NullablePublishersSeriesListResponseV1PublicationList) UnmarshalJSON ¶

func (*NullablePublishersSeriesListResponseV1PublicationList) Unset ¶

type NullablePublishersSeriesListResponseV1SeriesList ¶

type NullablePublishersSeriesListResponseV1SeriesList struct {
	// contains filtered or unexported fields
}

func (NullablePublishersSeriesListResponseV1SeriesList) Get ¶

func (NullablePublishersSeriesListResponseV1SeriesList) IsSet ¶

func (NullablePublishersSeriesListResponseV1SeriesList) MarshalJSON ¶

func (*NullablePublishersSeriesListResponseV1SeriesList) Set ¶

func (*NullablePublishersSeriesListResponseV1SeriesList) UnmarshalJSON ¶

func (*NullablePublishersSeriesListResponseV1SeriesList) Unset ¶

type NullableReleaseDaysSearchRequestV1 ¶

type NullableReleaseDaysSearchRequestV1 struct {
	// contains filtered or unexported fields
}

func (NullableReleaseDaysSearchRequestV1) Get ¶

func (NullableReleaseDaysSearchRequestV1) IsSet ¶

func (NullableReleaseDaysSearchRequestV1) MarshalJSON ¶

func (v NullableReleaseDaysSearchRequestV1) MarshalJSON() ([]byte, error)

func (*NullableReleaseDaysSearchRequestV1) Set ¶

func (*NullableReleaseDaysSearchRequestV1) UnmarshalJSON ¶

func (v *NullableReleaseDaysSearchRequestV1) UnmarshalJSON(src []byte) error

func (*NullableReleaseDaysSearchRequestV1) Unset ¶

type NullableReleaseModelSearchV1 ¶

type NullableReleaseModelSearchV1 struct {
	// contains filtered or unexported fields
}

func (NullableReleaseModelSearchV1) Get ¶

func (NullableReleaseModelSearchV1) IsSet ¶

func (NullableReleaseModelSearchV1) MarshalJSON ¶

func (v NullableReleaseModelSearchV1) MarshalJSON() ([]byte, error)

func (*NullableReleaseModelSearchV1) Set ¶

func (*NullableReleaseModelSearchV1) UnmarshalJSON ¶

func (v *NullableReleaseModelSearchV1) UnmarshalJSON(src []byte) error

func (*NullableReleaseModelSearchV1) Unset ¶

func (v *NullableReleaseModelSearchV1) Unset()

type NullableReleaseModelSearchV1Groups ¶

type NullableReleaseModelSearchV1Groups struct {
	// contains filtered or unexported fields
}

func (NullableReleaseModelSearchV1Groups) Get ¶

func (NullableReleaseModelSearchV1Groups) IsSet ¶

func (NullableReleaseModelSearchV1Groups) MarshalJSON ¶

func (v NullableReleaseModelSearchV1Groups) MarshalJSON() ([]byte, error)

func (*NullableReleaseModelSearchV1Groups) Set ¶

func (*NullableReleaseModelSearchV1Groups) UnmarshalJSON ¶

func (v *NullableReleaseModelSearchV1Groups) UnmarshalJSON(src []byte) error

func (*NullableReleaseModelSearchV1Groups) Unset ¶

type NullableReleaseModelUpdateV1 ¶

type NullableReleaseModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullableReleaseModelUpdateV1) Get ¶

func (NullableReleaseModelUpdateV1) IsSet ¶

func (NullableReleaseModelUpdateV1) MarshalJSON ¶

func (v NullableReleaseModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableReleaseModelUpdateV1) Set ¶

func (*NullableReleaseModelUpdateV1) UnmarshalJSON ¶

func (v *NullableReleaseModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableReleaseModelUpdateV1) Unset ¶

func (v *NullableReleaseModelUpdateV1) Unset()

type NullableReleaseModelUpdateV1Admin ¶

type NullableReleaseModelUpdateV1Admin struct {
	// contains filtered or unexported fields
}

func (NullableReleaseModelUpdateV1Admin) Get ¶

func (NullableReleaseModelUpdateV1Admin) IsSet ¶

func (NullableReleaseModelUpdateV1Admin) MarshalJSON ¶

func (v NullableReleaseModelUpdateV1Admin) MarshalJSON() ([]byte, error)

func (*NullableReleaseModelUpdateV1Admin) Set ¶

func (*NullableReleaseModelUpdateV1Admin) UnmarshalJSON ¶

func (v *NullableReleaseModelUpdateV1Admin) UnmarshalJSON(src []byte) error

func (*NullableReleaseModelUpdateV1Admin) Unset ¶

type NullableReleaseModelUpdateV1Groups ¶

type NullableReleaseModelUpdateV1Groups struct {
	// contains filtered or unexported fields
}

func (NullableReleaseModelUpdateV1Groups) Get ¶

func (NullableReleaseModelUpdateV1Groups) IsSet ¶

func (NullableReleaseModelUpdateV1Groups) MarshalJSON ¶

func (v NullableReleaseModelUpdateV1Groups) MarshalJSON() ([]byte, error)

func (*NullableReleaseModelUpdateV1Groups) Set ¶

func (*NullableReleaseModelUpdateV1Groups) UnmarshalJSON ¶

func (v *NullableReleaseModelUpdateV1Groups) UnmarshalJSON(src []byte) error

func (*NullableReleaseModelUpdateV1Groups) Unset ¶

type NullableReleaseModelV1 ¶

type NullableReleaseModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullableReleaseModelV1 ¶

func NewNullableReleaseModelV1(val *ReleaseModelV1) *NullableReleaseModelV1

func (NullableReleaseModelV1) Get ¶

func (NullableReleaseModelV1) IsSet ¶

func (v NullableReleaseModelV1) IsSet() bool

func (NullableReleaseModelV1) MarshalJSON ¶

func (v NullableReleaseModelV1) MarshalJSON() ([]byte, error)

func (*NullableReleaseModelV1) Set ¶

func (*NullableReleaseModelV1) UnmarshalJSON ¶

func (v *NullableReleaseModelV1) UnmarshalJSON(src []byte) error

func (*NullableReleaseModelV1) Unset ¶

func (v *NullableReleaseModelV1) Unset()

type NullableReleaseModelV1Admin ¶

type NullableReleaseModelV1Admin struct {
	// contains filtered or unexported fields
}

func (NullableReleaseModelV1Admin) Get ¶

func (NullableReleaseModelV1Admin) IsSet ¶

func (NullableReleaseModelV1Admin) MarshalJSON ¶

func (v NullableReleaseModelV1Admin) MarshalJSON() ([]byte, error)

func (*NullableReleaseModelV1Admin) Set ¶

func (*NullableReleaseModelV1Admin) UnmarshalJSON ¶

func (v *NullableReleaseModelV1Admin) UnmarshalJSON(src []byte) error

func (*NullableReleaseModelV1Admin) Unset ¶

func (v *NullableReleaseModelV1Admin) Unset()

type NullableReleaseModelV1Groups ¶

type NullableReleaseModelV1Groups struct {
	// contains filtered or unexported fields
}

func (NullableReleaseModelV1Groups) Get ¶

func (NullableReleaseModelV1Groups) IsSet ¶

func (NullableReleaseModelV1Groups) MarshalJSON ¶

func (v NullableReleaseModelV1Groups) MarshalJSON() ([]byte, error)

func (*NullableReleaseModelV1Groups) Set ¶

func (*NullableReleaseModelV1Groups) UnmarshalJSON ¶

func (v *NullableReleaseModelV1Groups) UnmarshalJSON(src []byte) error

func (*NullableReleaseModelV1Groups) Unset ¶

func (v *NullableReleaseModelV1Groups) Unset()

type NullableReleaseModerateRequestV1 ¶

type NullableReleaseModerateRequestV1 struct {
	// contains filtered or unexported fields
}

func (NullableReleaseModerateRequestV1) Get ¶

func (NullableReleaseModerateRequestV1) IsSet ¶

func (NullableReleaseModerateRequestV1) MarshalJSON ¶

func (v NullableReleaseModerateRequestV1) MarshalJSON() ([]byte, error)

func (*NullableReleaseModerateRequestV1) Set ¶

func (*NullableReleaseModerateRequestV1) UnmarshalJSON ¶

func (v *NullableReleaseModerateRequestV1) UnmarshalJSON(src []byte) error

func (*NullableReleaseModerateRequestV1) Unset ¶

type NullableReleaseModerateResponseV1 ¶

type NullableReleaseModerateResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullableReleaseModerateResponseV1) Get ¶

func (NullableReleaseModerateResponseV1) IsSet ¶

func (NullableReleaseModerateResponseV1) MarshalJSON ¶

func (v NullableReleaseModerateResponseV1) MarshalJSON() ([]byte, error)

func (*NullableReleaseModerateResponseV1) Set ¶

func (*NullableReleaseModerateResponseV1) UnmarshalJSON ¶

func (v *NullableReleaseModerateResponseV1) UnmarshalJSON(src []byte) error

func (*NullableReleaseModerateResponseV1) Unset ¶

type NullableReleaseModerateResponseV1GroupInfo ¶

type NullableReleaseModerateResponseV1GroupInfo struct {
	// contains filtered or unexported fields
}

func (NullableReleaseModerateResponseV1GroupInfo) Get ¶

func (NullableReleaseModerateResponseV1GroupInfo) IsSet ¶

func (NullableReleaseModerateResponseV1GroupInfo) MarshalJSON ¶

func (*NullableReleaseModerateResponseV1GroupInfo) Set ¶

func (*NullableReleaseModerateResponseV1GroupInfo) UnmarshalJSON ¶

func (v *NullableReleaseModerateResponseV1GroupInfo) UnmarshalJSON(src []byte) error

func (*NullableReleaseModerateResponseV1GroupInfo) Unset ¶

type NullableReleaseModerateResponseV1Results ¶

type NullableReleaseModerateResponseV1Results struct {
	// contains filtered or unexported fields
}

func (NullableReleaseModerateResponseV1Results) Get ¶

func (NullableReleaseModerateResponseV1Results) IsSet ¶

func (NullableReleaseModerateResponseV1Results) MarshalJSON ¶

func (*NullableReleaseModerateResponseV1Results) Set ¶

func (*NullableReleaseModerateResponseV1Results) UnmarshalJSON ¶

func (v *NullableReleaseModerateResponseV1Results) UnmarshalJSON(src []byte) error

func (*NullableReleaseModerateResponseV1Results) Unset ¶

type NullableReleaseModerateResponseV1ResultsMetadata ¶

type NullableReleaseModerateResponseV1ResultsMetadata struct {
	// contains filtered or unexported fields
}

func (NullableReleaseModerateResponseV1ResultsMetadata) Get ¶

func (NullableReleaseModerateResponseV1ResultsMetadata) IsSet ¶

func (NullableReleaseModerateResponseV1ResultsMetadata) MarshalJSON ¶

func (*NullableReleaseModerateResponseV1ResultsMetadata) Set ¶

func (*NullableReleaseModerateResponseV1ResultsMetadata) UnmarshalJSON ¶

func (*NullableReleaseModerateResponseV1ResultsMetadata) Unset ¶

type NullableReleaseSearchRequestV1 ¶

type NullableReleaseSearchRequestV1 struct {
	// contains filtered or unexported fields
}

func (NullableReleaseSearchRequestV1) Get ¶

func (NullableReleaseSearchRequestV1) IsSet ¶

func (NullableReleaseSearchRequestV1) MarshalJSON ¶

func (v NullableReleaseSearchRequestV1) MarshalJSON() ([]byte, error)

func (*NullableReleaseSearchRequestV1) Set ¶

func (*NullableReleaseSearchRequestV1) UnmarshalJSON ¶

func (v *NullableReleaseSearchRequestV1) UnmarshalJSON(src []byte) error

func (*NullableReleaseSearchRequestV1) Unset ¶

func (v *NullableReleaseSearchRequestV1) Unset()

type NullableReleaseSearchResponseV1 ¶

type NullableReleaseSearchResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullableReleaseSearchResponseV1) Get ¶

func (NullableReleaseSearchResponseV1) IsSet ¶

func (NullableReleaseSearchResponseV1) MarshalJSON ¶

func (v NullableReleaseSearchResponseV1) MarshalJSON() ([]byte, error)

func (*NullableReleaseSearchResponseV1) Set ¶

func (*NullableReleaseSearchResponseV1) UnmarshalJSON ¶

func (v *NullableReleaseSearchResponseV1) UnmarshalJSON(src []byte) error

func (*NullableReleaseSearchResponseV1) Unset ¶

type NullableReleaseSearchResponseV1Results ¶

type NullableReleaseSearchResponseV1Results struct {
	// contains filtered or unexported fields
}

func (NullableReleaseSearchResponseV1Results) Get ¶

func (NullableReleaseSearchResponseV1Results) IsSet ¶

func (NullableReleaseSearchResponseV1Results) MarshalJSON ¶

func (v NullableReleaseSearchResponseV1Results) MarshalJSON() ([]byte, error)

func (*NullableReleaseSearchResponseV1Results) Set ¶

func (*NullableReleaseSearchResponseV1Results) UnmarshalJSON ¶

func (v *NullableReleaseSearchResponseV1Results) UnmarshalJSON(src []byte) error

func (*NullableReleaseSearchResponseV1Results) Unset ¶

type NullableReleaseSearchResponseV1ResultsMetadata ¶

type NullableReleaseSearchResponseV1ResultsMetadata struct {
	// contains filtered or unexported fields
}

func (NullableReleaseSearchResponseV1ResultsMetadata) Get ¶

func (NullableReleaseSearchResponseV1ResultsMetadata) IsSet ¶

func (NullableReleaseSearchResponseV1ResultsMetadata) MarshalJSON ¶

func (*NullableReleaseSearchResponseV1ResultsMetadata) Set ¶

func (*NullableReleaseSearchResponseV1ResultsMetadata) UnmarshalJSON ¶

func (*NullableReleaseSearchResponseV1ResultsMetadata) Unset ¶

type NullableReleaseSearchResponseV1ResultsMetadataUserGenreHighlights ¶

type NullableReleaseSearchResponseV1ResultsMetadataUserGenreHighlights struct {
	// contains filtered or unexported fields
}

func (NullableReleaseSearchResponseV1ResultsMetadataUserGenreHighlights) Get ¶

func (NullableReleaseSearchResponseV1ResultsMetadataUserGenreHighlights) IsSet ¶

func (NullableReleaseSearchResponseV1ResultsMetadataUserGenreHighlights) MarshalJSON ¶

func (*NullableReleaseSearchResponseV1ResultsMetadataUserGenreHighlights) Set ¶

func (*NullableReleaseSearchResponseV1ResultsMetadataUserGenreHighlights) UnmarshalJSON ¶

func (*NullableReleaseSearchResponseV1ResultsMetadataUserGenreHighlights) Unset ¶

type NullableReviewCommentModelUpdateV1 ¶

type NullableReviewCommentModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullableReviewCommentModelUpdateV1) Get ¶

func (NullableReviewCommentModelUpdateV1) IsSet ¶

func (NullableReviewCommentModelUpdateV1) MarshalJSON ¶

func (v NullableReviewCommentModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableReviewCommentModelUpdateV1) Set ¶

func (*NullableReviewCommentModelUpdateV1) UnmarshalJSON ¶

func (v *NullableReviewCommentModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableReviewCommentModelUpdateV1) Unset ¶

type NullableReviewCommentModelUpdateV1Admin ¶

type NullableReviewCommentModelUpdateV1Admin struct {
	// contains filtered or unexported fields
}

func (NullableReviewCommentModelUpdateV1Admin) Get ¶

func (NullableReviewCommentModelUpdateV1Admin) IsSet ¶

func (NullableReviewCommentModelUpdateV1Admin) MarshalJSON ¶

func (v NullableReviewCommentModelUpdateV1Admin) MarshalJSON() ([]byte, error)

func (*NullableReviewCommentModelUpdateV1Admin) Set ¶

func (*NullableReviewCommentModelUpdateV1Admin) UnmarshalJSON ¶

func (v *NullableReviewCommentModelUpdateV1Admin) UnmarshalJSON(src []byte) error

func (*NullableReviewCommentModelUpdateV1Admin) Unset ¶

type NullableReviewCommentModelV1 ¶

type NullableReviewCommentModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableReviewCommentModelV1) Get ¶

func (NullableReviewCommentModelV1) IsSet ¶

func (NullableReviewCommentModelV1) MarshalJSON ¶

func (v NullableReviewCommentModelV1) MarshalJSON() ([]byte, error)

func (*NullableReviewCommentModelV1) Set ¶

func (*NullableReviewCommentModelV1) UnmarshalJSON ¶

func (v *NullableReviewCommentModelV1) UnmarshalJSON(src []byte) error

func (*NullableReviewCommentModelV1) Unset ¶

func (v *NullableReviewCommentModelV1) Unset()

type NullableReviewCommentModelV1Author ¶

type NullableReviewCommentModelV1Author struct {
	// contains filtered or unexported fields
}

func (NullableReviewCommentModelV1Author) Get ¶

func (NullableReviewCommentModelV1Author) IsSet ¶

func (NullableReviewCommentModelV1Author) MarshalJSON ¶

func (v NullableReviewCommentModelV1Author) MarshalJSON() ([]byte, error)

func (*NullableReviewCommentModelV1Author) Set ¶

func (*NullableReviewCommentModelV1Author) UnmarshalJSON ¶

func (v *NullableReviewCommentModelV1Author) UnmarshalJSON(src []byte) error

func (*NullableReviewCommentModelV1Author) Unset ¶

type NullableReviewCommentSearchRequestV1 ¶

type NullableReviewCommentSearchRequestV1 struct {
	// contains filtered or unexported fields
}

func (NullableReviewCommentSearchRequestV1) Get ¶

func (NullableReviewCommentSearchRequestV1) IsSet ¶

func (NullableReviewCommentSearchRequestV1) MarshalJSON ¶

func (v NullableReviewCommentSearchRequestV1) MarshalJSON() ([]byte, error)

func (*NullableReviewCommentSearchRequestV1) Set ¶

func (*NullableReviewCommentSearchRequestV1) UnmarshalJSON ¶

func (v *NullableReviewCommentSearchRequestV1) UnmarshalJSON(src []byte) error

func (*NullableReviewCommentSearchRequestV1) Unset ¶

type NullableReviewCommentSearchResponseV1 ¶

type NullableReviewCommentSearchResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullableReviewCommentSearchResponseV1) Get ¶

func (NullableReviewCommentSearchResponseV1) IsSet ¶

func (NullableReviewCommentSearchResponseV1) MarshalJSON ¶

func (v NullableReviewCommentSearchResponseV1) MarshalJSON() ([]byte, error)

func (*NullableReviewCommentSearchResponseV1) Set ¶

func (*NullableReviewCommentSearchResponseV1) UnmarshalJSON ¶

func (v *NullableReviewCommentSearchResponseV1) UnmarshalJSON(src []byte) error

func (*NullableReviewCommentSearchResponseV1) Unset ¶

type NullableReviewCommentSearchResponseV1Results ¶

type NullableReviewCommentSearchResponseV1Results struct {
	// contains filtered or unexported fields
}

func (NullableReviewCommentSearchResponseV1Results) Get ¶

func (NullableReviewCommentSearchResponseV1Results) IsSet ¶

func (NullableReviewCommentSearchResponseV1Results) MarshalJSON ¶

func (*NullableReviewCommentSearchResponseV1Results) Set ¶

func (*NullableReviewCommentSearchResponseV1Results) UnmarshalJSON ¶

func (*NullableReviewCommentSearchResponseV1Results) Unset ¶

type NullableReviewModelSearchV1 ¶

type NullableReviewModelSearchV1 struct {
	// contains filtered or unexported fields
}

func (NullableReviewModelSearchV1) Get ¶

func (NullableReviewModelSearchV1) IsSet ¶

func (NullableReviewModelSearchV1) MarshalJSON ¶

func (v NullableReviewModelSearchV1) MarshalJSON() ([]byte, error)

func (*NullableReviewModelSearchV1) Set ¶

func (*NullableReviewModelSearchV1) UnmarshalJSON ¶

func (v *NullableReviewModelSearchV1) UnmarshalJSON(src []byte) error

func (*NullableReviewModelSearchV1) Unset ¶

func (v *NullableReviewModelSearchV1) Unset()

type NullableReviewModelSearchV1Author ¶

type NullableReviewModelSearchV1Author struct {
	// contains filtered or unexported fields
}

func (NullableReviewModelSearchV1Author) Get ¶

func (NullableReviewModelSearchV1Author) IsSet ¶

func (NullableReviewModelSearchV1Author) MarshalJSON ¶

func (v NullableReviewModelSearchV1Author) MarshalJSON() ([]byte, error)

func (*NullableReviewModelSearchV1Author) Set ¶

func (*NullableReviewModelSearchV1Author) UnmarshalJSON ¶

func (v *NullableReviewModelSearchV1Author) UnmarshalJSON(src []byte) error

func (*NullableReviewModelSearchV1Author) Unset ¶

type NullableReviewModelSearchV1Review ¶

type NullableReviewModelSearchV1Review struct {
	// contains filtered or unexported fields
}

func (NullableReviewModelSearchV1Review) Get ¶

func (NullableReviewModelSearchV1Review) IsSet ¶

func (NullableReviewModelSearchV1Review) MarshalJSON ¶

func (v NullableReviewModelSearchV1Review) MarshalJSON() ([]byte, error)

func (*NullableReviewModelSearchV1Review) Set ¶

func (*NullableReviewModelSearchV1Review) UnmarshalJSON ¶

func (v *NullableReviewModelSearchV1Review) UnmarshalJSON(src []byte) error

func (*NullableReviewModelSearchV1Review) Unset ¶

type NullableReviewModelUpdateV1 ¶

type NullableReviewModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullableReviewModelUpdateV1) Get ¶

func (NullableReviewModelUpdateV1) IsSet ¶

func (NullableReviewModelUpdateV1) MarshalJSON ¶

func (v NullableReviewModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableReviewModelUpdateV1) Set ¶

func (*NullableReviewModelUpdateV1) UnmarshalJSON ¶

func (v *NullableReviewModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableReviewModelUpdateV1) Unset ¶

func (v *NullableReviewModelUpdateV1) Unset()

type NullableReviewModelUpdateV1Admin ¶

type NullableReviewModelUpdateV1Admin struct {
	// contains filtered or unexported fields
}

func (NullableReviewModelUpdateV1Admin) Get ¶

func (NullableReviewModelUpdateV1Admin) IsSet ¶

func (NullableReviewModelUpdateV1Admin) MarshalJSON ¶

func (v NullableReviewModelUpdateV1Admin) MarshalJSON() ([]byte, error)

func (*NullableReviewModelUpdateV1Admin) Set ¶

func (*NullableReviewModelUpdateV1Admin) UnmarshalJSON ¶

func (v *NullableReviewModelUpdateV1Admin) UnmarshalJSON(src []byte) error

func (*NullableReviewModelUpdateV1Admin) Unset ¶

type NullableReviewModelUpdateV1Review ¶

type NullableReviewModelUpdateV1Review struct {
	// contains filtered or unexported fields
}

func (NullableReviewModelUpdateV1Review) Get ¶

func (NullableReviewModelUpdateV1Review) IsSet ¶

func (NullableReviewModelUpdateV1Review) MarshalJSON ¶

func (v NullableReviewModelUpdateV1Review) MarshalJSON() ([]byte, error)

func (*NullableReviewModelUpdateV1Review) Set ¶

func (*NullableReviewModelUpdateV1Review) UnmarshalJSON ¶

func (v *NullableReviewModelUpdateV1Review) UnmarshalJSON(src []byte) error

func (*NullableReviewModelUpdateV1Review) Unset ¶

type NullableReviewModelV1 ¶

type NullableReviewModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullableReviewModelV1 ¶

func NewNullableReviewModelV1(val *ReviewModelV1) *NullableReviewModelV1

func (NullableReviewModelV1) Get ¶

func (NullableReviewModelV1) IsSet ¶

func (v NullableReviewModelV1) IsSet() bool

func (NullableReviewModelV1) MarshalJSON ¶

func (v NullableReviewModelV1) MarshalJSON() ([]byte, error)

func (*NullableReviewModelV1) Set ¶

func (v *NullableReviewModelV1) Set(val *ReviewModelV1)

func (*NullableReviewModelV1) UnmarshalJSON ¶

func (v *NullableReviewModelV1) UnmarshalJSON(src []byte) error

func (*NullableReviewModelV1) Unset ¶

func (v *NullableReviewModelV1) Unset()

type NullableReviewModelV1Author ¶

type NullableReviewModelV1Author struct {
	// contains filtered or unexported fields
}

func (NullableReviewModelV1Author) Get ¶

func (NullableReviewModelV1Author) IsSet ¶

func (NullableReviewModelV1Author) MarshalJSON ¶

func (v NullableReviewModelV1Author) MarshalJSON() ([]byte, error)

func (*NullableReviewModelV1Author) Set ¶

func (*NullableReviewModelV1Author) UnmarshalJSON ¶

func (v *NullableReviewModelV1Author) UnmarshalJSON(src []byte) error

func (*NullableReviewModelV1Author) Unset ¶

func (v *NullableReviewModelV1Author) Unset()

type NullableReviewModelV1Review ¶

type NullableReviewModelV1Review struct {
	// contains filtered or unexported fields
}

func (NullableReviewModelV1Review) Get ¶

func (NullableReviewModelV1Review) IsSet ¶

func (NullableReviewModelV1Review) MarshalJSON ¶

func (v NullableReviewModelV1Review) MarshalJSON() ([]byte, error)

func (*NullableReviewModelV1Review) Set ¶

func (*NullableReviewModelV1Review) UnmarshalJSON ¶

func (v *NullableReviewModelV1Review) UnmarshalJSON(src []byte) error

func (*NullableReviewModelV1Review) Unset ¶

func (v *NullableReviewModelV1Review) Unset()

type NullableReviewSearchRequestV1 ¶

type NullableReviewSearchRequestV1 struct {
	// contains filtered or unexported fields
}

func (NullableReviewSearchRequestV1) Get ¶

func (NullableReviewSearchRequestV1) IsSet ¶

func (NullableReviewSearchRequestV1) MarshalJSON ¶

func (v NullableReviewSearchRequestV1) MarshalJSON() ([]byte, error)

func (*NullableReviewSearchRequestV1) Set ¶

func (*NullableReviewSearchRequestV1) UnmarshalJSON ¶

func (v *NullableReviewSearchRequestV1) UnmarshalJSON(src []byte) error

func (*NullableReviewSearchRequestV1) Unset ¶

func (v *NullableReviewSearchRequestV1) Unset()

type NullableReviewSearchResponseV1 ¶

type NullableReviewSearchResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullableReviewSearchResponseV1) Get ¶

func (NullableReviewSearchResponseV1) IsSet ¶

func (NullableReviewSearchResponseV1) MarshalJSON ¶

func (v NullableReviewSearchResponseV1) MarshalJSON() ([]byte, error)

func (*NullableReviewSearchResponseV1) Set ¶

func (*NullableReviewSearchResponseV1) UnmarshalJSON ¶

func (v *NullableReviewSearchResponseV1) UnmarshalJSON(src []byte) error

func (*NullableReviewSearchResponseV1) Unset ¶

func (v *NullableReviewSearchResponseV1) Unset()

type NullableReviewSearchResponseV1Results ¶

type NullableReviewSearchResponseV1Results struct {
	// contains filtered or unexported fields
}

func (NullableReviewSearchResponseV1Results) Get ¶

func (NullableReviewSearchResponseV1Results) IsSet ¶

func (NullableReviewSearchResponseV1Results) MarshalJSON ¶

func (v NullableReviewSearchResponseV1Results) MarshalJSON() ([]byte, error)

func (*NullableReviewSearchResponseV1Results) Set ¶

func (*NullableReviewSearchResponseV1Results) UnmarshalJSON ¶

func (v *NullableReviewSearchResponseV1Results) UnmarshalJSON(src []byte) error

func (*NullableReviewSearchResponseV1Results) Unset ¶

type NullableSeriesCategoryUpdateModelV1 ¶

type NullableSeriesCategoryUpdateModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableSeriesCategoryUpdateModelV1) Get ¶

func (NullableSeriesCategoryUpdateModelV1) IsSet ¶

func (NullableSeriesCategoryUpdateModelV1) MarshalJSON ¶

func (v NullableSeriesCategoryUpdateModelV1) MarshalJSON() ([]byte, error)

func (*NullableSeriesCategoryUpdateModelV1) Set ¶

func (*NullableSeriesCategoryUpdateModelV1) UnmarshalJSON ¶

func (v *NullableSeriesCategoryUpdateModelV1) UnmarshalJSON(src []byte) error

func (*NullableSeriesCategoryUpdateModelV1) Unset ¶

type NullableSeriesCategoryVoteDeleteModelV1 ¶

type NullableSeriesCategoryVoteDeleteModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableSeriesCategoryVoteDeleteModelV1) Get ¶

func (NullableSeriesCategoryVoteDeleteModelV1) IsSet ¶

func (NullableSeriesCategoryVoteDeleteModelV1) MarshalJSON ¶

func (v NullableSeriesCategoryVoteDeleteModelV1) MarshalJSON() ([]byte, error)

func (*NullableSeriesCategoryVoteDeleteModelV1) Set ¶

func (*NullableSeriesCategoryVoteDeleteModelV1) UnmarshalJSON ¶

func (v *NullableSeriesCategoryVoteDeleteModelV1) UnmarshalJSON(src []byte) error

func (*NullableSeriesCategoryVoteDeleteModelV1) Unset ¶

type NullableSeriesCategoryVoteModelV1 ¶

type NullableSeriesCategoryVoteModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableSeriesCategoryVoteModelV1) Get ¶

func (NullableSeriesCategoryVoteModelV1) IsSet ¶

func (NullableSeriesCategoryVoteModelV1) MarshalJSON ¶

func (v NullableSeriesCategoryVoteModelV1) MarshalJSON() ([]byte, error)

func (*NullableSeriesCategoryVoteModelV1) Set ¶

func (*NullableSeriesCategoryVoteModelV1) UnmarshalJSON ¶

func (v *NullableSeriesCategoryVoteModelV1) UnmarshalJSON(src []byte) error

func (*NullableSeriesCategoryVoteModelV1) Unset ¶

type NullableSeriesCommentModelUpdateV1 ¶

type NullableSeriesCommentModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullableSeriesCommentModelUpdateV1) Get ¶

func (NullableSeriesCommentModelUpdateV1) IsSet ¶

func (NullableSeriesCommentModelUpdateV1) MarshalJSON ¶

func (v NullableSeriesCommentModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableSeriesCommentModelUpdateV1) Set ¶

func (*NullableSeriesCommentModelUpdateV1) UnmarshalJSON ¶

func (v *NullableSeriesCommentModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableSeriesCommentModelUpdateV1) Unset ¶

type NullableSeriesCommentModelUpdateV1Admin ¶

type NullableSeriesCommentModelUpdateV1Admin struct {
	// contains filtered or unexported fields
}

func (NullableSeriesCommentModelUpdateV1Admin) Get ¶

func (NullableSeriesCommentModelUpdateV1Admin) IsSet ¶

func (NullableSeriesCommentModelUpdateV1Admin) MarshalJSON ¶

func (v NullableSeriesCommentModelUpdateV1Admin) MarshalJSON() ([]byte, error)

func (*NullableSeriesCommentModelUpdateV1Admin) Set ¶

func (*NullableSeriesCommentModelUpdateV1Admin) UnmarshalJSON ¶

func (v *NullableSeriesCommentModelUpdateV1Admin) UnmarshalJSON(src []byte) error

func (*NullableSeriesCommentModelUpdateV1Admin) Unset ¶

type NullableSeriesCommentModelV1 ¶

type NullableSeriesCommentModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableSeriesCommentModelV1) Get ¶

func (NullableSeriesCommentModelV1) IsSet ¶

func (NullableSeriesCommentModelV1) MarshalJSON ¶

func (v NullableSeriesCommentModelV1) MarshalJSON() ([]byte, error)

func (*NullableSeriesCommentModelV1) Set ¶

func (*NullableSeriesCommentModelV1) UnmarshalJSON ¶

func (v *NullableSeriesCommentModelV1) UnmarshalJSON(src []byte) error

func (*NullableSeriesCommentModelV1) Unset ¶

func (v *NullableSeriesCommentModelV1) Unset()

type NullableSeriesCommentModelV1Admin ¶

type NullableSeriesCommentModelV1Admin struct {
	// contains filtered or unexported fields
}

func (NullableSeriesCommentModelV1Admin) Get ¶

func (NullableSeriesCommentModelV1Admin) IsSet ¶

func (NullableSeriesCommentModelV1Admin) MarshalJSON ¶

func (v NullableSeriesCommentModelV1Admin) MarshalJSON() ([]byte, error)

func (*NullableSeriesCommentModelV1Admin) Set ¶

func (*NullableSeriesCommentModelV1Admin) UnmarshalJSON ¶

func (v *NullableSeriesCommentModelV1Admin) UnmarshalJSON(src []byte) error

func (*NullableSeriesCommentModelV1Admin) Unset ¶

type NullableSeriesCommentModelV1Author ¶

type NullableSeriesCommentModelV1Author struct {
	// contains filtered or unexported fields
}

func (NullableSeriesCommentModelV1Author) Get ¶

func (NullableSeriesCommentModelV1Author) IsSet ¶

func (NullableSeriesCommentModelV1Author) MarshalJSON ¶

func (v NullableSeriesCommentModelV1Author) MarshalJSON() ([]byte, error)

func (*NullableSeriesCommentModelV1Author) Set ¶

func (*NullableSeriesCommentModelV1Author) UnmarshalJSON ¶

func (v *NullableSeriesCommentModelV1Author) UnmarshalJSON(src []byte) error

func (*NullableSeriesCommentModelV1Author) Unset ¶

type NullableSeriesCommentModerationResponseV1 ¶

type NullableSeriesCommentModerationResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullableSeriesCommentModerationResponseV1) Get ¶

func (NullableSeriesCommentModerationResponseV1) IsSet ¶

func (NullableSeriesCommentModerationResponseV1) MarshalJSON ¶

func (*NullableSeriesCommentModerationResponseV1) Set ¶

func (*NullableSeriesCommentModerationResponseV1) UnmarshalJSON ¶

func (v *NullableSeriesCommentModerationResponseV1) UnmarshalJSON(src []byte) error

func (*NullableSeriesCommentModerationResponseV1) Unset ¶

type NullableSeriesCommentModerationResponseV1Results ¶

type NullableSeriesCommentModerationResponseV1Results struct {
	// contains filtered or unexported fields
}

func (NullableSeriesCommentModerationResponseV1Results) Get ¶

func (NullableSeriesCommentModerationResponseV1Results) IsSet ¶

func (NullableSeriesCommentModerationResponseV1Results) MarshalJSON ¶

func (*NullableSeriesCommentModerationResponseV1Results) Set ¶

func (*NullableSeriesCommentModerationResponseV1Results) UnmarshalJSON ¶

func (*NullableSeriesCommentModerationResponseV1Results) Unset ¶

type NullableSeriesCommentModerationResponseV1ResultsMetadata ¶

type NullableSeriesCommentModerationResponseV1ResultsMetadata struct {
	// contains filtered or unexported fields
}

func (NullableSeriesCommentModerationResponseV1ResultsMetadata) Get ¶

func (NullableSeriesCommentModerationResponseV1ResultsMetadata) IsSet ¶

func (NullableSeriesCommentModerationResponseV1ResultsMetadata) MarshalJSON ¶

func (*NullableSeriesCommentModerationResponseV1ResultsMetadata) Set ¶

func (*NullableSeriesCommentModerationResponseV1ResultsMetadata) UnmarshalJSON ¶

func (*NullableSeriesCommentModerationResponseV1ResultsMetadata) Unset ¶

type NullableSeriesCommentReportModelV1 ¶

type NullableSeriesCommentReportModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableSeriesCommentReportModelV1) Get ¶

func (NullableSeriesCommentReportModelV1) IsSet ¶

func (NullableSeriesCommentReportModelV1) MarshalJSON ¶

func (v NullableSeriesCommentReportModelV1) MarshalJSON() ([]byte, error)

func (*NullableSeriesCommentReportModelV1) Set ¶

func (*NullableSeriesCommentReportModelV1) UnmarshalJSON ¶

func (v *NullableSeriesCommentReportModelV1) UnmarshalJSON(src []byte) error

func (*NullableSeriesCommentReportModelV1) Unset ¶

type NullableSeriesCommentSearchRequestV1 ¶

type NullableSeriesCommentSearchRequestV1 struct {
	// contains filtered or unexported fields
}

func (NullableSeriesCommentSearchRequestV1) Get ¶

func (NullableSeriesCommentSearchRequestV1) IsSet ¶

func (NullableSeriesCommentSearchRequestV1) MarshalJSON ¶

func (v NullableSeriesCommentSearchRequestV1) MarshalJSON() ([]byte, error)

func (*NullableSeriesCommentSearchRequestV1) Set ¶

func (*NullableSeriesCommentSearchRequestV1) UnmarshalJSON ¶

func (v *NullableSeriesCommentSearchRequestV1) UnmarshalJSON(src []byte) error

func (*NullableSeriesCommentSearchRequestV1) Unset ¶

type NullableSeriesCommentSearchResponseV1 ¶

type NullableSeriesCommentSearchResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullableSeriesCommentSearchResponseV1) Get ¶

func (NullableSeriesCommentSearchResponseV1) IsSet ¶

func (NullableSeriesCommentSearchResponseV1) MarshalJSON ¶

func (v NullableSeriesCommentSearchResponseV1) MarshalJSON() ([]byte, error)

func (*NullableSeriesCommentSearchResponseV1) Set ¶

func (*NullableSeriesCommentSearchResponseV1) UnmarshalJSON ¶

func (v *NullableSeriesCommentSearchResponseV1) UnmarshalJSON(src []byte) error

func (*NullableSeriesCommentSearchResponseV1) Unset ¶

type NullableSeriesCommentSearchResponseV1Results ¶

type NullableSeriesCommentSearchResponseV1Results struct {
	// contains filtered or unexported fields
}

func (NullableSeriesCommentSearchResponseV1Results) Get ¶

func (NullableSeriesCommentSearchResponseV1Results) IsSet ¶

func (NullableSeriesCommentSearchResponseV1Results) MarshalJSON ¶

func (*NullableSeriesCommentSearchResponseV1Results) Set ¶

func (*NullableSeriesCommentSearchResponseV1Results) UnmarshalJSON ¶

func (*NullableSeriesCommentSearchResponseV1Results) Unset ¶

type NullableSeriesCommentSearchResponseV1ResultsMetadata ¶

type NullableSeriesCommentSearchResponseV1ResultsMetadata struct {
	// contains filtered or unexported fields
}

func (NullableSeriesCommentSearchResponseV1ResultsMetadata) Get ¶

func (NullableSeriesCommentSearchResponseV1ResultsMetadata) IsSet ¶

func (NullableSeriesCommentSearchResponseV1ResultsMetadata) MarshalJSON ¶

func (*NullableSeriesCommentSearchResponseV1ResultsMetadata) Set ¶

func (*NullableSeriesCommentSearchResponseV1ResultsMetadata) UnmarshalJSON ¶

func (*NullableSeriesCommentSearchResponseV1ResultsMetadata) Unset ¶

type NullableSeriesCommentUsefulModelV1 ¶

type NullableSeriesCommentUsefulModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableSeriesCommentUsefulModelV1) Get ¶

func (NullableSeriesCommentUsefulModelV1) IsSet ¶

func (NullableSeriesCommentUsefulModelV1) MarshalJSON ¶

func (v NullableSeriesCommentUsefulModelV1) MarshalJSON() ([]byte, error)

func (*NullableSeriesCommentUsefulModelV1) Set ¶

func (*NullableSeriesCommentUsefulModelV1) UnmarshalJSON ¶

func (v *NullableSeriesCommentUsefulModelV1) UnmarshalJSON(src []byte) error

func (*NullableSeriesCommentUsefulModelV1) Unset ¶

type NullableSeriesGroupListResponseV1 ¶

type NullableSeriesGroupListResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullableSeriesGroupListResponseV1) Get ¶

func (NullableSeriesGroupListResponseV1) IsSet ¶

func (NullableSeriesGroupListResponseV1) MarshalJSON ¶

func (v NullableSeriesGroupListResponseV1) MarshalJSON() ([]byte, error)

func (*NullableSeriesGroupListResponseV1) Set ¶

func (*NullableSeriesGroupListResponseV1) UnmarshalJSON ¶

func (v *NullableSeriesGroupListResponseV1) UnmarshalJSON(src []byte) error

func (*NullableSeriesGroupListResponseV1) Unset ¶

type NullableSeriesHistoryModelV1 ¶

type NullableSeriesHistoryModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableSeriesHistoryModelV1) Get ¶

func (NullableSeriesHistoryModelV1) IsSet ¶

func (NullableSeriesHistoryModelV1) MarshalJSON ¶

func (v NullableSeriesHistoryModelV1) MarshalJSON() ([]byte, error)

func (*NullableSeriesHistoryModelV1) Set ¶

func (*NullableSeriesHistoryModelV1) UnmarshalJSON ¶

func (v *NullableSeriesHistoryModelV1) UnmarshalJSON(src []byte) error

func (*NullableSeriesHistoryModelV1) Unset ¶

func (v *NullableSeriesHistoryModelV1) Unset()

type NullableSeriesHistorySearchResponseV1 ¶

type NullableSeriesHistorySearchResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullableSeriesHistorySearchResponseV1) Get ¶

func (NullableSeriesHistorySearchResponseV1) IsSet ¶

func (NullableSeriesHistorySearchResponseV1) MarshalJSON ¶

func (v NullableSeriesHistorySearchResponseV1) MarshalJSON() ([]byte, error)

func (*NullableSeriesHistorySearchResponseV1) Set ¶

func (*NullableSeriesHistorySearchResponseV1) UnmarshalJSON ¶

func (v *NullableSeriesHistorySearchResponseV1) UnmarshalJSON(src []byte) error

func (*NullableSeriesHistorySearchResponseV1) Unset ¶

type NullableSeriesHistorySearchResponseV1Results ¶

type NullableSeriesHistorySearchResponseV1Results struct {
	// contains filtered or unexported fields
}

func (NullableSeriesHistorySearchResponseV1Results) Get ¶

func (NullableSeriesHistorySearchResponseV1Results) IsSet ¶

func (NullableSeriesHistorySearchResponseV1Results) MarshalJSON ¶

func (*NullableSeriesHistorySearchResponseV1Results) Set ¶

func (*NullableSeriesHistorySearchResponseV1Results) UnmarshalJSON ¶

func (*NullableSeriesHistorySearchResponseV1Results) Unset ¶

type NullableSeriesLockModelUpdateV1 ¶

type NullableSeriesLockModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullableSeriesLockModelUpdateV1) Get ¶

func (NullableSeriesLockModelUpdateV1) IsSet ¶

func (NullableSeriesLockModelUpdateV1) MarshalJSON ¶

func (v NullableSeriesLockModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableSeriesLockModelUpdateV1) Set ¶

func (*NullableSeriesLockModelUpdateV1) UnmarshalJSON ¶

func (v *NullableSeriesLockModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableSeriesLockModelUpdateV1) Unset ¶

type NullableSeriesLockModelV1 ¶

type NullableSeriesLockModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullableSeriesLockModelV1 ¶

func NewNullableSeriesLockModelV1(val *SeriesLockModelV1) *NullableSeriesLockModelV1

func (NullableSeriesLockModelV1) Get ¶

func (NullableSeriesLockModelV1) IsSet ¶

func (v NullableSeriesLockModelV1) IsSet() bool

func (NullableSeriesLockModelV1) MarshalJSON ¶

func (v NullableSeriesLockModelV1) MarshalJSON() ([]byte, error)

func (*NullableSeriesLockModelV1) Set ¶

func (*NullableSeriesLockModelV1) UnmarshalJSON ¶

func (v *NullableSeriesLockModelV1) UnmarshalJSON(src []byte) error

func (*NullableSeriesLockModelV1) Unset ¶

func (v *NullableSeriesLockModelV1) Unset()

type NullableSeriesModelSearchV1 ¶

type NullableSeriesModelSearchV1 struct {
	// contains filtered or unexported fields
}

func (NullableSeriesModelSearchV1) Get ¶

func (NullableSeriesModelSearchV1) IsSet ¶

func (NullableSeriesModelSearchV1) MarshalJSON ¶

func (v NullableSeriesModelSearchV1) MarshalJSON() ([]byte, error)

func (*NullableSeriesModelSearchV1) Set ¶

func (*NullableSeriesModelSearchV1) UnmarshalJSON ¶

func (v *NullableSeriesModelSearchV1) UnmarshalJSON(src []byte) error

func (*NullableSeriesModelSearchV1) Unset ¶

func (v *NullableSeriesModelSearchV1) Unset()

type NullableSeriesModelSearchV1Admin ¶

type NullableSeriesModelSearchV1Admin struct {
	// contains filtered or unexported fields
}

func (NullableSeriesModelSearchV1Admin) Get ¶

func (NullableSeriesModelSearchV1Admin) IsSet ¶

func (NullableSeriesModelSearchV1Admin) MarshalJSON ¶

func (v NullableSeriesModelSearchV1Admin) MarshalJSON() ([]byte, error)

func (*NullableSeriesModelSearchV1Admin) Set ¶

func (*NullableSeriesModelSearchV1Admin) UnmarshalJSON ¶

func (v *NullableSeriesModelSearchV1Admin) UnmarshalJSON(src []byte) error

func (*NullableSeriesModelSearchV1Admin) Unset ¶

type NullableSeriesModelSearchV1Genres ¶

type NullableSeriesModelSearchV1Genres struct {
	// contains filtered or unexported fields
}

func (NullableSeriesModelSearchV1Genres) Get ¶

func (NullableSeriesModelSearchV1Genres) IsSet ¶

func (NullableSeriesModelSearchV1Genres) MarshalJSON ¶

func (v NullableSeriesModelSearchV1Genres) MarshalJSON() ([]byte, error)

func (*NullableSeriesModelSearchV1Genres) Set ¶

func (*NullableSeriesModelSearchV1Genres) UnmarshalJSON ¶

func (v *NullableSeriesModelSearchV1Genres) UnmarshalJSON(src []byte) error

func (*NullableSeriesModelSearchV1Genres) Unset ¶

type NullableSeriesModelSearchV1Rank ¶

type NullableSeriesModelSearchV1Rank struct {
	// contains filtered or unexported fields
}

func (NullableSeriesModelSearchV1Rank) Get ¶

func (NullableSeriesModelSearchV1Rank) IsSet ¶

func (NullableSeriesModelSearchV1Rank) MarshalJSON ¶

func (v NullableSeriesModelSearchV1Rank) MarshalJSON() ([]byte, error)

func (*NullableSeriesModelSearchV1Rank) Set ¶

func (*NullableSeriesModelSearchV1Rank) UnmarshalJSON ¶

func (v *NullableSeriesModelSearchV1Rank) UnmarshalJSON(src []byte) error

func (*NullableSeriesModelSearchV1Rank) Unset ¶

type NullableSeriesModelSearchV1RankLists ¶

type NullableSeriesModelSearchV1RankLists struct {
	// contains filtered or unexported fields
}

func (NullableSeriesModelSearchV1RankLists) Get ¶

func (NullableSeriesModelSearchV1RankLists) IsSet ¶

func (NullableSeriesModelSearchV1RankLists) MarshalJSON ¶

func (v NullableSeriesModelSearchV1RankLists) MarshalJSON() ([]byte, error)

func (*NullableSeriesModelSearchV1RankLists) Set ¶

func (*NullableSeriesModelSearchV1RankLists) UnmarshalJSON ¶

func (v *NullableSeriesModelSearchV1RankLists) UnmarshalJSON(src []byte) error

func (*NullableSeriesModelSearchV1RankLists) Unset ¶

type NullableSeriesModelSearchV1RankOldPosition ¶

type NullableSeriesModelSearchV1RankOldPosition struct {
	// contains filtered or unexported fields
}

func (NullableSeriesModelSearchV1RankOldPosition) Get ¶

func (NullableSeriesModelSearchV1RankOldPosition) IsSet ¶

func (NullableSeriesModelSearchV1RankOldPosition) MarshalJSON ¶

func (*NullableSeriesModelSearchV1RankOldPosition) Set ¶

func (*NullableSeriesModelSearchV1RankOldPosition) UnmarshalJSON ¶

func (v *NullableSeriesModelSearchV1RankOldPosition) UnmarshalJSON(src []byte) error

func (*NullableSeriesModelSearchV1RankOldPosition) Unset ¶

type NullableSeriesModelSearchV1RankPosition ¶

type NullableSeriesModelSearchV1RankPosition struct {
	// contains filtered or unexported fields
}

func (NullableSeriesModelSearchV1RankPosition) Get ¶

func (NullableSeriesModelSearchV1RankPosition) IsSet ¶

func (NullableSeriesModelSearchV1RankPosition) MarshalJSON ¶

func (v NullableSeriesModelSearchV1RankPosition) MarshalJSON() ([]byte, error)

func (*NullableSeriesModelSearchV1RankPosition) Set ¶

func (*NullableSeriesModelSearchV1RankPosition) UnmarshalJSON ¶

func (v *NullableSeriesModelSearchV1RankPosition) UnmarshalJSON(src []byte) error

func (*NullableSeriesModelSearchV1RankPosition) Unset ¶

type NullableSeriesModelUpdateV1 ¶

type NullableSeriesModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullableSeriesModelUpdateV1) Get ¶

func (NullableSeriesModelUpdateV1) IsSet ¶

func (NullableSeriesModelUpdateV1) MarshalJSON ¶

func (v NullableSeriesModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableSeriesModelUpdateV1) Set ¶

func (*NullableSeriesModelUpdateV1) UnmarshalJSON ¶

func (v *NullableSeriesModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableSeriesModelUpdateV1) Unset ¶

func (v *NullableSeriesModelUpdateV1) Unset()

type NullableSeriesModelUpdateV1Admin ¶

type NullableSeriesModelUpdateV1Admin struct {
	// contains filtered or unexported fields
}

func (NullableSeriesModelUpdateV1Admin) Get ¶

func (NullableSeriesModelUpdateV1Admin) IsSet ¶

func (NullableSeriesModelUpdateV1Admin) MarshalJSON ¶

func (v NullableSeriesModelUpdateV1Admin) MarshalJSON() ([]byte, error)

func (*NullableSeriesModelUpdateV1Admin) Set ¶

func (*NullableSeriesModelUpdateV1Admin) UnmarshalJSON ¶

func (v *NullableSeriesModelUpdateV1Admin) UnmarshalJSON(src []byte) error

func (*NullableSeriesModelUpdateV1Admin) Unset ¶

type NullableSeriesModelUpdateV1Anime ¶

type NullableSeriesModelUpdateV1Anime struct {
	// contains filtered or unexported fields
}

func (NullableSeriesModelUpdateV1Anime) Get ¶

func (NullableSeriesModelUpdateV1Anime) IsSet ¶

func (NullableSeriesModelUpdateV1Anime) MarshalJSON ¶

func (v NullableSeriesModelUpdateV1Anime) MarshalJSON() ([]byte, error)

func (*NullableSeriesModelUpdateV1Anime) Set ¶

func (*NullableSeriesModelUpdateV1Anime) UnmarshalJSON ¶

func (v *NullableSeriesModelUpdateV1Anime) UnmarshalJSON(src []byte) error

func (*NullableSeriesModelUpdateV1Anime) Unset ¶

type NullableSeriesModelUpdateV1Associated ¶

type NullableSeriesModelUpdateV1Associated struct {
	// contains filtered or unexported fields
}

func (NullableSeriesModelUpdateV1Associated) Get ¶

func (NullableSeriesModelUpdateV1Associated) IsSet ¶

func (NullableSeriesModelUpdateV1Associated) MarshalJSON ¶

func (v NullableSeriesModelUpdateV1Associated) MarshalJSON() ([]byte, error)

func (*NullableSeriesModelUpdateV1Associated) Set ¶

func (*NullableSeriesModelUpdateV1Associated) UnmarshalJSON ¶

func (v *NullableSeriesModelUpdateV1Associated) UnmarshalJSON(src []byte) error

func (*NullableSeriesModelUpdateV1Associated) Unset ¶

type NullableSeriesModelUpdateV1Authors ¶

type NullableSeriesModelUpdateV1Authors struct {
	// contains filtered or unexported fields
}

func (NullableSeriesModelUpdateV1Authors) Get ¶

func (NullableSeriesModelUpdateV1Authors) IsSet ¶

func (NullableSeriesModelUpdateV1Authors) MarshalJSON ¶

func (v NullableSeriesModelUpdateV1Authors) MarshalJSON() ([]byte, error)

func (*NullableSeriesModelUpdateV1Authors) Set ¶

func (*NullableSeriesModelUpdateV1Authors) UnmarshalJSON ¶

func (v *NullableSeriesModelUpdateV1Authors) UnmarshalJSON(src []byte) error

func (*NullableSeriesModelUpdateV1Authors) Unset ¶

type NullableSeriesModelUpdateV1Genres ¶

type NullableSeriesModelUpdateV1Genres struct {
	// contains filtered or unexported fields
}

func (NullableSeriesModelUpdateV1Genres) Get ¶

func (NullableSeriesModelUpdateV1Genres) IsSet ¶

func (NullableSeriesModelUpdateV1Genres) MarshalJSON ¶

func (v NullableSeriesModelUpdateV1Genres) MarshalJSON() ([]byte, error)

func (*NullableSeriesModelUpdateV1Genres) Set ¶

func (*NullableSeriesModelUpdateV1Genres) UnmarshalJSON ¶

func (v *NullableSeriesModelUpdateV1Genres) UnmarshalJSON(src []byte) error

func (*NullableSeriesModelUpdateV1Genres) Unset ¶

type NullableSeriesModelUpdateV1Publications ¶

type NullableSeriesModelUpdateV1Publications struct {
	// contains filtered or unexported fields
}

func (NullableSeriesModelUpdateV1Publications) Get ¶

func (NullableSeriesModelUpdateV1Publications) IsSet ¶

func (NullableSeriesModelUpdateV1Publications) MarshalJSON ¶

func (v NullableSeriesModelUpdateV1Publications) MarshalJSON() ([]byte, error)

func (*NullableSeriesModelUpdateV1Publications) Set ¶

func (*NullableSeriesModelUpdateV1Publications) UnmarshalJSON ¶

func (v *NullableSeriesModelUpdateV1Publications) UnmarshalJSON(src []byte) error

func (*NullableSeriesModelUpdateV1Publications) Unset ¶

type NullableSeriesModelUpdateV1Publishers ¶

type NullableSeriesModelUpdateV1Publishers struct {
	// contains filtered or unexported fields
}

func (NullableSeriesModelUpdateV1Publishers) Get ¶

func (NullableSeriesModelUpdateV1Publishers) IsSet ¶

func (NullableSeriesModelUpdateV1Publishers) MarshalJSON ¶

func (v NullableSeriesModelUpdateV1Publishers) MarshalJSON() ([]byte, error)

func (*NullableSeriesModelUpdateV1Publishers) Set ¶

func (*NullableSeriesModelUpdateV1Publishers) UnmarshalJSON ¶

func (v *NullableSeriesModelUpdateV1Publishers) UnmarshalJSON(src []byte) error

func (*NullableSeriesModelUpdateV1Publishers) Unset ¶

type NullableSeriesModelUpdateV1RelatedSeries ¶

type NullableSeriesModelUpdateV1RelatedSeries struct {
	// contains filtered or unexported fields
}

func (NullableSeriesModelUpdateV1RelatedSeries) Get ¶

func (NullableSeriesModelUpdateV1RelatedSeries) IsSet ¶

func (NullableSeriesModelUpdateV1RelatedSeries) MarshalJSON ¶

func (*NullableSeriesModelUpdateV1RelatedSeries) Set ¶

func (*NullableSeriesModelUpdateV1RelatedSeries) UnmarshalJSON ¶

func (v *NullableSeriesModelUpdateV1RelatedSeries) UnmarshalJSON(src []byte) error

func (*NullableSeriesModelUpdateV1RelatedSeries) Unset ¶

type NullableSeriesModelV1 ¶

type NullableSeriesModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullableSeriesModelV1 ¶

func NewNullableSeriesModelV1(val *SeriesModelV1) *NullableSeriesModelV1

func (NullableSeriesModelV1) Get ¶

func (NullableSeriesModelV1) IsSet ¶

func (v NullableSeriesModelV1) IsSet() bool

func (NullableSeriesModelV1) MarshalJSON ¶

func (v NullableSeriesModelV1) MarshalJSON() ([]byte, error)

func (*NullableSeriesModelV1) Set ¶

func (v *NullableSeriesModelV1) Set(val *SeriesModelV1)

func (*NullableSeriesModelV1) UnmarshalJSON ¶

func (v *NullableSeriesModelV1) UnmarshalJSON(src []byte) error

func (*NullableSeriesModelV1) Unset ¶

func (v *NullableSeriesModelV1) Unset()

type NullableSeriesModelV1Admin ¶

type NullableSeriesModelV1Admin struct {
	// contains filtered or unexported fields
}

func NewNullableSeriesModelV1Admin ¶

func NewNullableSeriesModelV1Admin(val *SeriesModelV1Admin) *NullableSeriesModelV1Admin

func (NullableSeriesModelV1Admin) Get ¶

func (NullableSeriesModelV1Admin) IsSet ¶

func (v NullableSeriesModelV1Admin) IsSet() bool

func (NullableSeriesModelV1Admin) MarshalJSON ¶

func (v NullableSeriesModelV1Admin) MarshalJSON() ([]byte, error)

func (*NullableSeriesModelV1Admin) Set ¶

func (*NullableSeriesModelV1Admin) UnmarshalJSON ¶

func (v *NullableSeriesModelV1Admin) UnmarshalJSON(src []byte) error

func (*NullableSeriesModelV1Admin) Unset ¶

func (v *NullableSeriesModelV1Admin) Unset()

type NullableSeriesModelV1Anime ¶

type NullableSeriesModelV1Anime struct {
	// contains filtered or unexported fields
}

func NewNullableSeriesModelV1Anime ¶

func NewNullableSeriesModelV1Anime(val *SeriesModelV1Anime) *NullableSeriesModelV1Anime

func (NullableSeriesModelV1Anime) Get ¶

func (NullableSeriesModelV1Anime) IsSet ¶

func (v NullableSeriesModelV1Anime) IsSet() bool

func (NullableSeriesModelV1Anime) MarshalJSON ¶

func (v NullableSeriesModelV1Anime) MarshalJSON() ([]byte, error)

func (*NullableSeriesModelV1Anime) Set ¶

func (*NullableSeriesModelV1Anime) UnmarshalJSON ¶

func (v *NullableSeriesModelV1Anime) UnmarshalJSON(src []byte) error

func (*NullableSeriesModelV1Anime) Unset ¶

func (v *NullableSeriesModelV1Anime) Unset()

type NullableSeriesModelV1Associated ¶

type NullableSeriesModelV1Associated struct {
	// contains filtered or unexported fields
}

func (NullableSeriesModelV1Associated) Get ¶

func (NullableSeriesModelV1Associated) IsSet ¶

func (NullableSeriesModelV1Associated) MarshalJSON ¶

func (v NullableSeriesModelV1Associated) MarshalJSON() ([]byte, error)

func (*NullableSeriesModelV1Associated) Set ¶

func (*NullableSeriesModelV1Associated) UnmarshalJSON ¶

func (v *NullableSeriesModelV1Associated) UnmarshalJSON(src []byte) error

func (*NullableSeriesModelV1Associated) Unset ¶

type NullableSeriesModelV1Authors ¶

type NullableSeriesModelV1Authors struct {
	// contains filtered or unexported fields
}

func (NullableSeriesModelV1Authors) Get ¶

func (NullableSeriesModelV1Authors) IsSet ¶

func (NullableSeriesModelV1Authors) MarshalJSON ¶

func (v NullableSeriesModelV1Authors) MarshalJSON() ([]byte, error)

func (*NullableSeriesModelV1Authors) Set ¶

func (*NullableSeriesModelV1Authors) UnmarshalJSON ¶

func (v *NullableSeriesModelV1Authors) UnmarshalJSON(src []byte) error

func (*NullableSeriesModelV1Authors) Unset ¶

func (v *NullableSeriesModelV1Authors) Unset()

type NullableSeriesModelV1Genres ¶

type NullableSeriesModelV1Genres struct {
	// contains filtered or unexported fields
}

func (NullableSeriesModelV1Genres) Get ¶

func (NullableSeriesModelV1Genres) IsSet ¶

func (NullableSeriesModelV1Genres) MarshalJSON ¶

func (v NullableSeriesModelV1Genres) MarshalJSON() ([]byte, error)

func (*NullableSeriesModelV1Genres) Set ¶

func (*NullableSeriesModelV1Genres) UnmarshalJSON ¶

func (v *NullableSeriesModelV1Genres) UnmarshalJSON(src []byte) error

func (*NullableSeriesModelV1Genres) Unset ¶

func (v *NullableSeriesModelV1Genres) Unset()

type NullableSeriesModelV1Publications ¶

type NullableSeriesModelV1Publications struct {
	// contains filtered or unexported fields
}

func (NullableSeriesModelV1Publications) Get ¶

func (NullableSeriesModelV1Publications) IsSet ¶

func (NullableSeriesModelV1Publications) MarshalJSON ¶

func (v NullableSeriesModelV1Publications) MarshalJSON() ([]byte, error)

func (*NullableSeriesModelV1Publications) Set ¶

func (*NullableSeriesModelV1Publications) UnmarshalJSON ¶

func (v *NullableSeriesModelV1Publications) UnmarshalJSON(src []byte) error

func (*NullableSeriesModelV1Publications) Unset ¶

type NullableSeriesModelV1Publishers ¶

type NullableSeriesModelV1Publishers struct {
	// contains filtered or unexported fields
}

func (NullableSeriesModelV1Publishers) Get ¶

func (NullableSeriesModelV1Publishers) IsSet ¶

func (NullableSeriesModelV1Publishers) MarshalJSON ¶

func (v NullableSeriesModelV1Publishers) MarshalJSON() ([]byte, error)

func (*NullableSeriesModelV1Publishers) Set ¶

func (*NullableSeriesModelV1Publishers) UnmarshalJSON ¶

func (v *NullableSeriesModelV1Publishers) UnmarshalJSON(src []byte) error

func (*NullableSeriesModelV1Publishers) Unset ¶

type NullableSeriesModelV1Rank ¶

type NullableSeriesModelV1Rank struct {
	// contains filtered or unexported fields
}

func NewNullableSeriesModelV1Rank ¶

func NewNullableSeriesModelV1Rank(val *SeriesModelV1Rank) *NullableSeriesModelV1Rank

func (NullableSeriesModelV1Rank) Get ¶

func (NullableSeriesModelV1Rank) IsSet ¶

func (v NullableSeriesModelV1Rank) IsSet() bool

func (NullableSeriesModelV1Rank) MarshalJSON ¶

func (v NullableSeriesModelV1Rank) MarshalJSON() ([]byte, error)

func (*NullableSeriesModelV1Rank) Set ¶

func (*NullableSeriesModelV1Rank) UnmarshalJSON ¶

func (v *NullableSeriesModelV1Rank) UnmarshalJSON(src []byte) error

func (*NullableSeriesModelV1Rank) Unset ¶

func (v *NullableSeriesModelV1Rank) Unset()

type NullableSeriesModelV1RankLists ¶

type NullableSeriesModelV1RankLists struct {
	// contains filtered or unexported fields
}

func (NullableSeriesModelV1RankLists) Get ¶

func (NullableSeriesModelV1RankLists) IsSet ¶

func (NullableSeriesModelV1RankLists) MarshalJSON ¶

func (v NullableSeriesModelV1RankLists) MarshalJSON() ([]byte, error)

func (*NullableSeriesModelV1RankLists) Set ¶

func (*NullableSeriesModelV1RankLists) UnmarshalJSON ¶

func (v *NullableSeriesModelV1RankLists) UnmarshalJSON(src []byte) error

func (*NullableSeriesModelV1RankLists) Unset ¶

func (v *NullableSeriesModelV1RankLists) Unset()

type NullableSeriesModelV1RankOldPosition ¶

type NullableSeriesModelV1RankOldPosition struct {
	// contains filtered or unexported fields
}

func (NullableSeriesModelV1RankOldPosition) Get ¶

func (NullableSeriesModelV1RankOldPosition) IsSet ¶

func (NullableSeriesModelV1RankOldPosition) MarshalJSON ¶

func (v NullableSeriesModelV1RankOldPosition) MarshalJSON() ([]byte, error)

func (*NullableSeriesModelV1RankOldPosition) Set ¶

func (*NullableSeriesModelV1RankOldPosition) UnmarshalJSON ¶

func (v *NullableSeriesModelV1RankOldPosition) UnmarshalJSON(src []byte) error

func (*NullableSeriesModelV1RankOldPosition) Unset ¶

type NullableSeriesModelV1RankPosition ¶

type NullableSeriesModelV1RankPosition struct {
	// contains filtered or unexported fields
}

func (NullableSeriesModelV1RankPosition) Get ¶

func (NullableSeriesModelV1RankPosition) IsSet ¶

func (NullableSeriesModelV1RankPosition) MarshalJSON ¶

func (v NullableSeriesModelV1RankPosition) MarshalJSON() ([]byte, error)

func (*NullableSeriesModelV1RankPosition) Set ¶

func (*NullableSeriesModelV1RankPosition) UnmarshalJSON ¶

func (v *NullableSeriesModelV1RankPosition) UnmarshalJSON(src []byte) error

func (*NullableSeriesModelV1RankPosition) Unset ¶

type NullableSeriesModelV1RelatedSeries ¶

type NullableSeriesModelV1RelatedSeries struct {
	// contains filtered or unexported fields
}

func (NullableSeriesModelV1RelatedSeries) Get ¶

func (NullableSeriesModelV1RelatedSeries) IsSet ¶

func (NullableSeriesModelV1RelatedSeries) MarshalJSON ¶

func (v NullableSeriesModelV1RelatedSeries) MarshalJSON() ([]byte, error)

func (*NullableSeriesModelV1RelatedSeries) Set ¶

func (*NullableSeriesModelV1RelatedSeries) UnmarshalJSON ¶

func (v *NullableSeriesModelV1RelatedSeries) UnmarshalJSON(src []byte) error

func (*NullableSeriesModelV1RelatedSeries) Unset ¶

type NullableSeriesRatingModelV1 ¶

type NullableSeriesRatingModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableSeriesRatingModelV1) Get ¶

func (NullableSeriesRatingModelV1) IsSet ¶

func (NullableSeriesRatingModelV1) MarshalJSON ¶

func (v NullableSeriesRatingModelV1) MarshalJSON() ([]byte, error)

func (*NullableSeriesRatingModelV1) Set ¶

func (*NullableSeriesRatingModelV1) UnmarshalJSON ¶

func (v *NullableSeriesRatingModelV1) UnmarshalJSON(src []byte) error

func (*NullableSeriesRatingModelV1) Unset ¶

func (v *NullableSeriesRatingModelV1) Unset()

type NullableSeriesRatingRainbowModelV1 ¶

type NullableSeriesRatingRainbowModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableSeriesRatingRainbowModelV1) Get ¶

func (NullableSeriesRatingRainbowModelV1) IsSet ¶

func (NullableSeriesRatingRainbowModelV1) MarshalJSON ¶

func (v NullableSeriesRatingRainbowModelV1) MarshalJSON() ([]byte, error)

func (*NullableSeriesRatingRainbowModelV1) Set ¶

func (*NullableSeriesRatingRainbowModelV1) UnmarshalJSON ¶

func (v *NullableSeriesRatingRainbowModelV1) UnmarshalJSON(src []byte) error

func (*NullableSeriesRatingRainbowModelV1) Unset ¶

type NullableSeriesRatingRainbowModelV1Rainbow ¶

type NullableSeriesRatingRainbowModelV1Rainbow struct {
	// contains filtered or unexported fields
}

func (NullableSeriesRatingRainbowModelV1Rainbow) Get ¶

func (NullableSeriesRatingRainbowModelV1Rainbow) IsSet ¶

func (NullableSeriesRatingRainbowModelV1Rainbow) MarshalJSON ¶

func (*NullableSeriesRatingRainbowModelV1Rainbow) Set ¶

func (*NullableSeriesRatingRainbowModelV1Rainbow) UnmarshalJSON ¶

func (v *NullableSeriesRatingRainbowModelV1Rainbow) UnmarshalJSON(src []byte) error

func (*NullableSeriesRatingRainbowModelV1Rainbow) Unset ¶

type NullableSeriesRecommendationsModelV1 ¶

type NullableSeriesRecommendationsModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableSeriesRecommendationsModelV1) Get ¶

func (NullableSeriesRecommendationsModelV1) IsSet ¶

func (NullableSeriesRecommendationsModelV1) MarshalJSON ¶

func (v NullableSeriesRecommendationsModelV1) MarshalJSON() ([]byte, error)

func (*NullableSeriesRecommendationsModelV1) Set ¶

func (*NullableSeriesRecommendationsModelV1) UnmarshalJSON ¶

func (v *NullableSeriesRecommendationsModelV1) UnmarshalJSON(src []byte) error

func (*NullableSeriesRecommendationsModelV1) Unset ¶

type NullableSeriesSearchRequestV1 ¶

type NullableSeriesSearchRequestV1 struct {
	// contains filtered or unexported fields
}

func (NullableSeriesSearchRequestV1) Get ¶

func (NullableSeriesSearchRequestV1) IsSet ¶

func (NullableSeriesSearchRequestV1) MarshalJSON ¶

func (v NullableSeriesSearchRequestV1) MarshalJSON() ([]byte, error)

func (*NullableSeriesSearchRequestV1) Set ¶

func (*NullableSeriesSearchRequestV1) UnmarshalJSON ¶

func (v *NullableSeriesSearchRequestV1) UnmarshalJSON(src []byte) error

func (*NullableSeriesSearchRequestV1) Unset ¶

func (v *NullableSeriesSearchRequestV1) Unset()

type NullableSeriesSearchResponseV1 ¶

type NullableSeriesSearchResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullableSeriesSearchResponseV1) Get ¶

func (NullableSeriesSearchResponseV1) IsSet ¶

func (NullableSeriesSearchResponseV1) MarshalJSON ¶

func (v NullableSeriesSearchResponseV1) MarshalJSON() ([]byte, error)

func (*NullableSeriesSearchResponseV1) Set ¶

func (*NullableSeriesSearchResponseV1) UnmarshalJSON ¶

func (v *NullableSeriesSearchResponseV1) UnmarshalJSON(src []byte) error

func (*NullableSeriesSearchResponseV1) Unset ¶

func (v *NullableSeriesSearchResponseV1) Unset()

type NullableSeriesSearchResponseV1Results ¶

type NullableSeriesSearchResponseV1Results struct {
	// contains filtered or unexported fields
}

func (NullableSeriesSearchResponseV1Results) Get ¶

func (NullableSeriesSearchResponseV1Results) IsSet ¶

func (NullableSeriesSearchResponseV1Results) MarshalJSON ¶

func (v NullableSeriesSearchResponseV1Results) MarshalJSON() ([]byte, error)

func (*NullableSeriesSearchResponseV1Results) Set ¶

func (*NullableSeriesSearchResponseV1Results) UnmarshalJSON ¶

func (v *NullableSeriesSearchResponseV1Results) UnmarshalJSON(src []byte) error

func (*NullableSeriesSearchResponseV1Results) Unset ¶

type NullableSeriesSearchResponseV1ResultsMetadata ¶

type NullableSeriesSearchResponseV1ResultsMetadata struct {
	// contains filtered or unexported fields
}

func (NullableSeriesSearchResponseV1ResultsMetadata) Get ¶

func (NullableSeriesSearchResponseV1ResultsMetadata) IsSet ¶

func (NullableSeriesSearchResponseV1ResultsMetadata) MarshalJSON ¶

func (*NullableSeriesSearchResponseV1ResultsMetadata) Set ¶

func (*NullableSeriesSearchResponseV1ResultsMetadata) UnmarshalJSON ¶

func (*NullableSeriesSearchResponseV1ResultsMetadata) Unset ¶

type NullableSeriesSearchResponseV1ResultsMetadataUserGenreHighlights ¶

type NullableSeriesSearchResponseV1ResultsMetadataUserGenreHighlights struct {
	// contains filtered or unexported fields
}

func (NullableSeriesSearchResponseV1ResultsMetadataUserGenreHighlights) Get ¶

func (NullableSeriesSearchResponseV1ResultsMetadataUserGenreHighlights) IsSet ¶

func (NullableSeriesSearchResponseV1ResultsMetadataUserGenreHighlights) MarshalJSON ¶

func (*NullableSeriesSearchResponseV1ResultsMetadataUserGenreHighlights) Set ¶

func (*NullableSeriesSearchResponseV1ResultsMetadataUserGenreHighlights) UnmarshalJSON ¶

func (*NullableSeriesSearchResponseV1ResultsMetadataUserGenreHighlights) Unset ¶

type NullableString ¶

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString ¶

func NewNullableString(val *string) *NullableString

func (NullableString) Get ¶

func (v NullableString) Get() *string

func (NullableString) IsSet ¶

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON ¶

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set ¶

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON ¶

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset ¶

func (v *NullableString) Unset()

type NullableTime ¶

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime ¶

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get ¶

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet ¶

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON ¶

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set ¶

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON ¶

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset ¶

func (v *NullableTime) Unset()

type NullableTimeUpdateV1 ¶

type NullableTimeUpdateV1 struct {
	// contains filtered or unexported fields
}

func NewNullableTimeUpdateV1 ¶

func NewNullableTimeUpdateV1(val *TimeUpdateV1) *NullableTimeUpdateV1

func (NullableTimeUpdateV1) Get ¶

func (NullableTimeUpdateV1) IsSet ¶

func (v NullableTimeUpdateV1) IsSet() bool

func (NullableTimeUpdateV1) MarshalJSON ¶

func (v NullableTimeUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableTimeUpdateV1) Set ¶

func (v *NullableTimeUpdateV1) Set(val *TimeUpdateV1)

func (*NullableTimeUpdateV1) UnmarshalJSON ¶

func (v *NullableTimeUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableTimeUpdateV1) Unset ¶

func (v *NullableTimeUpdateV1) Unset()

type NullableTimeV1 ¶

type NullableTimeV1 struct {
	// contains filtered or unexported fields
}

func NewNullableTimeV1 ¶

func NewNullableTimeV1(val *TimeV1) *NullableTimeV1

func (NullableTimeV1) Get ¶

func (v NullableTimeV1) Get() *TimeV1

func (NullableTimeV1) IsSet ¶

func (v NullableTimeV1) IsSet() bool

func (NullableTimeV1) MarshalJSON ¶

func (v NullableTimeV1) MarshalJSON() ([]byte, error)

func (*NullableTimeV1) Set ¶

func (v *NullableTimeV1) Set(val *TimeV1)

func (*NullableTimeV1) UnmarshalJSON ¶

func (v *NullableTimeV1) UnmarshalJSON(src []byte) error

func (*NullableTimeV1) Unset ¶

func (v *NullableTimeV1) Unset()

type NullableUserChangeRequestModelUpdateV1 ¶

type NullableUserChangeRequestModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullableUserChangeRequestModelUpdateV1) Get ¶

func (NullableUserChangeRequestModelUpdateV1) IsSet ¶

func (NullableUserChangeRequestModelUpdateV1) MarshalJSON ¶

func (v NullableUserChangeRequestModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableUserChangeRequestModelUpdateV1) Set ¶

func (*NullableUserChangeRequestModelUpdateV1) UnmarshalJSON ¶

func (v *NullableUserChangeRequestModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableUserChangeRequestModelUpdateV1) Unset ¶

type NullableUserChangeRequestModelV1 ¶

type NullableUserChangeRequestModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableUserChangeRequestModelV1) Get ¶

func (NullableUserChangeRequestModelV1) IsSet ¶

func (NullableUserChangeRequestModelV1) MarshalJSON ¶

func (v NullableUserChangeRequestModelV1) MarshalJSON() ([]byte, error)

func (*NullableUserChangeRequestModelV1) Set ¶

func (*NullableUserChangeRequestModelV1) UnmarshalJSON ¶

func (v *NullableUserChangeRequestModelV1) UnmarshalJSON(src []byte) error

func (*NullableUserChangeRequestModelV1) Unset ¶

type NullableUserChangeRequestSearchResponseV1 ¶

type NullableUserChangeRequestSearchResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullableUserChangeRequestSearchResponseV1) Get ¶

func (NullableUserChangeRequestSearchResponseV1) IsSet ¶

func (NullableUserChangeRequestSearchResponseV1) MarshalJSON ¶

func (*NullableUserChangeRequestSearchResponseV1) Set ¶

func (*NullableUserChangeRequestSearchResponseV1) UnmarshalJSON ¶

func (v *NullableUserChangeRequestSearchResponseV1) UnmarshalJSON(src []byte) error

func (*NullableUserChangeRequestSearchResponseV1) Unset ¶

type NullableUserChangeRequestSearchResponseV1Results ¶

type NullableUserChangeRequestSearchResponseV1Results struct {
	// contains filtered or unexported fields
}

func (NullableUserChangeRequestSearchResponseV1Results) Get ¶

func (NullableUserChangeRequestSearchResponseV1Results) IsSet ¶

func (NullableUserChangeRequestSearchResponseV1Results) MarshalJSON ¶

func (*NullableUserChangeRequestSearchResponseV1Results) Set ¶

func (*NullableUserChangeRequestSearchResponseV1Results) UnmarshalJSON ¶

func (*NullableUserChangeRequestSearchResponseV1Results) Unset ¶

type NullableUserGenreFilterModelV1 ¶

type NullableUserGenreFilterModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableUserGenreFilterModelV1) Get ¶

func (NullableUserGenreFilterModelV1) IsSet ¶

func (NullableUserGenreFilterModelV1) MarshalJSON ¶

func (v NullableUserGenreFilterModelV1) MarshalJSON() ([]byte, error)

func (*NullableUserGenreFilterModelV1) Set ¶

func (*NullableUserGenreFilterModelV1) UnmarshalJSON ¶

func (v *NullableUserGenreFilterModelV1) UnmarshalJSON(src []byte) error

func (*NullableUserGenreFilterModelV1) Unset ¶

func (v *NullableUserGenreFilterModelV1) Unset()

type NullableUserGenreHighlightModelUpdateV1 ¶

type NullableUserGenreHighlightModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullableUserGenreHighlightModelUpdateV1) Get ¶

func (NullableUserGenreHighlightModelUpdateV1) IsSet ¶

func (NullableUserGenreHighlightModelUpdateV1) MarshalJSON ¶

func (v NullableUserGenreHighlightModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableUserGenreHighlightModelUpdateV1) Set ¶

func (*NullableUserGenreHighlightModelUpdateV1) UnmarshalJSON ¶

func (v *NullableUserGenreHighlightModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableUserGenreHighlightModelUpdateV1) Unset ¶

type NullableUserGenreHighlightModelV1 ¶

type NullableUserGenreHighlightModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableUserGenreHighlightModelV1) Get ¶

func (NullableUserGenreHighlightModelV1) IsSet ¶

func (NullableUserGenreHighlightModelV1) MarshalJSON ¶

func (v NullableUserGenreHighlightModelV1) MarshalJSON() ([]byte, error)

func (*NullableUserGenreHighlightModelV1) Set ¶

func (*NullableUserGenreHighlightModelV1) UnmarshalJSON ¶

func (v *NullableUserGenreHighlightModelV1) UnmarshalJSON(src []byte) error

func (*NullableUserGenreHighlightModelV1) Unset ¶

type NullableUserGroupFilterModelV1 ¶

type NullableUserGroupFilterModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableUserGroupFilterModelV1) Get ¶

func (NullableUserGroupFilterModelV1) IsSet ¶

func (NullableUserGroupFilterModelV1) MarshalJSON ¶

func (v NullableUserGroupFilterModelV1) MarshalJSON() ([]byte, error)

func (*NullableUserGroupFilterModelV1) Set ¶

func (*NullableUserGroupFilterModelV1) UnmarshalJSON ¶

func (v *NullableUserGroupFilterModelV1) UnmarshalJSON(src []byte) error

func (*NullableUserGroupFilterModelV1) Unset ¶

func (v *NullableUserGroupFilterModelV1) Unset()

type NullableUserGroupModelUpdateV1 ¶

type NullableUserGroupModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func (NullableUserGroupModelUpdateV1) Get ¶

func (NullableUserGroupModelUpdateV1) IsSet ¶

func (NullableUserGroupModelUpdateV1) MarshalJSON ¶

func (v NullableUserGroupModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableUserGroupModelUpdateV1) Set ¶

func (*NullableUserGroupModelUpdateV1) UnmarshalJSON ¶

func (v *NullableUserGroupModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableUserGroupModelUpdateV1) Unset ¶

func (v *NullableUserGroupModelUpdateV1) Unset()

type NullableUserGroupModelV1 ¶

type NullableUserGroupModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullableUserGroupModelV1 ¶

func NewNullableUserGroupModelV1(val *UserGroupModelV1) *NullableUserGroupModelV1

func (NullableUserGroupModelV1) Get ¶

func (NullableUserGroupModelV1) IsSet ¶

func (v NullableUserGroupModelV1) IsSet() bool

func (NullableUserGroupModelV1) MarshalJSON ¶

func (v NullableUserGroupModelV1) MarshalJSON() ([]byte, error)

func (*NullableUserGroupModelV1) Set ¶

func (*NullableUserGroupModelV1) UnmarshalJSON ¶

func (v *NullableUserGroupModelV1) UnmarshalJSON(src []byte) error

func (*NullableUserGroupModelV1) Unset ¶

func (v *NullableUserGroupModelV1) Unset()

type NullableUserModelRegisterV1 ¶

type NullableUserModelRegisterV1 struct {
	// contains filtered or unexported fields
}

func (NullableUserModelRegisterV1) Get ¶

func (NullableUserModelRegisterV1) IsSet ¶

func (NullableUserModelRegisterV1) MarshalJSON ¶

func (v NullableUserModelRegisterV1) MarshalJSON() ([]byte, error)

func (*NullableUserModelRegisterV1) Set ¶

func (*NullableUserModelRegisterV1) UnmarshalJSON ¶

func (v *NullableUserModelRegisterV1) UnmarshalJSON(src []byte) error

func (*NullableUserModelRegisterV1) Unset ¶

func (v *NullableUserModelRegisterV1) Unset()

type NullableUserModelSearchV1 ¶

type NullableUserModelSearchV1 struct {
	// contains filtered or unexported fields
}

func NewNullableUserModelSearchV1 ¶

func NewNullableUserModelSearchV1(val *UserModelSearchV1) *NullableUserModelSearchV1

func (NullableUserModelSearchV1) Get ¶

func (NullableUserModelSearchV1) IsSet ¶

func (v NullableUserModelSearchV1) IsSet() bool

func (NullableUserModelSearchV1) MarshalJSON ¶

func (v NullableUserModelSearchV1) MarshalJSON() ([]byte, error)

func (*NullableUserModelSearchV1) Set ¶

func (*NullableUserModelSearchV1) UnmarshalJSON ¶

func (v *NullableUserModelSearchV1) UnmarshalJSON(src []byte) error

func (*NullableUserModelSearchV1) Unset ¶

func (v *NullableUserModelSearchV1) Unset()

type NullableUserModelSearchV1Profile ¶

type NullableUserModelSearchV1Profile struct {
	// contains filtered or unexported fields
}

func (NullableUserModelSearchV1Profile) Get ¶

func (NullableUserModelSearchV1Profile) IsSet ¶

func (NullableUserModelSearchV1Profile) MarshalJSON ¶

func (v NullableUserModelSearchV1Profile) MarshalJSON() ([]byte, error)

func (*NullableUserModelSearchV1Profile) Set ¶

func (*NullableUserModelSearchV1Profile) UnmarshalJSON ¶

func (v *NullableUserModelSearchV1Profile) UnmarshalJSON(src []byte) error

func (*NullableUserModelSearchV1Profile) Unset ¶

type NullableUserModelSearchV1ProfileUpgrade ¶

type NullableUserModelSearchV1ProfileUpgrade struct {
	// contains filtered or unexported fields
}

func (NullableUserModelSearchV1ProfileUpgrade) Get ¶

func (NullableUserModelSearchV1ProfileUpgrade) IsSet ¶

func (NullableUserModelSearchV1ProfileUpgrade) MarshalJSON ¶

func (v NullableUserModelSearchV1ProfileUpgrade) MarshalJSON() ([]byte, error)

func (*NullableUserModelSearchV1ProfileUpgrade) Set ¶

func (*NullableUserModelSearchV1ProfileUpgrade) UnmarshalJSON ¶

func (v *NullableUserModelSearchV1ProfileUpgrade) UnmarshalJSON(src []byte) error

func (*NullableUserModelSearchV1ProfileUpgrade) Unset ¶

type NullableUserModelSearchV1Stats ¶

type NullableUserModelSearchV1Stats struct {
	// contains filtered or unexported fields
}

func (NullableUserModelSearchV1Stats) Get ¶

func (NullableUserModelSearchV1Stats) IsSet ¶

func (NullableUserModelSearchV1Stats) MarshalJSON ¶

func (v NullableUserModelSearchV1Stats) MarshalJSON() ([]byte, error)

func (*NullableUserModelSearchV1Stats) Set ¶

func (*NullableUserModelSearchV1Stats) UnmarshalJSON ¶

func (v *NullableUserModelSearchV1Stats) UnmarshalJSON(src []byte) error

func (*NullableUserModelSearchV1Stats) Unset ¶

func (v *NullableUserModelSearchV1Stats) Unset()

type NullableUserModelUpdatePasswordV1 ¶

type NullableUserModelUpdatePasswordV1 struct {
	// contains filtered or unexported fields
}

func (NullableUserModelUpdatePasswordV1) Get ¶

func (NullableUserModelUpdatePasswordV1) IsSet ¶

func (NullableUserModelUpdatePasswordV1) MarshalJSON ¶

func (v NullableUserModelUpdatePasswordV1) MarshalJSON() ([]byte, error)

func (*NullableUserModelUpdatePasswordV1) Set ¶

func (*NullableUserModelUpdatePasswordV1) UnmarshalJSON ¶

func (v *NullableUserModelUpdatePasswordV1) UnmarshalJSON(src []byte) error

func (*NullableUserModelUpdatePasswordV1) Unset ¶

type NullableUserModelUpdateV1 ¶

type NullableUserModelUpdateV1 struct {
	// contains filtered or unexported fields
}

func NewNullableUserModelUpdateV1 ¶

func NewNullableUserModelUpdateV1(val *UserModelUpdateV1) *NullableUserModelUpdateV1

func (NullableUserModelUpdateV1) Get ¶

func (NullableUserModelUpdateV1) IsSet ¶

func (v NullableUserModelUpdateV1) IsSet() bool

func (NullableUserModelUpdateV1) MarshalJSON ¶

func (v NullableUserModelUpdateV1) MarshalJSON() ([]byte, error)

func (*NullableUserModelUpdateV1) Set ¶

func (*NullableUserModelUpdateV1) UnmarshalJSON ¶

func (v *NullableUserModelUpdateV1) UnmarshalJSON(src []byte) error

func (*NullableUserModelUpdateV1) Unset ¶

func (v *NullableUserModelUpdateV1) Unset()

type NullableUserModelUpdateV1Admin ¶

type NullableUserModelUpdateV1Admin struct {
	// contains filtered or unexported fields
}

func (NullableUserModelUpdateV1Admin) Get ¶

func (NullableUserModelUpdateV1Admin) IsSet ¶

func (NullableUserModelUpdateV1Admin) MarshalJSON ¶

func (v NullableUserModelUpdateV1Admin) MarshalJSON() ([]byte, error)

func (*NullableUserModelUpdateV1Admin) Set ¶

func (*NullableUserModelUpdateV1Admin) UnmarshalJSON ¶

func (v *NullableUserModelUpdateV1Admin) UnmarshalJSON(src []byte) error

func (*NullableUserModelUpdateV1Admin) Unset ¶

func (v *NullableUserModelUpdateV1Admin) Unset()

type NullableUserModelUpdateV1AdminPermissions ¶

type NullableUserModelUpdateV1AdminPermissions struct {
	// contains filtered or unexported fields
}

func (NullableUserModelUpdateV1AdminPermissions) Get ¶

func (NullableUserModelUpdateV1AdminPermissions) IsSet ¶

func (NullableUserModelUpdateV1AdminPermissions) MarshalJSON ¶

func (*NullableUserModelUpdateV1AdminPermissions) Set ¶

func (*NullableUserModelUpdateV1AdminPermissions) UnmarshalJSON ¶

func (v *NullableUserModelUpdateV1AdminPermissions) UnmarshalJSON(src []byte) error

func (*NullableUserModelUpdateV1AdminPermissions) Unset ¶

type NullableUserModelUpdateV1Profile ¶

type NullableUserModelUpdateV1Profile struct {
	// contains filtered or unexported fields
}

func (NullableUserModelUpdateV1Profile) Get ¶

func (NullableUserModelUpdateV1Profile) IsSet ¶

func (NullableUserModelUpdateV1Profile) MarshalJSON ¶

func (v NullableUserModelUpdateV1Profile) MarshalJSON() ([]byte, error)

func (*NullableUserModelUpdateV1Profile) Set ¶

func (*NullableUserModelUpdateV1Profile) UnmarshalJSON ¶

func (v *NullableUserModelUpdateV1Profile) UnmarshalJSON(src []byte) error

func (*NullableUserModelUpdateV1Profile) Unset ¶

type NullableUserModelUpdateV1ProfileUpgrade ¶

type NullableUserModelUpdateV1ProfileUpgrade struct {
	// contains filtered or unexported fields
}

func (NullableUserModelUpdateV1ProfileUpgrade) Get ¶

func (NullableUserModelUpdateV1ProfileUpgrade) IsSet ¶

func (NullableUserModelUpdateV1ProfileUpgrade) MarshalJSON ¶

func (v NullableUserModelUpdateV1ProfileUpgrade) MarshalJSON() ([]byte, error)

func (*NullableUserModelUpdateV1ProfileUpgrade) Set ¶

func (*NullableUserModelUpdateV1ProfileUpgrade) UnmarshalJSON ¶

func (v *NullableUserModelUpdateV1ProfileUpgrade) UnmarshalJSON(src []byte) error

func (*NullableUserModelUpdateV1ProfileUpgrade) Unset ¶

type NullableUserModelV1 ¶

type NullableUserModelV1 struct {
	// contains filtered or unexported fields
}

func NewNullableUserModelV1 ¶

func NewNullableUserModelV1(val *UserModelV1) *NullableUserModelV1

func (NullableUserModelV1) Get ¶

func (NullableUserModelV1) IsSet ¶

func (v NullableUserModelV1) IsSet() bool

func (NullableUserModelV1) MarshalJSON ¶

func (v NullableUserModelV1) MarshalJSON() ([]byte, error)

func (*NullableUserModelV1) Set ¶

func (v *NullableUserModelV1) Set(val *UserModelV1)

func (*NullableUserModelV1) UnmarshalJSON ¶

func (v *NullableUserModelV1) UnmarshalJSON(src []byte) error

func (*NullableUserModelV1) Unset ¶

func (v *NullableUserModelV1) Unset()

type NullableUserModelV1Admin ¶

type NullableUserModelV1Admin struct {
	// contains filtered or unexported fields
}

func NewNullableUserModelV1Admin ¶

func NewNullableUserModelV1Admin(val *UserModelV1Admin) *NullableUserModelV1Admin

func (NullableUserModelV1Admin) Get ¶

func (NullableUserModelV1Admin) IsSet ¶

func (v NullableUserModelV1Admin) IsSet() bool

func (NullableUserModelV1Admin) MarshalJSON ¶

func (v NullableUserModelV1Admin) MarshalJSON() ([]byte, error)

func (*NullableUserModelV1Admin) Set ¶

func (*NullableUserModelV1Admin) UnmarshalJSON ¶

func (v *NullableUserModelV1Admin) UnmarshalJSON(src []byte) error

func (*NullableUserModelV1Admin) Unset ¶

func (v *NullableUserModelV1Admin) Unset()

type NullableUserModelV1AdminPermissions ¶

type NullableUserModelV1AdminPermissions struct {
	// contains filtered or unexported fields
}

func (NullableUserModelV1AdminPermissions) Get ¶

func (NullableUserModelV1AdminPermissions) IsSet ¶

func (NullableUserModelV1AdminPermissions) MarshalJSON ¶

func (v NullableUserModelV1AdminPermissions) MarshalJSON() ([]byte, error)

func (*NullableUserModelV1AdminPermissions) Set ¶

func (*NullableUserModelV1AdminPermissions) UnmarshalJSON ¶

func (v *NullableUserModelV1AdminPermissions) UnmarshalJSON(src []byte) error

func (*NullableUserModelV1AdminPermissions) Unset ¶

type NullableUserModelV1AdminUpgrade ¶

type NullableUserModelV1AdminUpgrade struct {
	// contains filtered or unexported fields
}

func (NullableUserModelV1AdminUpgrade) Get ¶

func (NullableUserModelV1AdminUpgrade) IsSet ¶

func (NullableUserModelV1AdminUpgrade) MarshalJSON ¶

func (v NullableUserModelV1AdminUpgrade) MarshalJSON() ([]byte, error)

func (*NullableUserModelV1AdminUpgrade) Set ¶

func (*NullableUserModelV1AdminUpgrade) UnmarshalJSON ¶

func (v *NullableUserModelV1AdminUpgrade) UnmarshalJSON(src []byte) error

func (*NullableUserModelV1AdminUpgrade) Unset ¶

type NullableUserModelV1Profile ¶

type NullableUserModelV1Profile struct {
	// contains filtered or unexported fields
}

func NewNullableUserModelV1Profile ¶

func NewNullableUserModelV1Profile(val *UserModelV1Profile) *NullableUserModelV1Profile

func (NullableUserModelV1Profile) Get ¶

func (NullableUserModelV1Profile) IsSet ¶

func (v NullableUserModelV1Profile) IsSet() bool

func (NullableUserModelV1Profile) MarshalJSON ¶

func (v NullableUserModelV1Profile) MarshalJSON() ([]byte, error)

func (*NullableUserModelV1Profile) Set ¶

func (*NullableUserModelV1Profile) UnmarshalJSON ¶

func (v *NullableUserModelV1Profile) UnmarshalJSON(src []byte) error

func (*NullableUserModelV1Profile) Unset ¶

func (v *NullableUserModelV1Profile) Unset()

type NullableUserModelV1ProfileUpgrade ¶

type NullableUserModelV1ProfileUpgrade struct {
	// contains filtered or unexported fields
}

func (NullableUserModelV1ProfileUpgrade) Get ¶

func (NullableUserModelV1ProfileUpgrade) IsSet ¶

func (NullableUserModelV1ProfileUpgrade) MarshalJSON ¶

func (v NullableUserModelV1ProfileUpgrade) MarshalJSON() ([]byte, error)

func (*NullableUserModelV1ProfileUpgrade) Set ¶

func (*NullableUserModelV1ProfileUpgrade) UnmarshalJSON ¶

func (v *NullableUserModelV1ProfileUpgrade) UnmarshalJSON(src []byte) error

func (*NullableUserModelV1ProfileUpgrade) Unset ¶

type NullableUserModelV1Stats ¶

type NullableUserModelV1Stats struct {
	// contains filtered or unexported fields
}

func NewNullableUserModelV1Stats ¶

func NewNullableUserModelV1Stats(val *UserModelV1Stats) *NullableUserModelV1Stats

func (NullableUserModelV1Stats) Get ¶

func (NullableUserModelV1Stats) IsSet ¶

func (v NullableUserModelV1Stats) IsSet() bool

func (NullableUserModelV1Stats) MarshalJSON ¶

func (v NullableUserModelV1Stats) MarshalJSON() ([]byte, error)

func (*NullableUserModelV1Stats) Set ¶

func (*NullableUserModelV1Stats) UnmarshalJSON ¶

func (v *NullableUserModelV1Stats) UnmarshalJSON(src []byte) error

func (*NullableUserModelV1Stats) Unset ¶

func (v *NullableUserModelV1Stats) Unset()

type NullableUserModelV1StatsModeration ¶

type NullableUserModelV1StatsModeration struct {
	// contains filtered or unexported fields
}

func (NullableUserModelV1StatsModeration) Get ¶

func (NullableUserModelV1StatsModeration) IsSet ¶

func (NullableUserModelV1StatsModeration) MarshalJSON ¶

func (v NullableUserModelV1StatsModeration) MarshalJSON() ([]byte, error)

func (*NullableUserModelV1StatsModeration) Set ¶

func (*NullableUserModelV1StatsModeration) UnmarshalJSON ¶

func (v *NullableUserModelV1StatsModeration) UnmarshalJSON(src []byte) error

func (*NullableUserModelV1StatsModeration) Unset ¶

type NullableUserModelV1StatsModerationAuthors ¶

type NullableUserModelV1StatsModerationAuthors struct {
	// contains filtered or unexported fields
}

func (NullableUserModelV1StatsModerationAuthors) Get ¶

func (NullableUserModelV1StatsModerationAuthors) IsSet ¶

func (NullableUserModelV1StatsModerationAuthors) MarshalJSON ¶

func (*NullableUserModelV1StatsModerationAuthors) Set ¶

func (*NullableUserModelV1StatsModerationAuthors) UnmarshalJSON ¶

func (v *NullableUserModelV1StatsModerationAuthors) UnmarshalJSON(src []byte) error

func (*NullableUserModelV1StatsModerationAuthors) Unset ¶

type NullableUserModelV1StatsModerationGroups ¶

type NullableUserModelV1StatsModerationGroups struct {
	// contains filtered or unexported fields
}

func (NullableUserModelV1StatsModerationGroups) Get ¶

func (NullableUserModelV1StatsModerationGroups) IsSet ¶

func (NullableUserModelV1StatsModerationGroups) MarshalJSON ¶

func (*NullableUserModelV1StatsModerationGroups) Set ¶

func (*NullableUserModelV1StatsModerationGroups) UnmarshalJSON ¶

func (v *NullableUserModelV1StatsModerationGroups) UnmarshalJSON(src []byte) error

func (*NullableUserModelV1StatsModerationGroups) Unset ¶

type NullableUserModelV1StatsModerationPublishers ¶

type NullableUserModelV1StatsModerationPublishers struct {
	// contains filtered or unexported fields
}

func (NullableUserModelV1StatsModerationPublishers) Get ¶

func (NullableUserModelV1StatsModerationPublishers) IsSet ¶

func (NullableUserModelV1StatsModerationPublishers) MarshalJSON ¶

func (*NullableUserModelV1StatsModerationPublishers) Set ¶

func (*NullableUserModelV1StatsModerationPublishers) UnmarshalJSON ¶

func (*NullableUserModelV1StatsModerationPublishers) Unset ¶

type NullableUserModelV1StatsModerationReleases ¶

type NullableUserModelV1StatsModerationReleases struct {
	// contains filtered or unexported fields
}

func (NullableUserModelV1StatsModerationReleases) Get ¶

func (NullableUserModelV1StatsModerationReleases) IsSet ¶

func (NullableUserModelV1StatsModerationReleases) MarshalJSON ¶

func (*NullableUserModelV1StatsModerationReleases) Set ¶

func (*NullableUserModelV1StatsModerationReleases) UnmarshalJSON ¶

func (v *NullableUserModelV1StatsModerationReleases) UnmarshalJSON(src []byte) error

func (*NullableUserModelV1StatsModerationReleases) Unset ¶

type NullableUserModelV1StatsModerationSeries ¶

type NullableUserModelV1StatsModerationSeries struct {
	// contains filtered or unexported fields
}

func (NullableUserModelV1StatsModerationSeries) Get ¶

func (NullableUserModelV1StatsModerationSeries) IsSet ¶

func (NullableUserModelV1StatsModerationSeries) MarshalJSON ¶

func (*NullableUserModelV1StatsModerationSeries) Set ¶

func (*NullableUserModelV1StatsModerationSeries) UnmarshalJSON ¶

func (v *NullableUserModelV1StatsModerationSeries) UnmarshalJSON(src []byte) error

func (*NullableUserModelV1StatsModerationSeries) Unset ¶

type NullableUserSearchRequestV1 ¶

type NullableUserSearchRequestV1 struct {
	// contains filtered or unexported fields
}

func (NullableUserSearchRequestV1) Get ¶

func (NullableUserSearchRequestV1) IsSet ¶

func (NullableUserSearchRequestV1) MarshalJSON ¶

func (v NullableUserSearchRequestV1) MarshalJSON() ([]byte, error)

func (*NullableUserSearchRequestV1) Set ¶

func (*NullableUserSearchRequestV1) UnmarshalJSON ¶

func (v *NullableUserSearchRequestV1) UnmarshalJSON(src []byte) error

func (*NullableUserSearchRequestV1) Unset ¶

func (v *NullableUserSearchRequestV1) Unset()

type NullableUserSearchResponseV1 ¶

type NullableUserSearchResponseV1 struct {
	// contains filtered or unexported fields
}

func (NullableUserSearchResponseV1) Get ¶

func (NullableUserSearchResponseV1) IsSet ¶

func (NullableUserSearchResponseV1) MarshalJSON ¶

func (v NullableUserSearchResponseV1) MarshalJSON() ([]byte, error)

func (*NullableUserSearchResponseV1) Set ¶

func (*NullableUserSearchResponseV1) UnmarshalJSON ¶

func (v *NullableUserSearchResponseV1) UnmarshalJSON(src []byte) error

func (*NullableUserSearchResponseV1) Unset ¶

func (v *NullableUserSearchResponseV1) Unset()

type NullableUserSearchResponseV1Results ¶

type NullableUserSearchResponseV1Results struct {
	// contains filtered or unexported fields
}

func (NullableUserSearchResponseV1Results) Get ¶

func (NullableUserSearchResponseV1Results) IsSet ¶

func (NullableUserSearchResponseV1Results) MarshalJSON ¶

func (v NullableUserSearchResponseV1Results) MarshalJSON() ([]byte, error)

func (*NullableUserSearchResponseV1Results) Set ¶

func (*NullableUserSearchResponseV1Results) UnmarshalJSON ¶

func (v *NullableUserSearchResponseV1Results) UnmarshalJSON(src []byte) error

func (*NullableUserSearchResponseV1Results) Unset ¶

type NullableUserSubscribedTopicModelV1 ¶

type NullableUserSubscribedTopicModelV1 struct {
	// contains filtered or unexported fields
}

func (NullableUserSubscribedTopicModelV1) Get ¶

func (NullableUserSubscribedTopicModelV1) IsSet ¶

func (NullableUserSubscribedTopicModelV1) MarshalJSON ¶

func (v NullableUserSubscribedTopicModelV1) MarshalJSON() ([]byte, error)

func (*NullableUserSubscribedTopicModelV1) Set ¶

func (*NullableUserSubscribedTopicModelV1) UnmarshalJSON ¶

func (v *NullableUserSubscribedTopicModelV1) UnmarshalJSON(src []byte) error

func (*NullableUserSubscribedTopicModelV1) Unset ¶

type PerPageSearchRequestV1 ¶

type PerPageSearchRequestV1 struct {
	Page    *int64 `json:"page,omitempty"`
	Perpage *int64 `json:"perpage,omitempty"`
}

PerPageSearchRequestV1 struct for PerPageSearchRequestV1

func NewPerPageSearchRequestV1 ¶

func NewPerPageSearchRequestV1() *PerPageSearchRequestV1

NewPerPageSearchRequestV1 instantiates a new PerPageSearchRequestV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPerPageSearchRequestV1WithDefaults ¶

func NewPerPageSearchRequestV1WithDefaults() *PerPageSearchRequestV1

NewPerPageSearchRequestV1WithDefaults instantiates a new PerPageSearchRequestV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PerPageSearchRequestV1) GetPage ¶

func (o *PerPageSearchRequestV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*PerPageSearchRequestV1) GetPageOk ¶

func (o *PerPageSearchRequestV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerPageSearchRequestV1) GetPerpage ¶

func (o *PerPageSearchRequestV1) GetPerpage() int64

GetPerpage returns the Perpage field value if set, zero value otherwise.

func (*PerPageSearchRequestV1) GetPerpageOk ¶

func (o *PerPageSearchRequestV1) GetPerpageOk() (*int64, bool)

GetPerpageOk returns a tuple with the Perpage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerPageSearchRequestV1) HasPage ¶

func (o *PerPageSearchRequestV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*PerPageSearchRequestV1) HasPerpage ¶

func (o *PerPageSearchRequestV1) HasPerpage() bool

HasPerpage returns a boolean if a field has been set.

func (PerPageSearchRequestV1) MarshalJSON ¶

func (o PerPageSearchRequestV1) MarshalJSON() ([]byte, error)

func (*PerPageSearchRequestV1) SetPage ¶

func (o *PerPageSearchRequestV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*PerPageSearchRequestV1) SetPerpage ¶

func (o *PerPageSearchRequestV1) SetPerpage(v int64)

SetPerpage gets a reference to the given int64 and assigns it to the Perpage field.

func (PerPageSearchRequestV1) ToMap ¶

func (o PerPageSearchRequestV1) ToMap() (map[string]interface{}, error)

type PollAPIService ¶

type PollAPIService service

PollAPIService PollAPI service

func (*PollAPIService) AddPoll ¶

AddPoll add a new poll

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAddPollRequest

func (*PollAPIService) AddPollExecute ¶

func (a *PollAPIService) AddPollExecute(r ApiAddPollRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*PollAPIService) ArchivePoll ¶

ArchivePoll archive the active poll

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiArchivePollRequest

func (*PollAPIService) ArchivePollExecute ¶

func (a *PollAPIService) ArchivePollExecute(r ApiArchivePollRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*PollAPIService) RetrieveOldPolls ¶

func (a *PollAPIService) RetrieveOldPolls(ctx context.Context) ApiRetrieveOldPollsRequest

RetrieveOldPolls get old polls

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiRetrieveOldPollsRequest

func (*PollAPIService) RetrieveOldPollsExecute ¶

func (a *PollAPIService) RetrieveOldPollsExecute(r ApiRetrieveOldPollsRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*PollAPIService) RetrievePoll ¶

RetrievePoll get the active poll

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiRetrievePollRequest

func (*PollAPIService) RetrievePollExecute ¶

func (a *PollAPIService) RetrievePollExecute(r ApiRetrievePollRequest) (*PollModelV1, *http.Response, error)

Execute executes the request

@return PollModelV1

func (*PollAPIService) RetrieveVoteStatus ¶

func (a *PollAPIService) RetrieveVoteStatus(ctx context.Context) ApiRetrieveVoteStatusRequest

RetrieveVoteStatus get information about whether the user has voted

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiRetrieveVoteStatusRequest

func (*PollAPIService) RetrieveVoteStatusExecute ¶

Execute executes the request

@return PollVoteStatusModelV1

func (*PollAPIService) VotePollAnswer ¶

func (a *PollAPIService) VotePollAnswer(ctx context.Context, answerId int64) ApiVotePollAnswerRequest

VotePollAnswer vote in a poll answer

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param answerId id of answer to vote for
@return ApiVotePollAnswerRequest

func (*PollAPIService) VotePollAnswerExecute ¶

func (a *PollAPIService) VotePollAnswerExecute(r ApiVotePollAnswerRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*PollAPIService) VotePollNoAnswer ¶

func (a *PollAPIService) VotePollNoAnswer(ctx context.Context) ApiVotePollNoAnswerRequest

VotePollNoAnswer vote in a poll

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiVotePollNoAnswerRequest

func (*PollAPIService) VotePollNoAnswerExecute ¶

func (a *PollAPIService) VotePollNoAnswerExecute(r ApiVotePollNoAnswerRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

type PollModelUpdateV1 ¶

type PollModelUpdateV1 struct {
	Question *string                    `json:"question,omitempty"`
	Answers  []PollModelUpdateV1Answers `json:"answers,omitempty"`
}

PollModelUpdateV1 struct for PollModelUpdateV1

func NewPollModelUpdateV1 ¶

func NewPollModelUpdateV1() *PollModelUpdateV1

NewPollModelUpdateV1 instantiates a new PollModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPollModelUpdateV1WithDefaults ¶

func NewPollModelUpdateV1WithDefaults() *PollModelUpdateV1

NewPollModelUpdateV1WithDefaults instantiates a new PollModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PollModelUpdateV1) GetAnswers ¶

func (o *PollModelUpdateV1) GetAnswers() []PollModelUpdateV1Answers

GetAnswers returns the Answers field value if set, zero value otherwise.

func (*PollModelUpdateV1) GetAnswersOk ¶

func (o *PollModelUpdateV1) GetAnswersOk() ([]PollModelUpdateV1Answers, bool)

GetAnswersOk returns a tuple with the Answers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PollModelUpdateV1) GetQuestion ¶

func (o *PollModelUpdateV1) GetQuestion() string

GetQuestion returns the Question field value if set, zero value otherwise.

func (*PollModelUpdateV1) GetQuestionOk ¶

func (o *PollModelUpdateV1) GetQuestionOk() (*string, bool)

GetQuestionOk returns a tuple with the Question field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PollModelUpdateV1) HasAnswers ¶

func (o *PollModelUpdateV1) HasAnswers() bool

HasAnswers returns a boolean if a field has been set.

func (*PollModelUpdateV1) HasQuestion ¶

func (o *PollModelUpdateV1) HasQuestion() bool

HasQuestion returns a boolean if a field has been set.

func (PollModelUpdateV1) MarshalJSON ¶

func (o PollModelUpdateV1) MarshalJSON() ([]byte, error)

func (*PollModelUpdateV1) SetAnswers ¶

func (o *PollModelUpdateV1) SetAnswers(v []PollModelUpdateV1Answers)

SetAnswers gets a reference to the given []PollModelUpdateV1Answers and assigns it to the Answers field.

func (*PollModelUpdateV1) SetQuestion ¶

func (o *PollModelUpdateV1) SetQuestion(v string)

SetQuestion gets a reference to the given string and assigns it to the Question field.

func (PollModelUpdateV1) ToMap ¶

func (o PollModelUpdateV1) ToMap() (map[string]interface{}, error)

type PollModelUpdateV1Answers ¶

type PollModelUpdateV1Answers struct {
	Answer *string `json:"answer,omitempty"`
}

PollModelUpdateV1Answers struct for PollModelUpdateV1Answers

func NewPollModelUpdateV1Answers ¶

func NewPollModelUpdateV1Answers() *PollModelUpdateV1Answers

NewPollModelUpdateV1Answers instantiates a new PollModelUpdateV1Answers object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPollModelUpdateV1AnswersWithDefaults ¶

func NewPollModelUpdateV1AnswersWithDefaults() *PollModelUpdateV1Answers

NewPollModelUpdateV1AnswersWithDefaults instantiates a new PollModelUpdateV1Answers object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PollModelUpdateV1Answers) GetAnswer ¶

func (o *PollModelUpdateV1Answers) GetAnswer() string

GetAnswer returns the Answer field value if set, zero value otherwise.

func (*PollModelUpdateV1Answers) GetAnswerOk ¶

func (o *PollModelUpdateV1Answers) GetAnswerOk() (*string, bool)

GetAnswerOk returns a tuple with the Answer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PollModelUpdateV1Answers) HasAnswer ¶

func (o *PollModelUpdateV1Answers) HasAnswer() bool

HasAnswer returns a boolean if a field has been set.

func (PollModelUpdateV1Answers) MarshalJSON ¶

func (o PollModelUpdateV1Answers) MarshalJSON() ([]byte, error)

func (*PollModelUpdateV1Answers) SetAnswer ¶

func (o *PollModelUpdateV1Answers) SetAnswer(v string)

SetAnswer gets a reference to the given string and assigns it to the Answer field.

func (PollModelUpdateV1Answers) ToMap ¶

func (o PollModelUpdateV1Answers) ToMap() (map[string]interface{}, error)

type PollModelV1 ¶

type PollModelV1 struct {
	Active     *bool                `json:"active,omitempty"`
	Question   *string              `json:"question,omitempty"`
	Answers    []PollModelV1Answers `json:"answers,omitempty"`
	TotalVotes *int64               `json:"total_votes,omitempty"`
}

PollModelV1 struct for PollModelV1

func NewPollModelV1 ¶

func NewPollModelV1() *PollModelV1

NewPollModelV1 instantiates a new PollModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPollModelV1WithDefaults ¶

func NewPollModelV1WithDefaults() *PollModelV1

NewPollModelV1WithDefaults instantiates a new PollModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PollModelV1) GetActive ¶

func (o *PollModelV1) GetActive() bool

GetActive returns the Active field value if set, zero value otherwise.

func (*PollModelV1) GetActiveOk ¶

func (o *PollModelV1) GetActiveOk() (*bool, bool)

GetActiveOk returns a tuple with the Active field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PollModelV1) GetAnswers ¶

func (o *PollModelV1) GetAnswers() []PollModelV1Answers

GetAnswers returns the Answers field value if set, zero value otherwise.

func (*PollModelV1) GetAnswersOk ¶

func (o *PollModelV1) GetAnswersOk() ([]PollModelV1Answers, bool)

GetAnswersOk returns a tuple with the Answers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PollModelV1) GetQuestion ¶

func (o *PollModelV1) GetQuestion() string

GetQuestion returns the Question field value if set, zero value otherwise.

func (*PollModelV1) GetQuestionOk ¶

func (o *PollModelV1) GetQuestionOk() (*string, bool)

GetQuestionOk returns a tuple with the Question field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PollModelV1) GetTotalVotes ¶

func (o *PollModelV1) GetTotalVotes() int64

GetTotalVotes returns the TotalVotes field value if set, zero value otherwise.

func (*PollModelV1) GetTotalVotesOk ¶

func (o *PollModelV1) GetTotalVotesOk() (*int64, bool)

GetTotalVotesOk returns a tuple with the TotalVotes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PollModelV1) HasActive ¶

func (o *PollModelV1) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*PollModelV1) HasAnswers ¶

func (o *PollModelV1) HasAnswers() bool

HasAnswers returns a boolean if a field has been set.

func (*PollModelV1) HasQuestion ¶

func (o *PollModelV1) HasQuestion() bool

HasQuestion returns a boolean if a field has been set.

func (*PollModelV1) HasTotalVotes ¶

func (o *PollModelV1) HasTotalVotes() bool

HasTotalVotes returns a boolean if a field has been set.

func (PollModelV1) MarshalJSON ¶

func (o PollModelV1) MarshalJSON() ([]byte, error)

func (*PollModelV1) SetActive ¶

func (o *PollModelV1) SetActive(v bool)

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*PollModelV1) SetAnswers ¶

func (o *PollModelV1) SetAnswers(v []PollModelV1Answers)

SetAnswers gets a reference to the given []PollModelV1Answers and assigns it to the Answers field.

func (*PollModelV1) SetQuestion ¶

func (o *PollModelV1) SetQuestion(v string)

SetQuestion gets a reference to the given string and assigns it to the Question field.

func (*PollModelV1) SetTotalVotes ¶

func (o *PollModelV1) SetTotalVotes(v int64)

SetTotalVotes gets a reference to the given int64 and assigns it to the TotalVotes field.

func (PollModelV1) ToMap ¶

func (o PollModelV1) ToMap() (map[string]interface{}, error)

type PollModelV1Answers ¶

type PollModelV1Answers struct {
	AnswerId *int64  `json:"answer_id,omitempty"`
	Answer   *string `json:"answer,omitempty"`
	Total    *int64  `json:"total,omitempty"`
}

PollModelV1Answers struct for PollModelV1Answers

func NewPollModelV1Answers ¶

func NewPollModelV1Answers() *PollModelV1Answers

NewPollModelV1Answers instantiates a new PollModelV1Answers object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPollModelV1AnswersWithDefaults ¶

func NewPollModelV1AnswersWithDefaults() *PollModelV1Answers

NewPollModelV1AnswersWithDefaults instantiates a new PollModelV1Answers object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PollModelV1Answers) GetAnswer ¶

func (o *PollModelV1Answers) GetAnswer() string

GetAnswer returns the Answer field value if set, zero value otherwise.

func (*PollModelV1Answers) GetAnswerId ¶

func (o *PollModelV1Answers) GetAnswerId() int64

GetAnswerId returns the AnswerId field value if set, zero value otherwise.

func (*PollModelV1Answers) GetAnswerIdOk ¶

func (o *PollModelV1Answers) GetAnswerIdOk() (*int64, bool)

GetAnswerIdOk returns a tuple with the AnswerId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PollModelV1Answers) GetAnswerOk ¶

func (o *PollModelV1Answers) GetAnswerOk() (*string, bool)

GetAnswerOk returns a tuple with the Answer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PollModelV1Answers) GetTotal ¶

func (o *PollModelV1Answers) GetTotal() int64

GetTotal returns the Total field value if set, zero value otherwise.

func (*PollModelV1Answers) GetTotalOk ¶

func (o *PollModelV1Answers) GetTotalOk() (*int64, bool)

GetTotalOk returns a tuple with the Total field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PollModelV1Answers) HasAnswer ¶

func (o *PollModelV1Answers) HasAnswer() bool

HasAnswer returns a boolean if a field has been set.

func (*PollModelV1Answers) HasAnswerId ¶

func (o *PollModelV1Answers) HasAnswerId() bool

HasAnswerId returns a boolean if a field has been set.

func (*PollModelV1Answers) HasTotal ¶

func (o *PollModelV1Answers) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (PollModelV1Answers) MarshalJSON ¶

func (o PollModelV1Answers) MarshalJSON() ([]byte, error)

func (*PollModelV1Answers) SetAnswer ¶

func (o *PollModelV1Answers) SetAnswer(v string)

SetAnswer gets a reference to the given string and assigns it to the Answer field.

func (*PollModelV1Answers) SetAnswerId ¶

func (o *PollModelV1Answers) SetAnswerId(v int64)

SetAnswerId gets a reference to the given int64 and assigns it to the AnswerId field.

func (*PollModelV1Answers) SetTotal ¶

func (o *PollModelV1Answers) SetTotal(v int64)

SetTotal gets a reference to the given int64 and assigns it to the Total field.

func (PollModelV1Answers) ToMap ¶

func (o PollModelV1Answers) ToMap() (map[string]interface{}, error)

type PollVoteStatusModelV1 ¶

type PollVoteStatusModelV1 struct {
	Voted *bool `json:"voted,omitempty"`
}

PollVoteStatusModelV1 struct for PollVoteStatusModelV1

func NewPollVoteStatusModelV1 ¶

func NewPollVoteStatusModelV1() *PollVoteStatusModelV1

NewPollVoteStatusModelV1 instantiates a new PollVoteStatusModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPollVoteStatusModelV1WithDefaults ¶

func NewPollVoteStatusModelV1WithDefaults() *PollVoteStatusModelV1

NewPollVoteStatusModelV1WithDefaults instantiates a new PollVoteStatusModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PollVoteStatusModelV1) GetVoted ¶

func (o *PollVoteStatusModelV1) GetVoted() bool

GetVoted returns the Voted field value if set, zero value otherwise.

func (*PollVoteStatusModelV1) GetVotedOk ¶

func (o *PollVoteStatusModelV1) GetVotedOk() (*bool, bool)

GetVotedOk returns a tuple with the Voted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PollVoteStatusModelV1) HasVoted ¶

func (o *PollVoteStatusModelV1) HasVoted() bool

HasVoted returns a boolean if a field has been set.

func (PollVoteStatusModelV1) MarshalJSON ¶

func (o PollVoteStatusModelV1) MarshalJSON() ([]byte, error)

func (*PollVoteStatusModelV1) SetVoted ¶

func (o *PollVoteStatusModelV1) SetVoted(v bool)

SetVoted gets a reference to the given bool and assigns it to the Voted field.

func (PollVoteStatusModelV1) ToMap ¶

func (o PollVoteStatusModelV1) ToMap() (map[string]interface{}, error)

type PublishersAPIService ¶

type PublishersAPIService service

PublishersAPIService PublishersAPI service

func (*PublishersAPIService) AddPublisher ¶

AddPublisher add an publisher

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAddPublisherRequest

func (*PublishersAPIService) AddPublisherExecute ¶

Execute executes the request

@return ApiResponseV1

func (*PublishersAPIService) DeletePublisher ¶

DeletePublisher delete a publisher

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of publisher
@return ApiDeletePublisherRequest

func (*PublishersAPIService) DeletePublisherExecute ¶

Execute executes the request

@return ApiResponseV1

func (*PublishersAPIService) RetrievePublicationSeries ¶

func (a *PublishersAPIService) RetrievePublicationSeries(ctx context.Context) ApiRetrievePublicationSeriesRequest

RetrievePublicationSeries get the list of series for a specific publication

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiRetrievePublicationSeriesRequest

func (*PublishersAPIService) RetrievePublicationSeriesExecute ¶

Execute executes the request

@return PublishersPublicationResponseV1

func (*PublishersAPIService) RetrievePublisher ¶

RetrievePublisher get a specific publisher

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Publisher id
@return ApiRetrievePublisherRequest

func (*PublishersAPIService) RetrievePublisherExecute ¶

Execute executes the request

@return PublishersModelV1

func (*PublishersAPIService) RetrievePublisherSeries ¶

func (a *PublishersAPIService) RetrievePublisherSeries(ctx context.Context, id int64) ApiRetrievePublisherSeriesRequest

RetrievePublisherSeries get the list of series for a specific publisher

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Publisher id
@return ApiRetrievePublisherSeriesRequest

func (*PublishersAPIService) RetrievePublisherSeriesExecute ¶

Execute executes the request

@return PublishersSeriesListResponseV1

func (*PublishersAPIService) SearchPublishersPost ¶

SearchPublishersPost search publishers

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchPublishersPostRequest

func (*PublishersAPIService) SearchPublishersPostExecute ¶

Execute executes the request

@return PublishersSearchResponseV1

func (*PublishersAPIService) UpdatePublisher ¶

UpdatePublisher update a publisher

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of publisher
@return ApiUpdatePublisherRequest

func (*PublishersAPIService) UpdatePublisherExecute ¶

Execute executes the request

@return ApiResponseV1

type PublishersModelSearchV1 ¶

type PublishersModelSearchV1 struct {
	PublisherId *int64                        `json:"publisher_id,omitempty"`
	Name        *string                       `json:"name,omitempty"`
	Url         *string                       `json:"url,omitempty"`
	Type        *string                       `json:"type,omitempty"`
	Stats       *PublishersModelSearchV1Stats `json:"stats,omitempty"`
	AddedBy     *UserModelSearchV1            `json:"added_by,omitempty"`
}

PublishersModelSearchV1 struct for PublishersModelSearchV1

func NewPublishersModelSearchV1 ¶

func NewPublishersModelSearchV1() *PublishersModelSearchV1

NewPublishersModelSearchV1 instantiates a new PublishersModelSearchV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPublishersModelSearchV1WithDefaults ¶

func NewPublishersModelSearchV1WithDefaults() *PublishersModelSearchV1

NewPublishersModelSearchV1WithDefaults instantiates a new PublishersModelSearchV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PublishersModelSearchV1) GetAddedBy ¶

GetAddedBy returns the AddedBy field value if set, zero value otherwise.

func (*PublishersModelSearchV1) GetAddedByOk ¶

func (o *PublishersModelSearchV1) GetAddedByOk() (*UserModelSearchV1, bool)

GetAddedByOk returns a tuple with the AddedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelSearchV1) GetName ¶

func (o *PublishersModelSearchV1) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*PublishersModelSearchV1) GetNameOk ¶

func (o *PublishersModelSearchV1) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelSearchV1) GetPublisherId ¶

func (o *PublishersModelSearchV1) GetPublisherId() int64

GetPublisherId returns the PublisherId field value if set, zero value otherwise.

func (*PublishersModelSearchV1) GetPublisherIdOk ¶

func (o *PublishersModelSearchV1) GetPublisherIdOk() (*int64, bool)

GetPublisherIdOk returns a tuple with the PublisherId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelSearchV1) GetStats ¶

GetStats returns the Stats field value if set, zero value otherwise.

func (*PublishersModelSearchV1) GetStatsOk ¶

GetStatsOk returns a tuple with the Stats field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelSearchV1) GetType ¶

func (o *PublishersModelSearchV1) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*PublishersModelSearchV1) GetTypeOk ¶

func (o *PublishersModelSearchV1) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelSearchV1) GetUrl ¶

func (o *PublishersModelSearchV1) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*PublishersModelSearchV1) GetUrlOk ¶

func (o *PublishersModelSearchV1) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelSearchV1) HasAddedBy ¶

func (o *PublishersModelSearchV1) HasAddedBy() bool

HasAddedBy returns a boolean if a field has been set.

func (*PublishersModelSearchV1) HasName ¶

func (o *PublishersModelSearchV1) HasName() bool

HasName returns a boolean if a field has been set.

func (*PublishersModelSearchV1) HasPublisherId ¶

func (o *PublishersModelSearchV1) HasPublisherId() bool

HasPublisherId returns a boolean if a field has been set.

func (*PublishersModelSearchV1) HasStats ¶

func (o *PublishersModelSearchV1) HasStats() bool

HasStats returns a boolean if a field has been set.

func (*PublishersModelSearchV1) HasType ¶

func (o *PublishersModelSearchV1) HasType() bool

HasType returns a boolean if a field has been set.

func (*PublishersModelSearchV1) HasUrl ¶

func (o *PublishersModelSearchV1) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (PublishersModelSearchV1) MarshalJSON ¶

func (o PublishersModelSearchV1) MarshalJSON() ([]byte, error)

func (*PublishersModelSearchV1) SetAddedBy ¶

func (o *PublishersModelSearchV1) SetAddedBy(v UserModelSearchV1)

SetAddedBy gets a reference to the given UserModelSearchV1 and assigns it to the AddedBy field.

func (*PublishersModelSearchV1) SetName ¶

func (o *PublishersModelSearchV1) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*PublishersModelSearchV1) SetPublisherId ¶

func (o *PublishersModelSearchV1) SetPublisherId(v int64)

SetPublisherId gets a reference to the given int64 and assigns it to the PublisherId field.

func (*PublishersModelSearchV1) SetStats ¶

SetStats gets a reference to the given PublishersModelSearchV1Stats and assigns it to the Stats field.

func (*PublishersModelSearchV1) SetType ¶

func (o *PublishersModelSearchV1) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*PublishersModelSearchV1) SetUrl ¶

func (o *PublishersModelSearchV1) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (PublishersModelSearchV1) ToMap ¶

func (o PublishersModelSearchV1) ToMap() (map[string]interface{}, error)

type PublishersModelSearchV1Stats ¶

type PublishersModelSearchV1Stats struct {
	TotalSeries       *int64 `json:"total_series,omitempty"`
	TotalPublications *int64 `json:"total_publications,omitempty"`
}

PublishersModelSearchV1Stats struct for PublishersModelSearchV1Stats

func NewPublishersModelSearchV1Stats ¶

func NewPublishersModelSearchV1Stats() *PublishersModelSearchV1Stats

NewPublishersModelSearchV1Stats instantiates a new PublishersModelSearchV1Stats object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPublishersModelSearchV1StatsWithDefaults ¶

func NewPublishersModelSearchV1StatsWithDefaults() *PublishersModelSearchV1Stats

NewPublishersModelSearchV1StatsWithDefaults instantiates a new PublishersModelSearchV1Stats object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PublishersModelSearchV1Stats) GetTotalPublications ¶

func (o *PublishersModelSearchV1Stats) GetTotalPublications() int64

GetTotalPublications returns the TotalPublications field value if set, zero value otherwise.

func (*PublishersModelSearchV1Stats) GetTotalPublicationsOk ¶

func (o *PublishersModelSearchV1Stats) GetTotalPublicationsOk() (*int64, bool)

GetTotalPublicationsOk returns a tuple with the TotalPublications field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelSearchV1Stats) GetTotalSeries ¶

func (o *PublishersModelSearchV1Stats) GetTotalSeries() int64

GetTotalSeries returns the TotalSeries field value if set, zero value otherwise.

func (*PublishersModelSearchV1Stats) GetTotalSeriesOk ¶

func (o *PublishersModelSearchV1Stats) GetTotalSeriesOk() (*int64, bool)

GetTotalSeriesOk returns a tuple with the TotalSeries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelSearchV1Stats) HasTotalPublications ¶

func (o *PublishersModelSearchV1Stats) HasTotalPublications() bool

HasTotalPublications returns a boolean if a field has been set.

func (*PublishersModelSearchV1Stats) HasTotalSeries ¶

func (o *PublishersModelSearchV1Stats) HasTotalSeries() bool

HasTotalSeries returns a boolean if a field has been set.

func (PublishersModelSearchV1Stats) MarshalJSON ¶

func (o PublishersModelSearchV1Stats) MarshalJSON() ([]byte, error)

func (*PublishersModelSearchV1Stats) SetTotalPublications ¶

func (o *PublishersModelSearchV1Stats) SetTotalPublications(v int64)

SetTotalPublications gets a reference to the given int64 and assigns it to the TotalPublications field.

func (*PublishersModelSearchV1Stats) SetTotalSeries ¶

func (o *PublishersModelSearchV1Stats) SetTotalSeries(v int64)

SetTotalSeries gets a reference to the given int64 and assigns it to the TotalSeries field.

func (PublishersModelSearchV1Stats) ToMap ¶

func (o PublishersModelSearchV1Stats) ToMap() (map[string]interface{}, error)

type PublishersModelUpdateV1 ¶

type PublishersModelUpdateV1 struct {
	Name       *string                             `json:"name,omitempty"`
	Associated []PublishersModelUpdateV1Associated `json:"associated,omitempty"`
	Type       *string                             `json:"type,omitempty"`
	Info       *string                             `json:"info,omitempty"`
	Site       *string                             `json:"site,omitempty"`
	Admin      *PublishersModelUpdateV1Admin       `json:"admin,omitempty"`
}

PublishersModelUpdateV1 struct for PublishersModelUpdateV1

func NewPublishersModelUpdateV1 ¶

func NewPublishersModelUpdateV1() *PublishersModelUpdateV1

NewPublishersModelUpdateV1 instantiates a new PublishersModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPublishersModelUpdateV1WithDefaults ¶

func NewPublishersModelUpdateV1WithDefaults() *PublishersModelUpdateV1

NewPublishersModelUpdateV1WithDefaults instantiates a new PublishersModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PublishersModelUpdateV1) GetAdmin ¶

GetAdmin returns the Admin field value if set, zero value otherwise.

func (*PublishersModelUpdateV1) GetAdminOk ¶

GetAdminOk returns a tuple with the Admin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelUpdateV1) GetAssociated ¶

GetAssociated returns the Associated field value if set, zero value otherwise.

func (*PublishersModelUpdateV1) GetAssociatedOk ¶

GetAssociatedOk returns a tuple with the Associated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelUpdateV1) GetInfo ¶

func (o *PublishersModelUpdateV1) GetInfo() string

GetInfo returns the Info field value if set, zero value otherwise.

func (*PublishersModelUpdateV1) GetInfoOk ¶

func (o *PublishersModelUpdateV1) GetInfoOk() (*string, bool)

GetInfoOk returns a tuple with the Info field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelUpdateV1) GetName ¶

func (o *PublishersModelUpdateV1) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*PublishersModelUpdateV1) GetNameOk ¶

func (o *PublishersModelUpdateV1) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelUpdateV1) GetSite ¶

func (o *PublishersModelUpdateV1) GetSite() string

GetSite returns the Site field value if set, zero value otherwise.

func (*PublishersModelUpdateV1) GetSiteOk ¶

func (o *PublishersModelUpdateV1) GetSiteOk() (*string, bool)

GetSiteOk returns a tuple with the Site field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelUpdateV1) GetType ¶

func (o *PublishersModelUpdateV1) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*PublishersModelUpdateV1) GetTypeOk ¶

func (o *PublishersModelUpdateV1) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelUpdateV1) HasAdmin ¶

func (o *PublishersModelUpdateV1) HasAdmin() bool

HasAdmin returns a boolean if a field has been set.

func (*PublishersModelUpdateV1) HasAssociated ¶

func (o *PublishersModelUpdateV1) HasAssociated() bool

HasAssociated returns a boolean if a field has been set.

func (*PublishersModelUpdateV1) HasInfo ¶

func (o *PublishersModelUpdateV1) HasInfo() bool

HasInfo returns a boolean if a field has been set.

func (*PublishersModelUpdateV1) HasName ¶

func (o *PublishersModelUpdateV1) HasName() bool

HasName returns a boolean if a field has been set.

func (*PublishersModelUpdateV1) HasSite ¶

func (o *PublishersModelUpdateV1) HasSite() bool

HasSite returns a boolean if a field has been set.

func (*PublishersModelUpdateV1) HasType ¶

func (o *PublishersModelUpdateV1) HasType() bool

HasType returns a boolean if a field has been set.

func (PublishersModelUpdateV1) MarshalJSON ¶

func (o PublishersModelUpdateV1) MarshalJSON() ([]byte, error)

func (*PublishersModelUpdateV1) SetAdmin ¶

SetAdmin gets a reference to the given PublishersModelUpdateV1Admin and assigns it to the Admin field.

func (*PublishersModelUpdateV1) SetAssociated ¶

SetAssociated gets a reference to the given []PublishersModelUpdateV1Associated and assigns it to the Associated field.

func (*PublishersModelUpdateV1) SetInfo ¶

func (o *PublishersModelUpdateV1) SetInfo(v string)

SetInfo gets a reference to the given string and assigns it to the Info field.

func (*PublishersModelUpdateV1) SetName ¶

func (o *PublishersModelUpdateV1) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*PublishersModelUpdateV1) SetSite ¶

func (o *PublishersModelUpdateV1) SetSite(v string)

SetSite gets a reference to the given string and assigns it to the Site field.

func (*PublishersModelUpdateV1) SetType ¶

func (o *PublishersModelUpdateV1) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (PublishersModelUpdateV1) ToMap ¶

func (o PublishersModelUpdateV1) ToMap() (map[string]interface{}, error)

type PublishersModelUpdateV1Admin ¶

type PublishersModelUpdateV1Admin struct {
	Approved *bool `json:"approved,omitempty"`
}

PublishersModelUpdateV1Admin struct for PublishersModelUpdateV1Admin

func NewPublishersModelUpdateV1Admin ¶

func NewPublishersModelUpdateV1Admin() *PublishersModelUpdateV1Admin

NewPublishersModelUpdateV1Admin instantiates a new PublishersModelUpdateV1Admin object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPublishersModelUpdateV1AdminWithDefaults ¶

func NewPublishersModelUpdateV1AdminWithDefaults() *PublishersModelUpdateV1Admin

NewPublishersModelUpdateV1AdminWithDefaults instantiates a new PublishersModelUpdateV1Admin object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PublishersModelUpdateV1Admin) GetApproved ¶

func (o *PublishersModelUpdateV1Admin) GetApproved() bool

GetApproved returns the Approved field value if set, zero value otherwise.

func (*PublishersModelUpdateV1Admin) GetApprovedOk ¶

func (o *PublishersModelUpdateV1Admin) GetApprovedOk() (*bool, bool)

GetApprovedOk returns a tuple with the Approved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelUpdateV1Admin) HasApproved ¶

func (o *PublishersModelUpdateV1Admin) HasApproved() bool

HasApproved returns a boolean if a field has been set.

func (PublishersModelUpdateV1Admin) MarshalJSON ¶

func (o PublishersModelUpdateV1Admin) MarshalJSON() ([]byte, error)

func (*PublishersModelUpdateV1Admin) SetApproved ¶

func (o *PublishersModelUpdateV1Admin) SetApproved(v bool)

SetApproved gets a reference to the given bool and assigns it to the Approved field.

func (PublishersModelUpdateV1Admin) ToMap ¶

func (o PublishersModelUpdateV1Admin) ToMap() (map[string]interface{}, error)

type PublishersModelUpdateV1Associated ¶

type PublishersModelUpdateV1Associated struct {
	Name *string `json:"name,omitempty"`
}

PublishersModelUpdateV1Associated struct for PublishersModelUpdateV1Associated

func NewPublishersModelUpdateV1Associated ¶

func NewPublishersModelUpdateV1Associated() *PublishersModelUpdateV1Associated

NewPublishersModelUpdateV1Associated instantiates a new PublishersModelUpdateV1Associated object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPublishersModelUpdateV1AssociatedWithDefaults ¶

func NewPublishersModelUpdateV1AssociatedWithDefaults() *PublishersModelUpdateV1Associated

NewPublishersModelUpdateV1AssociatedWithDefaults instantiates a new PublishersModelUpdateV1Associated object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PublishersModelUpdateV1Associated) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*PublishersModelUpdateV1Associated) GetNameOk ¶

func (o *PublishersModelUpdateV1Associated) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelUpdateV1Associated) HasName ¶

HasName returns a boolean if a field has been set.

func (PublishersModelUpdateV1Associated) MarshalJSON ¶

func (o PublishersModelUpdateV1Associated) MarshalJSON() ([]byte, error)

func (*PublishersModelUpdateV1Associated) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (PublishersModelUpdateV1Associated) ToMap ¶

func (o PublishersModelUpdateV1Associated) ToMap() (map[string]interface{}, error)

type PublishersModelV1 ¶

type PublishersModelV1 struct {
	PublisherId *int64                        `json:"publisher_id,omitempty"`
	Name        *string                       `json:"name,omitempty"`
	Url         *string                       `json:"url,omitempty"`
	Associated  []PublishersModelV1Associated `json:"associated,omitempty"`
	Type        *string                       `json:"type,omitempty"`
	Info        *string                       `json:"info,omitempty"`
	Site        *string                       `json:"site,omitempty"`
	Stats       *PublishersModelV1Stats       `json:"stats,omitempty"`
	AddedBy     *UserModelSearchV1            `json:"added_by,omitempty"`
	LastUpdated *TimeV1                       `json:"last_updated,omitempty"`
	Admin       *PublishersModelV1Admin       `json:"admin,omitempty"`
}

PublishersModelV1 struct for PublishersModelV1

func NewPublishersModelV1 ¶

func NewPublishersModelV1() *PublishersModelV1

NewPublishersModelV1 instantiates a new PublishersModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPublishersModelV1WithDefaults ¶

func NewPublishersModelV1WithDefaults() *PublishersModelV1

NewPublishersModelV1WithDefaults instantiates a new PublishersModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PublishersModelV1) GetAddedBy ¶

func (o *PublishersModelV1) GetAddedBy() UserModelSearchV1

GetAddedBy returns the AddedBy field value if set, zero value otherwise.

func (*PublishersModelV1) GetAddedByOk ¶

func (o *PublishersModelV1) GetAddedByOk() (*UserModelSearchV1, bool)

GetAddedByOk returns a tuple with the AddedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelV1) GetAdmin ¶

GetAdmin returns the Admin field value if set, zero value otherwise.

func (*PublishersModelV1) GetAdminOk ¶

func (o *PublishersModelV1) GetAdminOk() (*PublishersModelV1Admin, bool)

GetAdminOk returns a tuple with the Admin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelV1) GetAssociated ¶

func (o *PublishersModelV1) GetAssociated() []PublishersModelV1Associated

GetAssociated returns the Associated field value if set, zero value otherwise.

func (*PublishersModelV1) GetAssociatedOk ¶

func (o *PublishersModelV1) GetAssociatedOk() ([]PublishersModelV1Associated, bool)

GetAssociatedOk returns a tuple with the Associated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelV1) GetInfo ¶

func (o *PublishersModelV1) GetInfo() string

GetInfo returns the Info field value if set, zero value otherwise.

func (*PublishersModelV1) GetInfoOk ¶

func (o *PublishersModelV1) GetInfoOk() (*string, bool)

GetInfoOk returns a tuple with the Info field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelV1) GetLastUpdated ¶

func (o *PublishersModelV1) GetLastUpdated() TimeV1

GetLastUpdated returns the LastUpdated field value if set, zero value otherwise.

func (*PublishersModelV1) GetLastUpdatedOk ¶

func (o *PublishersModelV1) GetLastUpdatedOk() (*TimeV1, bool)

GetLastUpdatedOk returns a tuple with the LastUpdated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelV1) GetName ¶

func (o *PublishersModelV1) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*PublishersModelV1) GetNameOk ¶

func (o *PublishersModelV1) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelV1) GetPublisherId ¶

func (o *PublishersModelV1) GetPublisherId() int64

GetPublisherId returns the PublisherId field value if set, zero value otherwise.

func (*PublishersModelV1) GetPublisherIdOk ¶

func (o *PublishersModelV1) GetPublisherIdOk() (*int64, bool)

GetPublisherIdOk returns a tuple with the PublisherId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelV1) GetSite ¶

func (o *PublishersModelV1) GetSite() string

GetSite returns the Site field value if set, zero value otherwise.

func (*PublishersModelV1) GetSiteOk ¶

func (o *PublishersModelV1) GetSiteOk() (*string, bool)

GetSiteOk returns a tuple with the Site field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelV1) GetStats ¶

GetStats returns the Stats field value if set, zero value otherwise.

func (*PublishersModelV1) GetStatsOk ¶

func (o *PublishersModelV1) GetStatsOk() (*PublishersModelV1Stats, bool)

GetStatsOk returns a tuple with the Stats field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelV1) GetType ¶

func (o *PublishersModelV1) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*PublishersModelV1) GetTypeOk ¶

func (o *PublishersModelV1) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelV1) GetUrl ¶

func (o *PublishersModelV1) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*PublishersModelV1) GetUrlOk ¶

func (o *PublishersModelV1) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelV1) HasAddedBy ¶

func (o *PublishersModelV1) HasAddedBy() bool

HasAddedBy returns a boolean if a field has been set.

func (*PublishersModelV1) HasAdmin ¶

func (o *PublishersModelV1) HasAdmin() bool

HasAdmin returns a boolean if a field has been set.

func (*PublishersModelV1) HasAssociated ¶

func (o *PublishersModelV1) HasAssociated() bool

HasAssociated returns a boolean if a field has been set.

func (*PublishersModelV1) HasInfo ¶

func (o *PublishersModelV1) HasInfo() bool

HasInfo returns a boolean if a field has been set.

func (*PublishersModelV1) HasLastUpdated ¶

func (o *PublishersModelV1) HasLastUpdated() bool

HasLastUpdated returns a boolean if a field has been set.

func (*PublishersModelV1) HasName ¶

func (o *PublishersModelV1) HasName() bool

HasName returns a boolean if a field has been set.

func (*PublishersModelV1) HasPublisherId ¶

func (o *PublishersModelV1) HasPublisherId() bool

HasPublisherId returns a boolean if a field has been set.

func (*PublishersModelV1) HasSite ¶

func (o *PublishersModelV1) HasSite() bool

HasSite returns a boolean if a field has been set.

func (*PublishersModelV1) HasStats ¶

func (o *PublishersModelV1) HasStats() bool

HasStats returns a boolean if a field has been set.

func (*PublishersModelV1) HasType ¶

func (o *PublishersModelV1) HasType() bool

HasType returns a boolean if a field has been set.

func (*PublishersModelV1) HasUrl ¶

func (o *PublishersModelV1) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (PublishersModelV1) MarshalJSON ¶

func (o PublishersModelV1) MarshalJSON() ([]byte, error)

func (*PublishersModelV1) SetAddedBy ¶

func (o *PublishersModelV1) SetAddedBy(v UserModelSearchV1)

SetAddedBy gets a reference to the given UserModelSearchV1 and assigns it to the AddedBy field.

func (*PublishersModelV1) SetAdmin ¶

SetAdmin gets a reference to the given PublishersModelV1Admin and assigns it to the Admin field.

func (*PublishersModelV1) SetAssociated ¶

func (o *PublishersModelV1) SetAssociated(v []PublishersModelV1Associated)

SetAssociated gets a reference to the given []PublishersModelV1Associated and assigns it to the Associated field.

func (*PublishersModelV1) SetInfo ¶

func (o *PublishersModelV1) SetInfo(v string)

SetInfo gets a reference to the given string and assigns it to the Info field.

func (*PublishersModelV1) SetLastUpdated ¶

func (o *PublishersModelV1) SetLastUpdated(v TimeV1)

SetLastUpdated gets a reference to the given TimeV1 and assigns it to the LastUpdated field.

func (*PublishersModelV1) SetName ¶

func (o *PublishersModelV1) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*PublishersModelV1) SetPublisherId ¶

func (o *PublishersModelV1) SetPublisherId(v int64)

SetPublisherId gets a reference to the given int64 and assigns it to the PublisherId field.

func (*PublishersModelV1) SetSite ¶

func (o *PublishersModelV1) SetSite(v string)

SetSite gets a reference to the given string and assigns it to the Site field.

func (*PublishersModelV1) SetStats ¶

SetStats gets a reference to the given PublishersModelV1Stats and assigns it to the Stats field.

func (*PublishersModelV1) SetType ¶

func (o *PublishersModelV1) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*PublishersModelV1) SetUrl ¶

func (o *PublishersModelV1) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (PublishersModelV1) ToMap ¶

func (o PublishersModelV1) ToMap() (map[string]interface{}, error)

type PublishersModelV1Admin ¶

type PublishersModelV1Admin struct {
	Approved *bool `json:"approved,omitempty"`
}

PublishersModelV1Admin struct for PublishersModelV1Admin

func NewPublishersModelV1Admin ¶

func NewPublishersModelV1Admin() *PublishersModelV1Admin

NewPublishersModelV1Admin instantiates a new PublishersModelV1Admin object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPublishersModelV1AdminWithDefaults ¶

func NewPublishersModelV1AdminWithDefaults() *PublishersModelV1Admin

NewPublishersModelV1AdminWithDefaults instantiates a new PublishersModelV1Admin object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PublishersModelV1Admin) GetApproved ¶

func (o *PublishersModelV1Admin) GetApproved() bool

GetApproved returns the Approved field value if set, zero value otherwise.

func (*PublishersModelV1Admin) GetApprovedOk ¶

func (o *PublishersModelV1Admin) GetApprovedOk() (*bool, bool)

GetApprovedOk returns a tuple with the Approved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelV1Admin) HasApproved ¶

func (o *PublishersModelV1Admin) HasApproved() bool

HasApproved returns a boolean if a field has been set.

func (PublishersModelV1Admin) MarshalJSON ¶

func (o PublishersModelV1Admin) MarshalJSON() ([]byte, error)

func (*PublishersModelV1Admin) SetApproved ¶

func (o *PublishersModelV1Admin) SetApproved(v bool)

SetApproved gets a reference to the given bool and assigns it to the Approved field.

func (PublishersModelV1Admin) ToMap ¶

func (o PublishersModelV1Admin) ToMap() (map[string]interface{}, error)

type PublishersModelV1Associated ¶

type PublishersModelV1Associated struct {
	Name *string `json:"name,omitempty"`
}

PublishersModelV1Associated struct for PublishersModelV1Associated

func NewPublishersModelV1Associated ¶

func NewPublishersModelV1Associated() *PublishersModelV1Associated

NewPublishersModelV1Associated instantiates a new PublishersModelV1Associated object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPublishersModelV1AssociatedWithDefaults ¶

func NewPublishersModelV1AssociatedWithDefaults() *PublishersModelV1Associated

NewPublishersModelV1AssociatedWithDefaults instantiates a new PublishersModelV1Associated object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PublishersModelV1Associated) GetName ¶

func (o *PublishersModelV1Associated) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*PublishersModelV1Associated) GetNameOk ¶

func (o *PublishersModelV1Associated) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelV1Associated) HasName ¶

func (o *PublishersModelV1Associated) HasName() bool

HasName returns a boolean if a field has been set.

func (PublishersModelV1Associated) MarshalJSON ¶

func (o PublishersModelV1Associated) MarshalJSON() ([]byte, error)

func (*PublishersModelV1Associated) SetName ¶

func (o *PublishersModelV1Associated) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (PublishersModelV1Associated) ToMap ¶

func (o PublishersModelV1Associated) ToMap() (map[string]interface{}, error)

type PublishersModelV1Stats ¶

type PublishersModelV1Stats struct {
	TotalSeries       *int64 `json:"total_series,omitempty"`
	TotalPublications *int64 `json:"total_publications,omitempty"`
}

PublishersModelV1Stats struct for PublishersModelV1Stats

func NewPublishersModelV1Stats ¶

func NewPublishersModelV1Stats() *PublishersModelV1Stats

NewPublishersModelV1Stats instantiates a new PublishersModelV1Stats object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPublishersModelV1StatsWithDefaults ¶

func NewPublishersModelV1StatsWithDefaults() *PublishersModelV1Stats

NewPublishersModelV1StatsWithDefaults instantiates a new PublishersModelV1Stats object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PublishersModelV1Stats) GetTotalPublications ¶

func (o *PublishersModelV1Stats) GetTotalPublications() int64

GetTotalPublications returns the TotalPublications field value if set, zero value otherwise.

func (*PublishersModelV1Stats) GetTotalPublicationsOk ¶

func (o *PublishersModelV1Stats) GetTotalPublicationsOk() (*int64, bool)

GetTotalPublicationsOk returns a tuple with the TotalPublications field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelV1Stats) GetTotalSeries ¶

func (o *PublishersModelV1Stats) GetTotalSeries() int64

GetTotalSeries returns the TotalSeries field value if set, zero value otherwise.

func (*PublishersModelV1Stats) GetTotalSeriesOk ¶

func (o *PublishersModelV1Stats) GetTotalSeriesOk() (*int64, bool)

GetTotalSeriesOk returns a tuple with the TotalSeries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersModelV1Stats) HasTotalPublications ¶

func (o *PublishersModelV1Stats) HasTotalPublications() bool

HasTotalPublications returns a boolean if a field has been set.

func (*PublishersModelV1Stats) HasTotalSeries ¶

func (o *PublishersModelV1Stats) HasTotalSeries() bool

HasTotalSeries returns a boolean if a field has been set.

func (PublishersModelV1Stats) MarshalJSON ¶

func (o PublishersModelV1Stats) MarshalJSON() ([]byte, error)

func (*PublishersModelV1Stats) SetTotalPublications ¶

func (o *PublishersModelV1Stats) SetTotalPublications(v int64)

SetTotalPublications gets a reference to the given int64 and assigns it to the TotalPublications field.

func (*PublishersModelV1Stats) SetTotalSeries ¶

func (o *PublishersModelV1Stats) SetTotalSeries(v int64)

SetTotalSeries gets a reference to the given int64 and assigns it to the TotalSeries field.

func (PublishersModelV1Stats) ToMap ¶

func (o PublishersModelV1Stats) ToMap() (map[string]interface{}, error)

type PublishersPublicationResponseV1 ¶

type PublishersPublicationResponseV1 struct {
	Publisher  *PublishersPublicationResponseV1Publisher   `json:"publisher,omitempty"`
	SeriesList []PublishersPublicationResponseV1SeriesList `json:"series_list,omitempty"`
}

PublishersPublicationResponseV1 struct for PublishersPublicationResponseV1

func NewPublishersPublicationResponseV1 ¶

func NewPublishersPublicationResponseV1() *PublishersPublicationResponseV1

NewPublishersPublicationResponseV1 instantiates a new PublishersPublicationResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPublishersPublicationResponseV1WithDefaults ¶

func NewPublishersPublicationResponseV1WithDefaults() *PublishersPublicationResponseV1

NewPublishersPublicationResponseV1WithDefaults instantiates a new PublishersPublicationResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PublishersPublicationResponseV1) GetPublisher ¶

GetPublisher returns the Publisher field value if set, zero value otherwise.

func (*PublishersPublicationResponseV1) GetPublisherOk ¶

GetPublisherOk returns a tuple with the Publisher field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersPublicationResponseV1) GetSeriesList ¶

GetSeriesList returns the SeriesList field value if set, zero value otherwise.

func (*PublishersPublicationResponseV1) GetSeriesListOk ¶

GetSeriesListOk returns a tuple with the SeriesList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersPublicationResponseV1) HasPublisher ¶

func (o *PublishersPublicationResponseV1) HasPublisher() bool

HasPublisher returns a boolean if a field has been set.

func (*PublishersPublicationResponseV1) HasSeriesList ¶

func (o *PublishersPublicationResponseV1) HasSeriesList() bool

HasSeriesList returns a boolean if a field has been set.

func (PublishersPublicationResponseV1) MarshalJSON ¶

func (o PublishersPublicationResponseV1) MarshalJSON() ([]byte, error)

func (*PublishersPublicationResponseV1) SetPublisher ¶

SetPublisher gets a reference to the given PublishersPublicationResponseV1Publisher and assigns it to the Publisher field.

func (*PublishersPublicationResponseV1) SetSeriesList ¶

SetSeriesList gets a reference to the given []PublishersPublicationResponseV1SeriesList and assigns it to the SeriesList field.

func (PublishersPublicationResponseV1) ToMap ¶

func (o PublishersPublicationResponseV1) ToMap() (map[string]interface{}, error)

type PublishersPublicationResponseV1Publisher ¶

type PublishersPublicationResponseV1Publisher struct {
	PublisherName *string `json:"publisher_name,omitempty"`
	PublisherId   *int64  `json:"publisher_id,omitempty"`
}

PublishersPublicationResponseV1Publisher struct for PublishersPublicationResponseV1Publisher

func NewPublishersPublicationResponseV1Publisher ¶

func NewPublishersPublicationResponseV1Publisher() *PublishersPublicationResponseV1Publisher

NewPublishersPublicationResponseV1Publisher instantiates a new PublishersPublicationResponseV1Publisher object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPublishersPublicationResponseV1PublisherWithDefaults ¶

func NewPublishersPublicationResponseV1PublisherWithDefaults() *PublishersPublicationResponseV1Publisher

NewPublishersPublicationResponseV1PublisherWithDefaults instantiates a new PublishersPublicationResponseV1Publisher object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PublishersPublicationResponseV1Publisher) GetPublisherId ¶

func (o *PublishersPublicationResponseV1Publisher) GetPublisherId() int64

GetPublisherId returns the PublisherId field value if set, zero value otherwise.

func (*PublishersPublicationResponseV1Publisher) GetPublisherIdOk ¶

func (o *PublishersPublicationResponseV1Publisher) GetPublisherIdOk() (*int64, bool)

GetPublisherIdOk returns a tuple with the PublisherId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersPublicationResponseV1Publisher) GetPublisherName ¶

func (o *PublishersPublicationResponseV1Publisher) GetPublisherName() string

GetPublisherName returns the PublisherName field value if set, zero value otherwise.

func (*PublishersPublicationResponseV1Publisher) GetPublisherNameOk ¶

func (o *PublishersPublicationResponseV1Publisher) GetPublisherNameOk() (*string, bool)

GetPublisherNameOk returns a tuple with the PublisherName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersPublicationResponseV1Publisher) HasPublisherId ¶

func (o *PublishersPublicationResponseV1Publisher) HasPublisherId() bool

HasPublisherId returns a boolean if a field has been set.

func (*PublishersPublicationResponseV1Publisher) HasPublisherName ¶

func (o *PublishersPublicationResponseV1Publisher) HasPublisherName() bool

HasPublisherName returns a boolean if a field has been set.

func (PublishersPublicationResponseV1Publisher) MarshalJSON ¶

func (*PublishersPublicationResponseV1Publisher) SetPublisherId ¶

func (o *PublishersPublicationResponseV1Publisher) SetPublisherId(v int64)

SetPublisherId gets a reference to the given int64 and assigns it to the PublisherId field.

func (*PublishersPublicationResponseV1Publisher) SetPublisherName ¶

func (o *PublishersPublicationResponseV1Publisher) SetPublisherName(v string)

SetPublisherName gets a reference to the given string and assigns it to the PublisherName field.

func (PublishersPublicationResponseV1Publisher) ToMap ¶

func (o PublishersPublicationResponseV1Publisher) ToMap() (map[string]interface{}, error)

type PublishersPublicationResponseV1SeriesList ¶

type PublishersPublicationResponseV1SeriesList struct {
	Title       *string  `json:"title,omitempty"`
	SeriesId    *int64   `json:"series_id,omitempty"`
	Genres      []string `json:"genres,omitempty"`
	LastUpdated *TimeV1  `json:"last_updated,omitempty"`
}

PublishersPublicationResponseV1SeriesList struct for PublishersPublicationResponseV1SeriesList

func NewPublishersPublicationResponseV1SeriesList ¶

func NewPublishersPublicationResponseV1SeriesList() *PublishersPublicationResponseV1SeriesList

NewPublishersPublicationResponseV1SeriesList instantiates a new PublishersPublicationResponseV1SeriesList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPublishersPublicationResponseV1SeriesListWithDefaults ¶

func NewPublishersPublicationResponseV1SeriesListWithDefaults() *PublishersPublicationResponseV1SeriesList

NewPublishersPublicationResponseV1SeriesListWithDefaults instantiates a new PublishersPublicationResponseV1SeriesList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PublishersPublicationResponseV1SeriesList) GetGenres ¶

GetGenres returns the Genres field value if set, zero value otherwise.

func (*PublishersPublicationResponseV1SeriesList) GetGenresOk ¶

GetGenresOk returns a tuple with the Genres field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersPublicationResponseV1SeriesList) GetLastUpdated ¶

GetLastUpdated returns the LastUpdated field value if set, zero value otherwise.

func (*PublishersPublicationResponseV1SeriesList) GetLastUpdatedOk ¶

func (o *PublishersPublicationResponseV1SeriesList) GetLastUpdatedOk() (*TimeV1, bool)

GetLastUpdatedOk returns a tuple with the LastUpdated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersPublicationResponseV1SeriesList) GetSeriesId ¶

GetSeriesId returns the SeriesId field value if set, zero value otherwise.

func (*PublishersPublicationResponseV1SeriesList) GetSeriesIdOk ¶

func (o *PublishersPublicationResponseV1SeriesList) GetSeriesIdOk() (*int64, bool)

GetSeriesIdOk returns a tuple with the SeriesId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersPublicationResponseV1SeriesList) GetTitle ¶

GetTitle returns the Title field value if set, zero value otherwise.

func (*PublishersPublicationResponseV1SeriesList) GetTitleOk ¶

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersPublicationResponseV1SeriesList) HasGenres ¶

HasGenres returns a boolean if a field has been set.

func (*PublishersPublicationResponseV1SeriesList) HasLastUpdated ¶

func (o *PublishersPublicationResponseV1SeriesList) HasLastUpdated() bool

HasLastUpdated returns a boolean if a field has been set.

func (*PublishersPublicationResponseV1SeriesList) HasSeriesId ¶

HasSeriesId returns a boolean if a field has been set.

func (*PublishersPublicationResponseV1SeriesList) HasTitle ¶

HasTitle returns a boolean if a field has been set.

func (PublishersPublicationResponseV1SeriesList) MarshalJSON ¶

func (*PublishersPublicationResponseV1SeriesList) SetGenres ¶

SetGenres gets a reference to the given []string and assigns it to the Genres field.

func (*PublishersPublicationResponseV1SeriesList) SetLastUpdated ¶

SetLastUpdated gets a reference to the given TimeV1 and assigns it to the LastUpdated field.

func (*PublishersPublicationResponseV1SeriesList) SetSeriesId ¶

SetSeriesId gets a reference to the given int64 and assigns it to the SeriesId field.

func (*PublishersPublicationResponseV1SeriesList) SetTitle ¶

SetTitle gets a reference to the given string and assigns it to the Title field.

func (PublishersPublicationResponseV1SeriesList) ToMap ¶

func (o PublishersPublicationResponseV1SeriesList) ToMap() (map[string]interface{}, error)

type PublishersSearchRequestV1 ¶

type PublishersSearchRequestV1 struct {
	Search  *string `json:"search,omitempty"`
	AddedBy *int64  `json:"added_by,omitempty"`
	Page    *int64  `json:"page,omitempty"`
	Perpage *int64  `json:"perpage,omitempty"`
	Letter  *string `json:"letter,omitempty"`
	Orderby *string `json:"orderby,omitempty"`
	Pending *bool   `json:"pending,omitempty"`
}

PublishersSearchRequestV1 struct for PublishersSearchRequestV1

func NewPublishersSearchRequestV1 ¶

func NewPublishersSearchRequestV1() *PublishersSearchRequestV1

NewPublishersSearchRequestV1 instantiates a new PublishersSearchRequestV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPublishersSearchRequestV1WithDefaults ¶

func NewPublishersSearchRequestV1WithDefaults() *PublishersSearchRequestV1

NewPublishersSearchRequestV1WithDefaults instantiates a new PublishersSearchRequestV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PublishersSearchRequestV1) GetAddedBy ¶

func (o *PublishersSearchRequestV1) GetAddedBy() int64

GetAddedBy returns the AddedBy field value if set, zero value otherwise.

func (*PublishersSearchRequestV1) GetAddedByOk ¶

func (o *PublishersSearchRequestV1) GetAddedByOk() (*int64, bool)

GetAddedByOk returns a tuple with the AddedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersSearchRequestV1) GetLetter ¶

func (o *PublishersSearchRequestV1) GetLetter() string

GetLetter returns the Letter field value if set, zero value otherwise.

func (*PublishersSearchRequestV1) GetLetterOk ¶

func (o *PublishersSearchRequestV1) GetLetterOk() (*string, bool)

GetLetterOk returns a tuple with the Letter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersSearchRequestV1) GetOrderby ¶

func (o *PublishersSearchRequestV1) GetOrderby() string

GetOrderby returns the Orderby field value if set, zero value otherwise.

func (*PublishersSearchRequestV1) GetOrderbyOk ¶

func (o *PublishersSearchRequestV1) GetOrderbyOk() (*string, bool)

GetOrderbyOk returns a tuple with the Orderby field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersSearchRequestV1) GetPage ¶

func (o *PublishersSearchRequestV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*PublishersSearchRequestV1) GetPageOk ¶

func (o *PublishersSearchRequestV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersSearchRequestV1) GetPending ¶

func (o *PublishersSearchRequestV1) GetPending() bool

GetPending returns the Pending field value if set, zero value otherwise.

func (*PublishersSearchRequestV1) GetPendingOk ¶

func (o *PublishersSearchRequestV1) GetPendingOk() (*bool, bool)

GetPendingOk returns a tuple with the Pending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersSearchRequestV1) GetPerpage ¶

func (o *PublishersSearchRequestV1) GetPerpage() int64

GetPerpage returns the Perpage field value if set, zero value otherwise.

func (*PublishersSearchRequestV1) GetPerpageOk ¶

func (o *PublishersSearchRequestV1) GetPerpageOk() (*int64, bool)

GetPerpageOk returns a tuple with the Perpage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersSearchRequestV1) GetSearch ¶

func (o *PublishersSearchRequestV1) GetSearch() string

GetSearch returns the Search field value if set, zero value otherwise.

func (*PublishersSearchRequestV1) GetSearchOk ¶

func (o *PublishersSearchRequestV1) GetSearchOk() (*string, bool)

GetSearchOk returns a tuple with the Search field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersSearchRequestV1) HasAddedBy ¶

func (o *PublishersSearchRequestV1) HasAddedBy() bool

HasAddedBy returns a boolean if a field has been set.

func (*PublishersSearchRequestV1) HasLetter ¶

func (o *PublishersSearchRequestV1) HasLetter() bool

HasLetter returns a boolean if a field has been set.

func (*PublishersSearchRequestV1) HasOrderby ¶

func (o *PublishersSearchRequestV1) HasOrderby() bool

HasOrderby returns a boolean if a field has been set.

func (*PublishersSearchRequestV1) HasPage ¶

func (o *PublishersSearchRequestV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*PublishersSearchRequestV1) HasPending ¶

func (o *PublishersSearchRequestV1) HasPending() bool

HasPending returns a boolean if a field has been set.

func (*PublishersSearchRequestV1) HasPerpage ¶

func (o *PublishersSearchRequestV1) HasPerpage() bool

HasPerpage returns a boolean if a field has been set.

func (*PublishersSearchRequestV1) HasSearch ¶

func (o *PublishersSearchRequestV1) HasSearch() bool

HasSearch returns a boolean if a field has been set.

func (PublishersSearchRequestV1) MarshalJSON ¶

func (o PublishersSearchRequestV1) MarshalJSON() ([]byte, error)

func (*PublishersSearchRequestV1) SetAddedBy ¶

func (o *PublishersSearchRequestV1) SetAddedBy(v int64)

SetAddedBy gets a reference to the given int64 and assigns it to the AddedBy field.

func (*PublishersSearchRequestV1) SetLetter ¶

func (o *PublishersSearchRequestV1) SetLetter(v string)

SetLetter gets a reference to the given string and assigns it to the Letter field.

func (*PublishersSearchRequestV1) SetOrderby ¶

func (o *PublishersSearchRequestV1) SetOrderby(v string)

SetOrderby gets a reference to the given string and assigns it to the Orderby field.

func (*PublishersSearchRequestV1) SetPage ¶

func (o *PublishersSearchRequestV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*PublishersSearchRequestV1) SetPending ¶

func (o *PublishersSearchRequestV1) SetPending(v bool)

SetPending gets a reference to the given bool and assigns it to the Pending field.

func (*PublishersSearchRequestV1) SetPerpage ¶

func (o *PublishersSearchRequestV1) SetPerpage(v int64)

SetPerpage gets a reference to the given int64 and assigns it to the Perpage field.

func (*PublishersSearchRequestV1) SetSearch ¶

func (o *PublishersSearchRequestV1) SetSearch(v string)

SetSearch gets a reference to the given string and assigns it to the Search field.

func (PublishersSearchRequestV1) ToMap ¶

func (o PublishersSearchRequestV1) ToMap() (map[string]interface{}, error)

type PublishersSearchResponseV1 ¶

type PublishersSearchResponseV1 struct {
	TotalHits *int64                              `json:"total_hits,omitempty"`
	Page      *int64                              `json:"page,omitempty"`
	PerPage   *int64                              `json:"per_page,omitempty"`
	Results   []PublishersSearchResponseV1Results `json:"results,omitempty"`
}

PublishersSearchResponseV1 struct for PublishersSearchResponseV1

func NewPublishersSearchResponseV1 ¶

func NewPublishersSearchResponseV1() *PublishersSearchResponseV1

NewPublishersSearchResponseV1 instantiates a new PublishersSearchResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPublishersSearchResponseV1WithDefaults ¶

func NewPublishersSearchResponseV1WithDefaults() *PublishersSearchResponseV1

NewPublishersSearchResponseV1WithDefaults instantiates a new PublishersSearchResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PublishersSearchResponseV1) GetPage ¶

func (o *PublishersSearchResponseV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*PublishersSearchResponseV1) GetPageOk ¶

func (o *PublishersSearchResponseV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersSearchResponseV1) GetPerPage ¶

func (o *PublishersSearchResponseV1) GetPerPage() int64

GetPerPage returns the PerPage field value if set, zero value otherwise.

func (*PublishersSearchResponseV1) GetPerPageOk ¶

func (o *PublishersSearchResponseV1) GetPerPageOk() (*int64, bool)

GetPerPageOk returns a tuple with the PerPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersSearchResponseV1) GetResults ¶

GetResults returns the Results field value if set, zero value otherwise.

func (*PublishersSearchResponseV1) GetResultsOk ¶

GetResultsOk returns a tuple with the Results field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersSearchResponseV1) GetTotalHits ¶

func (o *PublishersSearchResponseV1) GetTotalHits() int64

GetTotalHits returns the TotalHits field value if set, zero value otherwise.

func (*PublishersSearchResponseV1) GetTotalHitsOk ¶

func (o *PublishersSearchResponseV1) GetTotalHitsOk() (*int64, bool)

GetTotalHitsOk returns a tuple with the TotalHits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersSearchResponseV1) HasPage ¶

func (o *PublishersSearchResponseV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*PublishersSearchResponseV1) HasPerPage ¶

func (o *PublishersSearchResponseV1) HasPerPage() bool

HasPerPage returns a boolean if a field has been set.

func (*PublishersSearchResponseV1) HasResults ¶

func (o *PublishersSearchResponseV1) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*PublishersSearchResponseV1) HasTotalHits ¶

func (o *PublishersSearchResponseV1) HasTotalHits() bool

HasTotalHits returns a boolean if a field has been set.

func (PublishersSearchResponseV1) MarshalJSON ¶

func (o PublishersSearchResponseV1) MarshalJSON() ([]byte, error)

func (*PublishersSearchResponseV1) SetPage ¶

func (o *PublishersSearchResponseV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*PublishersSearchResponseV1) SetPerPage ¶

func (o *PublishersSearchResponseV1) SetPerPage(v int64)

SetPerPage gets a reference to the given int64 and assigns it to the PerPage field.

func (*PublishersSearchResponseV1) SetResults ¶

SetResults gets a reference to the given []PublishersSearchResponseV1Results and assigns it to the Results field.

func (*PublishersSearchResponseV1) SetTotalHits ¶

func (o *PublishersSearchResponseV1) SetTotalHits(v int64)

SetTotalHits gets a reference to the given int64 and assigns it to the TotalHits field.

func (PublishersSearchResponseV1) ToMap ¶

func (o PublishersSearchResponseV1) ToMap() (map[string]interface{}, error)

type PublishersSearchResponseV1Results ¶

type PublishersSearchResponseV1Results struct {
	Record  *PublishersModelSearchV1 `json:"record,omitempty"`
	HitName *string                  `json:"hit_name,omitempty"`
}

PublishersSearchResponseV1Results struct for PublishersSearchResponseV1Results

func NewPublishersSearchResponseV1Results ¶

func NewPublishersSearchResponseV1Results() *PublishersSearchResponseV1Results

NewPublishersSearchResponseV1Results instantiates a new PublishersSearchResponseV1Results object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPublishersSearchResponseV1ResultsWithDefaults ¶

func NewPublishersSearchResponseV1ResultsWithDefaults() *PublishersSearchResponseV1Results

NewPublishersSearchResponseV1ResultsWithDefaults instantiates a new PublishersSearchResponseV1Results object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PublishersSearchResponseV1Results) GetHitName ¶

func (o *PublishersSearchResponseV1Results) GetHitName() string

GetHitName returns the HitName field value if set, zero value otherwise.

func (*PublishersSearchResponseV1Results) GetHitNameOk ¶

func (o *PublishersSearchResponseV1Results) GetHitNameOk() (*string, bool)

GetHitNameOk returns a tuple with the HitName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersSearchResponseV1Results) GetRecord ¶

GetRecord returns the Record field value if set, zero value otherwise.

func (*PublishersSearchResponseV1Results) GetRecordOk ¶

GetRecordOk returns a tuple with the Record field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersSearchResponseV1Results) HasHitName ¶

func (o *PublishersSearchResponseV1Results) HasHitName() bool

HasHitName returns a boolean if a field has been set.

func (*PublishersSearchResponseV1Results) HasRecord ¶

func (o *PublishersSearchResponseV1Results) HasRecord() bool

HasRecord returns a boolean if a field has been set.

func (PublishersSearchResponseV1Results) MarshalJSON ¶

func (o PublishersSearchResponseV1Results) MarshalJSON() ([]byte, error)

func (*PublishersSearchResponseV1Results) SetHitName ¶

func (o *PublishersSearchResponseV1Results) SetHitName(v string)

SetHitName gets a reference to the given string and assigns it to the HitName field.

func (*PublishersSearchResponseV1Results) SetRecord ¶

SetRecord gets a reference to the given PublishersModelSearchV1 and assigns it to the Record field.

func (PublishersSearchResponseV1Results) ToMap ¶

func (o PublishersSearchResponseV1Results) ToMap() (map[string]interface{}, error)

type PublishersSeriesListResponseV1 ¶

type PublishersSeriesListResponseV1 struct {
	SeriesList      []PublishersSeriesListResponseV1SeriesList      `json:"series_list,omitempty"`
	PublicationList []PublishersSeriesListResponseV1PublicationList `json:"publication_list,omitempty"`
}

PublishersSeriesListResponseV1 struct for PublishersSeriesListResponseV1

func NewPublishersSeriesListResponseV1 ¶

func NewPublishersSeriesListResponseV1() *PublishersSeriesListResponseV1

NewPublishersSeriesListResponseV1 instantiates a new PublishersSeriesListResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPublishersSeriesListResponseV1WithDefaults ¶

func NewPublishersSeriesListResponseV1WithDefaults() *PublishersSeriesListResponseV1

NewPublishersSeriesListResponseV1WithDefaults instantiates a new PublishersSeriesListResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PublishersSeriesListResponseV1) GetPublicationList ¶

GetPublicationList returns the PublicationList field value if set, zero value otherwise.

func (*PublishersSeriesListResponseV1) GetPublicationListOk ¶

GetPublicationListOk returns a tuple with the PublicationList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersSeriesListResponseV1) GetSeriesList ¶

GetSeriesList returns the SeriesList field value if set, zero value otherwise.

func (*PublishersSeriesListResponseV1) GetSeriesListOk ¶

GetSeriesListOk returns a tuple with the SeriesList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersSeriesListResponseV1) HasPublicationList ¶

func (o *PublishersSeriesListResponseV1) HasPublicationList() bool

HasPublicationList returns a boolean if a field has been set.

func (*PublishersSeriesListResponseV1) HasSeriesList ¶

func (o *PublishersSeriesListResponseV1) HasSeriesList() bool

HasSeriesList returns a boolean if a field has been set.

func (PublishersSeriesListResponseV1) MarshalJSON ¶

func (o PublishersSeriesListResponseV1) MarshalJSON() ([]byte, error)

func (*PublishersSeriesListResponseV1) SetPublicationList ¶

SetPublicationList gets a reference to the given []PublishersSeriesListResponseV1PublicationList and assigns it to the PublicationList field.

func (*PublishersSeriesListResponseV1) SetSeriesList ¶

SetSeriesList gets a reference to the given []PublishersSeriesListResponseV1SeriesList and assigns it to the SeriesList field.

func (PublishersSeriesListResponseV1) ToMap ¶

func (o PublishersSeriesListResponseV1) ToMap() (map[string]interface{}, error)

type PublishersSeriesListResponseV1PublicationList ¶

type PublishersSeriesListResponseV1PublicationList struct {
	PublicationName *string `json:"publication_name,omitempty"`
	Count           *int64  `json:"count,omitempty"`
}

PublishersSeriesListResponseV1PublicationList struct for PublishersSeriesListResponseV1PublicationList

func NewPublishersSeriesListResponseV1PublicationList ¶

func NewPublishersSeriesListResponseV1PublicationList() *PublishersSeriesListResponseV1PublicationList

NewPublishersSeriesListResponseV1PublicationList instantiates a new PublishersSeriesListResponseV1PublicationList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPublishersSeriesListResponseV1PublicationListWithDefaults ¶

func NewPublishersSeriesListResponseV1PublicationListWithDefaults() *PublishersSeriesListResponseV1PublicationList

NewPublishersSeriesListResponseV1PublicationListWithDefaults instantiates a new PublishersSeriesListResponseV1PublicationList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PublishersSeriesListResponseV1PublicationList) GetCount ¶

GetCount returns the Count field value if set, zero value otherwise.

func (*PublishersSeriesListResponseV1PublicationList) GetCountOk ¶

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersSeriesListResponseV1PublicationList) GetPublicationName ¶

func (o *PublishersSeriesListResponseV1PublicationList) GetPublicationName() string

GetPublicationName returns the PublicationName field value if set, zero value otherwise.

func (*PublishersSeriesListResponseV1PublicationList) GetPublicationNameOk ¶

func (o *PublishersSeriesListResponseV1PublicationList) GetPublicationNameOk() (*string, bool)

GetPublicationNameOk returns a tuple with the PublicationName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersSeriesListResponseV1PublicationList) HasCount ¶

HasCount returns a boolean if a field has been set.

func (*PublishersSeriesListResponseV1PublicationList) HasPublicationName ¶

func (o *PublishersSeriesListResponseV1PublicationList) HasPublicationName() bool

HasPublicationName returns a boolean if a field has been set.

func (PublishersSeriesListResponseV1PublicationList) MarshalJSON ¶

func (*PublishersSeriesListResponseV1PublicationList) SetCount ¶

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*PublishersSeriesListResponseV1PublicationList) SetPublicationName ¶

func (o *PublishersSeriesListResponseV1PublicationList) SetPublicationName(v string)

SetPublicationName gets a reference to the given string and assigns it to the PublicationName field.

func (PublishersSeriesListResponseV1PublicationList) ToMap ¶

func (o PublishersSeriesListResponseV1PublicationList) ToMap() (map[string]interface{}, error)

type PublishersSeriesListResponseV1SeriesList ¶

type PublishersSeriesListResponseV1SeriesList struct {
	Title       *string `json:"title,omitempty"`
	SeriesId    *int64  `json:"series_id,omitempty"`
	Year        *string `json:"year,omitempty"`
	LastUpdated *TimeV1 `json:"last_updated,omitempty"`
}

PublishersSeriesListResponseV1SeriesList struct for PublishersSeriesListResponseV1SeriesList

func NewPublishersSeriesListResponseV1SeriesList ¶

func NewPublishersSeriesListResponseV1SeriesList() *PublishersSeriesListResponseV1SeriesList

NewPublishersSeriesListResponseV1SeriesList instantiates a new PublishersSeriesListResponseV1SeriesList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPublishersSeriesListResponseV1SeriesListWithDefaults ¶

func NewPublishersSeriesListResponseV1SeriesListWithDefaults() *PublishersSeriesListResponseV1SeriesList

NewPublishersSeriesListResponseV1SeriesListWithDefaults instantiates a new PublishersSeriesListResponseV1SeriesList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PublishersSeriesListResponseV1SeriesList) GetLastUpdated ¶

GetLastUpdated returns the LastUpdated field value if set, zero value otherwise.

func (*PublishersSeriesListResponseV1SeriesList) GetLastUpdatedOk ¶

func (o *PublishersSeriesListResponseV1SeriesList) GetLastUpdatedOk() (*TimeV1, bool)

GetLastUpdatedOk returns a tuple with the LastUpdated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersSeriesListResponseV1SeriesList) GetSeriesId ¶

GetSeriesId returns the SeriesId field value if set, zero value otherwise.

func (*PublishersSeriesListResponseV1SeriesList) GetSeriesIdOk ¶

func (o *PublishersSeriesListResponseV1SeriesList) GetSeriesIdOk() (*int64, bool)

GetSeriesIdOk returns a tuple with the SeriesId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersSeriesListResponseV1SeriesList) GetTitle ¶

GetTitle returns the Title field value if set, zero value otherwise.

func (*PublishersSeriesListResponseV1SeriesList) GetTitleOk ¶

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersSeriesListResponseV1SeriesList) GetYear ¶

GetYear returns the Year field value if set, zero value otherwise.

func (*PublishersSeriesListResponseV1SeriesList) GetYearOk ¶

GetYearOk returns a tuple with the Year field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublishersSeriesListResponseV1SeriesList) HasLastUpdated ¶

func (o *PublishersSeriesListResponseV1SeriesList) HasLastUpdated() bool

HasLastUpdated returns a boolean if a field has been set.

func (*PublishersSeriesListResponseV1SeriesList) HasSeriesId ¶

HasSeriesId returns a boolean if a field has been set.

func (*PublishersSeriesListResponseV1SeriesList) HasTitle ¶

HasTitle returns a boolean if a field has been set.

func (*PublishersSeriesListResponseV1SeriesList) HasYear ¶

HasYear returns a boolean if a field has been set.

func (PublishersSeriesListResponseV1SeriesList) MarshalJSON ¶

func (*PublishersSeriesListResponseV1SeriesList) SetLastUpdated ¶

func (o *PublishersSeriesListResponseV1SeriesList) SetLastUpdated(v TimeV1)

SetLastUpdated gets a reference to the given TimeV1 and assigns it to the LastUpdated field.

func (*PublishersSeriesListResponseV1SeriesList) SetSeriesId ¶

SetSeriesId gets a reference to the given int64 and assigns it to the SeriesId field.

func (*PublishersSeriesListResponseV1SeriesList) SetTitle ¶

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*PublishersSeriesListResponseV1SeriesList) SetYear ¶

SetYear gets a reference to the given string and assigns it to the Year field.

func (PublishersSeriesListResponseV1SeriesList) ToMap ¶

func (o PublishersSeriesListResponseV1SeriesList) ToMap() (map[string]interface{}, error)

type ReleaseDaysSearchRequestV1 ¶

type ReleaseDaysSearchRequestV1 struct {
	Page            *int64 `json:"page,omitempty"`
	Perpage         *int64 `json:"perpage,omitempty"`
	IncludeMetadata *bool  `json:"include_metadata,omitempty"`
}

ReleaseDaysSearchRequestV1 struct for ReleaseDaysSearchRequestV1

func NewReleaseDaysSearchRequestV1 ¶

func NewReleaseDaysSearchRequestV1() *ReleaseDaysSearchRequestV1

NewReleaseDaysSearchRequestV1 instantiates a new ReleaseDaysSearchRequestV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseDaysSearchRequestV1WithDefaults ¶

func NewReleaseDaysSearchRequestV1WithDefaults() *ReleaseDaysSearchRequestV1

NewReleaseDaysSearchRequestV1WithDefaults instantiates a new ReleaseDaysSearchRequestV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseDaysSearchRequestV1) GetIncludeMetadata ¶

func (o *ReleaseDaysSearchRequestV1) GetIncludeMetadata() bool

GetIncludeMetadata returns the IncludeMetadata field value if set, zero value otherwise.

func (*ReleaseDaysSearchRequestV1) GetIncludeMetadataOk ¶

func (o *ReleaseDaysSearchRequestV1) GetIncludeMetadataOk() (*bool, bool)

GetIncludeMetadataOk returns a tuple with the IncludeMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseDaysSearchRequestV1) GetPage ¶

func (o *ReleaseDaysSearchRequestV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*ReleaseDaysSearchRequestV1) GetPageOk ¶

func (o *ReleaseDaysSearchRequestV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseDaysSearchRequestV1) GetPerpage ¶

func (o *ReleaseDaysSearchRequestV1) GetPerpage() int64

GetPerpage returns the Perpage field value if set, zero value otherwise.

func (*ReleaseDaysSearchRequestV1) GetPerpageOk ¶

func (o *ReleaseDaysSearchRequestV1) GetPerpageOk() (*int64, bool)

GetPerpageOk returns a tuple with the Perpage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseDaysSearchRequestV1) HasIncludeMetadata ¶

func (o *ReleaseDaysSearchRequestV1) HasIncludeMetadata() bool

HasIncludeMetadata returns a boolean if a field has been set.

func (*ReleaseDaysSearchRequestV1) HasPage ¶

func (o *ReleaseDaysSearchRequestV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*ReleaseDaysSearchRequestV1) HasPerpage ¶

func (o *ReleaseDaysSearchRequestV1) HasPerpage() bool

HasPerpage returns a boolean if a field has been set.

func (ReleaseDaysSearchRequestV1) MarshalJSON ¶

func (o ReleaseDaysSearchRequestV1) MarshalJSON() ([]byte, error)

func (*ReleaseDaysSearchRequestV1) SetIncludeMetadata ¶

func (o *ReleaseDaysSearchRequestV1) SetIncludeMetadata(v bool)

SetIncludeMetadata gets a reference to the given bool and assigns it to the IncludeMetadata field.

func (*ReleaseDaysSearchRequestV1) SetPage ¶

func (o *ReleaseDaysSearchRequestV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*ReleaseDaysSearchRequestV1) SetPerpage ¶

func (o *ReleaseDaysSearchRequestV1) SetPerpage(v int64)

SetPerpage gets a reference to the given int64 and assigns it to the Perpage field.

func (ReleaseDaysSearchRequestV1) ToMap ¶

func (o ReleaseDaysSearchRequestV1) ToMap() (map[string]interface{}, error)

type ReleaseModelSearchV1 ¶

type ReleaseModelSearchV1 struct {
	Id          *int64                       `json:"id,omitempty"`
	Title       *string                      `json:"title,omitempty"`
	Volume      *string                      `json:"volume,omitempty"`
	Chapter     *string                      `json:"chapter,omitempty"`
	Groups      []ReleaseModelSearchV1Groups `json:"groups,omitempty"`
	ReleaseDate *string                      `json:"release_date,omitempty"`
	TimeAdded   *TimeV1                      `json:"time_added,omitempty"`
}

ReleaseModelSearchV1 struct for ReleaseModelSearchV1

func NewReleaseModelSearchV1 ¶

func NewReleaseModelSearchV1() *ReleaseModelSearchV1

NewReleaseModelSearchV1 instantiates a new ReleaseModelSearchV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseModelSearchV1WithDefaults ¶

func NewReleaseModelSearchV1WithDefaults() *ReleaseModelSearchV1

NewReleaseModelSearchV1WithDefaults instantiates a new ReleaseModelSearchV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseModelSearchV1) GetChapter ¶

func (o *ReleaseModelSearchV1) GetChapter() string

GetChapter returns the Chapter field value if set, zero value otherwise.

func (*ReleaseModelSearchV1) GetChapterOk ¶

func (o *ReleaseModelSearchV1) GetChapterOk() (*string, bool)

GetChapterOk returns a tuple with the Chapter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelSearchV1) GetGroups ¶

GetGroups returns the Groups field value if set, zero value otherwise.

func (*ReleaseModelSearchV1) GetGroupsOk ¶

GetGroupsOk returns a tuple with the Groups field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelSearchV1) GetId ¶

func (o *ReleaseModelSearchV1) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*ReleaseModelSearchV1) GetIdOk ¶

func (o *ReleaseModelSearchV1) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelSearchV1) GetReleaseDate ¶

func (o *ReleaseModelSearchV1) GetReleaseDate() string

GetReleaseDate returns the ReleaseDate field value if set, zero value otherwise.

func (*ReleaseModelSearchV1) GetReleaseDateOk ¶

func (o *ReleaseModelSearchV1) GetReleaseDateOk() (*string, bool)

GetReleaseDateOk returns a tuple with the ReleaseDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelSearchV1) GetTimeAdded ¶

func (o *ReleaseModelSearchV1) GetTimeAdded() TimeV1

GetTimeAdded returns the TimeAdded field value if set, zero value otherwise.

func (*ReleaseModelSearchV1) GetTimeAddedOk ¶

func (o *ReleaseModelSearchV1) GetTimeAddedOk() (*TimeV1, bool)

GetTimeAddedOk returns a tuple with the TimeAdded field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelSearchV1) GetTitle ¶

func (o *ReleaseModelSearchV1) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*ReleaseModelSearchV1) GetTitleOk ¶

func (o *ReleaseModelSearchV1) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelSearchV1) GetVolume ¶

func (o *ReleaseModelSearchV1) GetVolume() string

GetVolume returns the Volume field value if set, zero value otherwise.

func (*ReleaseModelSearchV1) GetVolumeOk ¶

func (o *ReleaseModelSearchV1) GetVolumeOk() (*string, bool)

GetVolumeOk returns a tuple with the Volume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelSearchV1) HasChapter ¶

func (o *ReleaseModelSearchV1) HasChapter() bool

HasChapter returns a boolean if a field has been set.

func (*ReleaseModelSearchV1) HasGroups ¶

func (o *ReleaseModelSearchV1) HasGroups() bool

HasGroups returns a boolean if a field has been set.

func (*ReleaseModelSearchV1) HasId ¶

func (o *ReleaseModelSearchV1) HasId() bool

HasId returns a boolean if a field has been set.

func (*ReleaseModelSearchV1) HasReleaseDate ¶

func (o *ReleaseModelSearchV1) HasReleaseDate() bool

HasReleaseDate returns a boolean if a field has been set.

func (*ReleaseModelSearchV1) HasTimeAdded ¶

func (o *ReleaseModelSearchV1) HasTimeAdded() bool

HasTimeAdded returns a boolean if a field has been set.

func (*ReleaseModelSearchV1) HasTitle ¶

func (o *ReleaseModelSearchV1) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*ReleaseModelSearchV1) HasVolume ¶

func (o *ReleaseModelSearchV1) HasVolume() bool

HasVolume returns a boolean if a field has been set.

func (ReleaseModelSearchV1) MarshalJSON ¶

func (o ReleaseModelSearchV1) MarshalJSON() ([]byte, error)

func (*ReleaseModelSearchV1) SetChapter ¶

func (o *ReleaseModelSearchV1) SetChapter(v string)

SetChapter gets a reference to the given string and assigns it to the Chapter field.

func (*ReleaseModelSearchV1) SetGroups ¶

SetGroups gets a reference to the given []ReleaseModelSearchV1Groups and assigns it to the Groups field.

func (*ReleaseModelSearchV1) SetId ¶

func (o *ReleaseModelSearchV1) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*ReleaseModelSearchV1) SetReleaseDate ¶

func (o *ReleaseModelSearchV1) SetReleaseDate(v string)

SetReleaseDate gets a reference to the given string and assigns it to the ReleaseDate field.

func (*ReleaseModelSearchV1) SetTimeAdded ¶

func (o *ReleaseModelSearchV1) SetTimeAdded(v TimeV1)

SetTimeAdded gets a reference to the given TimeV1 and assigns it to the TimeAdded field.

func (*ReleaseModelSearchV1) SetTitle ¶

func (o *ReleaseModelSearchV1) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*ReleaseModelSearchV1) SetVolume ¶

func (o *ReleaseModelSearchV1) SetVolume(v string)

SetVolume gets a reference to the given string and assigns it to the Volume field.

func (ReleaseModelSearchV1) ToMap ¶

func (o ReleaseModelSearchV1) ToMap() (map[string]interface{}, error)

type ReleaseModelSearchV1Groups ¶

type ReleaseModelSearchV1Groups struct {
	Name    *string `json:"name,omitempty"`
	GroupId *int64  `json:"group_id,omitempty"`
}

ReleaseModelSearchV1Groups struct for ReleaseModelSearchV1Groups

func NewReleaseModelSearchV1Groups ¶

func NewReleaseModelSearchV1Groups() *ReleaseModelSearchV1Groups

NewReleaseModelSearchV1Groups instantiates a new ReleaseModelSearchV1Groups object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseModelSearchV1GroupsWithDefaults ¶

func NewReleaseModelSearchV1GroupsWithDefaults() *ReleaseModelSearchV1Groups

NewReleaseModelSearchV1GroupsWithDefaults instantiates a new ReleaseModelSearchV1Groups object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseModelSearchV1Groups) GetGroupId ¶

func (o *ReleaseModelSearchV1Groups) GetGroupId() int64

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*ReleaseModelSearchV1Groups) GetGroupIdOk ¶

func (o *ReleaseModelSearchV1Groups) GetGroupIdOk() (*int64, bool)

GetGroupIdOk returns a tuple with the GroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelSearchV1Groups) GetName ¶

func (o *ReleaseModelSearchV1Groups) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ReleaseModelSearchV1Groups) GetNameOk ¶

func (o *ReleaseModelSearchV1Groups) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelSearchV1Groups) HasGroupId ¶

func (o *ReleaseModelSearchV1Groups) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*ReleaseModelSearchV1Groups) HasName ¶

func (o *ReleaseModelSearchV1Groups) HasName() bool

HasName returns a boolean if a field has been set.

func (ReleaseModelSearchV1Groups) MarshalJSON ¶

func (o ReleaseModelSearchV1Groups) MarshalJSON() ([]byte, error)

func (*ReleaseModelSearchV1Groups) SetGroupId ¶

func (o *ReleaseModelSearchV1Groups) SetGroupId(v int64)

SetGroupId gets a reference to the given int64 and assigns it to the GroupId field.

func (*ReleaseModelSearchV1Groups) SetName ¶

func (o *ReleaseModelSearchV1Groups) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (ReleaseModelSearchV1Groups) ToMap ¶

func (o ReleaseModelSearchV1Groups) ToMap() (map[string]interface{}, error)

type ReleaseModelUpdateV1 ¶

type ReleaseModelUpdateV1 struct {
	Title         *string                      `json:"title,omitempty"`
	Volume        *string                      `json:"volume,omitempty"`
	Chapter       *string                      `json:"chapter,omitempty"`
	Groups        []ReleaseModelUpdateV1Groups `json:"groups,omitempty"`
	ReleaseDate   *string                      `json:"release_date,omitempty"`
	DownloadNotes *string                      `json:"download_notes,omitempty"`
	Comment       *string                      `json:"comment,omitempty"`
	TimeAdded     *TimeUpdateV1                `json:"time_added,omitempty"`
	Admin         *ReleaseModelUpdateV1Admin   `json:"admin,omitempty"`
}

ReleaseModelUpdateV1 struct for ReleaseModelUpdateV1

func NewReleaseModelUpdateV1 ¶

func NewReleaseModelUpdateV1() *ReleaseModelUpdateV1

NewReleaseModelUpdateV1 instantiates a new ReleaseModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseModelUpdateV1WithDefaults ¶

func NewReleaseModelUpdateV1WithDefaults() *ReleaseModelUpdateV1

NewReleaseModelUpdateV1WithDefaults instantiates a new ReleaseModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseModelUpdateV1) GetAdmin ¶

GetAdmin returns the Admin field value if set, zero value otherwise.

func (*ReleaseModelUpdateV1) GetAdminOk ¶

GetAdminOk returns a tuple with the Admin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelUpdateV1) GetChapter ¶

func (o *ReleaseModelUpdateV1) GetChapter() string

GetChapter returns the Chapter field value if set, zero value otherwise.

func (*ReleaseModelUpdateV1) GetChapterOk ¶

func (o *ReleaseModelUpdateV1) GetChapterOk() (*string, bool)

GetChapterOk returns a tuple with the Chapter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelUpdateV1) GetComment ¶

func (o *ReleaseModelUpdateV1) GetComment() string

GetComment returns the Comment field value if set, zero value otherwise.

func (*ReleaseModelUpdateV1) GetCommentOk ¶

func (o *ReleaseModelUpdateV1) GetCommentOk() (*string, bool)

GetCommentOk returns a tuple with the Comment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelUpdateV1) GetDownloadNotes ¶

func (o *ReleaseModelUpdateV1) GetDownloadNotes() string

GetDownloadNotes returns the DownloadNotes field value if set, zero value otherwise.

func (*ReleaseModelUpdateV1) GetDownloadNotesOk ¶

func (o *ReleaseModelUpdateV1) GetDownloadNotesOk() (*string, bool)

GetDownloadNotesOk returns a tuple with the DownloadNotes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelUpdateV1) GetGroups ¶

GetGroups returns the Groups field value if set, zero value otherwise.

func (*ReleaseModelUpdateV1) GetGroupsOk ¶

GetGroupsOk returns a tuple with the Groups field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelUpdateV1) GetReleaseDate ¶

func (o *ReleaseModelUpdateV1) GetReleaseDate() string

GetReleaseDate returns the ReleaseDate field value if set, zero value otherwise.

func (*ReleaseModelUpdateV1) GetReleaseDateOk ¶

func (o *ReleaseModelUpdateV1) GetReleaseDateOk() (*string, bool)

GetReleaseDateOk returns a tuple with the ReleaseDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelUpdateV1) GetTimeAdded ¶

func (o *ReleaseModelUpdateV1) GetTimeAdded() TimeUpdateV1

GetTimeAdded returns the TimeAdded field value if set, zero value otherwise.

func (*ReleaseModelUpdateV1) GetTimeAddedOk ¶

func (o *ReleaseModelUpdateV1) GetTimeAddedOk() (*TimeUpdateV1, bool)

GetTimeAddedOk returns a tuple with the TimeAdded field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelUpdateV1) GetTitle ¶

func (o *ReleaseModelUpdateV1) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*ReleaseModelUpdateV1) GetTitleOk ¶

func (o *ReleaseModelUpdateV1) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelUpdateV1) GetVolume ¶

func (o *ReleaseModelUpdateV1) GetVolume() string

GetVolume returns the Volume field value if set, zero value otherwise.

func (*ReleaseModelUpdateV1) GetVolumeOk ¶

func (o *ReleaseModelUpdateV1) GetVolumeOk() (*string, bool)

GetVolumeOk returns a tuple with the Volume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelUpdateV1) HasAdmin ¶

func (o *ReleaseModelUpdateV1) HasAdmin() bool

HasAdmin returns a boolean if a field has been set.

func (*ReleaseModelUpdateV1) HasChapter ¶

func (o *ReleaseModelUpdateV1) HasChapter() bool

HasChapter returns a boolean if a field has been set.

func (*ReleaseModelUpdateV1) HasComment ¶

func (o *ReleaseModelUpdateV1) HasComment() bool

HasComment returns a boolean if a field has been set.

func (*ReleaseModelUpdateV1) HasDownloadNotes ¶

func (o *ReleaseModelUpdateV1) HasDownloadNotes() bool

HasDownloadNotes returns a boolean if a field has been set.

func (*ReleaseModelUpdateV1) HasGroups ¶

func (o *ReleaseModelUpdateV1) HasGroups() bool

HasGroups returns a boolean if a field has been set.

func (*ReleaseModelUpdateV1) HasReleaseDate ¶

func (o *ReleaseModelUpdateV1) HasReleaseDate() bool

HasReleaseDate returns a boolean if a field has been set.

func (*ReleaseModelUpdateV1) HasTimeAdded ¶

func (o *ReleaseModelUpdateV1) HasTimeAdded() bool

HasTimeAdded returns a boolean if a field has been set.

func (*ReleaseModelUpdateV1) HasTitle ¶

func (o *ReleaseModelUpdateV1) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*ReleaseModelUpdateV1) HasVolume ¶

func (o *ReleaseModelUpdateV1) HasVolume() bool

HasVolume returns a boolean if a field has been set.

func (ReleaseModelUpdateV1) MarshalJSON ¶

func (o ReleaseModelUpdateV1) MarshalJSON() ([]byte, error)

func (*ReleaseModelUpdateV1) SetAdmin ¶

SetAdmin gets a reference to the given ReleaseModelUpdateV1Admin and assigns it to the Admin field.

func (*ReleaseModelUpdateV1) SetChapter ¶

func (o *ReleaseModelUpdateV1) SetChapter(v string)

SetChapter gets a reference to the given string and assigns it to the Chapter field.

func (*ReleaseModelUpdateV1) SetComment ¶

func (o *ReleaseModelUpdateV1) SetComment(v string)

SetComment gets a reference to the given string and assigns it to the Comment field.

func (*ReleaseModelUpdateV1) SetDownloadNotes ¶

func (o *ReleaseModelUpdateV1) SetDownloadNotes(v string)

SetDownloadNotes gets a reference to the given string and assigns it to the DownloadNotes field.

func (*ReleaseModelUpdateV1) SetGroups ¶

SetGroups gets a reference to the given []ReleaseModelUpdateV1Groups and assigns it to the Groups field.

func (*ReleaseModelUpdateV1) SetReleaseDate ¶

func (o *ReleaseModelUpdateV1) SetReleaseDate(v string)

SetReleaseDate gets a reference to the given string and assigns it to the ReleaseDate field.

func (*ReleaseModelUpdateV1) SetTimeAdded ¶

func (o *ReleaseModelUpdateV1) SetTimeAdded(v TimeUpdateV1)

SetTimeAdded gets a reference to the given TimeUpdateV1 and assigns it to the TimeAdded field.

func (*ReleaseModelUpdateV1) SetTitle ¶

func (o *ReleaseModelUpdateV1) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*ReleaseModelUpdateV1) SetVolume ¶

func (o *ReleaseModelUpdateV1) SetVolume(v string)

SetVolume gets a reference to the given string and assigns it to the Volume field.

func (ReleaseModelUpdateV1) ToMap ¶

func (o ReleaseModelUpdateV1) ToMap() (map[string]interface{}, error)

type ReleaseModelUpdateV1Admin ¶

type ReleaseModelUpdateV1Admin struct {
	Approved *bool `json:"approved,omitempty"`
	Archived *bool `json:"archived,omitempty"`
}

ReleaseModelUpdateV1Admin struct for ReleaseModelUpdateV1Admin

func NewReleaseModelUpdateV1Admin ¶

func NewReleaseModelUpdateV1Admin() *ReleaseModelUpdateV1Admin

NewReleaseModelUpdateV1Admin instantiates a new ReleaseModelUpdateV1Admin object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseModelUpdateV1AdminWithDefaults ¶

func NewReleaseModelUpdateV1AdminWithDefaults() *ReleaseModelUpdateV1Admin

NewReleaseModelUpdateV1AdminWithDefaults instantiates a new ReleaseModelUpdateV1Admin object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseModelUpdateV1Admin) GetApproved ¶

func (o *ReleaseModelUpdateV1Admin) GetApproved() bool

GetApproved returns the Approved field value if set, zero value otherwise.

func (*ReleaseModelUpdateV1Admin) GetApprovedOk ¶

func (o *ReleaseModelUpdateV1Admin) GetApprovedOk() (*bool, bool)

GetApprovedOk returns a tuple with the Approved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelUpdateV1Admin) GetArchived ¶

func (o *ReleaseModelUpdateV1Admin) GetArchived() bool

GetArchived returns the Archived field value if set, zero value otherwise.

func (*ReleaseModelUpdateV1Admin) GetArchivedOk ¶

func (o *ReleaseModelUpdateV1Admin) GetArchivedOk() (*bool, bool)

GetArchivedOk returns a tuple with the Archived field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelUpdateV1Admin) HasApproved ¶

func (o *ReleaseModelUpdateV1Admin) HasApproved() bool

HasApproved returns a boolean if a field has been set.

func (*ReleaseModelUpdateV1Admin) HasArchived ¶

func (o *ReleaseModelUpdateV1Admin) HasArchived() bool

HasArchived returns a boolean if a field has been set.

func (ReleaseModelUpdateV1Admin) MarshalJSON ¶

func (o ReleaseModelUpdateV1Admin) MarshalJSON() ([]byte, error)

func (*ReleaseModelUpdateV1Admin) SetApproved ¶

func (o *ReleaseModelUpdateV1Admin) SetApproved(v bool)

SetApproved gets a reference to the given bool and assigns it to the Approved field.

func (*ReleaseModelUpdateV1Admin) SetArchived ¶

func (o *ReleaseModelUpdateV1Admin) SetArchived(v bool)

SetArchived gets a reference to the given bool and assigns it to the Archived field.

func (ReleaseModelUpdateV1Admin) ToMap ¶

func (o ReleaseModelUpdateV1Admin) ToMap() (map[string]interface{}, error)

type ReleaseModelUpdateV1Groups ¶

type ReleaseModelUpdateV1Groups struct {
	Name *string `json:"name,omitempty"`
}

ReleaseModelUpdateV1Groups struct for ReleaseModelUpdateV1Groups

func NewReleaseModelUpdateV1Groups ¶

func NewReleaseModelUpdateV1Groups() *ReleaseModelUpdateV1Groups

NewReleaseModelUpdateV1Groups instantiates a new ReleaseModelUpdateV1Groups object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseModelUpdateV1GroupsWithDefaults ¶

func NewReleaseModelUpdateV1GroupsWithDefaults() *ReleaseModelUpdateV1Groups

NewReleaseModelUpdateV1GroupsWithDefaults instantiates a new ReleaseModelUpdateV1Groups object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseModelUpdateV1Groups) GetName ¶

func (o *ReleaseModelUpdateV1Groups) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ReleaseModelUpdateV1Groups) GetNameOk ¶

func (o *ReleaseModelUpdateV1Groups) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelUpdateV1Groups) HasName ¶

func (o *ReleaseModelUpdateV1Groups) HasName() bool

HasName returns a boolean if a field has been set.

func (ReleaseModelUpdateV1Groups) MarshalJSON ¶

func (o ReleaseModelUpdateV1Groups) MarshalJSON() ([]byte, error)

func (*ReleaseModelUpdateV1Groups) SetName ¶

func (o *ReleaseModelUpdateV1Groups) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (ReleaseModelUpdateV1Groups) ToMap ¶

func (o ReleaseModelUpdateV1Groups) ToMap() (map[string]interface{}, error)

type ReleaseModelV1 ¶

type ReleaseModelV1 struct {
	Id            *int64                 `json:"id,omitempty"`
	Title         *string                `json:"title,omitempty"`
	Volume        *string                `json:"volume,omitempty"`
	Chapter       *string                `json:"chapter,omitempty"`
	Groups        []ReleaseModelV1Groups `json:"groups,omitempty"`
	ReleaseDate   *string                `json:"release_date,omitempty"`
	DownloadNotes *string                `json:"download_notes,omitempty"`
	Comment       *string                `json:"comment,omitempty"`
	TimeAdded     *TimeV1                `json:"time_added,omitempty"`
	Admin         *ReleaseModelV1Admin   `json:"admin,omitempty"`
}

ReleaseModelV1 struct for ReleaseModelV1

func NewReleaseModelV1 ¶

func NewReleaseModelV1() *ReleaseModelV1

NewReleaseModelV1 instantiates a new ReleaseModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseModelV1WithDefaults ¶

func NewReleaseModelV1WithDefaults() *ReleaseModelV1

NewReleaseModelV1WithDefaults instantiates a new ReleaseModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseModelV1) GetAdmin ¶

func (o *ReleaseModelV1) GetAdmin() ReleaseModelV1Admin

GetAdmin returns the Admin field value if set, zero value otherwise.

func (*ReleaseModelV1) GetAdminOk ¶

func (o *ReleaseModelV1) GetAdminOk() (*ReleaseModelV1Admin, bool)

GetAdminOk returns a tuple with the Admin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelV1) GetChapter ¶

func (o *ReleaseModelV1) GetChapter() string

GetChapter returns the Chapter field value if set, zero value otherwise.

func (*ReleaseModelV1) GetChapterOk ¶

func (o *ReleaseModelV1) GetChapterOk() (*string, bool)

GetChapterOk returns a tuple with the Chapter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelV1) GetComment ¶

func (o *ReleaseModelV1) GetComment() string

GetComment returns the Comment field value if set, zero value otherwise.

func (*ReleaseModelV1) GetCommentOk ¶

func (o *ReleaseModelV1) GetCommentOk() (*string, bool)

GetCommentOk returns a tuple with the Comment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelV1) GetDownloadNotes ¶

func (o *ReleaseModelV1) GetDownloadNotes() string

GetDownloadNotes returns the DownloadNotes field value if set, zero value otherwise.

func (*ReleaseModelV1) GetDownloadNotesOk ¶

func (o *ReleaseModelV1) GetDownloadNotesOk() (*string, bool)

GetDownloadNotesOk returns a tuple with the DownloadNotes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelV1) GetGroups ¶

func (o *ReleaseModelV1) GetGroups() []ReleaseModelV1Groups

GetGroups returns the Groups field value if set, zero value otherwise.

func (*ReleaseModelV1) GetGroupsOk ¶

func (o *ReleaseModelV1) GetGroupsOk() ([]ReleaseModelV1Groups, bool)

GetGroupsOk returns a tuple with the Groups field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelV1) GetId ¶

func (o *ReleaseModelV1) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*ReleaseModelV1) GetIdOk ¶

func (o *ReleaseModelV1) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelV1) GetReleaseDate ¶

func (o *ReleaseModelV1) GetReleaseDate() string

GetReleaseDate returns the ReleaseDate field value if set, zero value otherwise.

func (*ReleaseModelV1) GetReleaseDateOk ¶

func (o *ReleaseModelV1) GetReleaseDateOk() (*string, bool)

GetReleaseDateOk returns a tuple with the ReleaseDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelV1) GetTimeAdded ¶

func (o *ReleaseModelV1) GetTimeAdded() TimeV1

GetTimeAdded returns the TimeAdded field value if set, zero value otherwise.

func (*ReleaseModelV1) GetTimeAddedOk ¶

func (o *ReleaseModelV1) GetTimeAddedOk() (*TimeV1, bool)

GetTimeAddedOk returns a tuple with the TimeAdded field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelV1) GetTitle ¶

func (o *ReleaseModelV1) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*ReleaseModelV1) GetTitleOk ¶

func (o *ReleaseModelV1) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelV1) GetVolume ¶

func (o *ReleaseModelV1) GetVolume() string

GetVolume returns the Volume field value if set, zero value otherwise.

func (*ReleaseModelV1) GetVolumeOk ¶

func (o *ReleaseModelV1) GetVolumeOk() (*string, bool)

GetVolumeOk returns a tuple with the Volume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelV1) HasAdmin ¶

func (o *ReleaseModelV1) HasAdmin() bool

HasAdmin returns a boolean if a field has been set.

func (*ReleaseModelV1) HasChapter ¶

func (o *ReleaseModelV1) HasChapter() bool

HasChapter returns a boolean if a field has been set.

func (*ReleaseModelV1) HasComment ¶

func (o *ReleaseModelV1) HasComment() bool

HasComment returns a boolean if a field has been set.

func (*ReleaseModelV1) HasDownloadNotes ¶

func (o *ReleaseModelV1) HasDownloadNotes() bool

HasDownloadNotes returns a boolean if a field has been set.

func (*ReleaseModelV1) HasGroups ¶

func (o *ReleaseModelV1) HasGroups() bool

HasGroups returns a boolean if a field has been set.

func (*ReleaseModelV1) HasId ¶

func (o *ReleaseModelV1) HasId() bool

HasId returns a boolean if a field has been set.

func (*ReleaseModelV1) HasReleaseDate ¶

func (o *ReleaseModelV1) HasReleaseDate() bool

HasReleaseDate returns a boolean if a field has been set.

func (*ReleaseModelV1) HasTimeAdded ¶

func (o *ReleaseModelV1) HasTimeAdded() bool

HasTimeAdded returns a boolean if a field has been set.

func (*ReleaseModelV1) HasTitle ¶

func (o *ReleaseModelV1) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*ReleaseModelV1) HasVolume ¶

func (o *ReleaseModelV1) HasVolume() bool

HasVolume returns a boolean if a field has been set.

func (ReleaseModelV1) MarshalJSON ¶

func (o ReleaseModelV1) MarshalJSON() ([]byte, error)

func (*ReleaseModelV1) SetAdmin ¶

func (o *ReleaseModelV1) SetAdmin(v ReleaseModelV1Admin)

SetAdmin gets a reference to the given ReleaseModelV1Admin and assigns it to the Admin field.

func (*ReleaseModelV1) SetChapter ¶

func (o *ReleaseModelV1) SetChapter(v string)

SetChapter gets a reference to the given string and assigns it to the Chapter field.

func (*ReleaseModelV1) SetComment ¶

func (o *ReleaseModelV1) SetComment(v string)

SetComment gets a reference to the given string and assigns it to the Comment field.

func (*ReleaseModelV1) SetDownloadNotes ¶

func (o *ReleaseModelV1) SetDownloadNotes(v string)

SetDownloadNotes gets a reference to the given string and assigns it to the DownloadNotes field.

func (*ReleaseModelV1) SetGroups ¶

func (o *ReleaseModelV1) SetGroups(v []ReleaseModelV1Groups)

SetGroups gets a reference to the given []ReleaseModelV1Groups and assigns it to the Groups field.

func (*ReleaseModelV1) SetId ¶

func (o *ReleaseModelV1) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*ReleaseModelV1) SetReleaseDate ¶

func (o *ReleaseModelV1) SetReleaseDate(v string)

SetReleaseDate gets a reference to the given string and assigns it to the ReleaseDate field.

func (*ReleaseModelV1) SetTimeAdded ¶

func (o *ReleaseModelV1) SetTimeAdded(v TimeV1)

SetTimeAdded gets a reference to the given TimeV1 and assigns it to the TimeAdded field.

func (*ReleaseModelV1) SetTitle ¶

func (o *ReleaseModelV1) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*ReleaseModelV1) SetVolume ¶

func (o *ReleaseModelV1) SetVolume(v string)

SetVolume gets a reference to the given string and assigns it to the Volume field.

func (ReleaseModelV1) ToMap ¶

func (o ReleaseModelV1) ToMap() (map[string]interface{}, error)

type ReleaseModelV1Admin ¶

type ReleaseModelV1Admin struct {
	Approved *bool              `json:"approved,omitempty"`
	Archived *bool              `json:"archived,omitempty"`
	AddedBy  *UserModelSearchV1 `json:"added_by,omitempty"`
}

ReleaseModelV1Admin struct for ReleaseModelV1Admin

func NewReleaseModelV1Admin ¶

func NewReleaseModelV1Admin() *ReleaseModelV1Admin

NewReleaseModelV1Admin instantiates a new ReleaseModelV1Admin object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseModelV1AdminWithDefaults ¶

func NewReleaseModelV1AdminWithDefaults() *ReleaseModelV1Admin

NewReleaseModelV1AdminWithDefaults instantiates a new ReleaseModelV1Admin object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseModelV1Admin) GetAddedBy ¶

func (o *ReleaseModelV1Admin) GetAddedBy() UserModelSearchV1

GetAddedBy returns the AddedBy field value if set, zero value otherwise.

func (*ReleaseModelV1Admin) GetAddedByOk ¶

func (o *ReleaseModelV1Admin) GetAddedByOk() (*UserModelSearchV1, bool)

GetAddedByOk returns a tuple with the AddedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelV1Admin) GetApproved ¶

func (o *ReleaseModelV1Admin) GetApproved() bool

GetApproved returns the Approved field value if set, zero value otherwise.

func (*ReleaseModelV1Admin) GetApprovedOk ¶

func (o *ReleaseModelV1Admin) GetApprovedOk() (*bool, bool)

GetApprovedOk returns a tuple with the Approved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelV1Admin) GetArchived ¶

func (o *ReleaseModelV1Admin) GetArchived() bool

GetArchived returns the Archived field value if set, zero value otherwise.

func (*ReleaseModelV1Admin) GetArchivedOk ¶

func (o *ReleaseModelV1Admin) GetArchivedOk() (*bool, bool)

GetArchivedOk returns a tuple with the Archived field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelV1Admin) HasAddedBy ¶

func (o *ReleaseModelV1Admin) HasAddedBy() bool

HasAddedBy returns a boolean if a field has been set.

func (*ReleaseModelV1Admin) HasApproved ¶

func (o *ReleaseModelV1Admin) HasApproved() bool

HasApproved returns a boolean if a field has been set.

func (*ReleaseModelV1Admin) HasArchived ¶

func (o *ReleaseModelV1Admin) HasArchived() bool

HasArchived returns a boolean if a field has been set.

func (ReleaseModelV1Admin) MarshalJSON ¶

func (o ReleaseModelV1Admin) MarshalJSON() ([]byte, error)

func (*ReleaseModelV1Admin) SetAddedBy ¶

func (o *ReleaseModelV1Admin) SetAddedBy(v UserModelSearchV1)

SetAddedBy gets a reference to the given UserModelSearchV1 and assigns it to the AddedBy field.

func (*ReleaseModelV1Admin) SetApproved ¶

func (o *ReleaseModelV1Admin) SetApproved(v bool)

SetApproved gets a reference to the given bool and assigns it to the Approved field.

func (*ReleaseModelV1Admin) SetArchived ¶

func (o *ReleaseModelV1Admin) SetArchived(v bool)

SetArchived gets a reference to the given bool and assigns it to the Archived field.

func (ReleaseModelV1Admin) ToMap ¶

func (o ReleaseModelV1Admin) ToMap() (map[string]interface{}, error)

type ReleaseModelV1Groups ¶

type ReleaseModelV1Groups struct {
	Name    *string `json:"name,omitempty"`
	GroupId *int64  `json:"group_id,omitempty"`
}

ReleaseModelV1Groups struct for ReleaseModelV1Groups

func NewReleaseModelV1Groups ¶

func NewReleaseModelV1Groups() *ReleaseModelV1Groups

NewReleaseModelV1Groups instantiates a new ReleaseModelV1Groups object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseModelV1GroupsWithDefaults ¶

func NewReleaseModelV1GroupsWithDefaults() *ReleaseModelV1Groups

NewReleaseModelV1GroupsWithDefaults instantiates a new ReleaseModelV1Groups object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseModelV1Groups) GetGroupId ¶

func (o *ReleaseModelV1Groups) GetGroupId() int64

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*ReleaseModelV1Groups) GetGroupIdOk ¶

func (o *ReleaseModelV1Groups) GetGroupIdOk() (*int64, bool)

GetGroupIdOk returns a tuple with the GroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelV1Groups) GetName ¶

func (o *ReleaseModelV1Groups) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ReleaseModelV1Groups) GetNameOk ¶

func (o *ReleaseModelV1Groups) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModelV1Groups) HasGroupId ¶

func (o *ReleaseModelV1Groups) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*ReleaseModelV1Groups) HasName ¶

func (o *ReleaseModelV1Groups) HasName() bool

HasName returns a boolean if a field has been set.

func (ReleaseModelV1Groups) MarshalJSON ¶

func (o ReleaseModelV1Groups) MarshalJSON() ([]byte, error)

func (*ReleaseModelV1Groups) SetGroupId ¶

func (o *ReleaseModelV1Groups) SetGroupId(v int64)

SetGroupId gets a reference to the given int64 and assigns it to the GroupId field.

func (*ReleaseModelV1Groups) SetName ¶

func (o *ReleaseModelV1Groups) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (ReleaseModelV1Groups) ToMap ¶

func (o ReleaseModelV1Groups) ToMap() (map[string]interface{}, error)

type ReleaseModerateRequestV1 ¶

type ReleaseModerateRequestV1 struct {
	Archived      *bool  `json:"archived,omitempty"`
	DisablePaging *bool  `json:"disable_paging,omitempty"`
	Page          *int64 `json:"page,omitempty"`
	Perpage       *int64 `json:"perpage,omitempty"`
}

ReleaseModerateRequestV1 struct for ReleaseModerateRequestV1

func NewReleaseModerateRequestV1 ¶

func NewReleaseModerateRequestV1() *ReleaseModerateRequestV1

NewReleaseModerateRequestV1 instantiates a new ReleaseModerateRequestV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseModerateRequestV1WithDefaults ¶

func NewReleaseModerateRequestV1WithDefaults() *ReleaseModerateRequestV1

NewReleaseModerateRequestV1WithDefaults instantiates a new ReleaseModerateRequestV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseModerateRequestV1) GetArchived ¶

func (o *ReleaseModerateRequestV1) GetArchived() bool

GetArchived returns the Archived field value if set, zero value otherwise.

func (*ReleaseModerateRequestV1) GetArchivedOk ¶

func (o *ReleaseModerateRequestV1) GetArchivedOk() (*bool, bool)

GetArchivedOk returns a tuple with the Archived field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModerateRequestV1) GetDisablePaging ¶

func (o *ReleaseModerateRequestV1) GetDisablePaging() bool

GetDisablePaging returns the DisablePaging field value if set, zero value otherwise.

func (*ReleaseModerateRequestV1) GetDisablePagingOk ¶

func (o *ReleaseModerateRequestV1) GetDisablePagingOk() (*bool, bool)

GetDisablePagingOk returns a tuple with the DisablePaging field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModerateRequestV1) GetPage ¶

func (o *ReleaseModerateRequestV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*ReleaseModerateRequestV1) GetPageOk ¶

func (o *ReleaseModerateRequestV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModerateRequestV1) GetPerpage ¶

func (o *ReleaseModerateRequestV1) GetPerpage() int64

GetPerpage returns the Perpage field value if set, zero value otherwise.

func (*ReleaseModerateRequestV1) GetPerpageOk ¶

func (o *ReleaseModerateRequestV1) GetPerpageOk() (*int64, bool)

GetPerpageOk returns a tuple with the Perpage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModerateRequestV1) HasArchived ¶

func (o *ReleaseModerateRequestV1) HasArchived() bool

HasArchived returns a boolean if a field has been set.

func (*ReleaseModerateRequestV1) HasDisablePaging ¶

func (o *ReleaseModerateRequestV1) HasDisablePaging() bool

HasDisablePaging returns a boolean if a field has been set.

func (*ReleaseModerateRequestV1) HasPage ¶

func (o *ReleaseModerateRequestV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*ReleaseModerateRequestV1) HasPerpage ¶

func (o *ReleaseModerateRequestV1) HasPerpage() bool

HasPerpage returns a boolean if a field has been set.

func (ReleaseModerateRequestV1) MarshalJSON ¶

func (o ReleaseModerateRequestV1) MarshalJSON() ([]byte, error)

func (*ReleaseModerateRequestV1) SetArchived ¶

func (o *ReleaseModerateRequestV1) SetArchived(v bool)

SetArchived gets a reference to the given bool and assigns it to the Archived field.

func (*ReleaseModerateRequestV1) SetDisablePaging ¶

func (o *ReleaseModerateRequestV1) SetDisablePaging(v bool)

SetDisablePaging gets a reference to the given bool and assigns it to the DisablePaging field.

func (*ReleaseModerateRequestV1) SetPage ¶

func (o *ReleaseModerateRequestV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*ReleaseModerateRequestV1) SetPerpage ¶

func (o *ReleaseModerateRequestV1) SetPerpage(v int64)

SetPerpage gets a reference to the given int64 and assigns it to the Perpage field.

func (ReleaseModerateRequestV1) ToMap ¶

func (o ReleaseModerateRequestV1) ToMap() (map[string]interface{}, error)

type ReleaseModerateResponseV1 ¶

type ReleaseModerateResponseV1 struct {
	TotalHits *int64                               `json:"total_hits,omitempty"`
	Page      *int64                               `json:"page,omitempty"`
	PerPage   *int64                               `json:"per_page,omitempty"`
	Results   []ReleaseModerateResponseV1Results   `json:"results,omitempty"`
	GroupInfo []ReleaseModerateResponseV1GroupInfo `json:"group_info,omitempty"`
}

ReleaseModerateResponseV1 struct for ReleaseModerateResponseV1

func NewReleaseModerateResponseV1 ¶

func NewReleaseModerateResponseV1() *ReleaseModerateResponseV1

NewReleaseModerateResponseV1 instantiates a new ReleaseModerateResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseModerateResponseV1WithDefaults ¶

func NewReleaseModerateResponseV1WithDefaults() *ReleaseModerateResponseV1

NewReleaseModerateResponseV1WithDefaults instantiates a new ReleaseModerateResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseModerateResponseV1) GetGroupInfo ¶

GetGroupInfo returns the GroupInfo field value if set, zero value otherwise.

func (*ReleaseModerateResponseV1) GetGroupInfoOk ¶

GetGroupInfoOk returns a tuple with the GroupInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModerateResponseV1) GetPage ¶

func (o *ReleaseModerateResponseV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*ReleaseModerateResponseV1) GetPageOk ¶

func (o *ReleaseModerateResponseV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModerateResponseV1) GetPerPage ¶

func (o *ReleaseModerateResponseV1) GetPerPage() int64

GetPerPage returns the PerPage field value if set, zero value otherwise.

func (*ReleaseModerateResponseV1) GetPerPageOk ¶

func (o *ReleaseModerateResponseV1) GetPerPageOk() (*int64, bool)

GetPerPageOk returns a tuple with the PerPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModerateResponseV1) GetResults ¶

GetResults returns the Results field value if set, zero value otherwise.

func (*ReleaseModerateResponseV1) GetResultsOk ¶

GetResultsOk returns a tuple with the Results field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModerateResponseV1) GetTotalHits ¶

func (o *ReleaseModerateResponseV1) GetTotalHits() int64

GetTotalHits returns the TotalHits field value if set, zero value otherwise.

func (*ReleaseModerateResponseV1) GetTotalHitsOk ¶

func (o *ReleaseModerateResponseV1) GetTotalHitsOk() (*int64, bool)

GetTotalHitsOk returns a tuple with the TotalHits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModerateResponseV1) HasGroupInfo ¶

func (o *ReleaseModerateResponseV1) HasGroupInfo() bool

HasGroupInfo returns a boolean if a field has been set.

func (*ReleaseModerateResponseV1) HasPage ¶

func (o *ReleaseModerateResponseV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*ReleaseModerateResponseV1) HasPerPage ¶

func (o *ReleaseModerateResponseV1) HasPerPage() bool

HasPerPage returns a boolean if a field has been set.

func (*ReleaseModerateResponseV1) HasResults ¶

func (o *ReleaseModerateResponseV1) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*ReleaseModerateResponseV1) HasTotalHits ¶

func (o *ReleaseModerateResponseV1) HasTotalHits() bool

HasTotalHits returns a boolean if a field has been set.

func (ReleaseModerateResponseV1) MarshalJSON ¶

func (o ReleaseModerateResponseV1) MarshalJSON() ([]byte, error)

func (*ReleaseModerateResponseV1) SetGroupInfo ¶

SetGroupInfo gets a reference to the given []ReleaseModerateResponseV1GroupInfo and assigns it to the GroupInfo field.

func (*ReleaseModerateResponseV1) SetPage ¶

func (o *ReleaseModerateResponseV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*ReleaseModerateResponseV1) SetPerPage ¶

func (o *ReleaseModerateResponseV1) SetPerPage(v int64)

SetPerPage gets a reference to the given int64 and assigns it to the PerPage field.

func (*ReleaseModerateResponseV1) SetResults ¶

SetResults gets a reference to the given []ReleaseModerateResponseV1Results and assigns it to the Results field.

func (*ReleaseModerateResponseV1) SetTotalHits ¶

func (o *ReleaseModerateResponseV1) SetTotalHits(v int64)

SetTotalHits gets a reference to the given int64 and assigns it to the TotalHits field.

func (ReleaseModerateResponseV1) ToMap ¶

func (o ReleaseModerateResponseV1) ToMap() (map[string]interface{}, error)

type ReleaseModerateResponseV1GroupInfo ¶

type ReleaseModerateResponseV1GroupInfo struct {
	GroupId *int64 `json:"group_id,omitempty"`
	Hold    *bool  `json:"hold,omitempty"`
}

ReleaseModerateResponseV1GroupInfo struct for ReleaseModerateResponseV1GroupInfo

func NewReleaseModerateResponseV1GroupInfo ¶

func NewReleaseModerateResponseV1GroupInfo() *ReleaseModerateResponseV1GroupInfo

NewReleaseModerateResponseV1GroupInfo instantiates a new ReleaseModerateResponseV1GroupInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseModerateResponseV1GroupInfoWithDefaults ¶

func NewReleaseModerateResponseV1GroupInfoWithDefaults() *ReleaseModerateResponseV1GroupInfo

NewReleaseModerateResponseV1GroupInfoWithDefaults instantiates a new ReleaseModerateResponseV1GroupInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseModerateResponseV1GroupInfo) GetGroupId ¶

func (o *ReleaseModerateResponseV1GroupInfo) GetGroupId() int64

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*ReleaseModerateResponseV1GroupInfo) GetGroupIdOk ¶

func (o *ReleaseModerateResponseV1GroupInfo) GetGroupIdOk() (*int64, bool)

GetGroupIdOk returns a tuple with the GroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModerateResponseV1GroupInfo) GetHold ¶

GetHold returns the Hold field value if set, zero value otherwise.

func (*ReleaseModerateResponseV1GroupInfo) GetHoldOk ¶

func (o *ReleaseModerateResponseV1GroupInfo) GetHoldOk() (*bool, bool)

GetHoldOk returns a tuple with the Hold field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModerateResponseV1GroupInfo) HasGroupId ¶

func (o *ReleaseModerateResponseV1GroupInfo) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*ReleaseModerateResponseV1GroupInfo) HasHold ¶

HasHold returns a boolean if a field has been set.

func (ReleaseModerateResponseV1GroupInfo) MarshalJSON ¶

func (o ReleaseModerateResponseV1GroupInfo) MarshalJSON() ([]byte, error)

func (*ReleaseModerateResponseV1GroupInfo) SetGroupId ¶

func (o *ReleaseModerateResponseV1GroupInfo) SetGroupId(v int64)

SetGroupId gets a reference to the given int64 and assigns it to the GroupId field.

func (*ReleaseModerateResponseV1GroupInfo) SetHold ¶

SetHold gets a reference to the given bool and assigns it to the Hold field.

func (ReleaseModerateResponseV1GroupInfo) ToMap ¶

func (o ReleaseModerateResponseV1GroupInfo) ToMap() (map[string]interface{}, error)

type ReleaseModerateResponseV1Results ¶

type ReleaseModerateResponseV1Results struct {
	Record   *ReleaseModelV1                           `json:"record,omitempty"`
	Metadata *ReleaseModerateResponseV1ResultsMetadata `json:"metadata,omitempty"`
}

ReleaseModerateResponseV1Results struct for ReleaseModerateResponseV1Results

func NewReleaseModerateResponseV1Results ¶

func NewReleaseModerateResponseV1Results() *ReleaseModerateResponseV1Results

NewReleaseModerateResponseV1Results instantiates a new ReleaseModerateResponseV1Results object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseModerateResponseV1ResultsWithDefaults ¶

func NewReleaseModerateResponseV1ResultsWithDefaults() *ReleaseModerateResponseV1Results

NewReleaseModerateResponseV1ResultsWithDefaults instantiates a new ReleaseModerateResponseV1Results object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseModerateResponseV1Results) GetMetadata ¶

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ReleaseModerateResponseV1Results) GetMetadataOk ¶

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModerateResponseV1Results) GetRecord ¶

GetRecord returns the Record field value if set, zero value otherwise.

func (*ReleaseModerateResponseV1Results) GetRecordOk ¶

GetRecordOk returns a tuple with the Record field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModerateResponseV1Results) HasMetadata ¶

func (o *ReleaseModerateResponseV1Results) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ReleaseModerateResponseV1Results) HasRecord ¶

func (o *ReleaseModerateResponseV1Results) HasRecord() bool

HasRecord returns a boolean if a field has been set.

func (ReleaseModerateResponseV1Results) MarshalJSON ¶

func (o ReleaseModerateResponseV1Results) MarshalJSON() ([]byte, error)

func (*ReleaseModerateResponseV1Results) SetMetadata ¶

SetMetadata gets a reference to the given ReleaseModerateResponseV1ResultsMetadata and assigns it to the Metadata field.

func (*ReleaseModerateResponseV1Results) SetRecord ¶

SetRecord gets a reference to the given ReleaseModelV1 and assigns it to the Record field.

func (ReleaseModerateResponseV1Results) ToMap ¶

func (o ReleaseModerateResponseV1Results) ToMap() (map[string]interface{}, error)

type ReleaseModerateResponseV1ResultsMetadata ¶

type ReleaseModerateResponseV1ResultsMetadata struct {
	Series       *int64           `json:"series,omitempty"`
	LikeReleases []ReleaseModelV1 `json:"like_releases,omitempty"`
}

ReleaseModerateResponseV1ResultsMetadata struct for ReleaseModerateResponseV1ResultsMetadata

func NewReleaseModerateResponseV1ResultsMetadata ¶

func NewReleaseModerateResponseV1ResultsMetadata() *ReleaseModerateResponseV1ResultsMetadata

NewReleaseModerateResponseV1ResultsMetadata instantiates a new ReleaseModerateResponseV1ResultsMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseModerateResponseV1ResultsMetadataWithDefaults ¶

func NewReleaseModerateResponseV1ResultsMetadataWithDefaults() *ReleaseModerateResponseV1ResultsMetadata

NewReleaseModerateResponseV1ResultsMetadataWithDefaults instantiates a new ReleaseModerateResponseV1ResultsMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseModerateResponseV1ResultsMetadata) GetLikeReleases ¶

GetLikeReleases returns the LikeReleases field value if set, zero value otherwise.

func (*ReleaseModerateResponseV1ResultsMetadata) GetLikeReleasesOk ¶

func (o *ReleaseModerateResponseV1ResultsMetadata) GetLikeReleasesOk() ([]ReleaseModelV1, bool)

GetLikeReleasesOk returns a tuple with the LikeReleases field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModerateResponseV1ResultsMetadata) GetSeries ¶

GetSeries returns the Series field value if set, zero value otherwise.

func (*ReleaseModerateResponseV1ResultsMetadata) GetSeriesOk ¶

GetSeriesOk returns a tuple with the Series field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseModerateResponseV1ResultsMetadata) HasLikeReleases ¶

func (o *ReleaseModerateResponseV1ResultsMetadata) HasLikeReleases() bool

HasLikeReleases returns a boolean if a field has been set.

func (*ReleaseModerateResponseV1ResultsMetadata) HasSeries ¶

HasSeries returns a boolean if a field has been set.

func (ReleaseModerateResponseV1ResultsMetadata) MarshalJSON ¶

func (*ReleaseModerateResponseV1ResultsMetadata) SetLikeReleases ¶

SetLikeReleases gets a reference to the given []ReleaseModelV1 and assigns it to the LikeReleases field.

func (*ReleaseModerateResponseV1ResultsMetadata) SetSeries ¶

SetSeries gets a reference to the given int64 and assigns it to the Series field.

func (ReleaseModerateResponseV1ResultsMetadata) ToMap ¶

func (o ReleaseModerateResponseV1ResultsMetadata) ToMap() (map[string]interface{}, error)

type ReleaseSearchRequestV1 ¶

type ReleaseSearchRequestV1 struct {
	Search          *string `json:"search,omitempty"`
	SearchType      *string `json:"search_type,omitempty"`
	AddedBy         *int64  `json:"added_by,omitempty"`
	Page            *int64  `json:"page,omitempty"`
	Perpage         *int64  `json:"perpage,omitempty"`
	Letter          *string `json:"letter,omitempty"`
	Orderby         *string `json:"orderby,omitempty"`
	StartDate       *string `json:"start_date,omitempty"`
	EndDate         *string `json:"end_date,omitempty"`
	Asc             *string `json:"asc,omitempty"`
	GroupId         *int64  `json:"group_id,omitempty"`
	Pending         *bool   `json:"pending,omitempty"`
	IncludeMetadata *bool   `json:"include_metadata,omitempty"`
}

ReleaseSearchRequestV1 struct for ReleaseSearchRequestV1

func NewReleaseSearchRequestV1 ¶

func NewReleaseSearchRequestV1() *ReleaseSearchRequestV1

NewReleaseSearchRequestV1 instantiates a new ReleaseSearchRequestV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseSearchRequestV1WithDefaults ¶

func NewReleaseSearchRequestV1WithDefaults() *ReleaseSearchRequestV1

NewReleaseSearchRequestV1WithDefaults instantiates a new ReleaseSearchRequestV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseSearchRequestV1) GetAddedBy ¶

func (o *ReleaseSearchRequestV1) GetAddedBy() int64

GetAddedBy returns the AddedBy field value if set, zero value otherwise.

func (*ReleaseSearchRequestV1) GetAddedByOk ¶

func (o *ReleaseSearchRequestV1) GetAddedByOk() (*int64, bool)

GetAddedByOk returns a tuple with the AddedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSearchRequestV1) GetAsc ¶

func (o *ReleaseSearchRequestV1) GetAsc() string

GetAsc returns the Asc field value if set, zero value otherwise.

func (*ReleaseSearchRequestV1) GetAscOk ¶

func (o *ReleaseSearchRequestV1) GetAscOk() (*string, bool)

GetAscOk returns a tuple with the Asc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSearchRequestV1) GetEndDate ¶

func (o *ReleaseSearchRequestV1) GetEndDate() string

GetEndDate returns the EndDate field value if set, zero value otherwise.

func (*ReleaseSearchRequestV1) GetEndDateOk ¶

func (o *ReleaseSearchRequestV1) GetEndDateOk() (*string, bool)

GetEndDateOk returns a tuple with the EndDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSearchRequestV1) GetGroupId ¶

func (o *ReleaseSearchRequestV1) GetGroupId() int64

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*ReleaseSearchRequestV1) GetGroupIdOk ¶

func (o *ReleaseSearchRequestV1) GetGroupIdOk() (*int64, bool)

GetGroupIdOk returns a tuple with the GroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSearchRequestV1) GetIncludeMetadata ¶

func (o *ReleaseSearchRequestV1) GetIncludeMetadata() bool

GetIncludeMetadata returns the IncludeMetadata field value if set, zero value otherwise.

func (*ReleaseSearchRequestV1) GetIncludeMetadataOk ¶

func (o *ReleaseSearchRequestV1) GetIncludeMetadataOk() (*bool, bool)

GetIncludeMetadataOk returns a tuple with the IncludeMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSearchRequestV1) GetLetter ¶

func (o *ReleaseSearchRequestV1) GetLetter() string

GetLetter returns the Letter field value if set, zero value otherwise.

func (*ReleaseSearchRequestV1) GetLetterOk ¶

func (o *ReleaseSearchRequestV1) GetLetterOk() (*string, bool)

GetLetterOk returns a tuple with the Letter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSearchRequestV1) GetOrderby ¶

func (o *ReleaseSearchRequestV1) GetOrderby() string

GetOrderby returns the Orderby field value if set, zero value otherwise.

func (*ReleaseSearchRequestV1) GetOrderbyOk ¶

func (o *ReleaseSearchRequestV1) GetOrderbyOk() (*string, bool)

GetOrderbyOk returns a tuple with the Orderby field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSearchRequestV1) GetPage ¶

func (o *ReleaseSearchRequestV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*ReleaseSearchRequestV1) GetPageOk ¶

func (o *ReleaseSearchRequestV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSearchRequestV1) GetPending ¶

func (o *ReleaseSearchRequestV1) GetPending() bool

GetPending returns the Pending field value if set, zero value otherwise.

func (*ReleaseSearchRequestV1) GetPendingOk ¶

func (o *ReleaseSearchRequestV1) GetPendingOk() (*bool, bool)

GetPendingOk returns a tuple with the Pending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSearchRequestV1) GetPerpage ¶

func (o *ReleaseSearchRequestV1) GetPerpage() int64

GetPerpage returns the Perpage field value if set, zero value otherwise.

func (*ReleaseSearchRequestV1) GetPerpageOk ¶

func (o *ReleaseSearchRequestV1) GetPerpageOk() (*int64, bool)

GetPerpageOk returns a tuple with the Perpage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSearchRequestV1) GetSearch ¶

func (o *ReleaseSearchRequestV1) GetSearch() string

GetSearch returns the Search field value if set, zero value otherwise.

func (*ReleaseSearchRequestV1) GetSearchOk ¶

func (o *ReleaseSearchRequestV1) GetSearchOk() (*string, bool)

GetSearchOk returns a tuple with the Search field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSearchRequestV1) GetSearchType ¶

func (o *ReleaseSearchRequestV1) GetSearchType() string

GetSearchType returns the SearchType field value if set, zero value otherwise.

func (*ReleaseSearchRequestV1) GetSearchTypeOk ¶

func (o *ReleaseSearchRequestV1) GetSearchTypeOk() (*string, bool)

GetSearchTypeOk returns a tuple with the SearchType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSearchRequestV1) GetStartDate ¶

func (o *ReleaseSearchRequestV1) GetStartDate() string

GetStartDate returns the StartDate field value if set, zero value otherwise.

func (*ReleaseSearchRequestV1) GetStartDateOk ¶

func (o *ReleaseSearchRequestV1) GetStartDateOk() (*string, bool)

GetStartDateOk returns a tuple with the StartDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSearchRequestV1) HasAddedBy ¶

func (o *ReleaseSearchRequestV1) HasAddedBy() bool

HasAddedBy returns a boolean if a field has been set.

func (*ReleaseSearchRequestV1) HasAsc ¶

func (o *ReleaseSearchRequestV1) HasAsc() bool

HasAsc returns a boolean if a field has been set.

func (*ReleaseSearchRequestV1) HasEndDate ¶

func (o *ReleaseSearchRequestV1) HasEndDate() bool

HasEndDate returns a boolean if a field has been set.

func (*ReleaseSearchRequestV1) HasGroupId ¶

func (o *ReleaseSearchRequestV1) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*ReleaseSearchRequestV1) HasIncludeMetadata ¶

func (o *ReleaseSearchRequestV1) HasIncludeMetadata() bool

HasIncludeMetadata returns a boolean if a field has been set.

func (*ReleaseSearchRequestV1) HasLetter ¶

func (o *ReleaseSearchRequestV1) HasLetter() bool

HasLetter returns a boolean if a field has been set.

func (*ReleaseSearchRequestV1) HasOrderby ¶

func (o *ReleaseSearchRequestV1) HasOrderby() bool

HasOrderby returns a boolean if a field has been set.

func (*ReleaseSearchRequestV1) HasPage ¶

func (o *ReleaseSearchRequestV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*ReleaseSearchRequestV1) HasPending ¶

func (o *ReleaseSearchRequestV1) HasPending() bool

HasPending returns a boolean if a field has been set.

func (*ReleaseSearchRequestV1) HasPerpage ¶

func (o *ReleaseSearchRequestV1) HasPerpage() bool

HasPerpage returns a boolean if a field has been set.

func (*ReleaseSearchRequestV1) HasSearch ¶

func (o *ReleaseSearchRequestV1) HasSearch() bool

HasSearch returns a boolean if a field has been set.

func (*ReleaseSearchRequestV1) HasSearchType ¶

func (o *ReleaseSearchRequestV1) HasSearchType() bool

HasSearchType returns a boolean if a field has been set.

func (*ReleaseSearchRequestV1) HasStartDate ¶

func (o *ReleaseSearchRequestV1) HasStartDate() bool

HasStartDate returns a boolean if a field has been set.

func (ReleaseSearchRequestV1) MarshalJSON ¶

func (o ReleaseSearchRequestV1) MarshalJSON() ([]byte, error)

func (*ReleaseSearchRequestV1) SetAddedBy ¶

func (o *ReleaseSearchRequestV1) SetAddedBy(v int64)

SetAddedBy gets a reference to the given int64 and assigns it to the AddedBy field.

func (*ReleaseSearchRequestV1) SetAsc ¶

func (o *ReleaseSearchRequestV1) SetAsc(v string)

SetAsc gets a reference to the given string and assigns it to the Asc field.

func (*ReleaseSearchRequestV1) SetEndDate ¶

func (o *ReleaseSearchRequestV1) SetEndDate(v string)

SetEndDate gets a reference to the given string and assigns it to the EndDate field.

func (*ReleaseSearchRequestV1) SetGroupId ¶

func (o *ReleaseSearchRequestV1) SetGroupId(v int64)

SetGroupId gets a reference to the given int64 and assigns it to the GroupId field.

func (*ReleaseSearchRequestV1) SetIncludeMetadata ¶

func (o *ReleaseSearchRequestV1) SetIncludeMetadata(v bool)

SetIncludeMetadata gets a reference to the given bool and assigns it to the IncludeMetadata field.

func (*ReleaseSearchRequestV1) SetLetter ¶

func (o *ReleaseSearchRequestV1) SetLetter(v string)

SetLetter gets a reference to the given string and assigns it to the Letter field.

func (*ReleaseSearchRequestV1) SetOrderby ¶

func (o *ReleaseSearchRequestV1) SetOrderby(v string)

SetOrderby gets a reference to the given string and assigns it to the Orderby field.

func (*ReleaseSearchRequestV1) SetPage ¶

func (o *ReleaseSearchRequestV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*ReleaseSearchRequestV1) SetPending ¶

func (o *ReleaseSearchRequestV1) SetPending(v bool)

SetPending gets a reference to the given bool and assigns it to the Pending field.

func (*ReleaseSearchRequestV1) SetPerpage ¶

func (o *ReleaseSearchRequestV1) SetPerpage(v int64)

SetPerpage gets a reference to the given int64 and assigns it to the Perpage field.

func (*ReleaseSearchRequestV1) SetSearch ¶

func (o *ReleaseSearchRequestV1) SetSearch(v string)

SetSearch gets a reference to the given string and assigns it to the Search field.

func (*ReleaseSearchRequestV1) SetSearchType ¶

func (o *ReleaseSearchRequestV1) SetSearchType(v string)

SetSearchType gets a reference to the given string and assigns it to the SearchType field.

func (*ReleaseSearchRequestV1) SetStartDate ¶

func (o *ReleaseSearchRequestV1) SetStartDate(v string)

SetStartDate gets a reference to the given string and assigns it to the StartDate field.

func (ReleaseSearchRequestV1) ToMap ¶

func (o ReleaseSearchRequestV1) ToMap() (map[string]interface{}, error)

type ReleaseSearchResponseV1 ¶

type ReleaseSearchResponseV1 struct {
	TotalHits *int64                           `json:"total_hits,omitempty"`
	Page      *int64                           `json:"page,omitempty"`
	PerPage   *int64                           `json:"per_page,omitempty"`
	Results   []ReleaseSearchResponseV1Results `json:"results,omitempty"`
}

ReleaseSearchResponseV1 struct for ReleaseSearchResponseV1

func NewReleaseSearchResponseV1 ¶

func NewReleaseSearchResponseV1() *ReleaseSearchResponseV1

NewReleaseSearchResponseV1 instantiates a new ReleaseSearchResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseSearchResponseV1WithDefaults ¶

func NewReleaseSearchResponseV1WithDefaults() *ReleaseSearchResponseV1

NewReleaseSearchResponseV1WithDefaults instantiates a new ReleaseSearchResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseSearchResponseV1) GetPage ¶

func (o *ReleaseSearchResponseV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*ReleaseSearchResponseV1) GetPageOk ¶

func (o *ReleaseSearchResponseV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSearchResponseV1) GetPerPage ¶

func (o *ReleaseSearchResponseV1) GetPerPage() int64

GetPerPage returns the PerPage field value if set, zero value otherwise.

func (*ReleaseSearchResponseV1) GetPerPageOk ¶

func (o *ReleaseSearchResponseV1) GetPerPageOk() (*int64, bool)

GetPerPageOk returns a tuple with the PerPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSearchResponseV1) GetResults ¶

GetResults returns the Results field value if set, zero value otherwise.

func (*ReleaseSearchResponseV1) GetResultsOk ¶

GetResultsOk returns a tuple with the Results field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSearchResponseV1) GetTotalHits ¶

func (o *ReleaseSearchResponseV1) GetTotalHits() int64

GetTotalHits returns the TotalHits field value if set, zero value otherwise.

func (*ReleaseSearchResponseV1) GetTotalHitsOk ¶

func (o *ReleaseSearchResponseV1) GetTotalHitsOk() (*int64, bool)

GetTotalHitsOk returns a tuple with the TotalHits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSearchResponseV1) HasPage ¶

func (o *ReleaseSearchResponseV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*ReleaseSearchResponseV1) HasPerPage ¶

func (o *ReleaseSearchResponseV1) HasPerPage() bool

HasPerPage returns a boolean if a field has been set.

func (*ReleaseSearchResponseV1) HasResults ¶

func (o *ReleaseSearchResponseV1) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*ReleaseSearchResponseV1) HasTotalHits ¶

func (o *ReleaseSearchResponseV1) HasTotalHits() bool

HasTotalHits returns a boolean if a field has been set.

func (ReleaseSearchResponseV1) MarshalJSON ¶

func (o ReleaseSearchResponseV1) MarshalJSON() ([]byte, error)

func (*ReleaseSearchResponseV1) SetPage ¶

func (o *ReleaseSearchResponseV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*ReleaseSearchResponseV1) SetPerPage ¶

func (o *ReleaseSearchResponseV1) SetPerPage(v int64)

SetPerPage gets a reference to the given int64 and assigns it to the PerPage field.

func (*ReleaseSearchResponseV1) SetResults ¶

SetResults gets a reference to the given []ReleaseSearchResponseV1Results and assigns it to the Results field.

func (*ReleaseSearchResponseV1) SetTotalHits ¶

func (o *ReleaseSearchResponseV1) SetTotalHits(v int64)

SetTotalHits gets a reference to the given int64 and assigns it to the TotalHits field.

func (ReleaseSearchResponseV1) ToMap ¶

func (o ReleaseSearchResponseV1) ToMap() (map[string]interface{}, error)

type ReleaseSearchResponseV1Results ¶

type ReleaseSearchResponseV1Results struct {
	Record   *ReleaseModelSearchV1                   `json:"record,omitempty"`
	Metadata *ReleaseSearchResponseV1ResultsMetadata `json:"metadata,omitempty"`
}

ReleaseSearchResponseV1Results struct for ReleaseSearchResponseV1Results

func NewReleaseSearchResponseV1Results ¶

func NewReleaseSearchResponseV1Results() *ReleaseSearchResponseV1Results

NewReleaseSearchResponseV1Results instantiates a new ReleaseSearchResponseV1Results object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseSearchResponseV1ResultsWithDefaults ¶

func NewReleaseSearchResponseV1ResultsWithDefaults() *ReleaseSearchResponseV1Results

NewReleaseSearchResponseV1ResultsWithDefaults instantiates a new ReleaseSearchResponseV1Results object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseSearchResponseV1Results) GetMetadata ¶

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ReleaseSearchResponseV1Results) GetMetadataOk ¶

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSearchResponseV1Results) GetRecord ¶

GetRecord returns the Record field value if set, zero value otherwise.

func (*ReleaseSearchResponseV1Results) GetRecordOk ¶

GetRecordOk returns a tuple with the Record field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSearchResponseV1Results) HasMetadata ¶

func (o *ReleaseSearchResponseV1Results) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ReleaseSearchResponseV1Results) HasRecord ¶

func (o *ReleaseSearchResponseV1Results) HasRecord() bool

HasRecord returns a boolean if a field has been set.

func (ReleaseSearchResponseV1Results) MarshalJSON ¶

func (o ReleaseSearchResponseV1Results) MarshalJSON() ([]byte, error)

func (*ReleaseSearchResponseV1Results) SetMetadata ¶

SetMetadata gets a reference to the given ReleaseSearchResponseV1ResultsMetadata and assigns it to the Metadata field.

func (*ReleaseSearchResponseV1Results) SetRecord ¶

SetRecord gets a reference to the given ReleaseModelSearchV1 and assigns it to the Record field.

func (ReleaseSearchResponseV1Results) ToMap ¶

func (o ReleaseSearchResponseV1Results) ToMap() (map[string]interface{}, error)

type ReleaseSearchResponseV1ResultsMetadata ¶

type ReleaseSearchResponseV1ResultsMetadata struct {
	Series              *SeriesModelSearchV1                                        `json:"series,omitempty"`
	UserList            *ListsSeriesModelV1                                         `json:"user_list,omitempty"`
	UserGenreHighlights []ReleaseSearchResponseV1ResultsMetadataUserGenreHighlights `json:"user_genre_highlights,omitempty"`
	UserGenreFilters    []string                                                    `json:"user_genre_filters,omitempty"`
	UserGroupFilters    []string                                                    `json:"user_group_filters,omitempty"`
	TypeFilter          *string                                                     `json:"type_filter,omitempty"`
}

ReleaseSearchResponseV1ResultsMetadata struct for ReleaseSearchResponseV1ResultsMetadata

func NewReleaseSearchResponseV1ResultsMetadata ¶

func NewReleaseSearchResponseV1ResultsMetadata() *ReleaseSearchResponseV1ResultsMetadata

NewReleaseSearchResponseV1ResultsMetadata instantiates a new ReleaseSearchResponseV1ResultsMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseSearchResponseV1ResultsMetadataWithDefaults ¶

func NewReleaseSearchResponseV1ResultsMetadataWithDefaults() *ReleaseSearchResponseV1ResultsMetadata

NewReleaseSearchResponseV1ResultsMetadataWithDefaults instantiates a new ReleaseSearchResponseV1ResultsMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseSearchResponseV1ResultsMetadata) GetSeries ¶

GetSeries returns the Series field value if set, zero value otherwise.

func (*ReleaseSearchResponseV1ResultsMetadata) GetSeriesOk ¶

GetSeriesOk returns a tuple with the Series field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSearchResponseV1ResultsMetadata) GetTypeFilter ¶

GetTypeFilter returns the TypeFilter field value if set, zero value otherwise.

func (*ReleaseSearchResponseV1ResultsMetadata) GetTypeFilterOk ¶

func (o *ReleaseSearchResponseV1ResultsMetadata) GetTypeFilterOk() (*string, bool)

GetTypeFilterOk returns a tuple with the TypeFilter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSearchResponseV1ResultsMetadata) GetUserGenreFilters ¶

func (o *ReleaseSearchResponseV1ResultsMetadata) GetUserGenreFilters() []string

GetUserGenreFilters returns the UserGenreFilters field value if set, zero value otherwise.

func (*ReleaseSearchResponseV1ResultsMetadata) GetUserGenreFiltersOk ¶

func (o *ReleaseSearchResponseV1ResultsMetadata) GetUserGenreFiltersOk() ([]string, bool)

GetUserGenreFiltersOk returns a tuple with the UserGenreFilters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSearchResponseV1ResultsMetadata) GetUserGenreHighlights ¶

GetUserGenreHighlights returns the UserGenreHighlights field value if set, zero value otherwise.

func (*ReleaseSearchResponseV1ResultsMetadata) GetUserGenreHighlightsOk ¶

GetUserGenreHighlightsOk returns a tuple with the UserGenreHighlights field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSearchResponseV1ResultsMetadata) GetUserGroupFilters ¶

func (o *ReleaseSearchResponseV1ResultsMetadata) GetUserGroupFilters() []string

GetUserGroupFilters returns the UserGroupFilters field value if set, zero value otherwise.

func (*ReleaseSearchResponseV1ResultsMetadata) GetUserGroupFiltersOk ¶

func (o *ReleaseSearchResponseV1ResultsMetadata) GetUserGroupFiltersOk() ([]string, bool)

GetUserGroupFiltersOk returns a tuple with the UserGroupFilters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSearchResponseV1ResultsMetadata) GetUserList ¶

GetUserList returns the UserList field value if set, zero value otherwise.

func (*ReleaseSearchResponseV1ResultsMetadata) GetUserListOk ¶

GetUserListOk returns a tuple with the UserList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSearchResponseV1ResultsMetadata) HasSeries ¶

HasSeries returns a boolean if a field has been set.

func (*ReleaseSearchResponseV1ResultsMetadata) HasTypeFilter ¶

func (o *ReleaseSearchResponseV1ResultsMetadata) HasTypeFilter() bool

HasTypeFilter returns a boolean if a field has been set.

func (*ReleaseSearchResponseV1ResultsMetadata) HasUserGenreFilters ¶

func (o *ReleaseSearchResponseV1ResultsMetadata) HasUserGenreFilters() bool

HasUserGenreFilters returns a boolean if a field has been set.

func (*ReleaseSearchResponseV1ResultsMetadata) HasUserGenreHighlights ¶

func (o *ReleaseSearchResponseV1ResultsMetadata) HasUserGenreHighlights() bool

HasUserGenreHighlights returns a boolean if a field has been set.

func (*ReleaseSearchResponseV1ResultsMetadata) HasUserGroupFilters ¶

func (o *ReleaseSearchResponseV1ResultsMetadata) HasUserGroupFilters() bool

HasUserGroupFilters returns a boolean if a field has been set.

func (*ReleaseSearchResponseV1ResultsMetadata) HasUserList ¶

HasUserList returns a boolean if a field has been set.

func (ReleaseSearchResponseV1ResultsMetadata) MarshalJSON ¶

func (o ReleaseSearchResponseV1ResultsMetadata) MarshalJSON() ([]byte, error)

func (*ReleaseSearchResponseV1ResultsMetadata) SetSeries ¶

SetSeries gets a reference to the given SeriesModelSearchV1 and assigns it to the Series field.

func (*ReleaseSearchResponseV1ResultsMetadata) SetTypeFilter ¶

func (o *ReleaseSearchResponseV1ResultsMetadata) SetTypeFilter(v string)

SetTypeFilter gets a reference to the given string and assigns it to the TypeFilter field.

func (*ReleaseSearchResponseV1ResultsMetadata) SetUserGenreFilters ¶

func (o *ReleaseSearchResponseV1ResultsMetadata) SetUserGenreFilters(v []string)

SetUserGenreFilters gets a reference to the given []string and assigns it to the UserGenreFilters field.

func (*ReleaseSearchResponseV1ResultsMetadata) SetUserGenreHighlights ¶

SetUserGenreHighlights gets a reference to the given []ReleaseSearchResponseV1ResultsMetadataUserGenreHighlights and assigns it to the UserGenreHighlights field.

func (*ReleaseSearchResponseV1ResultsMetadata) SetUserGroupFilters ¶

func (o *ReleaseSearchResponseV1ResultsMetadata) SetUserGroupFilters(v []string)

SetUserGroupFilters gets a reference to the given []string and assigns it to the UserGroupFilters field.

func (*ReleaseSearchResponseV1ResultsMetadata) SetUserList ¶

SetUserList gets a reference to the given ListsSeriesModelV1 and assigns it to the UserList field.

func (ReleaseSearchResponseV1ResultsMetadata) ToMap ¶

func (o ReleaseSearchResponseV1ResultsMetadata) ToMap() (map[string]interface{}, error)

type ReleaseSearchResponseV1ResultsMetadataUserGenreHighlights ¶

type ReleaseSearchResponseV1ResultsMetadataUserGenreHighlights struct {
	Genre *string `json:"genre,omitempty"`
	Color *string `json:"color,omitempty"`
}

ReleaseSearchResponseV1ResultsMetadataUserGenreHighlights struct for ReleaseSearchResponseV1ResultsMetadataUserGenreHighlights

func NewReleaseSearchResponseV1ResultsMetadataUserGenreHighlights ¶

func NewReleaseSearchResponseV1ResultsMetadataUserGenreHighlights() *ReleaseSearchResponseV1ResultsMetadataUserGenreHighlights

NewReleaseSearchResponseV1ResultsMetadataUserGenreHighlights instantiates a new ReleaseSearchResponseV1ResultsMetadataUserGenreHighlights object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseSearchResponseV1ResultsMetadataUserGenreHighlightsWithDefaults ¶

func NewReleaseSearchResponseV1ResultsMetadataUserGenreHighlightsWithDefaults() *ReleaseSearchResponseV1ResultsMetadataUserGenreHighlights

NewReleaseSearchResponseV1ResultsMetadataUserGenreHighlightsWithDefaults instantiates a new ReleaseSearchResponseV1ResultsMetadataUserGenreHighlights object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseSearchResponseV1ResultsMetadataUserGenreHighlights) GetColor ¶

GetColor returns the Color field value if set, zero value otherwise.

func (*ReleaseSearchResponseV1ResultsMetadataUserGenreHighlights) GetColorOk ¶

GetColorOk returns a tuple with the Color field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSearchResponseV1ResultsMetadataUserGenreHighlights) GetGenre ¶

GetGenre returns the Genre field value if set, zero value otherwise.

func (*ReleaseSearchResponseV1ResultsMetadataUserGenreHighlights) GetGenreOk ¶

GetGenreOk returns a tuple with the Genre field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSearchResponseV1ResultsMetadataUserGenreHighlights) HasColor ¶

HasColor returns a boolean if a field has been set.

func (*ReleaseSearchResponseV1ResultsMetadataUserGenreHighlights) HasGenre ¶

HasGenre returns a boolean if a field has been set.

func (ReleaseSearchResponseV1ResultsMetadataUserGenreHighlights) MarshalJSON ¶

func (*ReleaseSearchResponseV1ResultsMetadataUserGenreHighlights) SetColor ¶

SetColor gets a reference to the given string and assigns it to the Color field.

func (*ReleaseSearchResponseV1ResultsMetadataUserGenreHighlights) SetGenre ¶

SetGenre gets a reference to the given string and assigns it to the Genre field.

func (ReleaseSearchResponseV1ResultsMetadataUserGenreHighlights) ToMap ¶

type ReleasesAPIService ¶

type ReleasesAPIService service

ReleasesAPIService ReleasesAPI service

func (*ReleasesAPIService) AddRelease ¶

AddRelease add an release

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAddReleaseRequest

func (*ReleasesAPIService) AddReleaseExecute ¶

Execute executes the request

@return ApiResponseV1

func (*ReleasesAPIService) DeleteRelease ¶

DeleteRelease delete a release

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of release
@return ApiDeleteReleaseRequest

func (*ReleasesAPIService) DeleteReleaseExecute ¶

Execute executes the request

@return ApiResponseV1

func (*ReleasesAPIService) ListReleasesByDay ¶

ListReleasesByDay show releases by day

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListReleasesByDayRequest

func (*ReleasesAPIService) ListReleasesByDayExecute ¶

Execute executes the request

@return ReleaseSearchResponseV1

func (*ReleasesAPIService) ModerateReleasesPost ¶

ModerateReleasesPost search releases to moderate

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiModerateReleasesPostRequest

func (*ReleasesAPIService) ModerateReleasesPostExecute ¶

Execute executes the request

@return ReleaseModerateResponseV1

func (*ReleasesAPIService) ReleaseRssFeed ¶

ReleaseRssFeed releases rss feed

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiReleaseRssFeedRequest

func (*ReleasesAPIService) ReleaseRssFeedExecute ¶

func (a *ReleasesAPIService) ReleaseRssFeedExecute(r ApiReleaseRssFeedRequest) (string, *http.Response, error)

Execute executes the request

@return string

func (*ReleasesAPIService) RetrieveRelease ¶

RetrieveRelease get a specific release

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Release id
@return ApiRetrieveReleaseRequest

func (*ReleasesAPIService) RetrieveReleaseExecute ¶

Execute executes the request

@return ReleaseModelV1

func (*ReleasesAPIService) SearchReleasesPost ¶

SearchReleasesPost search releases

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchReleasesPostRequest

func (*ReleasesAPIService) SearchReleasesPostExecute ¶

Execute executes the request

@return ReleaseSearchResponseV1

func (*ReleasesAPIService) UpdateRelease ¶

UpdateRelease update an release

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of release
@return ApiUpdateReleaseRequest

func (*ReleasesAPIService) UpdateReleaseExecute ¶

Execute executes the request

@return ApiResponseV1

type ReviewCommentModelUpdateV1 ¶

type ReviewCommentModelUpdateV1 struct {
	Subject *string                          `json:"subject,omitempty"`
	Content *string                          `json:"content,omitempty"`
	Rating  *float32                         `json:"rating,omitempty"`
	Admin   *ReviewCommentModelUpdateV1Admin `json:"admin,omitempty"`
}

ReviewCommentModelUpdateV1 struct for ReviewCommentModelUpdateV1

func NewReviewCommentModelUpdateV1 ¶

func NewReviewCommentModelUpdateV1() *ReviewCommentModelUpdateV1

NewReviewCommentModelUpdateV1 instantiates a new ReviewCommentModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReviewCommentModelUpdateV1WithDefaults ¶

func NewReviewCommentModelUpdateV1WithDefaults() *ReviewCommentModelUpdateV1

NewReviewCommentModelUpdateV1WithDefaults instantiates a new ReviewCommentModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReviewCommentModelUpdateV1) GetAdmin ¶

GetAdmin returns the Admin field value if set, zero value otherwise.

func (*ReviewCommentModelUpdateV1) GetAdminOk ¶

GetAdminOk returns a tuple with the Admin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewCommentModelUpdateV1) GetContent ¶

func (o *ReviewCommentModelUpdateV1) GetContent() string

GetContent returns the Content field value if set, zero value otherwise.

func (*ReviewCommentModelUpdateV1) GetContentOk ¶

func (o *ReviewCommentModelUpdateV1) GetContentOk() (*string, bool)

GetContentOk returns a tuple with the Content field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewCommentModelUpdateV1) GetRating ¶

func (o *ReviewCommentModelUpdateV1) GetRating() float32

GetRating returns the Rating field value if set, zero value otherwise.

func (*ReviewCommentModelUpdateV1) GetRatingOk ¶

func (o *ReviewCommentModelUpdateV1) GetRatingOk() (*float32, bool)

GetRatingOk returns a tuple with the Rating field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewCommentModelUpdateV1) GetSubject ¶

func (o *ReviewCommentModelUpdateV1) GetSubject() string

GetSubject returns the Subject field value if set, zero value otherwise.

func (*ReviewCommentModelUpdateV1) GetSubjectOk ¶

func (o *ReviewCommentModelUpdateV1) GetSubjectOk() (*string, bool)

GetSubjectOk returns a tuple with the Subject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewCommentModelUpdateV1) HasAdmin ¶

func (o *ReviewCommentModelUpdateV1) HasAdmin() bool

HasAdmin returns a boolean if a field has been set.

func (*ReviewCommentModelUpdateV1) HasContent ¶

func (o *ReviewCommentModelUpdateV1) HasContent() bool

HasContent returns a boolean if a field has been set.

func (*ReviewCommentModelUpdateV1) HasRating ¶

func (o *ReviewCommentModelUpdateV1) HasRating() bool

HasRating returns a boolean if a field has been set.

func (*ReviewCommentModelUpdateV1) HasSubject ¶

func (o *ReviewCommentModelUpdateV1) HasSubject() bool

HasSubject returns a boolean if a field has been set.

func (ReviewCommentModelUpdateV1) MarshalJSON ¶

func (o ReviewCommentModelUpdateV1) MarshalJSON() ([]byte, error)

func (*ReviewCommentModelUpdateV1) SetAdmin ¶

SetAdmin gets a reference to the given ReviewCommentModelUpdateV1Admin and assigns it to the Admin field.

func (*ReviewCommentModelUpdateV1) SetContent ¶

func (o *ReviewCommentModelUpdateV1) SetContent(v string)

SetContent gets a reference to the given string and assigns it to the Content field.

func (*ReviewCommentModelUpdateV1) SetRating ¶

func (o *ReviewCommentModelUpdateV1) SetRating(v float32)

SetRating gets a reference to the given float32 and assigns it to the Rating field.

func (*ReviewCommentModelUpdateV1) SetSubject ¶

func (o *ReviewCommentModelUpdateV1) SetSubject(v string)

SetSubject gets a reference to the given string and assigns it to the Subject field.

func (ReviewCommentModelUpdateV1) ToMap ¶

func (o ReviewCommentModelUpdateV1) ToMap() (map[string]interface{}, error)

type ReviewCommentModelUpdateV1Admin ¶

type ReviewCommentModelUpdateV1Admin struct {
	Approved *bool `json:"approved,omitempty"`
}

ReviewCommentModelUpdateV1Admin struct for ReviewCommentModelUpdateV1Admin

func NewReviewCommentModelUpdateV1Admin ¶

func NewReviewCommentModelUpdateV1Admin() *ReviewCommentModelUpdateV1Admin

NewReviewCommentModelUpdateV1Admin instantiates a new ReviewCommentModelUpdateV1Admin object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReviewCommentModelUpdateV1AdminWithDefaults ¶

func NewReviewCommentModelUpdateV1AdminWithDefaults() *ReviewCommentModelUpdateV1Admin

NewReviewCommentModelUpdateV1AdminWithDefaults instantiates a new ReviewCommentModelUpdateV1Admin object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReviewCommentModelUpdateV1Admin) GetApproved ¶

func (o *ReviewCommentModelUpdateV1Admin) GetApproved() bool

GetApproved returns the Approved field value if set, zero value otherwise.

func (*ReviewCommentModelUpdateV1Admin) GetApprovedOk ¶

func (o *ReviewCommentModelUpdateV1Admin) GetApprovedOk() (*bool, bool)

GetApprovedOk returns a tuple with the Approved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewCommentModelUpdateV1Admin) HasApproved ¶

func (o *ReviewCommentModelUpdateV1Admin) HasApproved() bool

HasApproved returns a boolean if a field has been set.

func (ReviewCommentModelUpdateV1Admin) MarshalJSON ¶

func (o ReviewCommentModelUpdateV1Admin) MarshalJSON() ([]byte, error)

func (*ReviewCommentModelUpdateV1Admin) SetApproved ¶

func (o *ReviewCommentModelUpdateV1Admin) SetApproved(v bool)

SetApproved gets a reference to the given bool and assigns it to the Approved field.

func (ReviewCommentModelUpdateV1Admin) ToMap ¶

func (o ReviewCommentModelUpdateV1Admin) ToMap() (map[string]interface{}, error)

type ReviewCommentModelV1 ¶

type ReviewCommentModelV1 struct {
	Id          *int64                      `json:"id,omitempty"`
	ReviewId    *int64                      `json:"review_id,omitempty"`
	Subject     *string                     `json:"subject,omitempty"`
	Content     *string                     `json:"content,omitempty"`
	Author      *ReviewCommentModelV1Author `json:"author,omitempty"`
	Rating      *float32                    `json:"rating,omitempty"`
	TimeAdded   *TimeV1                     `json:"time_added,omitempty"`
	TimeUpdated *TimeV1                     `json:"time_updated,omitempty"`
}

ReviewCommentModelV1 struct for ReviewCommentModelV1

func NewReviewCommentModelV1 ¶

func NewReviewCommentModelV1() *ReviewCommentModelV1

NewReviewCommentModelV1 instantiates a new ReviewCommentModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReviewCommentModelV1WithDefaults ¶

func NewReviewCommentModelV1WithDefaults() *ReviewCommentModelV1

NewReviewCommentModelV1WithDefaults instantiates a new ReviewCommentModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReviewCommentModelV1) GetAuthor ¶

GetAuthor returns the Author field value if set, zero value otherwise.

func (*ReviewCommentModelV1) GetAuthorOk ¶

GetAuthorOk returns a tuple with the Author field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewCommentModelV1) GetContent ¶

func (o *ReviewCommentModelV1) GetContent() string

GetContent returns the Content field value if set, zero value otherwise.

func (*ReviewCommentModelV1) GetContentOk ¶

func (o *ReviewCommentModelV1) GetContentOk() (*string, bool)

GetContentOk returns a tuple with the Content field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewCommentModelV1) GetId ¶

func (o *ReviewCommentModelV1) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*ReviewCommentModelV1) GetIdOk ¶

func (o *ReviewCommentModelV1) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewCommentModelV1) GetRating ¶

func (o *ReviewCommentModelV1) GetRating() float32

GetRating returns the Rating field value if set, zero value otherwise.

func (*ReviewCommentModelV1) GetRatingOk ¶

func (o *ReviewCommentModelV1) GetRatingOk() (*float32, bool)

GetRatingOk returns a tuple with the Rating field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewCommentModelV1) GetReviewId ¶

func (o *ReviewCommentModelV1) GetReviewId() int64

GetReviewId returns the ReviewId field value if set, zero value otherwise.

func (*ReviewCommentModelV1) GetReviewIdOk ¶

func (o *ReviewCommentModelV1) GetReviewIdOk() (*int64, bool)

GetReviewIdOk returns a tuple with the ReviewId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewCommentModelV1) GetSubject ¶

func (o *ReviewCommentModelV1) GetSubject() string

GetSubject returns the Subject field value if set, zero value otherwise.

func (*ReviewCommentModelV1) GetSubjectOk ¶

func (o *ReviewCommentModelV1) GetSubjectOk() (*string, bool)

GetSubjectOk returns a tuple with the Subject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewCommentModelV1) GetTimeAdded ¶

func (o *ReviewCommentModelV1) GetTimeAdded() TimeV1

GetTimeAdded returns the TimeAdded field value if set, zero value otherwise.

func (*ReviewCommentModelV1) GetTimeAddedOk ¶

func (o *ReviewCommentModelV1) GetTimeAddedOk() (*TimeV1, bool)

GetTimeAddedOk returns a tuple with the TimeAdded field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewCommentModelV1) GetTimeUpdated ¶

func (o *ReviewCommentModelV1) GetTimeUpdated() TimeV1

GetTimeUpdated returns the TimeUpdated field value if set, zero value otherwise.

func (*ReviewCommentModelV1) GetTimeUpdatedOk ¶

func (o *ReviewCommentModelV1) GetTimeUpdatedOk() (*TimeV1, bool)

GetTimeUpdatedOk returns a tuple with the TimeUpdated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewCommentModelV1) HasAuthor ¶

func (o *ReviewCommentModelV1) HasAuthor() bool

HasAuthor returns a boolean if a field has been set.

func (*ReviewCommentModelV1) HasContent ¶

func (o *ReviewCommentModelV1) HasContent() bool

HasContent returns a boolean if a field has been set.

func (*ReviewCommentModelV1) HasId ¶

func (o *ReviewCommentModelV1) HasId() bool

HasId returns a boolean if a field has been set.

func (*ReviewCommentModelV1) HasRating ¶

func (o *ReviewCommentModelV1) HasRating() bool

HasRating returns a boolean if a field has been set.

func (*ReviewCommentModelV1) HasReviewId ¶

func (o *ReviewCommentModelV1) HasReviewId() bool

HasReviewId returns a boolean if a field has been set.

func (*ReviewCommentModelV1) HasSubject ¶

func (o *ReviewCommentModelV1) HasSubject() bool

HasSubject returns a boolean if a field has been set.

func (*ReviewCommentModelV1) HasTimeAdded ¶

func (o *ReviewCommentModelV1) HasTimeAdded() bool

HasTimeAdded returns a boolean if a field has been set.

func (*ReviewCommentModelV1) HasTimeUpdated ¶

func (o *ReviewCommentModelV1) HasTimeUpdated() bool

HasTimeUpdated returns a boolean if a field has been set.

func (ReviewCommentModelV1) MarshalJSON ¶

func (o ReviewCommentModelV1) MarshalJSON() ([]byte, error)

func (*ReviewCommentModelV1) SetAuthor ¶

SetAuthor gets a reference to the given ReviewCommentModelV1Author and assigns it to the Author field.

func (*ReviewCommentModelV1) SetContent ¶

func (o *ReviewCommentModelV1) SetContent(v string)

SetContent gets a reference to the given string and assigns it to the Content field.

func (*ReviewCommentModelV1) SetId ¶

func (o *ReviewCommentModelV1) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*ReviewCommentModelV1) SetRating ¶

func (o *ReviewCommentModelV1) SetRating(v float32)

SetRating gets a reference to the given float32 and assigns it to the Rating field.

func (*ReviewCommentModelV1) SetReviewId ¶

func (o *ReviewCommentModelV1) SetReviewId(v int64)

SetReviewId gets a reference to the given int64 and assigns it to the ReviewId field.

func (*ReviewCommentModelV1) SetSubject ¶

func (o *ReviewCommentModelV1) SetSubject(v string)

SetSubject gets a reference to the given string and assigns it to the Subject field.

func (*ReviewCommentModelV1) SetTimeAdded ¶

func (o *ReviewCommentModelV1) SetTimeAdded(v TimeV1)

SetTimeAdded gets a reference to the given TimeV1 and assigns it to the TimeAdded field.

func (*ReviewCommentModelV1) SetTimeUpdated ¶

func (o *ReviewCommentModelV1) SetTimeUpdated(v TimeV1)

SetTimeUpdated gets a reference to the given TimeV1 and assigns it to the TimeUpdated field.

func (ReviewCommentModelV1) ToMap ¶

func (o ReviewCommentModelV1) ToMap() (map[string]interface{}, error)

type ReviewCommentModelV1Author ¶

type ReviewCommentModelV1Author struct {
	UserId *int64  `json:"user_id,omitempty"`
	Name   *string `json:"name,omitempty"`
}

ReviewCommentModelV1Author struct for ReviewCommentModelV1Author

func NewReviewCommentModelV1Author ¶

func NewReviewCommentModelV1Author() *ReviewCommentModelV1Author

NewReviewCommentModelV1Author instantiates a new ReviewCommentModelV1Author object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReviewCommentModelV1AuthorWithDefaults ¶

func NewReviewCommentModelV1AuthorWithDefaults() *ReviewCommentModelV1Author

NewReviewCommentModelV1AuthorWithDefaults instantiates a new ReviewCommentModelV1Author object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReviewCommentModelV1Author) GetName ¶

func (o *ReviewCommentModelV1Author) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ReviewCommentModelV1Author) GetNameOk ¶

func (o *ReviewCommentModelV1Author) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewCommentModelV1Author) GetUserId ¶

func (o *ReviewCommentModelV1Author) GetUserId() int64

GetUserId returns the UserId field value if set, zero value otherwise.

func (*ReviewCommentModelV1Author) GetUserIdOk ¶

func (o *ReviewCommentModelV1Author) GetUserIdOk() (*int64, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewCommentModelV1Author) HasName ¶

func (o *ReviewCommentModelV1Author) HasName() bool

HasName returns a boolean if a field has been set.

func (*ReviewCommentModelV1Author) HasUserId ¶

func (o *ReviewCommentModelV1Author) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (ReviewCommentModelV1Author) MarshalJSON ¶

func (o ReviewCommentModelV1Author) MarshalJSON() ([]byte, error)

func (*ReviewCommentModelV1Author) SetName ¶

func (o *ReviewCommentModelV1Author) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ReviewCommentModelV1Author) SetUserId ¶

func (o *ReviewCommentModelV1Author) SetUserId(v int64)

SetUserId gets a reference to the given int64 and assigns it to the UserId field.

func (ReviewCommentModelV1Author) ToMap ¶

func (o ReviewCommentModelV1Author) ToMap() (map[string]interface{}, error)

type ReviewCommentSearchRequestV1 ¶

type ReviewCommentSearchRequestV1 struct {
	AddedBy *int64 `json:"added_by,omitempty"`
	Page    *int64 `json:"page,omitempty"`
	Perpage *int64 `json:"perpage,omitempty"`
}

ReviewCommentSearchRequestV1 struct for ReviewCommentSearchRequestV1

func NewReviewCommentSearchRequestV1 ¶

func NewReviewCommentSearchRequestV1() *ReviewCommentSearchRequestV1

NewReviewCommentSearchRequestV1 instantiates a new ReviewCommentSearchRequestV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReviewCommentSearchRequestV1WithDefaults ¶

func NewReviewCommentSearchRequestV1WithDefaults() *ReviewCommentSearchRequestV1

NewReviewCommentSearchRequestV1WithDefaults instantiates a new ReviewCommentSearchRequestV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReviewCommentSearchRequestV1) GetAddedBy ¶

func (o *ReviewCommentSearchRequestV1) GetAddedBy() int64

GetAddedBy returns the AddedBy field value if set, zero value otherwise.

func (*ReviewCommentSearchRequestV1) GetAddedByOk ¶

func (o *ReviewCommentSearchRequestV1) GetAddedByOk() (*int64, bool)

GetAddedByOk returns a tuple with the AddedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewCommentSearchRequestV1) GetPage ¶

func (o *ReviewCommentSearchRequestV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*ReviewCommentSearchRequestV1) GetPageOk ¶

func (o *ReviewCommentSearchRequestV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewCommentSearchRequestV1) GetPerpage ¶

func (o *ReviewCommentSearchRequestV1) GetPerpage() int64

GetPerpage returns the Perpage field value if set, zero value otherwise.

func (*ReviewCommentSearchRequestV1) GetPerpageOk ¶

func (o *ReviewCommentSearchRequestV1) GetPerpageOk() (*int64, bool)

GetPerpageOk returns a tuple with the Perpage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewCommentSearchRequestV1) HasAddedBy ¶

func (o *ReviewCommentSearchRequestV1) HasAddedBy() bool

HasAddedBy returns a boolean if a field has been set.

func (*ReviewCommentSearchRequestV1) HasPage ¶

func (o *ReviewCommentSearchRequestV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*ReviewCommentSearchRequestV1) HasPerpage ¶

func (o *ReviewCommentSearchRequestV1) HasPerpage() bool

HasPerpage returns a boolean if a field has been set.

func (ReviewCommentSearchRequestV1) MarshalJSON ¶

func (o ReviewCommentSearchRequestV1) MarshalJSON() ([]byte, error)

func (*ReviewCommentSearchRequestV1) SetAddedBy ¶

func (o *ReviewCommentSearchRequestV1) SetAddedBy(v int64)

SetAddedBy gets a reference to the given int64 and assigns it to the AddedBy field.

func (*ReviewCommentSearchRequestV1) SetPage ¶

func (o *ReviewCommentSearchRequestV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*ReviewCommentSearchRequestV1) SetPerpage ¶

func (o *ReviewCommentSearchRequestV1) SetPerpage(v int64)

SetPerpage gets a reference to the given int64 and assigns it to the Perpage field.

func (ReviewCommentSearchRequestV1) ToMap ¶

func (o ReviewCommentSearchRequestV1) ToMap() (map[string]interface{}, error)

type ReviewCommentSearchResponseV1 ¶

type ReviewCommentSearchResponseV1 struct {
	TotalHits *int64                                 `json:"total_hits,omitempty"`
	Page      *int64                                 `json:"page,omitempty"`
	PerPage   *int64                                 `json:"per_page,omitempty"`
	Results   []ReviewCommentSearchResponseV1Results `json:"results,omitempty"`
}

ReviewCommentSearchResponseV1 struct for ReviewCommentSearchResponseV1

func NewReviewCommentSearchResponseV1 ¶

func NewReviewCommentSearchResponseV1() *ReviewCommentSearchResponseV1

NewReviewCommentSearchResponseV1 instantiates a new ReviewCommentSearchResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReviewCommentSearchResponseV1WithDefaults ¶

func NewReviewCommentSearchResponseV1WithDefaults() *ReviewCommentSearchResponseV1

NewReviewCommentSearchResponseV1WithDefaults instantiates a new ReviewCommentSearchResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReviewCommentSearchResponseV1) GetPage ¶

func (o *ReviewCommentSearchResponseV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*ReviewCommentSearchResponseV1) GetPageOk ¶

func (o *ReviewCommentSearchResponseV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewCommentSearchResponseV1) GetPerPage ¶

func (o *ReviewCommentSearchResponseV1) GetPerPage() int64

GetPerPage returns the PerPage field value if set, zero value otherwise.

func (*ReviewCommentSearchResponseV1) GetPerPageOk ¶

func (o *ReviewCommentSearchResponseV1) GetPerPageOk() (*int64, bool)

GetPerPageOk returns a tuple with the PerPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewCommentSearchResponseV1) GetResults ¶

GetResults returns the Results field value if set, zero value otherwise.

func (*ReviewCommentSearchResponseV1) GetResultsOk ¶

GetResultsOk returns a tuple with the Results field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewCommentSearchResponseV1) GetTotalHits ¶

func (o *ReviewCommentSearchResponseV1) GetTotalHits() int64

GetTotalHits returns the TotalHits field value if set, zero value otherwise.

func (*ReviewCommentSearchResponseV1) GetTotalHitsOk ¶

func (o *ReviewCommentSearchResponseV1) GetTotalHitsOk() (*int64, bool)

GetTotalHitsOk returns a tuple with the TotalHits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewCommentSearchResponseV1) HasPage ¶

func (o *ReviewCommentSearchResponseV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*ReviewCommentSearchResponseV1) HasPerPage ¶

func (o *ReviewCommentSearchResponseV1) HasPerPage() bool

HasPerPage returns a boolean if a field has been set.

func (*ReviewCommentSearchResponseV1) HasResults ¶

func (o *ReviewCommentSearchResponseV1) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*ReviewCommentSearchResponseV1) HasTotalHits ¶

func (o *ReviewCommentSearchResponseV1) HasTotalHits() bool

HasTotalHits returns a boolean if a field has been set.

func (ReviewCommentSearchResponseV1) MarshalJSON ¶

func (o ReviewCommentSearchResponseV1) MarshalJSON() ([]byte, error)

func (*ReviewCommentSearchResponseV1) SetPage ¶

func (o *ReviewCommentSearchResponseV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*ReviewCommentSearchResponseV1) SetPerPage ¶

func (o *ReviewCommentSearchResponseV1) SetPerPage(v int64)

SetPerPage gets a reference to the given int64 and assigns it to the PerPage field.

func (*ReviewCommentSearchResponseV1) SetResults ¶

SetResults gets a reference to the given []ReviewCommentSearchResponseV1Results and assigns it to the Results field.

func (*ReviewCommentSearchResponseV1) SetTotalHits ¶

func (o *ReviewCommentSearchResponseV1) SetTotalHits(v int64)

SetTotalHits gets a reference to the given int64 and assigns it to the TotalHits field.

func (ReviewCommentSearchResponseV1) ToMap ¶

func (o ReviewCommentSearchResponseV1) ToMap() (map[string]interface{}, error)

type ReviewCommentSearchResponseV1Results ¶

type ReviewCommentSearchResponseV1Results struct {
	Record *ReviewCommentModelV1 `json:"record,omitempty"`
}

ReviewCommentSearchResponseV1Results struct for ReviewCommentSearchResponseV1Results

func NewReviewCommentSearchResponseV1Results ¶

func NewReviewCommentSearchResponseV1Results() *ReviewCommentSearchResponseV1Results

NewReviewCommentSearchResponseV1Results instantiates a new ReviewCommentSearchResponseV1Results object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReviewCommentSearchResponseV1ResultsWithDefaults ¶

func NewReviewCommentSearchResponseV1ResultsWithDefaults() *ReviewCommentSearchResponseV1Results

NewReviewCommentSearchResponseV1ResultsWithDefaults instantiates a new ReviewCommentSearchResponseV1Results object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReviewCommentSearchResponseV1Results) GetRecord ¶

GetRecord returns the Record field value if set, zero value otherwise.

func (*ReviewCommentSearchResponseV1Results) GetRecordOk ¶

GetRecordOk returns a tuple with the Record field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewCommentSearchResponseV1Results) HasRecord ¶

HasRecord returns a boolean if a field has been set.

func (ReviewCommentSearchResponseV1Results) MarshalJSON ¶

func (o ReviewCommentSearchResponseV1Results) MarshalJSON() ([]byte, error)

func (*ReviewCommentSearchResponseV1Results) SetRecord ¶

SetRecord gets a reference to the given ReviewCommentModelV1 and assigns it to the Record field.

func (ReviewCommentSearchResponseV1Results) ToMap ¶

func (o ReviewCommentSearchResponseV1Results) ToMap() (map[string]interface{}, error)

type ReviewModelSearchV1 ¶

type ReviewModelSearchV1 struct {
	Id          *int64                     `json:"id,omitempty"`
	Title       *string                    `json:"title,omitempty"`
	BodyExcerpt *string                    `json:"body_excerpt,omitempty"`
	Author      *ReviewModelSearchV1Author `json:"author,omitempty"`
	Series      *SeriesModelSearchV1       `json:"series,omitempty"`
	Review      *ReviewModelSearchV1Review `json:"review,omitempty"`
	TimeAdded   *TimeV1                    `json:"time_added,omitempty"`
}

ReviewModelSearchV1 struct for ReviewModelSearchV1

func NewReviewModelSearchV1 ¶

func NewReviewModelSearchV1() *ReviewModelSearchV1

NewReviewModelSearchV1 instantiates a new ReviewModelSearchV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReviewModelSearchV1WithDefaults ¶

func NewReviewModelSearchV1WithDefaults() *ReviewModelSearchV1

NewReviewModelSearchV1WithDefaults instantiates a new ReviewModelSearchV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReviewModelSearchV1) GetAuthor ¶

GetAuthor returns the Author field value if set, zero value otherwise.

func (*ReviewModelSearchV1) GetAuthorOk ¶

func (o *ReviewModelSearchV1) GetAuthorOk() (*ReviewModelSearchV1Author, bool)

GetAuthorOk returns a tuple with the Author field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelSearchV1) GetBodyExcerpt ¶

func (o *ReviewModelSearchV1) GetBodyExcerpt() string

GetBodyExcerpt returns the BodyExcerpt field value if set, zero value otherwise.

func (*ReviewModelSearchV1) GetBodyExcerptOk ¶

func (o *ReviewModelSearchV1) GetBodyExcerptOk() (*string, bool)

GetBodyExcerptOk returns a tuple with the BodyExcerpt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelSearchV1) GetId ¶

func (o *ReviewModelSearchV1) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*ReviewModelSearchV1) GetIdOk ¶

func (o *ReviewModelSearchV1) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelSearchV1) GetReview ¶

GetReview returns the Review field value if set, zero value otherwise.

func (*ReviewModelSearchV1) GetReviewOk ¶

func (o *ReviewModelSearchV1) GetReviewOk() (*ReviewModelSearchV1Review, bool)

GetReviewOk returns a tuple with the Review field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelSearchV1) GetSeries ¶

GetSeries returns the Series field value if set, zero value otherwise.

func (*ReviewModelSearchV1) GetSeriesOk ¶

func (o *ReviewModelSearchV1) GetSeriesOk() (*SeriesModelSearchV1, bool)

GetSeriesOk returns a tuple with the Series field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelSearchV1) GetTimeAdded ¶

func (o *ReviewModelSearchV1) GetTimeAdded() TimeV1

GetTimeAdded returns the TimeAdded field value if set, zero value otherwise.

func (*ReviewModelSearchV1) GetTimeAddedOk ¶

func (o *ReviewModelSearchV1) GetTimeAddedOk() (*TimeV1, bool)

GetTimeAddedOk returns a tuple with the TimeAdded field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelSearchV1) GetTitle ¶

func (o *ReviewModelSearchV1) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*ReviewModelSearchV1) GetTitleOk ¶

func (o *ReviewModelSearchV1) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelSearchV1) HasAuthor ¶

func (o *ReviewModelSearchV1) HasAuthor() bool

HasAuthor returns a boolean if a field has been set.

func (*ReviewModelSearchV1) HasBodyExcerpt ¶

func (o *ReviewModelSearchV1) HasBodyExcerpt() bool

HasBodyExcerpt returns a boolean if a field has been set.

func (*ReviewModelSearchV1) HasId ¶

func (o *ReviewModelSearchV1) HasId() bool

HasId returns a boolean if a field has been set.

func (*ReviewModelSearchV1) HasReview ¶

func (o *ReviewModelSearchV1) HasReview() bool

HasReview returns a boolean if a field has been set.

func (*ReviewModelSearchV1) HasSeries ¶

func (o *ReviewModelSearchV1) HasSeries() bool

HasSeries returns a boolean if a field has been set.

func (*ReviewModelSearchV1) HasTimeAdded ¶

func (o *ReviewModelSearchV1) HasTimeAdded() bool

HasTimeAdded returns a boolean if a field has been set.

func (*ReviewModelSearchV1) HasTitle ¶

func (o *ReviewModelSearchV1) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (ReviewModelSearchV1) MarshalJSON ¶

func (o ReviewModelSearchV1) MarshalJSON() ([]byte, error)

func (*ReviewModelSearchV1) SetAuthor ¶

SetAuthor gets a reference to the given ReviewModelSearchV1Author and assigns it to the Author field.

func (*ReviewModelSearchV1) SetBodyExcerpt ¶

func (o *ReviewModelSearchV1) SetBodyExcerpt(v string)

SetBodyExcerpt gets a reference to the given string and assigns it to the BodyExcerpt field.

func (*ReviewModelSearchV1) SetId ¶

func (o *ReviewModelSearchV1) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*ReviewModelSearchV1) SetReview ¶

SetReview gets a reference to the given ReviewModelSearchV1Review and assigns it to the Review field.

func (*ReviewModelSearchV1) SetSeries ¶

func (o *ReviewModelSearchV1) SetSeries(v SeriesModelSearchV1)

SetSeries gets a reference to the given SeriesModelSearchV1 and assigns it to the Series field.

func (*ReviewModelSearchV1) SetTimeAdded ¶

func (o *ReviewModelSearchV1) SetTimeAdded(v TimeV1)

SetTimeAdded gets a reference to the given TimeV1 and assigns it to the TimeAdded field.

func (*ReviewModelSearchV1) SetTitle ¶

func (o *ReviewModelSearchV1) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (ReviewModelSearchV1) ToMap ¶

func (o ReviewModelSearchV1) ToMap() (map[string]interface{}, error)

type ReviewModelSearchV1Author ¶

type ReviewModelSearchV1Author struct {
	UserId *int64  `json:"user_id,omitempty"`
	Name   *string `json:"name,omitempty"`
}

ReviewModelSearchV1Author struct for ReviewModelSearchV1Author

func NewReviewModelSearchV1Author ¶

func NewReviewModelSearchV1Author() *ReviewModelSearchV1Author

NewReviewModelSearchV1Author instantiates a new ReviewModelSearchV1Author object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReviewModelSearchV1AuthorWithDefaults ¶

func NewReviewModelSearchV1AuthorWithDefaults() *ReviewModelSearchV1Author

NewReviewModelSearchV1AuthorWithDefaults instantiates a new ReviewModelSearchV1Author object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReviewModelSearchV1Author) GetName ¶

func (o *ReviewModelSearchV1Author) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ReviewModelSearchV1Author) GetNameOk ¶

func (o *ReviewModelSearchV1Author) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelSearchV1Author) GetUserId ¶

func (o *ReviewModelSearchV1Author) GetUserId() int64

GetUserId returns the UserId field value if set, zero value otherwise.

func (*ReviewModelSearchV1Author) GetUserIdOk ¶

func (o *ReviewModelSearchV1Author) GetUserIdOk() (*int64, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelSearchV1Author) HasName ¶

func (o *ReviewModelSearchV1Author) HasName() bool

HasName returns a boolean if a field has been set.

func (*ReviewModelSearchV1Author) HasUserId ¶

func (o *ReviewModelSearchV1Author) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (ReviewModelSearchV1Author) MarshalJSON ¶

func (o ReviewModelSearchV1Author) MarshalJSON() ([]byte, error)

func (*ReviewModelSearchV1Author) SetName ¶

func (o *ReviewModelSearchV1Author) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ReviewModelSearchV1Author) SetUserId ¶

func (o *ReviewModelSearchV1Author) SetUserId(v int64)

SetUserId gets a reference to the given int64 and assigns it to the UserId field.

func (ReviewModelSearchV1Author) ToMap ¶

func (o ReviewModelSearchV1Author) ToMap() (map[string]interface{}, error)

type ReviewModelSearchV1Review ¶

type ReviewModelSearchV1Review struct {
	Plot       *float32 `json:"plot,omitempty"`
	Drawing    *float32 `json:"drawing,omitempty"`
	Characters *float32 `json:"characters,omitempty"`
	Enjoy      *float32 `json:"enjoy,omitempty"`
	Overall    *float32 `json:"overall,omitempty"`
}

ReviewModelSearchV1Review struct for ReviewModelSearchV1Review

func NewReviewModelSearchV1Review ¶

func NewReviewModelSearchV1Review() *ReviewModelSearchV1Review

NewReviewModelSearchV1Review instantiates a new ReviewModelSearchV1Review object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReviewModelSearchV1ReviewWithDefaults ¶

func NewReviewModelSearchV1ReviewWithDefaults() *ReviewModelSearchV1Review

NewReviewModelSearchV1ReviewWithDefaults instantiates a new ReviewModelSearchV1Review object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReviewModelSearchV1Review) GetCharacters ¶

func (o *ReviewModelSearchV1Review) GetCharacters() float32

GetCharacters returns the Characters field value if set, zero value otherwise.

func (*ReviewModelSearchV1Review) GetCharactersOk ¶

func (o *ReviewModelSearchV1Review) GetCharactersOk() (*float32, bool)

GetCharactersOk returns a tuple with the Characters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelSearchV1Review) GetDrawing ¶

func (o *ReviewModelSearchV1Review) GetDrawing() float32

GetDrawing returns the Drawing field value if set, zero value otherwise.

func (*ReviewModelSearchV1Review) GetDrawingOk ¶

func (o *ReviewModelSearchV1Review) GetDrawingOk() (*float32, bool)

GetDrawingOk returns a tuple with the Drawing field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelSearchV1Review) GetEnjoy ¶

func (o *ReviewModelSearchV1Review) GetEnjoy() float32

GetEnjoy returns the Enjoy field value if set, zero value otherwise.

func (*ReviewModelSearchV1Review) GetEnjoyOk ¶

func (o *ReviewModelSearchV1Review) GetEnjoyOk() (*float32, bool)

GetEnjoyOk returns a tuple with the Enjoy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelSearchV1Review) GetOverall ¶

func (o *ReviewModelSearchV1Review) GetOverall() float32

GetOverall returns the Overall field value if set, zero value otherwise.

func (*ReviewModelSearchV1Review) GetOverallOk ¶

func (o *ReviewModelSearchV1Review) GetOverallOk() (*float32, bool)

GetOverallOk returns a tuple with the Overall field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelSearchV1Review) GetPlot ¶

func (o *ReviewModelSearchV1Review) GetPlot() float32

GetPlot returns the Plot field value if set, zero value otherwise.

func (*ReviewModelSearchV1Review) GetPlotOk ¶

func (o *ReviewModelSearchV1Review) GetPlotOk() (*float32, bool)

GetPlotOk returns a tuple with the Plot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelSearchV1Review) HasCharacters ¶

func (o *ReviewModelSearchV1Review) HasCharacters() bool

HasCharacters returns a boolean if a field has been set.

func (*ReviewModelSearchV1Review) HasDrawing ¶

func (o *ReviewModelSearchV1Review) HasDrawing() bool

HasDrawing returns a boolean if a field has been set.

func (*ReviewModelSearchV1Review) HasEnjoy ¶

func (o *ReviewModelSearchV1Review) HasEnjoy() bool

HasEnjoy returns a boolean if a field has been set.

func (*ReviewModelSearchV1Review) HasOverall ¶

func (o *ReviewModelSearchV1Review) HasOverall() bool

HasOverall returns a boolean if a field has been set.

func (*ReviewModelSearchV1Review) HasPlot ¶

func (o *ReviewModelSearchV1Review) HasPlot() bool

HasPlot returns a boolean if a field has been set.

func (ReviewModelSearchV1Review) MarshalJSON ¶

func (o ReviewModelSearchV1Review) MarshalJSON() ([]byte, error)

func (*ReviewModelSearchV1Review) SetCharacters ¶

func (o *ReviewModelSearchV1Review) SetCharacters(v float32)

SetCharacters gets a reference to the given float32 and assigns it to the Characters field.

func (*ReviewModelSearchV1Review) SetDrawing ¶

func (o *ReviewModelSearchV1Review) SetDrawing(v float32)

SetDrawing gets a reference to the given float32 and assigns it to the Drawing field.

func (*ReviewModelSearchV1Review) SetEnjoy ¶

func (o *ReviewModelSearchV1Review) SetEnjoy(v float32)

SetEnjoy gets a reference to the given float32 and assigns it to the Enjoy field.

func (*ReviewModelSearchV1Review) SetOverall ¶

func (o *ReviewModelSearchV1Review) SetOverall(v float32)

SetOverall gets a reference to the given float32 and assigns it to the Overall field.

func (*ReviewModelSearchV1Review) SetPlot ¶

func (o *ReviewModelSearchV1Review) SetPlot(v float32)

SetPlot gets a reference to the given float32 and assigns it to the Plot field.

func (ReviewModelSearchV1Review) ToMap ¶

func (o ReviewModelSearchV1Review) ToMap() (map[string]interface{}, error)

type ReviewModelUpdateV1 ¶

type ReviewModelUpdateV1 struct {
	Title       *string                    `json:"title,omitempty"`
	Body        *string                    `json:"body,omitempty"`
	SeriesTitle *string                    `json:"series_title,omitempty"`
	Review      *ReviewModelUpdateV1Review `json:"review,omitempty"`
	Admin       *ReviewModelUpdateV1Admin  `json:"admin,omitempty"`
}

ReviewModelUpdateV1 struct for ReviewModelUpdateV1

func NewReviewModelUpdateV1 ¶

func NewReviewModelUpdateV1() *ReviewModelUpdateV1

NewReviewModelUpdateV1 instantiates a new ReviewModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReviewModelUpdateV1WithDefaults ¶

func NewReviewModelUpdateV1WithDefaults() *ReviewModelUpdateV1

NewReviewModelUpdateV1WithDefaults instantiates a new ReviewModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReviewModelUpdateV1) GetAdmin ¶

GetAdmin returns the Admin field value if set, zero value otherwise.

func (*ReviewModelUpdateV1) GetAdminOk ¶

GetAdminOk returns a tuple with the Admin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelUpdateV1) GetBody ¶

func (o *ReviewModelUpdateV1) GetBody() string

GetBody returns the Body field value if set, zero value otherwise.

func (*ReviewModelUpdateV1) GetBodyOk ¶

func (o *ReviewModelUpdateV1) GetBodyOk() (*string, bool)

GetBodyOk returns a tuple with the Body field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelUpdateV1) GetReview ¶

GetReview returns the Review field value if set, zero value otherwise.

func (*ReviewModelUpdateV1) GetReviewOk ¶

func (o *ReviewModelUpdateV1) GetReviewOk() (*ReviewModelUpdateV1Review, bool)

GetReviewOk returns a tuple with the Review field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelUpdateV1) GetSeriesTitle ¶

func (o *ReviewModelUpdateV1) GetSeriesTitle() string

GetSeriesTitle returns the SeriesTitle field value if set, zero value otherwise.

func (*ReviewModelUpdateV1) GetSeriesTitleOk ¶

func (o *ReviewModelUpdateV1) GetSeriesTitleOk() (*string, bool)

GetSeriesTitleOk returns a tuple with the SeriesTitle field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelUpdateV1) GetTitle ¶

func (o *ReviewModelUpdateV1) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*ReviewModelUpdateV1) GetTitleOk ¶

func (o *ReviewModelUpdateV1) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelUpdateV1) HasAdmin ¶

func (o *ReviewModelUpdateV1) HasAdmin() bool

HasAdmin returns a boolean if a field has been set.

func (*ReviewModelUpdateV1) HasBody ¶

func (o *ReviewModelUpdateV1) HasBody() bool

HasBody returns a boolean if a field has been set.

func (*ReviewModelUpdateV1) HasReview ¶

func (o *ReviewModelUpdateV1) HasReview() bool

HasReview returns a boolean if a field has been set.

func (*ReviewModelUpdateV1) HasSeriesTitle ¶

func (o *ReviewModelUpdateV1) HasSeriesTitle() bool

HasSeriesTitle returns a boolean if a field has been set.

func (*ReviewModelUpdateV1) HasTitle ¶

func (o *ReviewModelUpdateV1) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (ReviewModelUpdateV1) MarshalJSON ¶

func (o ReviewModelUpdateV1) MarshalJSON() ([]byte, error)

func (*ReviewModelUpdateV1) SetAdmin ¶

SetAdmin gets a reference to the given ReviewModelUpdateV1Admin and assigns it to the Admin field.

func (*ReviewModelUpdateV1) SetBody ¶

func (o *ReviewModelUpdateV1) SetBody(v string)

SetBody gets a reference to the given string and assigns it to the Body field.

func (*ReviewModelUpdateV1) SetReview ¶

SetReview gets a reference to the given ReviewModelUpdateV1Review and assigns it to the Review field.

func (*ReviewModelUpdateV1) SetSeriesTitle ¶

func (o *ReviewModelUpdateV1) SetSeriesTitle(v string)

SetSeriesTitle gets a reference to the given string and assigns it to the SeriesTitle field.

func (*ReviewModelUpdateV1) SetTitle ¶

func (o *ReviewModelUpdateV1) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (ReviewModelUpdateV1) ToMap ¶

func (o ReviewModelUpdateV1) ToMap() (map[string]interface{}, error)

type ReviewModelUpdateV1Admin ¶

type ReviewModelUpdateV1Admin struct {
	Approved  *bool `json:"approved,omitempty"`
	Moderated *bool `json:"moderated,omitempty"`
}

ReviewModelUpdateV1Admin struct for ReviewModelUpdateV1Admin

func NewReviewModelUpdateV1Admin ¶

func NewReviewModelUpdateV1Admin() *ReviewModelUpdateV1Admin

NewReviewModelUpdateV1Admin instantiates a new ReviewModelUpdateV1Admin object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReviewModelUpdateV1AdminWithDefaults ¶

func NewReviewModelUpdateV1AdminWithDefaults() *ReviewModelUpdateV1Admin

NewReviewModelUpdateV1AdminWithDefaults instantiates a new ReviewModelUpdateV1Admin object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReviewModelUpdateV1Admin) GetApproved ¶

func (o *ReviewModelUpdateV1Admin) GetApproved() bool

GetApproved returns the Approved field value if set, zero value otherwise.

func (*ReviewModelUpdateV1Admin) GetApprovedOk ¶

func (o *ReviewModelUpdateV1Admin) GetApprovedOk() (*bool, bool)

GetApprovedOk returns a tuple with the Approved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelUpdateV1Admin) GetModerated ¶

func (o *ReviewModelUpdateV1Admin) GetModerated() bool

GetModerated returns the Moderated field value if set, zero value otherwise.

func (*ReviewModelUpdateV1Admin) GetModeratedOk ¶

func (o *ReviewModelUpdateV1Admin) GetModeratedOk() (*bool, bool)

GetModeratedOk returns a tuple with the Moderated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelUpdateV1Admin) HasApproved ¶

func (o *ReviewModelUpdateV1Admin) HasApproved() bool

HasApproved returns a boolean if a field has been set.

func (*ReviewModelUpdateV1Admin) HasModerated ¶

func (o *ReviewModelUpdateV1Admin) HasModerated() bool

HasModerated returns a boolean if a field has been set.

func (ReviewModelUpdateV1Admin) MarshalJSON ¶

func (o ReviewModelUpdateV1Admin) MarshalJSON() ([]byte, error)

func (*ReviewModelUpdateV1Admin) SetApproved ¶

func (o *ReviewModelUpdateV1Admin) SetApproved(v bool)

SetApproved gets a reference to the given bool and assigns it to the Approved field.

func (*ReviewModelUpdateV1Admin) SetModerated ¶

func (o *ReviewModelUpdateV1Admin) SetModerated(v bool)

SetModerated gets a reference to the given bool and assigns it to the Moderated field.

func (ReviewModelUpdateV1Admin) ToMap ¶

func (o ReviewModelUpdateV1Admin) ToMap() (map[string]interface{}, error)

type ReviewModelUpdateV1Review ¶

type ReviewModelUpdateV1Review struct {
	Plot       *float32 `json:"plot,omitempty"`
	Drawing    *float32 `json:"drawing,omitempty"`
	Characters *float32 `json:"characters,omitempty"`
	Enjoy      *float32 `json:"enjoy,omitempty"`
	Overall    *float32 `json:"overall,omitempty"`
}

ReviewModelUpdateV1Review struct for ReviewModelUpdateV1Review

func NewReviewModelUpdateV1Review ¶

func NewReviewModelUpdateV1Review() *ReviewModelUpdateV1Review

NewReviewModelUpdateV1Review instantiates a new ReviewModelUpdateV1Review object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReviewModelUpdateV1ReviewWithDefaults ¶

func NewReviewModelUpdateV1ReviewWithDefaults() *ReviewModelUpdateV1Review

NewReviewModelUpdateV1ReviewWithDefaults instantiates a new ReviewModelUpdateV1Review object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReviewModelUpdateV1Review) GetCharacters ¶

func (o *ReviewModelUpdateV1Review) GetCharacters() float32

GetCharacters returns the Characters field value if set, zero value otherwise.

func (*ReviewModelUpdateV1Review) GetCharactersOk ¶

func (o *ReviewModelUpdateV1Review) GetCharactersOk() (*float32, bool)

GetCharactersOk returns a tuple with the Characters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelUpdateV1Review) GetDrawing ¶

func (o *ReviewModelUpdateV1Review) GetDrawing() float32

GetDrawing returns the Drawing field value if set, zero value otherwise.

func (*ReviewModelUpdateV1Review) GetDrawingOk ¶

func (o *ReviewModelUpdateV1Review) GetDrawingOk() (*float32, bool)

GetDrawingOk returns a tuple with the Drawing field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelUpdateV1Review) GetEnjoy ¶

func (o *ReviewModelUpdateV1Review) GetEnjoy() float32

GetEnjoy returns the Enjoy field value if set, zero value otherwise.

func (*ReviewModelUpdateV1Review) GetEnjoyOk ¶

func (o *ReviewModelUpdateV1Review) GetEnjoyOk() (*float32, bool)

GetEnjoyOk returns a tuple with the Enjoy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelUpdateV1Review) GetOverall ¶

func (o *ReviewModelUpdateV1Review) GetOverall() float32

GetOverall returns the Overall field value if set, zero value otherwise.

func (*ReviewModelUpdateV1Review) GetOverallOk ¶

func (o *ReviewModelUpdateV1Review) GetOverallOk() (*float32, bool)

GetOverallOk returns a tuple with the Overall field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelUpdateV1Review) GetPlot ¶

func (o *ReviewModelUpdateV1Review) GetPlot() float32

GetPlot returns the Plot field value if set, zero value otherwise.

func (*ReviewModelUpdateV1Review) GetPlotOk ¶

func (o *ReviewModelUpdateV1Review) GetPlotOk() (*float32, bool)

GetPlotOk returns a tuple with the Plot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelUpdateV1Review) HasCharacters ¶

func (o *ReviewModelUpdateV1Review) HasCharacters() bool

HasCharacters returns a boolean if a field has been set.

func (*ReviewModelUpdateV1Review) HasDrawing ¶

func (o *ReviewModelUpdateV1Review) HasDrawing() bool

HasDrawing returns a boolean if a field has been set.

func (*ReviewModelUpdateV1Review) HasEnjoy ¶

func (o *ReviewModelUpdateV1Review) HasEnjoy() bool

HasEnjoy returns a boolean if a field has been set.

func (*ReviewModelUpdateV1Review) HasOverall ¶

func (o *ReviewModelUpdateV1Review) HasOverall() bool

HasOverall returns a boolean if a field has been set.

func (*ReviewModelUpdateV1Review) HasPlot ¶

func (o *ReviewModelUpdateV1Review) HasPlot() bool

HasPlot returns a boolean if a field has been set.

func (ReviewModelUpdateV1Review) MarshalJSON ¶

func (o ReviewModelUpdateV1Review) MarshalJSON() ([]byte, error)

func (*ReviewModelUpdateV1Review) SetCharacters ¶

func (o *ReviewModelUpdateV1Review) SetCharacters(v float32)

SetCharacters gets a reference to the given float32 and assigns it to the Characters field.

func (*ReviewModelUpdateV1Review) SetDrawing ¶

func (o *ReviewModelUpdateV1Review) SetDrawing(v float32)

SetDrawing gets a reference to the given float32 and assigns it to the Drawing field.

func (*ReviewModelUpdateV1Review) SetEnjoy ¶

func (o *ReviewModelUpdateV1Review) SetEnjoy(v float32)

SetEnjoy gets a reference to the given float32 and assigns it to the Enjoy field.

func (*ReviewModelUpdateV1Review) SetOverall ¶

func (o *ReviewModelUpdateV1Review) SetOverall(v float32)

SetOverall gets a reference to the given float32 and assigns it to the Overall field.

func (*ReviewModelUpdateV1Review) SetPlot ¶

func (o *ReviewModelUpdateV1Review) SetPlot(v float32)

SetPlot gets a reference to the given float32 and assigns it to the Plot field.

func (ReviewModelUpdateV1Review) ToMap ¶

func (o ReviewModelUpdateV1Review) ToMap() (map[string]interface{}, error)

type ReviewModelV1 ¶

type ReviewModelV1 struct {
	Id        *int64               `json:"id,omitempty"`
	Title     *string              `json:"title,omitempty"`
	Body      *string              `json:"body,omitempty"`
	Author    *ReviewModelV1Author `json:"author,omitempty"`
	Series    *SeriesModelSearchV1 `json:"series,omitempty"`
	Review    *ReviewModelV1Review `json:"review,omitempty"`
	TimeAdded *TimeV1              `json:"time_added,omitempty"`
}

ReviewModelV1 struct for ReviewModelV1

func NewReviewModelV1 ¶

func NewReviewModelV1() *ReviewModelV1

NewReviewModelV1 instantiates a new ReviewModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReviewModelV1WithDefaults ¶

func NewReviewModelV1WithDefaults() *ReviewModelV1

NewReviewModelV1WithDefaults instantiates a new ReviewModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReviewModelV1) GetAuthor ¶

func (o *ReviewModelV1) GetAuthor() ReviewModelV1Author

GetAuthor returns the Author field value if set, zero value otherwise.

func (*ReviewModelV1) GetAuthorOk ¶

func (o *ReviewModelV1) GetAuthorOk() (*ReviewModelV1Author, bool)

GetAuthorOk returns a tuple with the Author field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelV1) GetBody ¶

func (o *ReviewModelV1) GetBody() string

GetBody returns the Body field value if set, zero value otherwise.

func (*ReviewModelV1) GetBodyOk ¶

func (o *ReviewModelV1) GetBodyOk() (*string, bool)

GetBodyOk returns a tuple with the Body field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelV1) GetId ¶

func (o *ReviewModelV1) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*ReviewModelV1) GetIdOk ¶

func (o *ReviewModelV1) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelV1) GetReview ¶

func (o *ReviewModelV1) GetReview() ReviewModelV1Review

GetReview returns the Review field value if set, zero value otherwise.

func (*ReviewModelV1) GetReviewOk ¶

func (o *ReviewModelV1) GetReviewOk() (*ReviewModelV1Review, bool)

GetReviewOk returns a tuple with the Review field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelV1) GetSeries ¶

func (o *ReviewModelV1) GetSeries() SeriesModelSearchV1

GetSeries returns the Series field value if set, zero value otherwise.

func (*ReviewModelV1) GetSeriesOk ¶

func (o *ReviewModelV1) GetSeriesOk() (*SeriesModelSearchV1, bool)

GetSeriesOk returns a tuple with the Series field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelV1) GetTimeAdded ¶

func (o *ReviewModelV1) GetTimeAdded() TimeV1

GetTimeAdded returns the TimeAdded field value if set, zero value otherwise.

func (*ReviewModelV1) GetTimeAddedOk ¶

func (o *ReviewModelV1) GetTimeAddedOk() (*TimeV1, bool)

GetTimeAddedOk returns a tuple with the TimeAdded field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelV1) GetTitle ¶

func (o *ReviewModelV1) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*ReviewModelV1) GetTitleOk ¶

func (o *ReviewModelV1) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelV1) HasAuthor ¶

func (o *ReviewModelV1) HasAuthor() bool

HasAuthor returns a boolean if a field has been set.

func (*ReviewModelV1) HasBody ¶

func (o *ReviewModelV1) HasBody() bool

HasBody returns a boolean if a field has been set.

func (*ReviewModelV1) HasId ¶

func (o *ReviewModelV1) HasId() bool

HasId returns a boolean if a field has been set.

func (*ReviewModelV1) HasReview ¶

func (o *ReviewModelV1) HasReview() bool

HasReview returns a boolean if a field has been set.

func (*ReviewModelV1) HasSeries ¶

func (o *ReviewModelV1) HasSeries() bool

HasSeries returns a boolean if a field has been set.

func (*ReviewModelV1) HasTimeAdded ¶

func (o *ReviewModelV1) HasTimeAdded() bool

HasTimeAdded returns a boolean if a field has been set.

func (*ReviewModelV1) HasTitle ¶

func (o *ReviewModelV1) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (ReviewModelV1) MarshalJSON ¶

func (o ReviewModelV1) MarshalJSON() ([]byte, error)

func (*ReviewModelV1) SetAuthor ¶

func (o *ReviewModelV1) SetAuthor(v ReviewModelV1Author)

SetAuthor gets a reference to the given ReviewModelV1Author and assigns it to the Author field.

func (*ReviewModelV1) SetBody ¶

func (o *ReviewModelV1) SetBody(v string)

SetBody gets a reference to the given string and assigns it to the Body field.

func (*ReviewModelV1) SetId ¶

func (o *ReviewModelV1) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*ReviewModelV1) SetReview ¶

func (o *ReviewModelV1) SetReview(v ReviewModelV1Review)

SetReview gets a reference to the given ReviewModelV1Review and assigns it to the Review field.

func (*ReviewModelV1) SetSeries ¶

func (o *ReviewModelV1) SetSeries(v SeriesModelSearchV1)

SetSeries gets a reference to the given SeriesModelSearchV1 and assigns it to the Series field.

func (*ReviewModelV1) SetTimeAdded ¶

func (o *ReviewModelV1) SetTimeAdded(v TimeV1)

SetTimeAdded gets a reference to the given TimeV1 and assigns it to the TimeAdded field.

func (*ReviewModelV1) SetTitle ¶

func (o *ReviewModelV1) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (ReviewModelV1) ToMap ¶

func (o ReviewModelV1) ToMap() (map[string]interface{}, error)

type ReviewModelV1Author ¶

type ReviewModelV1Author struct {
	UserId *int64  `json:"user_id,omitempty"`
	Name   *string `json:"name,omitempty"`
}

ReviewModelV1Author struct for ReviewModelV1Author

func NewReviewModelV1Author ¶

func NewReviewModelV1Author() *ReviewModelV1Author

NewReviewModelV1Author instantiates a new ReviewModelV1Author object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReviewModelV1AuthorWithDefaults ¶

func NewReviewModelV1AuthorWithDefaults() *ReviewModelV1Author

NewReviewModelV1AuthorWithDefaults instantiates a new ReviewModelV1Author object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReviewModelV1Author) GetName ¶

func (o *ReviewModelV1Author) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ReviewModelV1Author) GetNameOk ¶

func (o *ReviewModelV1Author) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelV1Author) GetUserId ¶

func (o *ReviewModelV1Author) GetUserId() int64

GetUserId returns the UserId field value if set, zero value otherwise.

func (*ReviewModelV1Author) GetUserIdOk ¶

func (o *ReviewModelV1Author) GetUserIdOk() (*int64, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelV1Author) HasName ¶

func (o *ReviewModelV1Author) HasName() bool

HasName returns a boolean if a field has been set.

func (*ReviewModelV1Author) HasUserId ¶

func (o *ReviewModelV1Author) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (ReviewModelV1Author) MarshalJSON ¶

func (o ReviewModelV1Author) MarshalJSON() ([]byte, error)

func (*ReviewModelV1Author) SetName ¶

func (o *ReviewModelV1Author) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ReviewModelV1Author) SetUserId ¶

func (o *ReviewModelV1Author) SetUserId(v int64)

SetUserId gets a reference to the given int64 and assigns it to the UserId field.

func (ReviewModelV1Author) ToMap ¶

func (o ReviewModelV1Author) ToMap() (map[string]interface{}, error)

type ReviewModelV1Review ¶

type ReviewModelV1Review struct {
	User       *float32 `json:"user,omitempty"`
	Plot       *float32 `json:"plot,omitempty"`
	Drawing    *float32 `json:"drawing,omitempty"`
	Characters *float32 `json:"characters,omitempty"`
	Enjoy      *float32 `json:"enjoy,omitempty"`
	Overall    *float32 `json:"overall,omitempty"`
}

ReviewModelV1Review struct for ReviewModelV1Review

func NewReviewModelV1Review ¶

func NewReviewModelV1Review() *ReviewModelV1Review

NewReviewModelV1Review instantiates a new ReviewModelV1Review object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReviewModelV1ReviewWithDefaults ¶

func NewReviewModelV1ReviewWithDefaults() *ReviewModelV1Review

NewReviewModelV1ReviewWithDefaults instantiates a new ReviewModelV1Review object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReviewModelV1Review) GetCharacters ¶

func (o *ReviewModelV1Review) GetCharacters() float32

GetCharacters returns the Characters field value if set, zero value otherwise.

func (*ReviewModelV1Review) GetCharactersOk ¶

func (o *ReviewModelV1Review) GetCharactersOk() (*float32, bool)

GetCharactersOk returns a tuple with the Characters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelV1Review) GetDrawing ¶

func (o *ReviewModelV1Review) GetDrawing() float32

GetDrawing returns the Drawing field value if set, zero value otherwise.

func (*ReviewModelV1Review) GetDrawingOk ¶

func (o *ReviewModelV1Review) GetDrawingOk() (*float32, bool)

GetDrawingOk returns a tuple with the Drawing field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelV1Review) GetEnjoy ¶

func (o *ReviewModelV1Review) GetEnjoy() float32

GetEnjoy returns the Enjoy field value if set, zero value otherwise.

func (*ReviewModelV1Review) GetEnjoyOk ¶

func (o *ReviewModelV1Review) GetEnjoyOk() (*float32, bool)

GetEnjoyOk returns a tuple with the Enjoy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelV1Review) GetOverall ¶

func (o *ReviewModelV1Review) GetOverall() float32

GetOverall returns the Overall field value if set, zero value otherwise.

func (*ReviewModelV1Review) GetOverallOk ¶

func (o *ReviewModelV1Review) GetOverallOk() (*float32, bool)

GetOverallOk returns a tuple with the Overall field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelV1Review) GetPlot ¶

func (o *ReviewModelV1Review) GetPlot() float32

GetPlot returns the Plot field value if set, zero value otherwise.

func (*ReviewModelV1Review) GetPlotOk ¶

func (o *ReviewModelV1Review) GetPlotOk() (*float32, bool)

GetPlotOk returns a tuple with the Plot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelV1Review) GetUser ¶

func (o *ReviewModelV1Review) GetUser() float32

GetUser returns the User field value if set, zero value otherwise.

func (*ReviewModelV1Review) GetUserOk ¶

func (o *ReviewModelV1Review) GetUserOk() (*float32, bool)

GetUserOk returns a tuple with the User field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewModelV1Review) HasCharacters ¶

func (o *ReviewModelV1Review) HasCharacters() bool

HasCharacters returns a boolean if a field has been set.

func (*ReviewModelV1Review) HasDrawing ¶

func (o *ReviewModelV1Review) HasDrawing() bool

HasDrawing returns a boolean if a field has been set.

func (*ReviewModelV1Review) HasEnjoy ¶

func (o *ReviewModelV1Review) HasEnjoy() bool

HasEnjoy returns a boolean if a field has been set.

func (*ReviewModelV1Review) HasOverall ¶

func (o *ReviewModelV1Review) HasOverall() bool

HasOverall returns a boolean if a field has been set.

func (*ReviewModelV1Review) HasPlot ¶

func (o *ReviewModelV1Review) HasPlot() bool

HasPlot returns a boolean if a field has been set.

func (*ReviewModelV1Review) HasUser ¶

func (o *ReviewModelV1Review) HasUser() bool

HasUser returns a boolean if a field has been set.

func (ReviewModelV1Review) MarshalJSON ¶

func (o ReviewModelV1Review) MarshalJSON() ([]byte, error)

func (*ReviewModelV1Review) SetCharacters ¶

func (o *ReviewModelV1Review) SetCharacters(v float32)

SetCharacters gets a reference to the given float32 and assigns it to the Characters field.

func (*ReviewModelV1Review) SetDrawing ¶

func (o *ReviewModelV1Review) SetDrawing(v float32)

SetDrawing gets a reference to the given float32 and assigns it to the Drawing field.

func (*ReviewModelV1Review) SetEnjoy ¶

func (o *ReviewModelV1Review) SetEnjoy(v float32)

SetEnjoy gets a reference to the given float32 and assigns it to the Enjoy field.

func (*ReviewModelV1Review) SetOverall ¶

func (o *ReviewModelV1Review) SetOverall(v float32)

SetOverall gets a reference to the given float32 and assigns it to the Overall field.

func (*ReviewModelV1Review) SetPlot ¶

func (o *ReviewModelV1Review) SetPlot(v float32)

SetPlot gets a reference to the given float32 and assigns it to the Plot field.

func (*ReviewModelV1Review) SetUser ¶

func (o *ReviewModelV1Review) SetUser(v float32)

SetUser gets a reference to the given float32 and assigns it to the User field.

func (ReviewModelV1Review) ToMap ¶

func (o ReviewModelV1Review) ToMap() (map[string]interface{}, error)

type ReviewSearchRequestV1 ¶

type ReviewSearchRequestV1 struct {
	Search   *string `json:"search,omitempty"`
	AddedBy  *int64  `json:"added_by,omitempty"`
	SeriesId *int64  `json:"series_id,omitempty"`
	Page     *int64  `json:"page,omitempty"`
	Perpage  *int64  `json:"perpage,omitempty"`
	Letter   *string `json:"letter,omitempty"`
	Pending  *bool   `json:"pending,omitempty"`
}

ReviewSearchRequestV1 struct for ReviewSearchRequestV1

func NewReviewSearchRequestV1 ¶

func NewReviewSearchRequestV1() *ReviewSearchRequestV1

NewReviewSearchRequestV1 instantiates a new ReviewSearchRequestV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReviewSearchRequestV1WithDefaults ¶

func NewReviewSearchRequestV1WithDefaults() *ReviewSearchRequestV1

NewReviewSearchRequestV1WithDefaults instantiates a new ReviewSearchRequestV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReviewSearchRequestV1) GetAddedBy ¶

func (o *ReviewSearchRequestV1) GetAddedBy() int64

GetAddedBy returns the AddedBy field value if set, zero value otherwise.

func (*ReviewSearchRequestV1) GetAddedByOk ¶

func (o *ReviewSearchRequestV1) GetAddedByOk() (*int64, bool)

GetAddedByOk returns a tuple with the AddedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewSearchRequestV1) GetLetter ¶

func (o *ReviewSearchRequestV1) GetLetter() string

GetLetter returns the Letter field value if set, zero value otherwise.

func (*ReviewSearchRequestV1) GetLetterOk ¶

func (o *ReviewSearchRequestV1) GetLetterOk() (*string, bool)

GetLetterOk returns a tuple with the Letter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewSearchRequestV1) GetPage ¶

func (o *ReviewSearchRequestV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*ReviewSearchRequestV1) GetPageOk ¶

func (o *ReviewSearchRequestV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewSearchRequestV1) GetPending ¶

func (o *ReviewSearchRequestV1) GetPending() bool

GetPending returns the Pending field value if set, zero value otherwise.

func (*ReviewSearchRequestV1) GetPendingOk ¶

func (o *ReviewSearchRequestV1) GetPendingOk() (*bool, bool)

GetPendingOk returns a tuple with the Pending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewSearchRequestV1) GetPerpage ¶

func (o *ReviewSearchRequestV1) GetPerpage() int64

GetPerpage returns the Perpage field value if set, zero value otherwise.

func (*ReviewSearchRequestV1) GetPerpageOk ¶

func (o *ReviewSearchRequestV1) GetPerpageOk() (*int64, bool)

GetPerpageOk returns a tuple with the Perpage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewSearchRequestV1) GetSearch ¶

func (o *ReviewSearchRequestV1) GetSearch() string

GetSearch returns the Search field value if set, zero value otherwise.

func (*ReviewSearchRequestV1) GetSearchOk ¶

func (o *ReviewSearchRequestV1) GetSearchOk() (*string, bool)

GetSearchOk returns a tuple with the Search field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewSearchRequestV1) GetSeriesId ¶

func (o *ReviewSearchRequestV1) GetSeriesId() int64

GetSeriesId returns the SeriesId field value if set, zero value otherwise.

func (*ReviewSearchRequestV1) GetSeriesIdOk ¶

func (o *ReviewSearchRequestV1) GetSeriesIdOk() (*int64, bool)

GetSeriesIdOk returns a tuple with the SeriesId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewSearchRequestV1) HasAddedBy ¶

func (o *ReviewSearchRequestV1) HasAddedBy() bool

HasAddedBy returns a boolean if a field has been set.

func (*ReviewSearchRequestV1) HasLetter ¶

func (o *ReviewSearchRequestV1) HasLetter() bool

HasLetter returns a boolean if a field has been set.

func (*ReviewSearchRequestV1) HasPage ¶

func (o *ReviewSearchRequestV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*ReviewSearchRequestV1) HasPending ¶

func (o *ReviewSearchRequestV1) HasPending() bool

HasPending returns a boolean if a field has been set.

func (*ReviewSearchRequestV1) HasPerpage ¶

func (o *ReviewSearchRequestV1) HasPerpage() bool

HasPerpage returns a boolean if a field has been set.

func (*ReviewSearchRequestV1) HasSearch ¶

func (o *ReviewSearchRequestV1) HasSearch() bool

HasSearch returns a boolean if a field has been set.

func (*ReviewSearchRequestV1) HasSeriesId ¶

func (o *ReviewSearchRequestV1) HasSeriesId() bool

HasSeriesId returns a boolean if a field has been set.

func (ReviewSearchRequestV1) MarshalJSON ¶

func (o ReviewSearchRequestV1) MarshalJSON() ([]byte, error)

func (*ReviewSearchRequestV1) SetAddedBy ¶

func (o *ReviewSearchRequestV1) SetAddedBy(v int64)

SetAddedBy gets a reference to the given int64 and assigns it to the AddedBy field.

func (*ReviewSearchRequestV1) SetLetter ¶

func (o *ReviewSearchRequestV1) SetLetter(v string)

SetLetter gets a reference to the given string and assigns it to the Letter field.

func (*ReviewSearchRequestV1) SetPage ¶

func (o *ReviewSearchRequestV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*ReviewSearchRequestV1) SetPending ¶

func (o *ReviewSearchRequestV1) SetPending(v bool)

SetPending gets a reference to the given bool and assigns it to the Pending field.

func (*ReviewSearchRequestV1) SetPerpage ¶

func (o *ReviewSearchRequestV1) SetPerpage(v int64)

SetPerpage gets a reference to the given int64 and assigns it to the Perpage field.

func (*ReviewSearchRequestV1) SetSearch ¶

func (o *ReviewSearchRequestV1) SetSearch(v string)

SetSearch gets a reference to the given string and assigns it to the Search field.

func (*ReviewSearchRequestV1) SetSeriesId ¶

func (o *ReviewSearchRequestV1) SetSeriesId(v int64)

SetSeriesId gets a reference to the given int64 and assigns it to the SeriesId field.

func (ReviewSearchRequestV1) ToMap ¶

func (o ReviewSearchRequestV1) ToMap() (map[string]interface{}, error)

type ReviewSearchResponseV1 ¶

type ReviewSearchResponseV1 struct {
	TotalHits *int64                          `json:"total_hits,omitempty"`
	Page      *int64                          `json:"page,omitempty"`
	PerPage   *int64                          `json:"per_page,omitempty"`
	Results   []ReviewSearchResponseV1Results `json:"results,omitempty"`
}

ReviewSearchResponseV1 struct for ReviewSearchResponseV1

func NewReviewSearchResponseV1 ¶

func NewReviewSearchResponseV1() *ReviewSearchResponseV1

NewReviewSearchResponseV1 instantiates a new ReviewSearchResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReviewSearchResponseV1WithDefaults ¶

func NewReviewSearchResponseV1WithDefaults() *ReviewSearchResponseV1

NewReviewSearchResponseV1WithDefaults instantiates a new ReviewSearchResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReviewSearchResponseV1) GetPage ¶

func (o *ReviewSearchResponseV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*ReviewSearchResponseV1) GetPageOk ¶

func (o *ReviewSearchResponseV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewSearchResponseV1) GetPerPage ¶

func (o *ReviewSearchResponseV1) GetPerPage() int64

GetPerPage returns the PerPage field value if set, zero value otherwise.

func (*ReviewSearchResponseV1) GetPerPageOk ¶

func (o *ReviewSearchResponseV1) GetPerPageOk() (*int64, bool)

GetPerPageOk returns a tuple with the PerPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewSearchResponseV1) GetResults ¶

GetResults returns the Results field value if set, zero value otherwise.

func (*ReviewSearchResponseV1) GetResultsOk ¶

GetResultsOk returns a tuple with the Results field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewSearchResponseV1) GetTotalHits ¶

func (o *ReviewSearchResponseV1) GetTotalHits() int64

GetTotalHits returns the TotalHits field value if set, zero value otherwise.

func (*ReviewSearchResponseV1) GetTotalHitsOk ¶

func (o *ReviewSearchResponseV1) GetTotalHitsOk() (*int64, bool)

GetTotalHitsOk returns a tuple with the TotalHits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewSearchResponseV1) HasPage ¶

func (o *ReviewSearchResponseV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*ReviewSearchResponseV1) HasPerPage ¶

func (o *ReviewSearchResponseV1) HasPerPage() bool

HasPerPage returns a boolean if a field has been set.

func (*ReviewSearchResponseV1) HasResults ¶

func (o *ReviewSearchResponseV1) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*ReviewSearchResponseV1) HasTotalHits ¶

func (o *ReviewSearchResponseV1) HasTotalHits() bool

HasTotalHits returns a boolean if a field has been set.

func (ReviewSearchResponseV1) MarshalJSON ¶

func (o ReviewSearchResponseV1) MarshalJSON() ([]byte, error)

func (*ReviewSearchResponseV1) SetPage ¶

func (o *ReviewSearchResponseV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*ReviewSearchResponseV1) SetPerPage ¶

func (o *ReviewSearchResponseV1) SetPerPage(v int64)

SetPerPage gets a reference to the given int64 and assigns it to the PerPage field.

func (*ReviewSearchResponseV1) SetResults ¶

SetResults gets a reference to the given []ReviewSearchResponseV1Results and assigns it to the Results field.

func (*ReviewSearchResponseV1) SetTotalHits ¶

func (o *ReviewSearchResponseV1) SetTotalHits(v int64)

SetTotalHits gets a reference to the given int64 and assigns it to the TotalHits field.

func (ReviewSearchResponseV1) ToMap ¶

func (o ReviewSearchResponseV1) ToMap() (map[string]interface{}, error)

type ReviewSearchResponseV1Results ¶

type ReviewSearchResponseV1Results struct {
	Record *ReviewModelSearchV1 `json:"record,omitempty"`
}

ReviewSearchResponseV1Results struct for ReviewSearchResponseV1Results

func NewReviewSearchResponseV1Results ¶

func NewReviewSearchResponseV1Results() *ReviewSearchResponseV1Results

NewReviewSearchResponseV1Results instantiates a new ReviewSearchResponseV1Results object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReviewSearchResponseV1ResultsWithDefaults ¶

func NewReviewSearchResponseV1ResultsWithDefaults() *ReviewSearchResponseV1Results

NewReviewSearchResponseV1ResultsWithDefaults instantiates a new ReviewSearchResponseV1Results object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReviewSearchResponseV1Results) GetRecord ¶

GetRecord returns the Record field value if set, zero value otherwise.

func (*ReviewSearchResponseV1Results) GetRecordOk ¶

GetRecordOk returns a tuple with the Record field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewSearchResponseV1Results) HasRecord ¶

func (o *ReviewSearchResponseV1Results) HasRecord() bool

HasRecord returns a boolean if a field has been set.

func (ReviewSearchResponseV1Results) MarshalJSON ¶

func (o ReviewSearchResponseV1Results) MarshalJSON() ([]byte, error)

func (*ReviewSearchResponseV1Results) SetRecord ¶

SetRecord gets a reference to the given ReviewModelSearchV1 and assigns it to the Record field.

func (ReviewSearchResponseV1Results) ToMap ¶

func (o ReviewSearchResponseV1Results) ToMap() (map[string]interface{}, error)

type ReviewsAPIService ¶

type ReviewsAPIService service

ReviewsAPIService ReviewsAPI service

func (*ReviewsAPIService) AddReview ¶

AddReview add a review

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAddReviewRequest

func (*ReviewsAPIService) AddReviewComment ¶

func (a *ReviewsAPIService) AddReviewComment(ctx context.Context, id int64) ApiAddReviewCommentRequest

AddReviewComment add a review comment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Review id
@return ApiAddReviewCommentRequest

func (*ReviewsAPIService) AddReviewCommentExecute ¶

func (a *ReviewsAPIService) AddReviewCommentExecute(r ApiAddReviewCommentRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ReviewsAPIService) AddReviewExecute ¶

Execute executes the request

@return ApiResponseV1

func (*ReviewsAPIService) DeleteReview ¶

DeleteReview delete a review

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of review
@return ApiDeleteReviewRequest

func (*ReviewsAPIService) DeleteReviewComment ¶

func (a *ReviewsAPIService) DeleteReviewComment(ctx context.Context, id int64, commentId int64) ApiDeleteReviewCommentRequest

DeleteReviewComment delete a review comment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of review
@param commentId id of review comment
@return ApiDeleteReviewCommentRequest

func (*ReviewsAPIService) DeleteReviewCommentExecute ¶

func (a *ReviewsAPIService) DeleteReviewCommentExecute(r ApiDeleteReviewCommentRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ReviewsAPIService) DeleteReviewExecute ¶

func (a *ReviewsAPIService) DeleteReviewExecute(r ApiDeleteReviewRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ReviewsAPIService) RetrieveReview ¶

func (a *ReviewsAPIService) RetrieveReview(ctx context.Context, id int64) ApiRetrieveReviewRequest

RetrieveReview get a specific review

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Review id
@return ApiRetrieveReviewRequest

func (*ReviewsAPIService) RetrieveReviewComment ¶

func (a *ReviewsAPIService) RetrieveReviewComment(ctx context.Context, id int64, commentId int64) ApiRetrieveReviewCommentRequest

RetrieveReviewComment get a specific review comment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Review id
@param commentId Review comment id
@return ApiRetrieveReviewCommentRequest

func (*ReviewsAPIService) RetrieveReviewCommentExecute ¶

Execute executes the request

@return ReviewCommentModelV1

func (*ReviewsAPIService) RetrieveReviewExecute ¶

func (a *ReviewsAPIService) RetrieveReviewExecute(r ApiRetrieveReviewRequest) (*ReviewModelV1, *http.Response, error)

Execute executes the request

@return ReviewModelV1

func (*ReviewsAPIService) ReviewCommentsModerationPost ¶

func (a *ReviewsAPIService) ReviewCommentsModerationPost(ctx context.Context) ApiReviewCommentsModerationPostRequest

ReviewCommentsModerationPost moderate review comments

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiReviewCommentsModerationPostRequest

func (*ReviewsAPIService) ReviewCommentsModerationPostExecute ¶

Execute executes the request

@return ReviewCommentSearchResponseV1

func (*ReviewsAPIService) SearchReviewCommentsPost ¶

func (a *ReviewsAPIService) SearchReviewCommentsPost(ctx context.Context, id int64) ApiSearchReviewCommentsPostRequest

SearchReviewCommentsPost search review comments

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Review id
@return ApiSearchReviewCommentsPostRequest

func (*ReviewsAPIService) SearchReviewCommentsPostExecute ¶

Execute executes the request

@return ReviewCommentSearchResponseV1

func (*ReviewsAPIService) SearchReviewsPost ¶

SearchReviewsPost search reviews

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchReviewsPostRequest

func (*ReviewsAPIService) SearchReviewsPostExecute ¶

Execute executes the request

@return ReviewSearchResponseV1

func (*ReviewsAPIService) UpdateReview ¶

UpdateReview update a review

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of review
@return ApiUpdateReviewRequest

func (*ReviewsAPIService) UpdateReviewComment ¶

func (a *ReviewsAPIService) UpdateReviewComment(ctx context.Context, id int64, commentId int64) ApiUpdateReviewCommentRequest

UpdateReviewComment update a review comment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of review
@param commentId id of review comment
@return ApiUpdateReviewCommentRequest

func (*ReviewsAPIService) UpdateReviewCommentExecute ¶

func (a *ReviewsAPIService) UpdateReviewCommentExecute(r ApiUpdateReviewCommentRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*ReviewsAPIService) UpdateReviewExecute ¶

func (a *ReviewsAPIService) UpdateReviewExecute(r ApiUpdateReviewRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

type SeriesAPIService ¶

type SeriesAPIService service

SeriesAPIService SeriesAPI service

func (*SeriesAPIService) AddSeries ¶

AddSeries add an series

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAddSeriesRequest

func (*SeriesAPIService) AddSeriesCategoryVote ¶

func (a *SeriesAPIService) AddSeriesCategoryVote(ctx context.Context, id int64) ApiAddSeriesCategoryVoteRequest

AddSeriesCategoryVote add a vote for a category on a series

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of series
@return ApiAddSeriesCategoryVoteRequest

func (*SeriesAPIService) AddSeriesCategoryVoteExecute ¶

func (a *SeriesAPIService) AddSeriesCategoryVoteExecute(r ApiAddSeriesCategoryVoteRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*SeriesAPIService) AddSeriesComment ¶

func (a *SeriesAPIService) AddSeriesComment(ctx context.Context, id int64) ApiAddSeriesCommentRequest

AddSeriesComment add a series comment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of series
@return ApiAddSeriesCommentRequest

func (*SeriesAPIService) AddSeriesCommentExecute ¶

func (a *SeriesAPIService) AddSeriesCommentExecute(r ApiAddSeriesCommentRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*SeriesAPIService) AddSeriesCommentUsefulFlag ¶

func (a *SeriesAPIService) AddSeriesCommentUsefulFlag(ctx context.Context, id int64, commentId int64) ApiAddSeriesCommentUsefulFlagRequest

AddSeriesCommentUsefulFlag set usefulness of a series comment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of series
@param commentId id of series comment
@return ApiAddSeriesCommentUsefulFlagRequest

func (*SeriesAPIService) AddSeriesCommentUsefulFlagExecute ¶

func (a *SeriesAPIService) AddSeriesCommentUsefulFlagExecute(r ApiAddSeriesCommentUsefulFlagRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*SeriesAPIService) AddSeriesExecute ¶

Execute executes the request

@return ApiResponseV1

func (*SeriesAPIService) CombineSeriesCategories ¶

func (a *SeriesAPIService) CombineSeriesCategories(ctx context.Context, id int64) ApiCombineSeriesCategoriesRequest

CombineSeriesCategories combine two series categories

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of series
@return ApiCombineSeriesCategoriesRequest

func (*SeriesAPIService) CombineSeriesCategoriesExecute ¶

func (a *SeriesAPIService) CombineSeriesCategoriesExecute(r ApiCombineSeriesCategoriesRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*SeriesAPIService) DeleteSeries ¶

func (a *SeriesAPIService) DeleteSeries(ctx context.Context, id int64) ApiDeleteSeriesRequest

DeleteSeries delete a series

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of series
@return ApiDeleteSeriesRequest

func (*SeriesAPIService) DeleteSeriesCategory ¶

func (a *SeriesAPIService) DeleteSeriesCategory(ctx context.Context, id int64) ApiDeleteSeriesCategoryRequest

DeleteSeriesCategory deletes a series category

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of series
@return ApiDeleteSeriesCategoryRequest

func (*SeriesAPIService) DeleteSeriesCategoryExecute ¶

func (a *SeriesAPIService) DeleteSeriesCategoryExecute(r ApiDeleteSeriesCategoryRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*SeriesAPIService) DeleteSeriesComment ¶

func (a *SeriesAPIService) DeleteSeriesComment(ctx context.Context, id int64, commentId int64) ApiDeleteSeriesCommentRequest

DeleteSeriesComment delete a series comment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of series
@param commentId id of series comment
@return ApiDeleteSeriesCommentRequest

func (*SeriesAPIService) DeleteSeriesCommentExecute ¶

func (a *SeriesAPIService) DeleteSeriesCommentExecute(r ApiDeleteSeriesCommentRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*SeriesAPIService) DeleteSeriesExecute ¶

func (a *SeriesAPIService) DeleteSeriesExecute(r ApiDeleteSeriesRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*SeriesAPIService) DeleteSeriesImage ¶

func (a *SeriesAPIService) DeleteSeriesImage(ctx context.Context, id int64) ApiDeleteSeriesImageRequest

DeleteSeriesImage delete the image of an series

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of series
@return ApiDeleteSeriesImageRequest

func (*SeriesAPIService) DeleteSeriesImageExecute ¶

func (a *SeriesAPIService) DeleteSeriesImageExecute(r ApiDeleteSeriesImageRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*SeriesAPIService) DeleteUserSeriesRating ¶

func (a *SeriesAPIService) DeleteUserSeriesRating(ctx context.Context, id int64) ApiDeleteUserSeriesRatingRequest

DeleteUserSeriesRating delete a series rating for a user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of series
@return ApiDeleteUserSeriesRatingRequest

func (*SeriesAPIService) DeleteUserSeriesRatingExecute ¶

func (a *SeriesAPIService) DeleteUserSeriesRatingExecute(r ApiDeleteUserSeriesRatingRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*SeriesAPIService) LockSeriesField ¶

func (a *SeriesAPIService) LockSeriesField(ctx context.Context, id int64, item string) ApiLockSeriesFieldRequest

LockSeriesField lock a field of an series

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of series
@param item field name
@return ApiLockSeriesFieldRequest

func (*SeriesAPIService) LockSeriesFieldExecute ¶

func (a *SeriesAPIService) LockSeriesFieldExecute(r ApiLockSeriesFieldRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*SeriesAPIService) RemoveSeriesCategoryVote ¶

func (a *SeriesAPIService) RemoveSeriesCategoryVote(ctx context.Context, id int64) ApiRemoveSeriesCategoryVoteRequest

RemoveSeriesCategoryVote remove series category vote for user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of series
@return ApiRemoveSeriesCategoryVoteRequest

func (*SeriesAPIService) RemoveSeriesCategoryVoteExecute ¶

func (a *SeriesAPIService) RemoveSeriesCategoryVoteExecute(r ApiRemoveSeriesCategoryVoteRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*SeriesAPIService) RemoveSeriesCommentUsefulFlag ¶

func (a *SeriesAPIService) RemoveSeriesCommentUsefulFlag(ctx context.Context, id int64, commentId int64) ApiRemoveSeriesCommentUsefulFlagRequest

RemoveSeriesCommentUsefulFlag remove usefulness of a series comment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of series
@param commentId id of series comment
@return ApiRemoveSeriesCommentUsefulFlagRequest

func (*SeriesAPIService) RemoveSeriesCommentUsefulFlagExecute ¶

func (a *SeriesAPIService) RemoveSeriesCommentUsefulFlagExecute(r ApiRemoveSeriesCommentUsefulFlagRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*SeriesAPIService) RenameSeriesCategory ¶

func (a *SeriesAPIService) RenameSeriesCategory(ctx context.Context, id int64) ApiRenameSeriesCategoryRequest

RenameSeriesCategory renames a series category

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of series
@return ApiRenameSeriesCategoryRequest

func (*SeriesAPIService) RenameSeriesCategoryExecute ¶

func (a *SeriesAPIService) RenameSeriesCategoryExecute(r ApiRenameSeriesCategoryRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*SeriesAPIService) ReportSeriesComment ¶

func (a *SeriesAPIService) ReportSeriesComment(ctx context.Context, id int64, commentId int64) ApiReportSeriesCommentRequest

ReportSeriesComment report a series comment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of series
@param commentId id of series comment
@return ApiReportSeriesCommentRequest

func (*SeriesAPIService) ReportSeriesCommentExecute ¶

func (a *SeriesAPIService) ReportSeriesCommentExecute(r ApiReportSeriesCommentRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*SeriesAPIService) RetrieveMySeriesComment ¶

func (a *SeriesAPIService) RetrieveMySeriesComment(ctx context.Context, id int64) ApiRetrieveMySeriesCommentRequest

RetrieveMySeriesComment get my series comment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Series id
@return ApiRetrieveMySeriesCommentRequest

func (*SeriesAPIService) RetrieveMySeriesCommentExecute ¶

Execute executes the request

@return SeriesCommentModelV1

func (*SeriesAPIService) RetrieveSeries ¶

func (a *SeriesAPIService) RetrieveSeries(ctx context.Context, id int64) ApiRetrieveSeriesRequest

RetrieveSeries get a specific series

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Series id
@return ApiRetrieveSeriesRequest

func (*SeriesAPIService) RetrieveSeriesCategoryVotes ¶

func (a *SeriesAPIService) RetrieveSeriesCategoryVotes(ctx context.Context, id int64) ApiRetrieveSeriesCategoryVotesRequest

RetrieveSeriesCategoryVotes get category votes for the current user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Series id
@return ApiRetrieveSeriesCategoryVotesRequest

func (*SeriesAPIService) RetrieveSeriesCategoryVotesExecute ¶

Execute executes the request

@return []SeriesCategoryVoteModelV1

func (*SeriesAPIService) RetrieveSeriesComment ¶

func (a *SeriesAPIService) RetrieveSeriesComment(ctx context.Context, id int64, commentId int64) ApiRetrieveSeriesCommentRequest

RetrieveSeriesComment get a specific series comment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Series id
@param commentId Series comment id
@return ApiRetrieveSeriesCommentRequest

func (*SeriesAPIService) RetrieveSeriesCommentExecute ¶

Execute executes the request

@return SeriesCommentModelV1

func (*SeriesAPIService) RetrieveSeriesCommentLocation ¶

func (a *SeriesAPIService) RetrieveSeriesCommentLocation(ctx context.Context, id int64, commentId int64) ApiRetrieveSeriesCommentLocationRequest

RetrieveSeriesCommentLocation get a specific series comment location

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Series id
@param commentId Series comment id
@return ApiRetrieveSeriesCommentLocationRequest

func (*SeriesAPIService) RetrieveSeriesCommentLocationExecute ¶

func (a *SeriesAPIService) RetrieveSeriesCommentLocationExecute(r ApiRetrieveSeriesCommentLocationRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*SeriesAPIService) RetrieveSeriesExecute ¶

func (a *SeriesAPIService) RetrieveSeriesExecute(r ApiRetrieveSeriesRequest) (*SeriesModelV1, *http.Response, error)

Execute executes the request

@return SeriesModelV1

func (*SeriesAPIService) RetrieveSeriesGroups ¶

func (a *SeriesAPIService) RetrieveSeriesGroups(ctx context.Context, id int64) ApiRetrieveSeriesGroupsRequest

RetrieveSeriesGroups get the list of groups scanlating a specific series

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Series id
@return ApiRetrieveSeriesGroupsRequest

func (*SeriesAPIService) RetrieveSeriesGroupsExecute ¶

Execute executes the request

@return SeriesGroupListResponseV1

func (*SeriesAPIService) RetrieveSeriesLocks ¶

func (a *SeriesAPIService) RetrieveSeriesLocks(ctx context.Context, id int64) ApiRetrieveSeriesLocksRequest

RetrieveSeriesLocks get a specific series lock

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Series id
@return ApiRetrieveSeriesLocksRequest

func (*SeriesAPIService) RetrieveSeriesLocksExecute ¶

func (a *SeriesAPIService) RetrieveSeriesLocksExecute(r ApiRetrieveSeriesLocksRequest) ([]SeriesLockModelV1, *http.Response, error)

Execute executes the request

@return []SeriesLockModelV1

func (*SeriesAPIService) RetrieveSeriesRankLocation ¶

func (a *SeriesAPIService) RetrieveSeriesRankLocation(ctx context.Context, id int64, type_ string) ApiRetrieveSeriesRankLocationRequest

RetrieveSeriesRankLocation get a specific series rank location

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Series id
@param type_ Stat type
@return ApiRetrieveSeriesRankLocationRequest

func (*SeriesAPIService) RetrieveSeriesRankLocationExecute ¶

func (a *SeriesAPIService) RetrieveSeriesRankLocationExecute(r ApiRetrieveSeriesRankLocationRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*SeriesAPIService) RetrieveSeriesRatingRainbow ¶

func (a *SeriesAPIService) RetrieveSeriesRatingRainbow(ctx context.Context, id int64) ApiRetrieveSeriesRatingRainbowRequest

RetrieveSeriesRatingRainbow get a the series rating rainbow

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Series id
@return ApiRetrieveSeriesRatingRainbowRequest

func (*SeriesAPIService) RetrieveSeriesRatingRainbowExecute ¶

Execute executes the request

@return SeriesRatingRainbowModelV1

func (*SeriesAPIService) RetrieveUserSeriesRating ¶

func (a *SeriesAPIService) RetrieveUserSeriesRating(ctx context.Context, id int64) ApiRetrieveUserSeriesRatingRequest

RetrieveUserSeriesRating get a specific series rating for a user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Series id
@return ApiRetrieveUserSeriesRatingRequest

func (*SeriesAPIService) RetrieveUserSeriesRatingExecute ¶

func (a *SeriesAPIService) RetrieveUserSeriesRatingExecute(r ApiRetrieveUserSeriesRatingRequest) (*SeriesRatingModelV1, *http.Response, error)

Execute executes the request

@return SeriesRatingModelV1

func (*SeriesAPIService) SearchSeriesCommentsPost ¶

func (a *SeriesAPIService) SearchSeriesCommentsPost(ctx context.Context, id int64) ApiSearchSeriesCommentsPostRequest

SearchSeriesCommentsPost search series comments

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Series id
@return ApiSearchSeriesCommentsPostRequest

func (*SeriesAPIService) SearchSeriesCommentsPostExecute ¶

Execute executes the request

@return SeriesCommentSearchResponseV1

func (*SeriesAPIService) SearchSeriesHistoryPost ¶

func (a *SeriesAPIService) SearchSeriesHistoryPost(ctx context.Context, id int64) ApiSearchSeriesHistoryPostRequest

SearchSeriesHistoryPost search series history

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Series id
@return ApiSearchSeriesHistoryPostRequest

func (*SeriesAPIService) SearchSeriesHistoryPostExecute ¶

Execute executes the request

@return SeriesHistorySearchResponseV1

func (*SeriesAPIService) SearchSeriesPost ¶

SearchSeriesPost search series

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchSeriesPostRequest

func (*SeriesAPIService) SearchSeriesPostExecute ¶

Execute executes the request

@return SeriesSearchResponseV1

func (*SeriesAPIService) SeriesCommentsModerationPost ¶

func (a *SeriesAPIService) SeriesCommentsModerationPost(ctx context.Context) ApiSeriesCommentsModerationPostRequest

SeriesCommentsModerationPost moderate series comments

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSeriesCommentsModerationPostRequest

func (*SeriesAPIService) SeriesCommentsModerationPostExecute ¶

Execute executes the request

@return SeriesCommentModerationResponseV1

func (*SeriesAPIService) SeriesReleaseRssFeed ¶

func (a *SeriesAPIService) SeriesReleaseRssFeed(ctx context.Context, id int64) ApiSeriesReleaseRssFeedRequest

SeriesReleaseRssFeed releases rss feed for a specific series

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of series
@return ApiSeriesReleaseRssFeedRequest

func (*SeriesAPIService) SeriesReleaseRssFeedExecute ¶

func (a *SeriesAPIService) SeriesReleaseRssFeedExecute(r ApiSeriesReleaseRssFeedRequest) (string, *http.Response, error)

Execute executes the request

@return string

func (*SeriesAPIService) UnlockSeriesField ¶

func (a *SeriesAPIService) UnlockSeriesField(ctx context.Context, id int64, item string) ApiUnlockSeriesFieldRequest

UnlockSeriesField unlock a field of an series

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of series
@param item field name
@return ApiUnlockSeriesFieldRequest

func (*SeriesAPIService) UnlockSeriesFieldExecute ¶

func (a *SeriesAPIService) UnlockSeriesFieldExecute(r ApiUnlockSeriesFieldRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*SeriesAPIService) UpdateSeries ¶

func (a *SeriesAPIService) UpdateSeries(ctx context.Context, id int64) ApiUpdateSeriesRequest

UpdateSeries update an series

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of series
@return ApiUpdateSeriesRequest

func (*SeriesAPIService) UpdateSeriesComment ¶

func (a *SeriesAPIService) UpdateSeriesComment(ctx context.Context, id int64, commentId int64) ApiUpdateSeriesCommentRequest

UpdateSeriesComment update a series comment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of series
@param commentId id of series comment
@return ApiUpdateSeriesCommentRequest

func (*SeriesAPIService) UpdateSeriesCommentExecute ¶

func (a *SeriesAPIService) UpdateSeriesCommentExecute(r ApiUpdateSeriesCommentRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*SeriesAPIService) UpdateSeriesExecute ¶

func (a *SeriesAPIService) UpdateSeriesExecute(r ApiUpdateSeriesRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*SeriesAPIService) UpdateSeriesImage ¶

func (a *SeriesAPIService) UpdateSeriesImage(ctx context.Context, id int64) ApiUpdateSeriesImageRequest

UpdateSeriesImage update the image of an series

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of series
@return ApiUpdateSeriesImageRequest

func (*SeriesAPIService) UpdateSeriesImageExecute ¶

func (a *SeriesAPIService) UpdateSeriesImageExecute(r ApiUpdateSeriesImageRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

func (*SeriesAPIService) UpdateUserSeriesRating ¶

func (a *SeriesAPIService) UpdateUserSeriesRating(ctx context.Context, id int64) ApiUpdateUserSeriesRatingRequest

UpdateUserSeriesRating update the user rating for a series

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id of series
@return ApiUpdateUserSeriesRatingRequest

func (*SeriesAPIService) UpdateUserSeriesRatingExecute ¶

func (a *SeriesAPIService) UpdateUserSeriesRatingExecute(r ApiUpdateUserSeriesRatingRequest) (*ApiResponseV1, *http.Response, error)

Execute executes the request

@return ApiResponseV1

type SeriesCategoryUpdateModelV1 ¶

type SeriesCategoryUpdateModelV1 struct {
	From *CategoriesModelUpdateV1 `json:"from,omitempty"`
	To   *CategoriesModelUpdateV1 `json:"to,omitempty"`
}

SeriesCategoryUpdateModelV1 struct for SeriesCategoryUpdateModelV1

func NewSeriesCategoryUpdateModelV1 ¶

func NewSeriesCategoryUpdateModelV1() *SeriesCategoryUpdateModelV1

NewSeriesCategoryUpdateModelV1 instantiates a new SeriesCategoryUpdateModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesCategoryUpdateModelV1WithDefaults ¶

func NewSeriesCategoryUpdateModelV1WithDefaults() *SeriesCategoryUpdateModelV1

NewSeriesCategoryUpdateModelV1WithDefaults instantiates a new SeriesCategoryUpdateModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesCategoryUpdateModelV1) GetFrom ¶

GetFrom returns the From field value if set, zero value otherwise.

func (*SeriesCategoryUpdateModelV1) GetFromOk ¶

GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCategoryUpdateModelV1) GetTo ¶

GetTo returns the To field value if set, zero value otherwise.

func (*SeriesCategoryUpdateModelV1) GetToOk ¶

GetToOk returns a tuple with the To field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCategoryUpdateModelV1) HasFrom ¶

func (o *SeriesCategoryUpdateModelV1) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*SeriesCategoryUpdateModelV1) HasTo ¶

func (o *SeriesCategoryUpdateModelV1) HasTo() bool

HasTo returns a boolean if a field has been set.

func (SeriesCategoryUpdateModelV1) MarshalJSON ¶

func (o SeriesCategoryUpdateModelV1) MarshalJSON() ([]byte, error)

func (*SeriesCategoryUpdateModelV1) SetFrom ¶

SetFrom gets a reference to the given CategoriesModelUpdateV1 and assigns it to the From field.

func (*SeriesCategoryUpdateModelV1) SetTo ¶

SetTo gets a reference to the given CategoriesModelUpdateV1 and assigns it to the To field.

func (SeriesCategoryUpdateModelV1) ToMap ¶

func (o SeriesCategoryUpdateModelV1) ToMap() (map[string]interface{}, error)

type SeriesCategoryVoteDeleteModelV1 ¶

type SeriesCategoryVoteDeleteModelV1 struct {
	Category *string `json:"category,omitempty"`
}

SeriesCategoryVoteDeleteModelV1 struct for SeriesCategoryVoteDeleteModelV1

func NewSeriesCategoryVoteDeleteModelV1 ¶

func NewSeriesCategoryVoteDeleteModelV1() *SeriesCategoryVoteDeleteModelV1

NewSeriesCategoryVoteDeleteModelV1 instantiates a new SeriesCategoryVoteDeleteModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesCategoryVoteDeleteModelV1WithDefaults ¶

func NewSeriesCategoryVoteDeleteModelV1WithDefaults() *SeriesCategoryVoteDeleteModelV1

NewSeriesCategoryVoteDeleteModelV1WithDefaults instantiates a new SeriesCategoryVoteDeleteModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesCategoryVoteDeleteModelV1) GetCategory ¶

func (o *SeriesCategoryVoteDeleteModelV1) GetCategory() string

GetCategory returns the Category field value if set, zero value otherwise.

func (*SeriesCategoryVoteDeleteModelV1) GetCategoryOk ¶

func (o *SeriesCategoryVoteDeleteModelV1) GetCategoryOk() (*string, bool)

GetCategoryOk returns a tuple with the Category field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCategoryVoteDeleteModelV1) HasCategory ¶

func (o *SeriesCategoryVoteDeleteModelV1) HasCategory() bool

HasCategory returns a boolean if a field has been set.

func (SeriesCategoryVoteDeleteModelV1) MarshalJSON ¶

func (o SeriesCategoryVoteDeleteModelV1) MarshalJSON() ([]byte, error)

func (*SeriesCategoryVoteDeleteModelV1) SetCategory ¶

func (o *SeriesCategoryVoteDeleteModelV1) SetCategory(v string)

SetCategory gets a reference to the given string and assigns it to the Category field.

func (SeriesCategoryVoteDeleteModelV1) ToMap ¶

func (o SeriesCategoryVoteDeleteModelV1) ToMap() (map[string]interface{}, error)

type SeriesCategoryVoteModelV1 ¶

type SeriesCategoryVoteModelV1 struct {
	Category *string `json:"category,omitempty"`
	Agree    *bool   `json:"agree,omitempty"`
}

SeriesCategoryVoteModelV1 struct for SeriesCategoryVoteModelV1

func NewSeriesCategoryVoteModelV1 ¶

func NewSeriesCategoryVoteModelV1() *SeriesCategoryVoteModelV1

NewSeriesCategoryVoteModelV1 instantiates a new SeriesCategoryVoteModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesCategoryVoteModelV1WithDefaults ¶

func NewSeriesCategoryVoteModelV1WithDefaults() *SeriesCategoryVoteModelV1

NewSeriesCategoryVoteModelV1WithDefaults instantiates a new SeriesCategoryVoteModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesCategoryVoteModelV1) GetAgree ¶

func (o *SeriesCategoryVoteModelV1) GetAgree() bool

GetAgree returns the Agree field value if set, zero value otherwise.

func (*SeriesCategoryVoteModelV1) GetAgreeOk ¶

func (o *SeriesCategoryVoteModelV1) GetAgreeOk() (*bool, bool)

GetAgreeOk returns a tuple with the Agree field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCategoryVoteModelV1) GetCategory ¶

func (o *SeriesCategoryVoteModelV1) GetCategory() string

GetCategory returns the Category field value if set, zero value otherwise.

func (*SeriesCategoryVoteModelV1) GetCategoryOk ¶

func (o *SeriesCategoryVoteModelV1) GetCategoryOk() (*string, bool)

GetCategoryOk returns a tuple with the Category field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCategoryVoteModelV1) HasAgree ¶

func (o *SeriesCategoryVoteModelV1) HasAgree() bool

HasAgree returns a boolean if a field has been set.

func (*SeriesCategoryVoteModelV1) HasCategory ¶

func (o *SeriesCategoryVoteModelV1) HasCategory() bool

HasCategory returns a boolean if a field has been set.

func (SeriesCategoryVoteModelV1) MarshalJSON ¶

func (o SeriesCategoryVoteModelV1) MarshalJSON() ([]byte, error)

func (*SeriesCategoryVoteModelV1) SetAgree ¶

func (o *SeriesCategoryVoteModelV1) SetAgree(v bool)

SetAgree gets a reference to the given bool and assigns it to the Agree field.

func (*SeriesCategoryVoteModelV1) SetCategory ¶

func (o *SeriesCategoryVoteModelV1) SetCategory(v string)

SetCategory gets a reference to the given string and assigns it to the Category field.

func (SeriesCategoryVoteModelV1) ToMap ¶

func (o SeriesCategoryVoteModelV1) ToMap() (map[string]interface{}, error)

type SeriesCommentModelUpdateV1 ¶

type SeriesCommentModelUpdateV1 struct {
	Subject *string                          `json:"subject,omitempty"`
	Content *string                          `json:"content,omitempty"`
	Admin   *SeriesCommentModelUpdateV1Admin `json:"admin,omitempty"`
}

SeriesCommentModelUpdateV1 struct for SeriesCommentModelUpdateV1

func NewSeriesCommentModelUpdateV1 ¶

func NewSeriesCommentModelUpdateV1() *SeriesCommentModelUpdateV1

NewSeriesCommentModelUpdateV1 instantiates a new SeriesCommentModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesCommentModelUpdateV1WithDefaults ¶

func NewSeriesCommentModelUpdateV1WithDefaults() *SeriesCommentModelUpdateV1

NewSeriesCommentModelUpdateV1WithDefaults instantiates a new SeriesCommentModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesCommentModelUpdateV1) GetAdmin ¶

GetAdmin returns the Admin field value if set, zero value otherwise.

func (*SeriesCommentModelUpdateV1) GetAdminOk ¶

GetAdminOk returns a tuple with the Admin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentModelUpdateV1) GetContent ¶

func (o *SeriesCommentModelUpdateV1) GetContent() string

GetContent returns the Content field value if set, zero value otherwise.

func (*SeriesCommentModelUpdateV1) GetContentOk ¶

func (o *SeriesCommentModelUpdateV1) GetContentOk() (*string, bool)

GetContentOk returns a tuple with the Content field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentModelUpdateV1) GetSubject ¶

func (o *SeriesCommentModelUpdateV1) GetSubject() string

GetSubject returns the Subject field value if set, zero value otherwise.

func (*SeriesCommentModelUpdateV1) GetSubjectOk ¶

func (o *SeriesCommentModelUpdateV1) GetSubjectOk() (*string, bool)

GetSubjectOk returns a tuple with the Subject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentModelUpdateV1) HasAdmin ¶

func (o *SeriesCommentModelUpdateV1) HasAdmin() bool

HasAdmin returns a boolean if a field has been set.

func (*SeriesCommentModelUpdateV1) HasContent ¶

func (o *SeriesCommentModelUpdateV1) HasContent() bool

HasContent returns a boolean if a field has been set.

func (*SeriesCommentModelUpdateV1) HasSubject ¶

func (o *SeriesCommentModelUpdateV1) HasSubject() bool

HasSubject returns a boolean if a field has been set.

func (SeriesCommentModelUpdateV1) MarshalJSON ¶

func (o SeriesCommentModelUpdateV1) MarshalJSON() ([]byte, error)

func (*SeriesCommentModelUpdateV1) SetAdmin ¶

SetAdmin gets a reference to the given SeriesCommentModelUpdateV1Admin and assigns it to the Admin field.

func (*SeriesCommentModelUpdateV1) SetContent ¶

func (o *SeriesCommentModelUpdateV1) SetContent(v string)

SetContent gets a reference to the given string and assigns it to the Content field.

func (*SeriesCommentModelUpdateV1) SetSubject ¶

func (o *SeriesCommentModelUpdateV1) SetSubject(v string)

SetSubject gets a reference to the given string and assigns it to the Subject field.

func (SeriesCommentModelUpdateV1) ToMap ¶

func (o SeriesCommentModelUpdateV1) ToMap() (map[string]interface{}, error)

type SeriesCommentModelUpdateV1Admin ¶

type SeriesCommentModelUpdateV1Admin struct {
	Moderated *bool `json:"moderated,omitempty"`
	Reported  *bool `json:"reported,omitempty"`
}

SeriesCommentModelUpdateV1Admin struct for SeriesCommentModelUpdateV1Admin

func NewSeriesCommentModelUpdateV1Admin ¶

func NewSeriesCommentModelUpdateV1Admin() *SeriesCommentModelUpdateV1Admin

NewSeriesCommentModelUpdateV1Admin instantiates a new SeriesCommentModelUpdateV1Admin object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesCommentModelUpdateV1AdminWithDefaults ¶

func NewSeriesCommentModelUpdateV1AdminWithDefaults() *SeriesCommentModelUpdateV1Admin

NewSeriesCommentModelUpdateV1AdminWithDefaults instantiates a new SeriesCommentModelUpdateV1Admin object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesCommentModelUpdateV1Admin) GetModerated ¶

func (o *SeriesCommentModelUpdateV1Admin) GetModerated() bool

GetModerated returns the Moderated field value if set, zero value otherwise.

func (*SeriesCommentModelUpdateV1Admin) GetModeratedOk ¶

func (o *SeriesCommentModelUpdateV1Admin) GetModeratedOk() (*bool, bool)

GetModeratedOk returns a tuple with the Moderated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentModelUpdateV1Admin) GetReported ¶

func (o *SeriesCommentModelUpdateV1Admin) GetReported() bool

GetReported returns the Reported field value if set, zero value otherwise.

func (*SeriesCommentModelUpdateV1Admin) GetReportedOk ¶

func (o *SeriesCommentModelUpdateV1Admin) GetReportedOk() (*bool, bool)

GetReportedOk returns a tuple with the Reported field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentModelUpdateV1Admin) HasModerated ¶

func (o *SeriesCommentModelUpdateV1Admin) HasModerated() bool

HasModerated returns a boolean if a field has been set.

func (*SeriesCommentModelUpdateV1Admin) HasReported ¶

func (o *SeriesCommentModelUpdateV1Admin) HasReported() bool

HasReported returns a boolean if a field has been set.

func (SeriesCommentModelUpdateV1Admin) MarshalJSON ¶

func (o SeriesCommentModelUpdateV1Admin) MarshalJSON() ([]byte, error)

func (*SeriesCommentModelUpdateV1Admin) SetModerated ¶

func (o *SeriesCommentModelUpdateV1Admin) SetModerated(v bool)

SetModerated gets a reference to the given bool and assigns it to the Moderated field.

func (*SeriesCommentModelUpdateV1Admin) SetReported ¶

func (o *SeriesCommentModelUpdateV1Admin) SetReported(v bool)

SetReported gets a reference to the given bool and assigns it to the Reported field.

func (SeriesCommentModelUpdateV1Admin) ToMap ¶

func (o SeriesCommentModelUpdateV1Admin) ToMap() (map[string]interface{}, error)

type SeriesCommentModelV1 ¶

type SeriesCommentModelV1 struct {
	Id          *int64                      `json:"id,omitempty"`
	SeriesId    *int64                      `json:"series_id,omitempty"`
	Subject     *string                     `json:"subject,omitempty"`
	Content     *string                     `json:"content,omitempty"`
	Author      *SeriesCommentModelV1Author `json:"author,omitempty"`
	Useful      *int64                      `json:"useful,omitempty"`
	TimeAdded   *TimeV1                     `json:"time_added,omitempty"`
	TimeUpdated *TimeV1                     `json:"time_updated,omitempty"`
	Admin       *SeriesCommentModelV1Admin  `json:"admin,omitempty"`
}

SeriesCommentModelV1 struct for SeriesCommentModelV1

func NewSeriesCommentModelV1 ¶

func NewSeriesCommentModelV1() *SeriesCommentModelV1

NewSeriesCommentModelV1 instantiates a new SeriesCommentModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesCommentModelV1WithDefaults ¶

func NewSeriesCommentModelV1WithDefaults() *SeriesCommentModelV1

NewSeriesCommentModelV1WithDefaults instantiates a new SeriesCommentModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesCommentModelV1) GetAdmin ¶

GetAdmin returns the Admin field value if set, zero value otherwise.

func (*SeriesCommentModelV1) GetAdminOk ¶

GetAdminOk returns a tuple with the Admin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentModelV1) GetAuthor ¶

GetAuthor returns the Author field value if set, zero value otherwise.

func (*SeriesCommentModelV1) GetAuthorOk ¶

GetAuthorOk returns a tuple with the Author field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentModelV1) GetContent ¶

func (o *SeriesCommentModelV1) GetContent() string

GetContent returns the Content field value if set, zero value otherwise.

func (*SeriesCommentModelV1) GetContentOk ¶

func (o *SeriesCommentModelV1) GetContentOk() (*string, bool)

GetContentOk returns a tuple with the Content field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentModelV1) GetId ¶

func (o *SeriesCommentModelV1) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*SeriesCommentModelV1) GetIdOk ¶

func (o *SeriesCommentModelV1) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentModelV1) GetSeriesId ¶

func (o *SeriesCommentModelV1) GetSeriesId() int64

GetSeriesId returns the SeriesId field value if set, zero value otherwise.

func (*SeriesCommentModelV1) GetSeriesIdOk ¶

func (o *SeriesCommentModelV1) GetSeriesIdOk() (*int64, bool)

GetSeriesIdOk returns a tuple with the SeriesId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentModelV1) GetSubject ¶

func (o *SeriesCommentModelV1) GetSubject() string

GetSubject returns the Subject field value if set, zero value otherwise.

func (*SeriesCommentModelV1) GetSubjectOk ¶

func (o *SeriesCommentModelV1) GetSubjectOk() (*string, bool)

GetSubjectOk returns a tuple with the Subject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentModelV1) GetTimeAdded ¶

func (o *SeriesCommentModelV1) GetTimeAdded() TimeV1

GetTimeAdded returns the TimeAdded field value if set, zero value otherwise.

func (*SeriesCommentModelV1) GetTimeAddedOk ¶

func (o *SeriesCommentModelV1) GetTimeAddedOk() (*TimeV1, bool)

GetTimeAddedOk returns a tuple with the TimeAdded field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentModelV1) GetTimeUpdated ¶

func (o *SeriesCommentModelV1) GetTimeUpdated() TimeV1

GetTimeUpdated returns the TimeUpdated field value if set, zero value otherwise.

func (*SeriesCommentModelV1) GetTimeUpdatedOk ¶

func (o *SeriesCommentModelV1) GetTimeUpdatedOk() (*TimeV1, bool)

GetTimeUpdatedOk returns a tuple with the TimeUpdated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentModelV1) GetUseful ¶

func (o *SeriesCommentModelV1) GetUseful() int64

GetUseful returns the Useful field value if set, zero value otherwise.

func (*SeriesCommentModelV1) GetUsefulOk ¶

func (o *SeriesCommentModelV1) GetUsefulOk() (*int64, bool)

GetUsefulOk returns a tuple with the Useful field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentModelV1) HasAdmin ¶

func (o *SeriesCommentModelV1) HasAdmin() bool

HasAdmin returns a boolean if a field has been set.

func (*SeriesCommentModelV1) HasAuthor ¶

func (o *SeriesCommentModelV1) HasAuthor() bool

HasAuthor returns a boolean if a field has been set.

func (*SeriesCommentModelV1) HasContent ¶

func (o *SeriesCommentModelV1) HasContent() bool

HasContent returns a boolean if a field has been set.

func (*SeriesCommentModelV1) HasId ¶

func (o *SeriesCommentModelV1) HasId() bool

HasId returns a boolean if a field has been set.

func (*SeriesCommentModelV1) HasSeriesId ¶

func (o *SeriesCommentModelV1) HasSeriesId() bool

HasSeriesId returns a boolean if a field has been set.

func (*SeriesCommentModelV1) HasSubject ¶

func (o *SeriesCommentModelV1) HasSubject() bool

HasSubject returns a boolean if a field has been set.

func (*SeriesCommentModelV1) HasTimeAdded ¶

func (o *SeriesCommentModelV1) HasTimeAdded() bool

HasTimeAdded returns a boolean if a field has been set.

func (*SeriesCommentModelV1) HasTimeUpdated ¶

func (o *SeriesCommentModelV1) HasTimeUpdated() bool

HasTimeUpdated returns a boolean if a field has been set.

func (*SeriesCommentModelV1) HasUseful ¶

func (o *SeriesCommentModelV1) HasUseful() bool

HasUseful returns a boolean if a field has been set.

func (SeriesCommentModelV1) MarshalJSON ¶

func (o SeriesCommentModelV1) MarshalJSON() ([]byte, error)

func (*SeriesCommentModelV1) SetAdmin ¶

SetAdmin gets a reference to the given SeriesCommentModelV1Admin and assigns it to the Admin field.

func (*SeriesCommentModelV1) SetAuthor ¶

SetAuthor gets a reference to the given SeriesCommentModelV1Author and assigns it to the Author field.

func (*SeriesCommentModelV1) SetContent ¶

func (o *SeriesCommentModelV1) SetContent(v string)

SetContent gets a reference to the given string and assigns it to the Content field.

func (*SeriesCommentModelV1) SetId ¶

func (o *SeriesCommentModelV1) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*SeriesCommentModelV1) SetSeriesId ¶

func (o *SeriesCommentModelV1) SetSeriesId(v int64)

SetSeriesId gets a reference to the given int64 and assigns it to the SeriesId field.

func (*SeriesCommentModelV1) SetSubject ¶

func (o *SeriesCommentModelV1) SetSubject(v string)

SetSubject gets a reference to the given string and assigns it to the Subject field.

func (*SeriesCommentModelV1) SetTimeAdded ¶

func (o *SeriesCommentModelV1) SetTimeAdded(v TimeV1)

SetTimeAdded gets a reference to the given TimeV1 and assigns it to the TimeAdded field.

func (*SeriesCommentModelV1) SetTimeUpdated ¶

func (o *SeriesCommentModelV1) SetTimeUpdated(v TimeV1)

SetTimeUpdated gets a reference to the given TimeV1 and assigns it to the TimeUpdated field.

func (*SeriesCommentModelV1) SetUseful ¶

func (o *SeriesCommentModelV1) SetUseful(v int64)

SetUseful gets a reference to the given int64 and assigns it to the Useful field.

func (SeriesCommentModelV1) ToMap ¶

func (o SeriesCommentModelV1) ToMap() (map[string]interface{}, error)

type SeriesCommentModelV1Admin ¶

type SeriesCommentModelV1Admin struct {
	Moderated    *bool   `json:"moderated,omitempty"`
	Reported     *bool   `json:"reported,omitempty"`
	ReportReason *string `json:"report_reason,omitempty"`
}

SeriesCommentModelV1Admin struct for SeriesCommentModelV1Admin

func NewSeriesCommentModelV1Admin ¶

func NewSeriesCommentModelV1Admin() *SeriesCommentModelV1Admin

NewSeriesCommentModelV1Admin instantiates a new SeriesCommentModelV1Admin object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesCommentModelV1AdminWithDefaults ¶

func NewSeriesCommentModelV1AdminWithDefaults() *SeriesCommentModelV1Admin

NewSeriesCommentModelV1AdminWithDefaults instantiates a new SeriesCommentModelV1Admin object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesCommentModelV1Admin) GetModerated ¶

func (o *SeriesCommentModelV1Admin) GetModerated() bool

GetModerated returns the Moderated field value if set, zero value otherwise.

func (*SeriesCommentModelV1Admin) GetModeratedOk ¶

func (o *SeriesCommentModelV1Admin) GetModeratedOk() (*bool, bool)

GetModeratedOk returns a tuple with the Moderated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentModelV1Admin) GetReportReason ¶

func (o *SeriesCommentModelV1Admin) GetReportReason() string

GetReportReason returns the ReportReason field value if set, zero value otherwise.

func (*SeriesCommentModelV1Admin) GetReportReasonOk ¶

func (o *SeriesCommentModelV1Admin) GetReportReasonOk() (*string, bool)

GetReportReasonOk returns a tuple with the ReportReason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentModelV1Admin) GetReported ¶

func (o *SeriesCommentModelV1Admin) GetReported() bool

GetReported returns the Reported field value if set, zero value otherwise.

func (*SeriesCommentModelV1Admin) GetReportedOk ¶

func (o *SeriesCommentModelV1Admin) GetReportedOk() (*bool, bool)

GetReportedOk returns a tuple with the Reported field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentModelV1Admin) HasModerated ¶

func (o *SeriesCommentModelV1Admin) HasModerated() bool

HasModerated returns a boolean if a field has been set.

func (*SeriesCommentModelV1Admin) HasReportReason ¶

func (o *SeriesCommentModelV1Admin) HasReportReason() bool

HasReportReason returns a boolean if a field has been set.

func (*SeriesCommentModelV1Admin) HasReported ¶

func (o *SeriesCommentModelV1Admin) HasReported() bool

HasReported returns a boolean if a field has been set.

func (SeriesCommentModelV1Admin) MarshalJSON ¶

func (o SeriesCommentModelV1Admin) MarshalJSON() ([]byte, error)

func (*SeriesCommentModelV1Admin) SetModerated ¶

func (o *SeriesCommentModelV1Admin) SetModerated(v bool)

SetModerated gets a reference to the given bool and assigns it to the Moderated field.

func (*SeriesCommentModelV1Admin) SetReportReason ¶

func (o *SeriesCommentModelV1Admin) SetReportReason(v string)

SetReportReason gets a reference to the given string and assigns it to the ReportReason field.

func (*SeriesCommentModelV1Admin) SetReported ¶

func (o *SeriesCommentModelV1Admin) SetReported(v bool)

SetReported gets a reference to the given bool and assigns it to the Reported field.

func (SeriesCommentModelV1Admin) ToMap ¶

func (o SeriesCommentModelV1Admin) ToMap() (map[string]interface{}, error)

type SeriesCommentModelV1Author ¶

type SeriesCommentModelV1Author struct {
	UserInfo *UserModelSearchV1 `json:"user_info,omitempty"`
	Name     *string            `json:"name,omitempty"`
}

SeriesCommentModelV1Author struct for SeriesCommentModelV1Author

func NewSeriesCommentModelV1Author ¶

func NewSeriesCommentModelV1Author() *SeriesCommentModelV1Author

NewSeriesCommentModelV1Author instantiates a new SeriesCommentModelV1Author object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesCommentModelV1AuthorWithDefaults ¶

func NewSeriesCommentModelV1AuthorWithDefaults() *SeriesCommentModelV1Author

NewSeriesCommentModelV1AuthorWithDefaults instantiates a new SeriesCommentModelV1Author object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesCommentModelV1Author) GetName ¶

func (o *SeriesCommentModelV1Author) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*SeriesCommentModelV1Author) GetNameOk ¶

func (o *SeriesCommentModelV1Author) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentModelV1Author) GetUserInfo ¶

GetUserInfo returns the UserInfo field value if set, zero value otherwise.

func (*SeriesCommentModelV1Author) GetUserInfoOk ¶

func (o *SeriesCommentModelV1Author) GetUserInfoOk() (*UserModelSearchV1, bool)

GetUserInfoOk returns a tuple with the UserInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentModelV1Author) HasName ¶

func (o *SeriesCommentModelV1Author) HasName() bool

HasName returns a boolean if a field has been set.

func (*SeriesCommentModelV1Author) HasUserInfo ¶

func (o *SeriesCommentModelV1Author) HasUserInfo() bool

HasUserInfo returns a boolean if a field has been set.

func (SeriesCommentModelV1Author) MarshalJSON ¶

func (o SeriesCommentModelV1Author) MarshalJSON() ([]byte, error)

func (*SeriesCommentModelV1Author) SetName ¶

func (o *SeriesCommentModelV1Author) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*SeriesCommentModelV1Author) SetUserInfo ¶

SetUserInfo gets a reference to the given UserModelSearchV1 and assigns it to the UserInfo field.

func (SeriesCommentModelV1Author) ToMap ¶

func (o SeriesCommentModelV1Author) ToMap() (map[string]interface{}, error)

type SeriesCommentModerationResponseV1 ¶

type SeriesCommentModerationResponseV1 struct {
	TotalHits *int64                                     `json:"total_hits,omitempty"`
	Page      *int64                                     `json:"page,omitempty"`
	PerPage   *int64                                     `json:"per_page,omitempty"`
	Results   []SeriesCommentModerationResponseV1Results `json:"results,omitempty"`
}

SeriesCommentModerationResponseV1 struct for SeriesCommentModerationResponseV1

func NewSeriesCommentModerationResponseV1 ¶

func NewSeriesCommentModerationResponseV1() *SeriesCommentModerationResponseV1

NewSeriesCommentModerationResponseV1 instantiates a new SeriesCommentModerationResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesCommentModerationResponseV1WithDefaults ¶

func NewSeriesCommentModerationResponseV1WithDefaults() *SeriesCommentModerationResponseV1

NewSeriesCommentModerationResponseV1WithDefaults instantiates a new SeriesCommentModerationResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesCommentModerationResponseV1) GetPage ¶

GetPage returns the Page field value if set, zero value otherwise.

func (*SeriesCommentModerationResponseV1) GetPageOk ¶

func (o *SeriesCommentModerationResponseV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentModerationResponseV1) GetPerPage ¶

func (o *SeriesCommentModerationResponseV1) GetPerPage() int64

GetPerPage returns the PerPage field value if set, zero value otherwise.

func (*SeriesCommentModerationResponseV1) GetPerPageOk ¶

func (o *SeriesCommentModerationResponseV1) GetPerPageOk() (*int64, bool)

GetPerPageOk returns a tuple with the PerPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentModerationResponseV1) GetResults ¶

GetResults returns the Results field value if set, zero value otherwise.

func (*SeriesCommentModerationResponseV1) GetResultsOk ¶

GetResultsOk returns a tuple with the Results field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentModerationResponseV1) GetTotalHits ¶

func (o *SeriesCommentModerationResponseV1) GetTotalHits() int64

GetTotalHits returns the TotalHits field value if set, zero value otherwise.

func (*SeriesCommentModerationResponseV1) GetTotalHitsOk ¶

func (o *SeriesCommentModerationResponseV1) GetTotalHitsOk() (*int64, bool)

GetTotalHitsOk returns a tuple with the TotalHits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentModerationResponseV1) HasPage ¶

HasPage returns a boolean if a field has been set.

func (*SeriesCommentModerationResponseV1) HasPerPage ¶

func (o *SeriesCommentModerationResponseV1) HasPerPage() bool

HasPerPage returns a boolean if a field has been set.

func (*SeriesCommentModerationResponseV1) HasResults ¶

func (o *SeriesCommentModerationResponseV1) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*SeriesCommentModerationResponseV1) HasTotalHits ¶

func (o *SeriesCommentModerationResponseV1) HasTotalHits() bool

HasTotalHits returns a boolean if a field has been set.

func (SeriesCommentModerationResponseV1) MarshalJSON ¶

func (o SeriesCommentModerationResponseV1) MarshalJSON() ([]byte, error)

func (*SeriesCommentModerationResponseV1) SetPage ¶

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*SeriesCommentModerationResponseV1) SetPerPage ¶

func (o *SeriesCommentModerationResponseV1) SetPerPage(v int64)

SetPerPage gets a reference to the given int64 and assigns it to the PerPage field.

func (*SeriesCommentModerationResponseV1) SetResults ¶

SetResults gets a reference to the given []SeriesCommentModerationResponseV1Results and assigns it to the Results field.

func (*SeriesCommentModerationResponseV1) SetTotalHits ¶

func (o *SeriesCommentModerationResponseV1) SetTotalHits(v int64)

SetTotalHits gets a reference to the given int64 and assigns it to the TotalHits field.

func (SeriesCommentModerationResponseV1) ToMap ¶

func (o SeriesCommentModerationResponseV1) ToMap() (map[string]interface{}, error)

type SeriesCommentModerationResponseV1Results ¶

type SeriesCommentModerationResponseV1Results struct {
	Record   *SeriesCommentModelV1                             `json:"record,omitempty"`
	Metadata *SeriesCommentModerationResponseV1ResultsMetadata `json:"metadata,omitempty"`
}

SeriesCommentModerationResponseV1Results struct for SeriesCommentModerationResponseV1Results

func NewSeriesCommentModerationResponseV1Results ¶

func NewSeriesCommentModerationResponseV1Results() *SeriesCommentModerationResponseV1Results

NewSeriesCommentModerationResponseV1Results instantiates a new SeriesCommentModerationResponseV1Results object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesCommentModerationResponseV1ResultsWithDefaults ¶

func NewSeriesCommentModerationResponseV1ResultsWithDefaults() *SeriesCommentModerationResponseV1Results

NewSeriesCommentModerationResponseV1ResultsWithDefaults instantiates a new SeriesCommentModerationResponseV1Results object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesCommentModerationResponseV1Results) GetMetadata ¶

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*SeriesCommentModerationResponseV1Results) GetMetadataOk ¶

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentModerationResponseV1Results) GetRecord ¶

GetRecord returns the Record field value if set, zero value otherwise.

func (*SeriesCommentModerationResponseV1Results) GetRecordOk ¶

GetRecordOk returns a tuple with the Record field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentModerationResponseV1Results) HasMetadata ¶

HasMetadata returns a boolean if a field has been set.

func (*SeriesCommentModerationResponseV1Results) HasRecord ¶

HasRecord returns a boolean if a field has been set.

func (SeriesCommentModerationResponseV1Results) MarshalJSON ¶

func (*SeriesCommentModerationResponseV1Results) SetMetadata ¶

SetMetadata gets a reference to the given SeriesCommentModerationResponseV1ResultsMetadata and assigns it to the Metadata field.

func (*SeriesCommentModerationResponseV1Results) SetRecord ¶

SetRecord gets a reference to the given SeriesCommentModelV1 and assigns it to the Record field.

func (SeriesCommentModerationResponseV1Results) ToMap ¶

func (o SeriesCommentModerationResponseV1Results) ToMap() (map[string]interface{}, error)

type SeriesCommentModerationResponseV1ResultsMetadata ¶

type SeriesCommentModerationResponseV1ResultsMetadata struct {
	Series             *SeriesModelSearchV1 `json:"series,omitempty"`
	AuthorSeriesRating *float32             `json:"author_series_rating,omitempty"`
}

SeriesCommentModerationResponseV1ResultsMetadata struct for SeriesCommentModerationResponseV1ResultsMetadata

func NewSeriesCommentModerationResponseV1ResultsMetadata ¶

func NewSeriesCommentModerationResponseV1ResultsMetadata() *SeriesCommentModerationResponseV1ResultsMetadata

NewSeriesCommentModerationResponseV1ResultsMetadata instantiates a new SeriesCommentModerationResponseV1ResultsMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesCommentModerationResponseV1ResultsMetadataWithDefaults ¶

func NewSeriesCommentModerationResponseV1ResultsMetadataWithDefaults() *SeriesCommentModerationResponseV1ResultsMetadata

NewSeriesCommentModerationResponseV1ResultsMetadataWithDefaults instantiates a new SeriesCommentModerationResponseV1ResultsMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesCommentModerationResponseV1ResultsMetadata) GetAuthorSeriesRating ¶

func (o *SeriesCommentModerationResponseV1ResultsMetadata) GetAuthorSeriesRating() float32

GetAuthorSeriesRating returns the AuthorSeriesRating field value if set, zero value otherwise.

func (*SeriesCommentModerationResponseV1ResultsMetadata) GetAuthorSeriesRatingOk ¶

func (o *SeriesCommentModerationResponseV1ResultsMetadata) GetAuthorSeriesRatingOk() (*float32, bool)

GetAuthorSeriesRatingOk returns a tuple with the AuthorSeriesRating field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentModerationResponseV1ResultsMetadata) GetSeries ¶

GetSeries returns the Series field value if set, zero value otherwise.

func (*SeriesCommentModerationResponseV1ResultsMetadata) GetSeriesOk ¶

GetSeriesOk returns a tuple with the Series field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentModerationResponseV1ResultsMetadata) HasAuthorSeriesRating ¶

func (o *SeriesCommentModerationResponseV1ResultsMetadata) HasAuthorSeriesRating() bool

HasAuthorSeriesRating returns a boolean if a field has been set.

func (*SeriesCommentModerationResponseV1ResultsMetadata) HasSeries ¶

HasSeries returns a boolean if a field has been set.

func (SeriesCommentModerationResponseV1ResultsMetadata) MarshalJSON ¶

func (*SeriesCommentModerationResponseV1ResultsMetadata) SetAuthorSeriesRating ¶

func (o *SeriesCommentModerationResponseV1ResultsMetadata) SetAuthorSeriesRating(v float32)

SetAuthorSeriesRating gets a reference to the given float32 and assigns it to the AuthorSeriesRating field.

func (*SeriesCommentModerationResponseV1ResultsMetadata) SetSeries ¶

SetSeries gets a reference to the given SeriesModelSearchV1 and assigns it to the Series field.

func (SeriesCommentModerationResponseV1ResultsMetadata) ToMap ¶

func (o SeriesCommentModerationResponseV1ResultsMetadata) ToMap() (map[string]interface{}, error)

type SeriesCommentReportModelV1 ¶

type SeriesCommentReportModelV1 struct {
	ReportReason *string `json:"report_reason,omitempty"`
}

SeriesCommentReportModelV1 struct for SeriesCommentReportModelV1

func NewSeriesCommentReportModelV1 ¶

func NewSeriesCommentReportModelV1() *SeriesCommentReportModelV1

NewSeriesCommentReportModelV1 instantiates a new SeriesCommentReportModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesCommentReportModelV1WithDefaults ¶

func NewSeriesCommentReportModelV1WithDefaults() *SeriesCommentReportModelV1

NewSeriesCommentReportModelV1WithDefaults instantiates a new SeriesCommentReportModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesCommentReportModelV1) GetReportReason ¶

func (o *SeriesCommentReportModelV1) GetReportReason() string

GetReportReason returns the ReportReason field value if set, zero value otherwise.

func (*SeriesCommentReportModelV1) GetReportReasonOk ¶

func (o *SeriesCommentReportModelV1) GetReportReasonOk() (*string, bool)

GetReportReasonOk returns a tuple with the ReportReason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentReportModelV1) HasReportReason ¶

func (o *SeriesCommentReportModelV1) HasReportReason() bool

HasReportReason returns a boolean if a field has been set.

func (SeriesCommentReportModelV1) MarshalJSON ¶

func (o SeriesCommentReportModelV1) MarshalJSON() ([]byte, error)

func (*SeriesCommentReportModelV1) SetReportReason ¶

func (o *SeriesCommentReportModelV1) SetReportReason(v string)

SetReportReason gets a reference to the given string and assigns it to the ReportReason field.

func (SeriesCommentReportModelV1) ToMap ¶

func (o SeriesCommentReportModelV1) ToMap() (map[string]interface{}, error)

type SeriesCommentSearchRequestV1 ¶

type SeriesCommentSearchRequestV1 struct {
	Method  *string `json:"method,omitempty"`
	AddedBy *int64  `json:"added_by,omitempty"`
	Page    *int64  `json:"page,omitempty"`
	Perpage *int64  `json:"perpage,omitempty"`
}

SeriesCommentSearchRequestV1 struct for SeriesCommentSearchRequestV1

func NewSeriesCommentSearchRequestV1 ¶

func NewSeriesCommentSearchRequestV1() *SeriesCommentSearchRequestV1

NewSeriesCommentSearchRequestV1 instantiates a new SeriesCommentSearchRequestV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesCommentSearchRequestV1WithDefaults ¶

func NewSeriesCommentSearchRequestV1WithDefaults() *SeriesCommentSearchRequestV1

NewSeriesCommentSearchRequestV1WithDefaults instantiates a new SeriesCommentSearchRequestV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesCommentSearchRequestV1) GetAddedBy ¶

func (o *SeriesCommentSearchRequestV1) GetAddedBy() int64

GetAddedBy returns the AddedBy field value if set, zero value otherwise.

func (*SeriesCommentSearchRequestV1) GetAddedByOk ¶

func (o *SeriesCommentSearchRequestV1) GetAddedByOk() (*int64, bool)

GetAddedByOk returns a tuple with the AddedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentSearchRequestV1) GetMethod ¶

func (o *SeriesCommentSearchRequestV1) GetMethod() string

GetMethod returns the Method field value if set, zero value otherwise.

func (*SeriesCommentSearchRequestV1) GetMethodOk ¶

func (o *SeriesCommentSearchRequestV1) GetMethodOk() (*string, bool)

GetMethodOk returns a tuple with the Method field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentSearchRequestV1) GetPage ¶

func (o *SeriesCommentSearchRequestV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*SeriesCommentSearchRequestV1) GetPageOk ¶

func (o *SeriesCommentSearchRequestV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentSearchRequestV1) GetPerpage ¶

func (o *SeriesCommentSearchRequestV1) GetPerpage() int64

GetPerpage returns the Perpage field value if set, zero value otherwise.

func (*SeriesCommentSearchRequestV1) GetPerpageOk ¶

func (o *SeriesCommentSearchRequestV1) GetPerpageOk() (*int64, bool)

GetPerpageOk returns a tuple with the Perpage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentSearchRequestV1) HasAddedBy ¶

func (o *SeriesCommentSearchRequestV1) HasAddedBy() bool

HasAddedBy returns a boolean if a field has been set.

func (*SeriesCommentSearchRequestV1) HasMethod ¶

func (o *SeriesCommentSearchRequestV1) HasMethod() bool

HasMethod returns a boolean if a field has been set.

func (*SeriesCommentSearchRequestV1) HasPage ¶

func (o *SeriesCommentSearchRequestV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*SeriesCommentSearchRequestV1) HasPerpage ¶

func (o *SeriesCommentSearchRequestV1) HasPerpage() bool

HasPerpage returns a boolean if a field has been set.

func (SeriesCommentSearchRequestV1) MarshalJSON ¶

func (o SeriesCommentSearchRequestV1) MarshalJSON() ([]byte, error)

func (*SeriesCommentSearchRequestV1) SetAddedBy ¶

func (o *SeriesCommentSearchRequestV1) SetAddedBy(v int64)

SetAddedBy gets a reference to the given int64 and assigns it to the AddedBy field.

func (*SeriesCommentSearchRequestV1) SetMethod ¶

func (o *SeriesCommentSearchRequestV1) SetMethod(v string)

SetMethod gets a reference to the given string and assigns it to the Method field.

func (*SeriesCommentSearchRequestV1) SetPage ¶

func (o *SeriesCommentSearchRequestV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*SeriesCommentSearchRequestV1) SetPerpage ¶

func (o *SeriesCommentSearchRequestV1) SetPerpage(v int64)

SetPerpage gets a reference to the given int64 and assigns it to the Perpage field.

func (SeriesCommentSearchRequestV1) ToMap ¶

func (o SeriesCommentSearchRequestV1) ToMap() (map[string]interface{}, error)

type SeriesCommentSearchResponseV1 ¶

type SeriesCommentSearchResponseV1 struct {
	TotalHits *int64                                 `json:"total_hits,omitempty"`
	Page      *int64                                 `json:"page,omitempty"`
	PerPage   *int64                                 `json:"per_page,omitempty"`
	Results   []SeriesCommentSearchResponseV1Results `json:"results,omitempty"`
}

SeriesCommentSearchResponseV1 struct for SeriesCommentSearchResponseV1

func NewSeriesCommentSearchResponseV1 ¶

func NewSeriesCommentSearchResponseV1() *SeriesCommentSearchResponseV1

NewSeriesCommentSearchResponseV1 instantiates a new SeriesCommentSearchResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesCommentSearchResponseV1WithDefaults ¶

func NewSeriesCommentSearchResponseV1WithDefaults() *SeriesCommentSearchResponseV1

NewSeriesCommentSearchResponseV1WithDefaults instantiates a new SeriesCommentSearchResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesCommentSearchResponseV1) GetPage ¶

func (o *SeriesCommentSearchResponseV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*SeriesCommentSearchResponseV1) GetPageOk ¶

func (o *SeriesCommentSearchResponseV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentSearchResponseV1) GetPerPage ¶

func (o *SeriesCommentSearchResponseV1) GetPerPage() int64

GetPerPage returns the PerPage field value if set, zero value otherwise.

func (*SeriesCommentSearchResponseV1) GetPerPageOk ¶

func (o *SeriesCommentSearchResponseV1) GetPerPageOk() (*int64, bool)

GetPerPageOk returns a tuple with the PerPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentSearchResponseV1) GetResults ¶

GetResults returns the Results field value if set, zero value otherwise.

func (*SeriesCommentSearchResponseV1) GetResultsOk ¶

GetResultsOk returns a tuple with the Results field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentSearchResponseV1) GetTotalHits ¶

func (o *SeriesCommentSearchResponseV1) GetTotalHits() int64

GetTotalHits returns the TotalHits field value if set, zero value otherwise.

func (*SeriesCommentSearchResponseV1) GetTotalHitsOk ¶

func (o *SeriesCommentSearchResponseV1) GetTotalHitsOk() (*int64, bool)

GetTotalHitsOk returns a tuple with the TotalHits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentSearchResponseV1) HasPage ¶

func (o *SeriesCommentSearchResponseV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*SeriesCommentSearchResponseV1) HasPerPage ¶

func (o *SeriesCommentSearchResponseV1) HasPerPage() bool

HasPerPage returns a boolean if a field has been set.

func (*SeriesCommentSearchResponseV1) HasResults ¶

func (o *SeriesCommentSearchResponseV1) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*SeriesCommentSearchResponseV1) HasTotalHits ¶

func (o *SeriesCommentSearchResponseV1) HasTotalHits() bool

HasTotalHits returns a boolean if a field has been set.

func (SeriesCommentSearchResponseV1) MarshalJSON ¶

func (o SeriesCommentSearchResponseV1) MarshalJSON() ([]byte, error)

func (*SeriesCommentSearchResponseV1) SetPage ¶

func (o *SeriesCommentSearchResponseV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*SeriesCommentSearchResponseV1) SetPerPage ¶

func (o *SeriesCommentSearchResponseV1) SetPerPage(v int64)

SetPerPage gets a reference to the given int64 and assigns it to the PerPage field.

func (*SeriesCommentSearchResponseV1) SetResults ¶

SetResults gets a reference to the given []SeriesCommentSearchResponseV1Results and assigns it to the Results field.

func (*SeriesCommentSearchResponseV1) SetTotalHits ¶

func (o *SeriesCommentSearchResponseV1) SetTotalHits(v int64)

SetTotalHits gets a reference to the given int64 and assigns it to the TotalHits field.

func (SeriesCommentSearchResponseV1) ToMap ¶

func (o SeriesCommentSearchResponseV1) ToMap() (map[string]interface{}, error)

type SeriesCommentSearchResponseV1Results ¶

type SeriesCommentSearchResponseV1Results struct {
	Record   *SeriesCommentModelV1                         `json:"record,omitempty"`
	Metadata *SeriesCommentSearchResponseV1ResultsMetadata `json:"metadata,omitempty"`
}

SeriesCommentSearchResponseV1Results struct for SeriesCommentSearchResponseV1Results

func NewSeriesCommentSearchResponseV1Results ¶

func NewSeriesCommentSearchResponseV1Results() *SeriesCommentSearchResponseV1Results

NewSeriesCommentSearchResponseV1Results instantiates a new SeriesCommentSearchResponseV1Results object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesCommentSearchResponseV1ResultsWithDefaults ¶

func NewSeriesCommentSearchResponseV1ResultsWithDefaults() *SeriesCommentSearchResponseV1Results

NewSeriesCommentSearchResponseV1ResultsWithDefaults instantiates a new SeriesCommentSearchResponseV1Results object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesCommentSearchResponseV1Results) GetMetadata ¶

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*SeriesCommentSearchResponseV1Results) GetMetadataOk ¶

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentSearchResponseV1Results) GetRecord ¶

GetRecord returns the Record field value if set, zero value otherwise.

func (*SeriesCommentSearchResponseV1Results) GetRecordOk ¶

GetRecordOk returns a tuple with the Record field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentSearchResponseV1Results) HasMetadata ¶

func (o *SeriesCommentSearchResponseV1Results) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*SeriesCommentSearchResponseV1Results) HasRecord ¶

HasRecord returns a boolean if a field has been set.

func (SeriesCommentSearchResponseV1Results) MarshalJSON ¶

func (o SeriesCommentSearchResponseV1Results) MarshalJSON() ([]byte, error)

func (*SeriesCommentSearchResponseV1Results) SetMetadata ¶

SetMetadata gets a reference to the given SeriesCommentSearchResponseV1ResultsMetadata and assigns it to the Metadata field.

func (*SeriesCommentSearchResponseV1Results) SetRecord ¶

SetRecord gets a reference to the given SeriesCommentModelV1 and assigns it to the Record field.

func (SeriesCommentSearchResponseV1Results) ToMap ¶

func (o SeriesCommentSearchResponseV1Results) ToMap() (map[string]interface{}, error)

type SeriesCommentSearchResponseV1ResultsMetadata ¶

type SeriesCommentSearchResponseV1ResultsMetadata struct {
	AuthorSeriesRating      *float32 `json:"author_series_rating,omitempty"`
	CurrentUserUsefulRating *bool    `json:"current_user_useful_rating,omitempty"`
}

SeriesCommentSearchResponseV1ResultsMetadata struct for SeriesCommentSearchResponseV1ResultsMetadata

func NewSeriesCommentSearchResponseV1ResultsMetadata ¶

func NewSeriesCommentSearchResponseV1ResultsMetadata() *SeriesCommentSearchResponseV1ResultsMetadata

NewSeriesCommentSearchResponseV1ResultsMetadata instantiates a new SeriesCommentSearchResponseV1ResultsMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesCommentSearchResponseV1ResultsMetadataWithDefaults ¶

func NewSeriesCommentSearchResponseV1ResultsMetadataWithDefaults() *SeriesCommentSearchResponseV1ResultsMetadata

NewSeriesCommentSearchResponseV1ResultsMetadataWithDefaults instantiates a new SeriesCommentSearchResponseV1ResultsMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesCommentSearchResponseV1ResultsMetadata) GetAuthorSeriesRating ¶

func (o *SeriesCommentSearchResponseV1ResultsMetadata) GetAuthorSeriesRating() float32

GetAuthorSeriesRating returns the AuthorSeriesRating field value if set, zero value otherwise.

func (*SeriesCommentSearchResponseV1ResultsMetadata) GetAuthorSeriesRatingOk ¶

func (o *SeriesCommentSearchResponseV1ResultsMetadata) GetAuthorSeriesRatingOk() (*float32, bool)

GetAuthorSeriesRatingOk returns a tuple with the AuthorSeriesRating field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentSearchResponseV1ResultsMetadata) GetCurrentUserUsefulRating ¶

func (o *SeriesCommentSearchResponseV1ResultsMetadata) GetCurrentUserUsefulRating() bool

GetCurrentUserUsefulRating returns the CurrentUserUsefulRating field value if set, zero value otherwise.

func (*SeriesCommentSearchResponseV1ResultsMetadata) GetCurrentUserUsefulRatingOk ¶

func (o *SeriesCommentSearchResponseV1ResultsMetadata) GetCurrentUserUsefulRatingOk() (*bool, bool)

GetCurrentUserUsefulRatingOk returns a tuple with the CurrentUserUsefulRating field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentSearchResponseV1ResultsMetadata) HasAuthorSeriesRating ¶

func (o *SeriesCommentSearchResponseV1ResultsMetadata) HasAuthorSeriesRating() bool

HasAuthorSeriesRating returns a boolean if a field has been set.

func (*SeriesCommentSearchResponseV1ResultsMetadata) HasCurrentUserUsefulRating ¶

func (o *SeriesCommentSearchResponseV1ResultsMetadata) HasCurrentUserUsefulRating() bool

HasCurrentUserUsefulRating returns a boolean if a field has been set.

func (SeriesCommentSearchResponseV1ResultsMetadata) MarshalJSON ¶

func (*SeriesCommentSearchResponseV1ResultsMetadata) SetAuthorSeriesRating ¶

func (o *SeriesCommentSearchResponseV1ResultsMetadata) SetAuthorSeriesRating(v float32)

SetAuthorSeriesRating gets a reference to the given float32 and assigns it to the AuthorSeriesRating field.

func (*SeriesCommentSearchResponseV1ResultsMetadata) SetCurrentUserUsefulRating ¶

func (o *SeriesCommentSearchResponseV1ResultsMetadata) SetCurrentUserUsefulRating(v bool)

SetCurrentUserUsefulRating gets a reference to the given bool and assigns it to the CurrentUserUsefulRating field.

func (SeriesCommentSearchResponseV1ResultsMetadata) ToMap ¶

func (o SeriesCommentSearchResponseV1ResultsMetadata) ToMap() (map[string]interface{}, error)

type SeriesCommentUsefulModelV1 ¶

type SeriesCommentUsefulModelV1 struct {
	Useful *bool `json:"useful,omitempty"`
}

SeriesCommentUsefulModelV1 struct for SeriesCommentUsefulModelV1

func NewSeriesCommentUsefulModelV1 ¶

func NewSeriesCommentUsefulModelV1() *SeriesCommentUsefulModelV1

NewSeriesCommentUsefulModelV1 instantiates a new SeriesCommentUsefulModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesCommentUsefulModelV1WithDefaults ¶

func NewSeriesCommentUsefulModelV1WithDefaults() *SeriesCommentUsefulModelV1

NewSeriesCommentUsefulModelV1WithDefaults instantiates a new SeriesCommentUsefulModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesCommentUsefulModelV1) GetUseful ¶

func (o *SeriesCommentUsefulModelV1) GetUseful() bool

GetUseful returns the Useful field value if set, zero value otherwise.

func (*SeriesCommentUsefulModelV1) GetUsefulOk ¶

func (o *SeriesCommentUsefulModelV1) GetUsefulOk() (*bool, bool)

GetUsefulOk returns a tuple with the Useful field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesCommentUsefulModelV1) HasUseful ¶

func (o *SeriesCommentUsefulModelV1) HasUseful() bool

HasUseful returns a boolean if a field has been set.

func (SeriesCommentUsefulModelV1) MarshalJSON ¶

func (o SeriesCommentUsefulModelV1) MarshalJSON() ([]byte, error)

func (*SeriesCommentUsefulModelV1) SetUseful ¶

func (o *SeriesCommentUsefulModelV1) SetUseful(v bool)

SetUseful gets a reference to the given bool and assigns it to the Useful field.

func (SeriesCommentUsefulModelV1) ToMap ¶

func (o SeriesCommentUsefulModelV1) ToMap() (map[string]interface{}, error)

type SeriesGroupListResponseV1 ¶

type SeriesGroupListResponseV1 struct {
	GroupList   []GroupsModelSearchV1  `json:"group_list,omitempty"`
	ReleaseList []ReleaseModelSearchV1 `json:"release_list,omitempty"`
}

SeriesGroupListResponseV1 struct for SeriesGroupListResponseV1

func NewSeriesGroupListResponseV1 ¶

func NewSeriesGroupListResponseV1() *SeriesGroupListResponseV1

NewSeriesGroupListResponseV1 instantiates a new SeriesGroupListResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesGroupListResponseV1WithDefaults ¶

func NewSeriesGroupListResponseV1WithDefaults() *SeriesGroupListResponseV1

NewSeriesGroupListResponseV1WithDefaults instantiates a new SeriesGroupListResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesGroupListResponseV1) GetGroupList ¶

func (o *SeriesGroupListResponseV1) GetGroupList() []GroupsModelSearchV1

GetGroupList returns the GroupList field value if set, zero value otherwise.

func (*SeriesGroupListResponseV1) GetGroupListOk ¶

func (o *SeriesGroupListResponseV1) GetGroupListOk() ([]GroupsModelSearchV1, bool)

GetGroupListOk returns a tuple with the GroupList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesGroupListResponseV1) GetReleaseList ¶

func (o *SeriesGroupListResponseV1) GetReleaseList() []ReleaseModelSearchV1

GetReleaseList returns the ReleaseList field value if set, zero value otherwise.

func (*SeriesGroupListResponseV1) GetReleaseListOk ¶

func (o *SeriesGroupListResponseV1) GetReleaseListOk() ([]ReleaseModelSearchV1, bool)

GetReleaseListOk returns a tuple with the ReleaseList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesGroupListResponseV1) HasGroupList ¶

func (o *SeriesGroupListResponseV1) HasGroupList() bool

HasGroupList returns a boolean if a field has been set.

func (*SeriesGroupListResponseV1) HasReleaseList ¶

func (o *SeriesGroupListResponseV1) HasReleaseList() bool

HasReleaseList returns a boolean if a field has been set.

func (SeriesGroupListResponseV1) MarshalJSON ¶

func (o SeriesGroupListResponseV1) MarshalJSON() ([]byte, error)

func (*SeriesGroupListResponseV1) SetGroupList ¶

func (o *SeriesGroupListResponseV1) SetGroupList(v []GroupsModelSearchV1)

SetGroupList gets a reference to the given []GroupsModelSearchV1 and assigns it to the GroupList field.

func (*SeriesGroupListResponseV1) SetReleaseList ¶

func (o *SeriesGroupListResponseV1) SetReleaseList(v []ReleaseModelSearchV1)

SetReleaseList gets a reference to the given []ReleaseModelSearchV1 and assigns it to the ReleaseList field.

func (SeriesGroupListResponseV1) ToMap ¶

func (o SeriesGroupListResponseV1) ToMap() (map[string]interface{}, error)

type SeriesHistoryModelV1 ¶

type SeriesHistoryModelV1 struct {
	ChangeId  *int64  `json:"change_id,omitempty"`
	Username  *string `json:"username,omitempty"`
	Action    *string `json:"action,omitempty"`
	Changed   *string `json:"changed,omitempty"`
	TimeAdded *TimeV1 `json:"time_added,omitempty"`
}

SeriesHistoryModelV1 struct for SeriesHistoryModelV1

func NewSeriesHistoryModelV1 ¶

func NewSeriesHistoryModelV1() *SeriesHistoryModelV1

NewSeriesHistoryModelV1 instantiates a new SeriesHistoryModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesHistoryModelV1WithDefaults ¶

func NewSeriesHistoryModelV1WithDefaults() *SeriesHistoryModelV1

NewSeriesHistoryModelV1WithDefaults instantiates a new SeriesHistoryModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesHistoryModelV1) GetAction ¶

func (o *SeriesHistoryModelV1) GetAction() string

GetAction returns the Action field value if set, zero value otherwise.

func (*SeriesHistoryModelV1) GetActionOk ¶

func (o *SeriesHistoryModelV1) GetActionOk() (*string, bool)

GetActionOk returns a tuple with the Action field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesHistoryModelV1) GetChangeId ¶

func (o *SeriesHistoryModelV1) GetChangeId() int64

GetChangeId returns the ChangeId field value if set, zero value otherwise.

func (*SeriesHistoryModelV1) GetChangeIdOk ¶

func (o *SeriesHistoryModelV1) GetChangeIdOk() (*int64, bool)

GetChangeIdOk returns a tuple with the ChangeId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesHistoryModelV1) GetChanged ¶

func (o *SeriesHistoryModelV1) GetChanged() string

GetChanged returns the Changed field value if set, zero value otherwise.

func (*SeriesHistoryModelV1) GetChangedOk ¶

func (o *SeriesHistoryModelV1) GetChangedOk() (*string, bool)

GetChangedOk returns a tuple with the Changed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesHistoryModelV1) GetTimeAdded ¶

func (o *SeriesHistoryModelV1) GetTimeAdded() TimeV1

GetTimeAdded returns the TimeAdded field value if set, zero value otherwise.

func (*SeriesHistoryModelV1) GetTimeAddedOk ¶

func (o *SeriesHistoryModelV1) GetTimeAddedOk() (*TimeV1, bool)

GetTimeAddedOk returns a tuple with the TimeAdded field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesHistoryModelV1) GetUsername ¶

func (o *SeriesHistoryModelV1) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*SeriesHistoryModelV1) GetUsernameOk ¶

func (o *SeriesHistoryModelV1) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesHistoryModelV1) HasAction ¶

func (o *SeriesHistoryModelV1) HasAction() bool

HasAction returns a boolean if a field has been set.

func (*SeriesHistoryModelV1) HasChangeId ¶

func (o *SeriesHistoryModelV1) HasChangeId() bool

HasChangeId returns a boolean if a field has been set.

func (*SeriesHistoryModelV1) HasChanged ¶

func (o *SeriesHistoryModelV1) HasChanged() bool

HasChanged returns a boolean if a field has been set.

func (*SeriesHistoryModelV1) HasTimeAdded ¶

func (o *SeriesHistoryModelV1) HasTimeAdded() bool

HasTimeAdded returns a boolean if a field has been set.

func (*SeriesHistoryModelV1) HasUsername ¶

func (o *SeriesHistoryModelV1) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (SeriesHistoryModelV1) MarshalJSON ¶

func (o SeriesHistoryModelV1) MarshalJSON() ([]byte, error)

func (*SeriesHistoryModelV1) SetAction ¶

func (o *SeriesHistoryModelV1) SetAction(v string)

SetAction gets a reference to the given string and assigns it to the Action field.

func (*SeriesHistoryModelV1) SetChangeId ¶

func (o *SeriesHistoryModelV1) SetChangeId(v int64)

SetChangeId gets a reference to the given int64 and assigns it to the ChangeId field.

func (*SeriesHistoryModelV1) SetChanged ¶

func (o *SeriesHistoryModelV1) SetChanged(v string)

SetChanged gets a reference to the given string and assigns it to the Changed field.

func (*SeriesHistoryModelV1) SetTimeAdded ¶

func (o *SeriesHistoryModelV1) SetTimeAdded(v TimeV1)

SetTimeAdded gets a reference to the given TimeV1 and assigns it to the TimeAdded field.

func (*SeriesHistoryModelV1) SetUsername ¶

func (o *SeriesHistoryModelV1) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (SeriesHistoryModelV1) ToMap ¶

func (o SeriesHistoryModelV1) ToMap() (map[string]interface{}, error)

type SeriesHistorySearchResponseV1 ¶

type SeriesHistorySearchResponseV1 struct {
	TotalHits   *int64                                 `json:"total_hits,omitempty"`
	Page        *int64                                 `json:"page,omitempty"`
	PerPage     *int64                                 `json:"per_page,omitempty"`
	SeriesTitle *string                                `json:"series_title,omitempty"`
	Results     []SeriesHistorySearchResponseV1Results `json:"results,omitempty"`
}

SeriesHistorySearchResponseV1 struct for SeriesHistorySearchResponseV1

func NewSeriesHistorySearchResponseV1 ¶

func NewSeriesHistorySearchResponseV1() *SeriesHistorySearchResponseV1

NewSeriesHistorySearchResponseV1 instantiates a new SeriesHistorySearchResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesHistorySearchResponseV1WithDefaults ¶

func NewSeriesHistorySearchResponseV1WithDefaults() *SeriesHistorySearchResponseV1

NewSeriesHistorySearchResponseV1WithDefaults instantiates a new SeriesHistorySearchResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesHistorySearchResponseV1) GetPage ¶

func (o *SeriesHistorySearchResponseV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*SeriesHistorySearchResponseV1) GetPageOk ¶

func (o *SeriesHistorySearchResponseV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesHistorySearchResponseV1) GetPerPage ¶

func (o *SeriesHistorySearchResponseV1) GetPerPage() int64

GetPerPage returns the PerPage field value if set, zero value otherwise.

func (*SeriesHistorySearchResponseV1) GetPerPageOk ¶

func (o *SeriesHistorySearchResponseV1) GetPerPageOk() (*int64, bool)

GetPerPageOk returns a tuple with the PerPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesHistorySearchResponseV1) GetResults ¶

GetResults returns the Results field value if set, zero value otherwise.

func (*SeriesHistorySearchResponseV1) GetResultsOk ¶

GetResultsOk returns a tuple with the Results field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesHistorySearchResponseV1) GetSeriesTitle ¶

func (o *SeriesHistorySearchResponseV1) GetSeriesTitle() string

GetSeriesTitle returns the SeriesTitle field value if set, zero value otherwise.

func (*SeriesHistorySearchResponseV1) GetSeriesTitleOk ¶

func (o *SeriesHistorySearchResponseV1) GetSeriesTitleOk() (*string, bool)

GetSeriesTitleOk returns a tuple with the SeriesTitle field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesHistorySearchResponseV1) GetTotalHits ¶

func (o *SeriesHistorySearchResponseV1) GetTotalHits() int64

GetTotalHits returns the TotalHits field value if set, zero value otherwise.

func (*SeriesHistorySearchResponseV1) GetTotalHitsOk ¶

func (o *SeriesHistorySearchResponseV1) GetTotalHitsOk() (*int64, bool)

GetTotalHitsOk returns a tuple with the TotalHits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesHistorySearchResponseV1) HasPage ¶

func (o *SeriesHistorySearchResponseV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*SeriesHistorySearchResponseV1) HasPerPage ¶

func (o *SeriesHistorySearchResponseV1) HasPerPage() bool

HasPerPage returns a boolean if a field has been set.

func (*SeriesHistorySearchResponseV1) HasResults ¶

func (o *SeriesHistorySearchResponseV1) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*SeriesHistorySearchResponseV1) HasSeriesTitle ¶

func (o *SeriesHistorySearchResponseV1) HasSeriesTitle() bool

HasSeriesTitle returns a boolean if a field has been set.

func (*SeriesHistorySearchResponseV1) HasTotalHits ¶

func (o *SeriesHistorySearchResponseV1) HasTotalHits() bool

HasTotalHits returns a boolean if a field has been set.

func (SeriesHistorySearchResponseV1) MarshalJSON ¶

func (o SeriesHistorySearchResponseV1) MarshalJSON() ([]byte, error)

func (*SeriesHistorySearchResponseV1) SetPage ¶

func (o *SeriesHistorySearchResponseV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*SeriesHistorySearchResponseV1) SetPerPage ¶

func (o *SeriesHistorySearchResponseV1) SetPerPage(v int64)

SetPerPage gets a reference to the given int64 and assigns it to the PerPage field.

func (*SeriesHistorySearchResponseV1) SetResults ¶

SetResults gets a reference to the given []SeriesHistorySearchResponseV1Results and assigns it to the Results field.

func (*SeriesHistorySearchResponseV1) SetSeriesTitle ¶

func (o *SeriesHistorySearchResponseV1) SetSeriesTitle(v string)

SetSeriesTitle gets a reference to the given string and assigns it to the SeriesTitle field.

func (*SeriesHistorySearchResponseV1) SetTotalHits ¶

func (o *SeriesHistorySearchResponseV1) SetTotalHits(v int64)

SetTotalHits gets a reference to the given int64 and assigns it to the TotalHits field.

func (SeriesHistorySearchResponseV1) ToMap ¶

func (o SeriesHistorySearchResponseV1) ToMap() (map[string]interface{}, error)

type SeriesHistorySearchResponseV1Results ¶

type SeriesHistorySearchResponseV1Results struct {
	Record *SeriesHistoryModelV1 `json:"record,omitempty"`
}

SeriesHistorySearchResponseV1Results struct for SeriesHistorySearchResponseV1Results

func NewSeriesHistorySearchResponseV1Results ¶

func NewSeriesHistorySearchResponseV1Results() *SeriesHistorySearchResponseV1Results

NewSeriesHistorySearchResponseV1Results instantiates a new SeriesHistorySearchResponseV1Results object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesHistorySearchResponseV1ResultsWithDefaults ¶

func NewSeriesHistorySearchResponseV1ResultsWithDefaults() *SeriesHistorySearchResponseV1Results

NewSeriesHistorySearchResponseV1ResultsWithDefaults instantiates a new SeriesHistorySearchResponseV1Results object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesHistorySearchResponseV1Results) GetRecord ¶

GetRecord returns the Record field value if set, zero value otherwise.

func (*SeriesHistorySearchResponseV1Results) GetRecordOk ¶

GetRecordOk returns a tuple with the Record field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesHistorySearchResponseV1Results) HasRecord ¶

HasRecord returns a boolean if a field has been set.

func (SeriesHistorySearchResponseV1Results) MarshalJSON ¶

func (o SeriesHistorySearchResponseV1Results) MarshalJSON() ([]byte, error)

func (*SeriesHistorySearchResponseV1Results) SetRecord ¶

SetRecord gets a reference to the given SeriesHistoryModelV1 and assigns it to the Record field.

func (SeriesHistorySearchResponseV1Results) ToMap ¶

func (o SeriesHistorySearchResponseV1Results) ToMap() (map[string]interface{}, error)

type SeriesLockModelUpdateV1 ¶

type SeriesLockModelUpdateV1 struct {
	Reason *string `json:"reason,omitempty"`
}

SeriesLockModelUpdateV1 struct for SeriesLockModelUpdateV1

func NewSeriesLockModelUpdateV1 ¶

func NewSeriesLockModelUpdateV1() *SeriesLockModelUpdateV1

NewSeriesLockModelUpdateV1 instantiates a new SeriesLockModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesLockModelUpdateV1WithDefaults ¶

func NewSeriesLockModelUpdateV1WithDefaults() *SeriesLockModelUpdateV1

NewSeriesLockModelUpdateV1WithDefaults instantiates a new SeriesLockModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesLockModelUpdateV1) GetReason ¶

func (o *SeriesLockModelUpdateV1) GetReason() string

GetReason returns the Reason field value if set, zero value otherwise.

func (*SeriesLockModelUpdateV1) GetReasonOk ¶

func (o *SeriesLockModelUpdateV1) GetReasonOk() (*string, bool)

GetReasonOk returns a tuple with the Reason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesLockModelUpdateV1) HasReason ¶

func (o *SeriesLockModelUpdateV1) HasReason() bool

HasReason returns a boolean if a field has been set.

func (SeriesLockModelUpdateV1) MarshalJSON ¶

func (o SeriesLockModelUpdateV1) MarshalJSON() ([]byte, error)

func (*SeriesLockModelUpdateV1) SetReason ¶

func (o *SeriesLockModelUpdateV1) SetReason(v string)

SetReason gets a reference to the given string and assigns it to the Reason field.

func (SeriesLockModelUpdateV1) ToMap ¶

func (o SeriesLockModelUpdateV1) ToMap() (map[string]interface{}, error)

type SeriesLockModelV1 ¶

type SeriesLockModelV1 struct {
	Field      *string `json:"field,omitempty"`
	Reason     *string `json:"reason,omitempty"`
	UserId     *int64  `json:"user_id,omitempty"`
	Username   *string `json:"username,omitempty"`
	TimeLocked *TimeV1 `json:"time_locked,omitempty"`
}

SeriesLockModelV1 struct for SeriesLockModelV1

func NewSeriesLockModelV1 ¶

func NewSeriesLockModelV1() *SeriesLockModelV1

NewSeriesLockModelV1 instantiates a new SeriesLockModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesLockModelV1WithDefaults ¶

func NewSeriesLockModelV1WithDefaults() *SeriesLockModelV1

NewSeriesLockModelV1WithDefaults instantiates a new SeriesLockModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesLockModelV1) GetField ¶

func (o *SeriesLockModelV1) GetField() string

GetField returns the Field field value if set, zero value otherwise.

func (*SeriesLockModelV1) GetFieldOk ¶

func (o *SeriesLockModelV1) GetFieldOk() (*string, bool)

GetFieldOk returns a tuple with the Field field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesLockModelV1) GetReason ¶

func (o *SeriesLockModelV1) GetReason() string

GetReason returns the Reason field value if set, zero value otherwise.

func (*SeriesLockModelV1) GetReasonOk ¶

func (o *SeriesLockModelV1) GetReasonOk() (*string, bool)

GetReasonOk returns a tuple with the Reason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesLockModelV1) GetTimeLocked ¶

func (o *SeriesLockModelV1) GetTimeLocked() TimeV1

GetTimeLocked returns the TimeLocked field value if set, zero value otherwise.

func (*SeriesLockModelV1) GetTimeLockedOk ¶

func (o *SeriesLockModelV1) GetTimeLockedOk() (*TimeV1, bool)

GetTimeLockedOk returns a tuple with the TimeLocked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesLockModelV1) GetUserId ¶

func (o *SeriesLockModelV1) GetUserId() int64

GetUserId returns the UserId field value if set, zero value otherwise.

func (*SeriesLockModelV1) GetUserIdOk ¶

func (o *SeriesLockModelV1) GetUserIdOk() (*int64, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesLockModelV1) GetUsername ¶

func (o *SeriesLockModelV1) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*SeriesLockModelV1) GetUsernameOk ¶

func (o *SeriesLockModelV1) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesLockModelV1) HasField ¶

func (o *SeriesLockModelV1) HasField() bool

HasField returns a boolean if a field has been set.

func (*SeriesLockModelV1) HasReason ¶

func (o *SeriesLockModelV1) HasReason() bool

HasReason returns a boolean if a field has been set.

func (*SeriesLockModelV1) HasTimeLocked ¶

func (o *SeriesLockModelV1) HasTimeLocked() bool

HasTimeLocked returns a boolean if a field has been set.

func (*SeriesLockModelV1) HasUserId ¶

func (o *SeriesLockModelV1) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (*SeriesLockModelV1) HasUsername ¶

func (o *SeriesLockModelV1) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (SeriesLockModelV1) MarshalJSON ¶

func (o SeriesLockModelV1) MarshalJSON() ([]byte, error)

func (*SeriesLockModelV1) SetField ¶

func (o *SeriesLockModelV1) SetField(v string)

SetField gets a reference to the given string and assigns it to the Field field.

func (*SeriesLockModelV1) SetReason ¶

func (o *SeriesLockModelV1) SetReason(v string)

SetReason gets a reference to the given string and assigns it to the Reason field.

func (*SeriesLockModelV1) SetTimeLocked ¶

func (o *SeriesLockModelV1) SetTimeLocked(v TimeV1)

SetTimeLocked gets a reference to the given TimeV1 and assigns it to the TimeLocked field.

func (*SeriesLockModelV1) SetUserId ¶

func (o *SeriesLockModelV1) SetUserId(v int64)

SetUserId gets a reference to the given int64 and assigns it to the UserId field.

func (*SeriesLockModelV1) SetUsername ¶

func (o *SeriesLockModelV1) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (SeriesLockModelV1) ToMap ¶

func (o SeriesLockModelV1) ToMap() (map[string]interface{}, error)

type SeriesModelSearchV1 ¶

type SeriesModelSearchV1 struct {
	SeriesId       *int64                      `json:"series_id,omitempty"`
	Title          *string                     `json:"title,omitempty"`
	Url            *string                     `json:"url,omitempty"`
	Description    *string                     `json:"description,omitempty"`
	Image          *ImageModelV1               `json:"image,omitempty"`
	Type           *string                     `json:"type,omitempty"`
	Year           *string                     `json:"year,omitempty"`
	BayesianRating *float32                    `json:"bayesian_rating,omitempty"`
	RatingVotes    *int64                      `json:"rating_votes,omitempty"`
	Genres         []SeriesModelSearchV1Genres `json:"genres,omitempty"`
	LatestChapter  *int64                      `json:"latest_chapter,omitempty"`
	Rank           *SeriesModelSearchV1Rank    `json:"rank,omitempty"`
	LastUpdated    *TimeV1                     `json:"last_updated,omitempty"`
	Admin          *SeriesModelSearchV1Admin   `json:"admin,omitempty"`
}

SeriesModelSearchV1 struct for SeriesModelSearchV1

func NewSeriesModelSearchV1 ¶

func NewSeriesModelSearchV1() *SeriesModelSearchV1

NewSeriesModelSearchV1 instantiates a new SeriesModelSearchV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesModelSearchV1WithDefaults ¶

func NewSeriesModelSearchV1WithDefaults() *SeriesModelSearchV1

NewSeriesModelSearchV1WithDefaults instantiates a new SeriesModelSearchV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesModelSearchV1) GetAdmin ¶

GetAdmin returns the Admin field value if set, zero value otherwise.

func (*SeriesModelSearchV1) GetAdminOk ¶

GetAdminOk returns a tuple with the Admin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1) GetBayesianRating ¶

func (o *SeriesModelSearchV1) GetBayesianRating() float32

GetBayesianRating returns the BayesianRating field value if set, zero value otherwise.

func (*SeriesModelSearchV1) GetBayesianRatingOk ¶

func (o *SeriesModelSearchV1) GetBayesianRatingOk() (*float32, bool)

GetBayesianRatingOk returns a tuple with the BayesianRating field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1) GetDescription ¶

func (o *SeriesModelSearchV1) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*SeriesModelSearchV1) GetDescriptionOk ¶

func (o *SeriesModelSearchV1) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1) GetGenres ¶

GetGenres returns the Genres field value if set, zero value otherwise.

func (*SeriesModelSearchV1) GetGenresOk ¶

func (o *SeriesModelSearchV1) GetGenresOk() ([]SeriesModelSearchV1Genres, bool)

GetGenresOk returns a tuple with the Genres field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1) GetImage ¶

func (o *SeriesModelSearchV1) GetImage() ImageModelV1

GetImage returns the Image field value if set, zero value otherwise.

func (*SeriesModelSearchV1) GetImageOk ¶

func (o *SeriesModelSearchV1) GetImageOk() (*ImageModelV1, bool)

GetImageOk returns a tuple with the Image field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1) GetLastUpdated ¶

func (o *SeriesModelSearchV1) GetLastUpdated() TimeV1

GetLastUpdated returns the LastUpdated field value if set, zero value otherwise.

func (*SeriesModelSearchV1) GetLastUpdatedOk ¶

func (o *SeriesModelSearchV1) GetLastUpdatedOk() (*TimeV1, bool)

GetLastUpdatedOk returns a tuple with the LastUpdated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1) GetLatestChapter ¶

func (o *SeriesModelSearchV1) GetLatestChapter() int64

GetLatestChapter returns the LatestChapter field value if set, zero value otherwise.

func (*SeriesModelSearchV1) GetLatestChapterOk ¶

func (o *SeriesModelSearchV1) GetLatestChapterOk() (*int64, bool)

GetLatestChapterOk returns a tuple with the LatestChapter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1) GetRank ¶

GetRank returns the Rank field value if set, zero value otherwise.

func (*SeriesModelSearchV1) GetRankOk ¶

GetRankOk returns a tuple with the Rank field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1) GetRatingVotes ¶

func (o *SeriesModelSearchV1) GetRatingVotes() int64

GetRatingVotes returns the RatingVotes field value if set, zero value otherwise.

func (*SeriesModelSearchV1) GetRatingVotesOk ¶

func (o *SeriesModelSearchV1) GetRatingVotesOk() (*int64, bool)

GetRatingVotesOk returns a tuple with the RatingVotes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1) GetSeriesId ¶

func (o *SeriesModelSearchV1) GetSeriesId() int64

GetSeriesId returns the SeriesId field value if set, zero value otherwise.

func (*SeriesModelSearchV1) GetSeriesIdOk ¶

func (o *SeriesModelSearchV1) GetSeriesIdOk() (*int64, bool)

GetSeriesIdOk returns a tuple with the SeriesId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1) GetTitle ¶

func (o *SeriesModelSearchV1) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*SeriesModelSearchV1) GetTitleOk ¶

func (o *SeriesModelSearchV1) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1) GetType ¶

func (o *SeriesModelSearchV1) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*SeriesModelSearchV1) GetTypeOk ¶

func (o *SeriesModelSearchV1) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1) GetUrl ¶

func (o *SeriesModelSearchV1) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*SeriesModelSearchV1) GetUrlOk ¶

func (o *SeriesModelSearchV1) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1) GetYear ¶

func (o *SeriesModelSearchV1) GetYear() string

GetYear returns the Year field value if set, zero value otherwise.

func (*SeriesModelSearchV1) GetYearOk ¶

func (o *SeriesModelSearchV1) GetYearOk() (*string, bool)

GetYearOk returns a tuple with the Year field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1) HasAdmin ¶

func (o *SeriesModelSearchV1) HasAdmin() bool

HasAdmin returns a boolean if a field has been set.

func (*SeriesModelSearchV1) HasBayesianRating ¶

func (o *SeriesModelSearchV1) HasBayesianRating() bool

HasBayesianRating returns a boolean if a field has been set.

func (*SeriesModelSearchV1) HasDescription ¶

func (o *SeriesModelSearchV1) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*SeriesModelSearchV1) HasGenres ¶

func (o *SeriesModelSearchV1) HasGenres() bool

HasGenres returns a boolean if a field has been set.

func (*SeriesModelSearchV1) HasImage ¶

func (o *SeriesModelSearchV1) HasImage() bool

HasImage returns a boolean if a field has been set.

func (*SeriesModelSearchV1) HasLastUpdated ¶

func (o *SeriesModelSearchV1) HasLastUpdated() bool

HasLastUpdated returns a boolean if a field has been set.

func (*SeriesModelSearchV1) HasLatestChapter ¶

func (o *SeriesModelSearchV1) HasLatestChapter() bool

HasLatestChapter returns a boolean if a field has been set.

func (*SeriesModelSearchV1) HasRank ¶

func (o *SeriesModelSearchV1) HasRank() bool

HasRank returns a boolean if a field has been set.

func (*SeriesModelSearchV1) HasRatingVotes ¶

func (o *SeriesModelSearchV1) HasRatingVotes() bool

HasRatingVotes returns a boolean if a field has been set.

func (*SeriesModelSearchV1) HasSeriesId ¶

func (o *SeriesModelSearchV1) HasSeriesId() bool

HasSeriesId returns a boolean if a field has been set.

func (*SeriesModelSearchV1) HasTitle ¶

func (o *SeriesModelSearchV1) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*SeriesModelSearchV1) HasType ¶

func (o *SeriesModelSearchV1) HasType() bool

HasType returns a boolean if a field has been set.

func (*SeriesModelSearchV1) HasUrl ¶

func (o *SeriesModelSearchV1) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (*SeriesModelSearchV1) HasYear ¶

func (o *SeriesModelSearchV1) HasYear() bool

HasYear returns a boolean if a field has been set.

func (SeriesModelSearchV1) MarshalJSON ¶

func (o SeriesModelSearchV1) MarshalJSON() ([]byte, error)

func (*SeriesModelSearchV1) SetAdmin ¶

SetAdmin gets a reference to the given SeriesModelSearchV1Admin and assigns it to the Admin field.

func (*SeriesModelSearchV1) SetBayesianRating ¶

func (o *SeriesModelSearchV1) SetBayesianRating(v float32)

SetBayesianRating gets a reference to the given float32 and assigns it to the BayesianRating field.

func (*SeriesModelSearchV1) SetDescription ¶

func (o *SeriesModelSearchV1) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*SeriesModelSearchV1) SetGenres ¶

SetGenres gets a reference to the given []SeriesModelSearchV1Genres and assigns it to the Genres field.

func (*SeriesModelSearchV1) SetImage ¶

func (o *SeriesModelSearchV1) SetImage(v ImageModelV1)

SetImage gets a reference to the given ImageModelV1 and assigns it to the Image field.

func (*SeriesModelSearchV1) SetLastUpdated ¶

func (o *SeriesModelSearchV1) SetLastUpdated(v TimeV1)

SetLastUpdated gets a reference to the given TimeV1 and assigns it to the LastUpdated field.

func (*SeriesModelSearchV1) SetLatestChapter ¶

func (o *SeriesModelSearchV1) SetLatestChapter(v int64)

SetLatestChapter gets a reference to the given int64 and assigns it to the LatestChapter field.

func (*SeriesModelSearchV1) SetRank ¶

SetRank gets a reference to the given SeriesModelSearchV1Rank and assigns it to the Rank field.

func (*SeriesModelSearchV1) SetRatingVotes ¶

func (o *SeriesModelSearchV1) SetRatingVotes(v int64)

SetRatingVotes gets a reference to the given int64 and assigns it to the RatingVotes field.

func (*SeriesModelSearchV1) SetSeriesId ¶

func (o *SeriesModelSearchV1) SetSeriesId(v int64)

SetSeriesId gets a reference to the given int64 and assigns it to the SeriesId field.

func (*SeriesModelSearchV1) SetTitle ¶

func (o *SeriesModelSearchV1) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*SeriesModelSearchV1) SetType ¶

func (o *SeriesModelSearchV1) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*SeriesModelSearchV1) SetUrl ¶

func (o *SeriesModelSearchV1) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (*SeriesModelSearchV1) SetYear ¶

func (o *SeriesModelSearchV1) SetYear(v string)

SetYear gets a reference to the given string and assigns it to the Year field.

func (SeriesModelSearchV1) ToMap ¶

func (o SeriesModelSearchV1) ToMap() (map[string]interface{}, error)

type SeriesModelSearchV1Admin ¶

type SeriesModelSearchV1Admin struct {
	AddedBy  *UserModelSearchV1 `json:"added_by,omitempty"`
	Approved *bool              `json:"approved,omitempty"`
}

SeriesModelSearchV1Admin struct for SeriesModelSearchV1Admin

func NewSeriesModelSearchV1Admin ¶

func NewSeriesModelSearchV1Admin() *SeriesModelSearchV1Admin

NewSeriesModelSearchV1Admin instantiates a new SeriesModelSearchV1Admin object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesModelSearchV1AdminWithDefaults ¶

func NewSeriesModelSearchV1AdminWithDefaults() *SeriesModelSearchV1Admin

NewSeriesModelSearchV1AdminWithDefaults instantiates a new SeriesModelSearchV1Admin object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesModelSearchV1Admin) GetAddedBy ¶

GetAddedBy returns the AddedBy field value if set, zero value otherwise.

func (*SeriesModelSearchV1Admin) GetAddedByOk ¶

func (o *SeriesModelSearchV1Admin) GetAddedByOk() (*UserModelSearchV1, bool)

GetAddedByOk returns a tuple with the AddedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1Admin) GetApproved ¶

func (o *SeriesModelSearchV1Admin) GetApproved() bool

GetApproved returns the Approved field value if set, zero value otherwise.

func (*SeriesModelSearchV1Admin) GetApprovedOk ¶

func (o *SeriesModelSearchV1Admin) GetApprovedOk() (*bool, bool)

GetApprovedOk returns a tuple with the Approved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1Admin) HasAddedBy ¶

func (o *SeriesModelSearchV1Admin) HasAddedBy() bool

HasAddedBy returns a boolean if a field has been set.

func (*SeriesModelSearchV1Admin) HasApproved ¶

func (o *SeriesModelSearchV1Admin) HasApproved() bool

HasApproved returns a boolean if a field has been set.

func (SeriesModelSearchV1Admin) MarshalJSON ¶

func (o SeriesModelSearchV1Admin) MarshalJSON() ([]byte, error)

func (*SeriesModelSearchV1Admin) SetAddedBy ¶

SetAddedBy gets a reference to the given UserModelSearchV1 and assigns it to the AddedBy field.

func (*SeriesModelSearchV1Admin) SetApproved ¶

func (o *SeriesModelSearchV1Admin) SetApproved(v bool)

SetApproved gets a reference to the given bool and assigns it to the Approved field.

func (SeriesModelSearchV1Admin) ToMap ¶

func (o SeriesModelSearchV1Admin) ToMap() (map[string]interface{}, error)

type SeriesModelSearchV1Genres ¶

type SeriesModelSearchV1Genres struct {
	Genre *string `json:"genre,omitempty"`
}

SeriesModelSearchV1Genres struct for SeriesModelSearchV1Genres

func NewSeriesModelSearchV1Genres ¶

func NewSeriesModelSearchV1Genres() *SeriesModelSearchV1Genres

NewSeriesModelSearchV1Genres instantiates a new SeriesModelSearchV1Genres object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesModelSearchV1GenresWithDefaults ¶

func NewSeriesModelSearchV1GenresWithDefaults() *SeriesModelSearchV1Genres

NewSeriesModelSearchV1GenresWithDefaults instantiates a new SeriesModelSearchV1Genres object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesModelSearchV1Genres) GetGenre ¶

func (o *SeriesModelSearchV1Genres) GetGenre() string

GetGenre returns the Genre field value if set, zero value otherwise.

func (*SeriesModelSearchV1Genres) GetGenreOk ¶

func (o *SeriesModelSearchV1Genres) GetGenreOk() (*string, bool)

GetGenreOk returns a tuple with the Genre field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1Genres) HasGenre ¶

func (o *SeriesModelSearchV1Genres) HasGenre() bool

HasGenre returns a boolean if a field has been set.

func (SeriesModelSearchV1Genres) MarshalJSON ¶

func (o SeriesModelSearchV1Genres) MarshalJSON() ([]byte, error)

func (*SeriesModelSearchV1Genres) SetGenre ¶

func (o *SeriesModelSearchV1Genres) SetGenre(v string)

SetGenre gets a reference to the given string and assigns it to the Genre field.

func (SeriesModelSearchV1Genres) ToMap ¶

func (o SeriesModelSearchV1Genres) ToMap() (map[string]interface{}, error)

type SeriesModelSearchV1Rank ¶

type SeriesModelSearchV1Rank struct {
	Position    *SeriesModelSearchV1RankPosition    `json:"position,omitempty"`
	OldPosition *SeriesModelSearchV1RankOldPosition `json:"old_position,omitempty"`
	Lists       *SeriesModelSearchV1RankLists       `json:"lists,omitempty"`
}

SeriesModelSearchV1Rank struct for SeriesModelSearchV1Rank

func NewSeriesModelSearchV1Rank ¶

func NewSeriesModelSearchV1Rank() *SeriesModelSearchV1Rank

NewSeriesModelSearchV1Rank instantiates a new SeriesModelSearchV1Rank object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesModelSearchV1RankWithDefaults ¶

func NewSeriesModelSearchV1RankWithDefaults() *SeriesModelSearchV1Rank

NewSeriesModelSearchV1RankWithDefaults instantiates a new SeriesModelSearchV1Rank object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesModelSearchV1Rank) GetLists ¶

GetLists returns the Lists field value if set, zero value otherwise.

func (*SeriesModelSearchV1Rank) GetListsOk ¶

GetListsOk returns a tuple with the Lists field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1Rank) GetOldPosition ¶

GetOldPosition returns the OldPosition field value if set, zero value otherwise.

func (*SeriesModelSearchV1Rank) GetOldPositionOk ¶

GetOldPositionOk returns a tuple with the OldPosition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1Rank) GetPosition ¶

GetPosition returns the Position field value if set, zero value otherwise.

func (*SeriesModelSearchV1Rank) GetPositionOk ¶

GetPositionOk returns a tuple with the Position field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1Rank) HasLists ¶

func (o *SeriesModelSearchV1Rank) HasLists() bool

HasLists returns a boolean if a field has been set.

func (*SeriesModelSearchV1Rank) HasOldPosition ¶

func (o *SeriesModelSearchV1Rank) HasOldPosition() bool

HasOldPosition returns a boolean if a field has been set.

func (*SeriesModelSearchV1Rank) HasPosition ¶

func (o *SeriesModelSearchV1Rank) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (SeriesModelSearchV1Rank) MarshalJSON ¶

func (o SeriesModelSearchV1Rank) MarshalJSON() ([]byte, error)

func (*SeriesModelSearchV1Rank) SetLists ¶

SetLists gets a reference to the given SeriesModelSearchV1RankLists and assigns it to the Lists field.

func (*SeriesModelSearchV1Rank) SetOldPosition ¶

SetOldPosition gets a reference to the given SeriesModelSearchV1RankOldPosition and assigns it to the OldPosition field.

func (*SeriesModelSearchV1Rank) SetPosition ¶

SetPosition gets a reference to the given SeriesModelSearchV1RankPosition and assigns it to the Position field.

func (SeriesModelSearchV1Rank) ToMap ¶

func (o SeriesModelSearchV1Rank) ToMap() (map[string]interface{}, error)

type SeriesModelSearchV1RankLists ¶

type SeriesModelSearchV1RankLists struct {
	Reading    *int64 `json:"reading,omitempty"`
	Wish       *int64 `json:"wish,omitempty"`
	Complete   *int64 `json:"complete,omitempty"`
	Unfinished *int64 `json:"unfinished,omitempty"`
	Custom     *int64 `json:"custom,omitempty"`
}

SeriesModelSearchV1RankLists struct for SeriesModelSearchV1RankLists

func NewSeriesModelSearchV1RankLists ¶

func NewSeriesModelSearchV1RankLists() *SeriesModelSearchV1RankLists

NewSeriesModelSearchV1RankLists instantiates a new SeriesModelSearchV1RankLists object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesModelSearchV1RankListsWithDefaults ¶

func NewSeriesModelSearchV1RankListsWithDefaults() *SeriesModelSearchV1RankLists

NewSeriesModelSearchV1RankListsWithDefaults instantiates a new SeriesModelSearchV1RankLists object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesModelSearchV1RankLists) GetComplete ¶

func (o *SeriesModelSearchV1RankLists) GetComplete() int64

GetComplete returns the Complete field value if set, zero value otherwise.

func (*SeriesModelSearchV1RankLists) GetCompleteOk ¶

func (o *SeriesModelSearchV1RankLists) GetCompleteOk() (*int64, bool)

GetCompleteOk returns a tuple with the Complete field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1RankLists) GetCustom ¶

func (o *SeriesModelSearchV1RankLists) GetCustom() int64

GetCustom returns the Custom field value if set, zero value otherwise.

func (*SeriesModelSearchV1RankLists) GetCustomOk ¶

func (o *SeriesModelSearchV1RankLists) GetCustomOk() (*int64, bool)

GetCustomOk returns a tuple with the Custom field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1RankLists) GetReading ¶

func (o *SeriesModelSearchV1RankLists) GetReading() int64

GetReading returns the Reading field value if set, zero value otherwise.

func (*SeriesModelSearchV1RankLists) GetReadingOk ¶

func (o *SeriesModelSearchV1RankLists) GetReadingOk() (*int64, bool)

GetReadingOk returns a tuple with the Reading field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1RankLists) GetUnfinished ¶

func (o *SeriesModelSearchV1RankLists) GetUnfinished() int64

GetUnfinished returns the Unfinished field value if set, zero value otherwise.

func (*SeriesModelSearchV1RankLists) GetUnfinishedOk ¶

func (o *SeriesModelSearchV1RankLists) GetUnfinishedOk() (*int64, bool)

GetUnfinishedOk returns a tuple with the Unfinished field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1RankLists) GetWish ¶

func (o *SeriesModelSearchV1RankLists) GetWish() int64

GetWish returns the Wish field value if set, zero value otherwise.

func (*SeriesModelSearchV1RankLists) GetWishOk ¶

func (o *SeriesModelSearchV1RankLists) GetWishOk() (*int64, bool)

GetWishOk returns a tuple with the Wish field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1RankLists) HasComplete ¶

func (o *SeriesModelSearchV1RankLists) HasComplete() bool

HasComplete returns a boolean if a field has been set.

func (*SeriesModelSearchV1RankLists) HasCustom ¶

func (o *SeriesModelSearchV1RankLists) HasCustom() bool

HasCustom returns a boolean if a field has been set.

func (*SeriesModelSearchV1RankLists) HasReading ¶

func (o *SeriesModelSearchV1RankLists) HasReading() bool

HasReading returns a boolean if a field has been set.

func (*SeriesModelSearchV1RankLists) HasUnfinished ¶

func (o *SeriesModelSearchV1RankLists) HasUnfinished() bool

HasUnfinished returns a boolean if a field has been set.

func (*SeriesModelSearchV1RankLists) HasWish ¶

func (o *SeriesModelSearchV1RankLists) HasWish() bool

HasWish returns a boolean if a field has been set.

func (SeriesModelSearchV1RankLists) MarshalJSON ¶

func (o SeriesModelSearchV1RankLists) MarshalJSON() ([]byte, error)

func (*SeriesModelSearchV1RankLists) SetComplete ¶

func (o *SeriesModelSearchV1RankLists) SetComplete(v int64)

SetComplete gets a reference to the given int64 and assigns it to the Complete field.

func (*SeriesModelSearchV1RankLists) SetCustom ¶

func (o *SeriesModelSearchV1RankLists) SetCustom(v int64)

SetCustom gets a reference to the given int64 and assigns it to the Custom field.

func (*SeriesModelSearchV1RankLists) SetReading ¶

func (o *SeriesModelSearchV1RankLists) SetReading(v int64)

SetReading gets a reference to the given int64 and assigns it to the Reading field.

func (*SeriesModelSearchV1RankLists) SetUnfinished ¶

func (o *SeriesModelSearchV1RankLists) SetUnfinished(v int64)

SetUnfinished gets a reference to the given int64 and assigns it to the Unfinished field.

func (*SeriesModelSearchV1RankLists) SetWish ¶

func (o *SeriesModelSearchV1RankLists) SetWish(v int64)

SetWish gets a reference to the given int64 and assigns it to the Wish field.

func (SeriesModelSearchV1RankLists) ToMap ¶

func (o SeriesModelSearchV1RankLists) ToMap() (map[string]interface{}, error)

type SeriesModelSearchV1RankOldPosition ¶

type SeriesModelSearchV1RankOldPosition struct {
	Week        *int64 `json:"week,omitempty"`
	Month       *int64 `json:"month,omitempty"`
	ThreeMonths *int64 `json:"three_months,omitempty"`
	SixMonths   *int64 `json:"six_months,omitempty"`
	Year        *int64 `json:"year,omitempty"`
}

SeriesModelSearchV1RankOldPosition struct for SeriesModelSearchV1RankOldPosition

func NewSeriesModelSearchV1RankOldPosition ¶

func NewSeriesModelSearchV1RankOldPosition() *SeriesModelSearchV1RankOldPosition

NewSeriesModelSearchV1RankOldPosition instantiates a new SeriesModelSearchV1RankOldPosition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesModelSearchV1RankOldPositionWithDefaults ¶

func NewSeriesModelSearchV1RankOldPositionWithDefaults() *SeriesModelSearchV1RankOldPosition

NewSeriesModelSearchV1RankOldPositionWithDefaults instantiates a new SeriesModelSearchV1RankOldPosition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesModelSearchV1RankOldPosition) GetMonth ¶

GetMonth returns the Month field value if set, zero value otherwise.

func (*SeriesModelSearchV1RankOldPosition) GetMonthOk ¶

func (o *SeriesModelSearchV1RankOldPosition) GetMonthOk() (*int64, bool)

GetMonthOk returns a tuple with the Month field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1RankOldPosition) GetSixMonths ¶

func (o *SeriesModelSearchV1RankOldPosition) GetSixMonths() int64

GetSixMonths returns the SixMonths field value if set, zero value otherwise.

func (*SeriesModelSearchV1RankOldPosition) GetSixMonthsOk ¶

func (o *SeriesModelSearchV1RankOldPosition) GetSixMonthsOk() (*int64, bool)

GetSixMonthsOk returns a tuple with the SixMonths field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1RankOldPosition) GetThreeMonths ¶

func (o *SeriesModelSearchV1RankOldPosition) GetThreeMonths() int64

GetThreeMonths returns the ThreeMonths field value if set, zero value otherwise.

func (*SeriesModelSearchV1RankOldPosition) GetThreeMonthsOk ¶

func (o *SeriesModelSearchV1RankOldPosition) GetThreeMonthsOk() (*int64, bool)

GetThreeMonthsOk returns a tuple with the ThreeMonths field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1RankOldPosition) GetWeek ¶

GetWeek returns the Week field value if set, zero value otherwise.

func (*SeriesModelSearchV1RankOldPosition) GetWeekOk ¶

func (o *SeriesModelSearchV1RankOldPosition) GetWeekOk() (*int64, bool)

GetWeekOk returns a tuple with the Week field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1RankOldPosition) GetYear ¶

GetYear returns the Year field value if set, zero value otherwise.

func (*SeriesModelSearchV1RankOldPosition) GetYearOk ¶

func (o *SeriesModelSearchV1RankOldPosition) GetYearOk() (*int64, bool)

GetYearOk returns a tuple with the Year field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1RankOldPosition) HasMonth ¶

HasMonth returns a boolean if a field has been set.

func (*SeriesModelSearchV1RankOldPosition) HasSixMonths ¶

func (o *SeriesModelSearchV1RankOldPosition) HasSixMonths() bool

HasSixMonths returns a boolean if a field has been set.

func (*SeriesModelSearchV1RankOldPosition) HasThreeMonths ¶

func (o *SeriesModelSearchV1RankOldPosition) HasThreeMonths() bool

HasThreeMonths returns a boolean if a field has been set.

func (*SeriesModelSearchV1RankOldPosition) HasWeek ¶

HasWeek returns a boolean if a field has been set.

func (*SeriesModelSearchV1RankOldPosition) HasYear ¶

HasYear returns a boolean if a field has been set.

func (SeriesModelSearchV1RankOldPosition) MarshalJSON ¶

func (o SeriesModelSearchV1RankOldPosition) MarshalJSON() ([]byte, error)

func (*SeriesModelSearchV1RankOldPosition) SetMonth ¶

SetMonth gets a reference to the given int64 and assigns it to the Month field.

func (*SeriesModelSearchV1RankOldPosition) SetSixMonths ¶

func (o *SeriesModelSearchV1RankOldPosition) SetSixMonths(v int64)

SetSixMonths gets a reference to the given int64 and assigns it to the SixMonths field.

func (*SeriesModelSearchV1RankOldPosition) SetThreeMonths ¶

func (o *SeriesModelSearchV1RankOldPosition) SetThreeMonths(v int64)

SetThreeMonths gets a reference to the given int64 and assigns it to the ThreeMonths field.

func (*SeriesModelSearchV1RankOldPosition) SetWeek ¶

SetWeek gets a reference to the given int64 and assigns it to the Week field.

func (*SeriesModelSearchV1RankOldPosition) SetYear ¶

SetYear gets a reference to the given int64 and assigns it to the Year field.

func (SeriesModelSearchV1RankOldPosition) ToMap ¶

func (o SeriesModelSearchV1RankOldPosition) ToMap() (map[string]interface{}, error)

type SeriesModelSearchV1RankPosition ¶

type SeriesModelSearchV1RankPosition struct {
	Week        *int64 `json:"week,omitempty"`
	Month       *int64 `json:"month,omitempty"`
	ThreeMonths *int64 `json:"three_months,omitempty"`
	SixMonths   *int64 `json:"six_months,omitempty"`
	Year        *int64 `json:"year,omitempty"`
}

SeriesModelSearchV1RankPosition struct for SeriesModelSearchV1RankPosition

func NewSeriesModelSearchV1RankPosition ¶

func NewSeriesModelSearchV1RankPosition() *SeriesModelSearchV1RankPosition

NewSeriesModelSearchV1RankPosition instantiates a new SeriesModelSearchV1RankPosition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesModelSearchV1RankPositionWithDefaults ¶

func NewSeriesModelSearchV1RankPositionWithDefaults() *SeriesModelSearchV1RankPosition

NewSeriesModelSearchV1RankPositionWithDefaults instantiates a new SeriesModelSearchV1RankPosition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesModelSearchV1RankPosition) GetMonth ¶

func (o *SeriesModelSearchV1RankPosition) GetMonth() int64

GetMonth returns the Month field value if set, zero value otherwise.

func (*SeriesModelSearchV1RankPosition) GetMonthOk ¶

func (o *SeriesModelSearchV1RankPosition) GetMonthOk() (*int64, bool)

GetMonthOk returns a tuple with the Month field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1RankPosition) GetSixMonths ¶

func (o *SeriesModelSearchV1RankPosition) GetSixMonths() int64

GetSixMonths returns the SixMonths field value if set, zero value otherwise.

func (*SeriesModelSearchV1RankPosition) GetSixMonthsOk ¶

func (o *SeriesModelSearchV1RankPosition) GetSixMonthsOk() (*int64, bool)

GetSixMonthsOk returns a tuple with the SixMonths field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1RankPosition) GetThreeMonths ¶

func (o *SeriesModelSearchV1RankPosition) GetThreeMonths() int64

GetThreeMonths returns the ThreeMonths field value if set, zero value otherwise.

func (*SeriesModelSearchV1RankPosition) GetThreeMonthsOk ¶

func (o *SeriesModelSearchV1RankPosition) GetThreeMonthsOk() (*int64, bool)

GetThreeMonthsOk returns a tuple with the ThreeMonths field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1RankPosition) GetWeek ¶

GetWeek returns the Week field value if set, zero value otherwise.

func (*SeriesModelSearchV1RankPosition) GetWeekOk ¶

func (o *SeriesModelSearchV1RankPosition) GetWeekOk() (*int64, bool)

GetWeekOk returns a tuple with the Week field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1RankPosition) GetYear ¶

GetYear returns the Year field value if set, zero value otherwise.

func (*SeriesModelSearchV1RankPosition) GetYearOk ¶

func (o *SeriesModelSearchV1RankPosition) GetYearOk() (*int64, bool)

GetYearOk returns a tuple with the Year field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelSearchV1RankPosition) HasMonth ¶

func (o *SeriesModelSearchV1RankPosition) HasMonth() bool

HasMonth returns a boolean if a field has been set.

func (*SeriesModelSearchV1RankPosition) HasSixMonths ¶

func (o *SeriesModelSearchV1RankPosition) HasSixMonths() bool

HasSixMonths returns a boolean if a field has been set.

func (*SeriesModelSearchV1RankPosition) HasThreeMonths ¶

func (o *SeriesModelSearchV1RankPosition) HasThreeMonths() bool

HasThreeMonths returns a boolean if a field has been set.

func (*SeriesModelSearchV1RankPosition) HasWeek ¶

HasWeek returns a boolean if a field has been set.

func (*SeriesModelSearchV1RankPosition) HasYear ¶

HasYear returns a boolean if a field has been set.

func (SeriesModelSearchV1RankPosition) MarshalJSON ¶

func (o SeriesModelSearchV1RankPosition) MarshalJSON() ([]byte, error)

func (*SeriesModelSearchV1RankPosition) SetMonth ¶

func (o *SeriesModelSearchV1RankPosition) SetMonth(v int64)

SetMonth gets a reference to the given int64 and assigns it to the Month field.

func (*SeriesModelSearchV1RankPosition) SetSixMonths ¶

func (o *SeriesModelSearchV1RankPosition) SetSixMonths(v int64)

SetSixMonths gets a reference to the given int64 and assigns it to the SixMonths field.

func (*SeriesModelSearchV1RankPosition) SetThreeMonths ¶

func (o *SeriesModelSearchV1RankPosition) SetThreeMonths(v int64)

SetThreeMonths gets a reference to the given int64 and assigns it to the ThreeMonths field.

func (*SeriesModelSearchV1RankPosition) SetWeek ¶

func (o *SeriesModelSearchV1RankPosition) SetWeek(v int64)

SetWeek gets a reference to the given int64 and assigns it to the Week field.

func (*SeriesModelSearchV1RankPosition) SetYear ¶

func (o *SeriesModelSearchV1RankPosition) SetYear(v int64)

SetYear gets a reference to the given int64 and assigns it to the Year field.

func (SeriesModelSearchV1RankPosition) ToMap ¶

func (o SeriesModelSearchV1RankPosition) ToMap() (map[string]interface{}, error)

type SeriesModelUpdateV1 ¶

type SeriesModelUpdateV1 struct {
	Title         *string                            `json:"title,omitempty"`
	Associated    []SeriesModelUpdateV1Associated    `json:"associated,omitempty"`
	Description   *string                            `json:"description,omitempty"`
	Type          *string                            `json:"type,omitempty"`
	Year          *string                            `json:"year,omitempty"`
	Genres        []SeriesModelUpdateV1Genres        `json:"genres,omitempty"`
	Categories    []CategoriesModelUpdateV1          `json:"categories,omitempty"`
	Status        *string                            `json:"status,omitempty"`
	Licensed      *bool                              `json:"licensed,omitempty"`
	Completed     *bool                              `json:"completed,omitempty"`
	Anime         *SeriesModelUpdateV1Anime          `json:"anime,omitempty"`
	RelatedSeries []SeriesModelUpdateV1RelatedSeries `json:"related_series,omitempty"`
	Authors       []SeriesModelUpdateV1Authors       `json:"authors,omitempty"`
	Publishers    []SeriesModelUpdateV1Publishers    `json:"publishers,omitempty"`
	Publications  []SeriesModelUpdateV1Publications  `json:"publications,omitempty"`
	Admin         *SeriesModelUpdateV1Admin          `json:"admin,omitempty"`
}

SeriesModelUpdateV1 struct for SeriesModelUpdateV1

func NewSeriesModelUpdateV1 ¶

func NewSeriesModelUpdateV1() *SeriesModelUpdateV1

NewSeriesModelUpdateV1 instantiates a new SeriesModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesModelUpdateV1WithDefaults ¶

func NewSeriesModelUpdateV1WithDefaults() *SeriesModelUpdateV1

NewSeriesModelUpdateV1WithDefaults instantiates a new SeriesModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesModelUpdateV1) GetAdmin ¶

GetAdmin returns the Admin field value if set, zero value otherwise.

func (*SeriesModelUpdateV1) GetAdminOk ¶

GetAdminOk returns a tuple with the Admin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelUpdateV1) GetAnime ¶

GetAnime returns the Anime field value if set, zero value otherwise.

func (*SeriesModelUpdateV1) GetAnimeOk ¶

GetAnimeOk returns a tuple with the Anime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelUpdateV1) GetAssociated ¶

GetAssociated returns the Associated field value if set, zero value otherwise.

func (*SeriesModelUpdateV1) GetAssociatedOk ¶

func (o *SeriesModelUpdateV1) GetAssociatedOk() ([]SeriesModelUpdateV1Associated, bool)

GetAssociatedOk returns a tuple with the Associated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelUpdateV1) GetAuthors ¶

GetAuthors returns the Authors field value if set, zero value otherwise.

func (*SeriesModelUpdateV1) GetAuthorsOk ¶

func (o *SeriesModelUpdateV1) GetAuthorsOk() ([]SeriesModelUpdateV1Authors, bool)

GetAuthorsOk returns a tuple with the Authors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelUpdateV1) GetCategories ¶

func (o *SeriesModelUpdateV1) GetCategories() []CategoriesModelUpdateV1

GetCategories returns the Categories field value if set, zero value otherwise.

func (*SeriesModelUpdateV1) GetCategoriesOk ¶

func (o *SeriesModelUpdateV1) GetCategoriesOk() ([]CategoriesModelUpdateV1, bool)

GetCategoriesOk returns a tuple with the Categories field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelUpdateV1) GetCompleted ¶

func (o *SeriesModelUpdateV1) GetCompleted() bool

GetCompleted returns the Completed field value if set, zero value otherwise.

func (*SeriesModelUpdateV1) GetCompletedOk ¶

func (o *SeriesModelUpdateV1) GetCompletedOk() (*bool, bool)

GetCompletedOk returns a tuple with the Completed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelUpdateV1) GetDescription ¶

func (o *SeriesModelUpdateV1) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*SeriesModelUpdateV1) GetDescriptionOk ¶

func (o *SeriesModelUpdateV1) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelUpdateV1) GetGenres ¶

GetGenres returns the Genres field value if set, zero value otherwise.

func (*SeriesModelUpdateV1) GetGenresOk ¶

func (o *SeriesModelUpdateV1) GetGenresOk() ([]SeriesModelUpdateV1Genres, bool)

GetGenresOk returns a tuple with the Genres field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelUpdateV1) GetLicensed ¶

func (o *SeriesModelUpdateV1) GetLicensed() bool

GetLicensed returns the Licensed field value if set, zero value otherwise.

func (*SeriesModelUpdateV1) GetLicensedOk ¶

func (o *SeriesModelUpdateV1) GetLicensedOk() (*bool, bool)

GetLicensedOk returns a tuple with the Licensed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelUpdateV1) GetPublications ¶

GetPublications returns the Publications field value if set, zero value otherwise.

func (*SeriesModelUpdateV1) GetPublicationsOk ¶

func (o *SeriesModelUpdateV1) GetPublicationsOk() ([]SeriesModelUpdateV1Publications, bool)

GetPublicationsOk returns a tuple with the Publications field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelUpdateV1) GetPublishers ¶

GetPublishers returns the Publishers field value if set, zero value otherwise.

func (*SeriesModelUpdateV1) GetPublishersOk ¶

func (o *SeriesModelUpdateV1) GetPublishersOk() ([]SeriesModelUpdateV1Publishers, bool)

GetPublishersOk returns a tuple with the Publishers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelUpdateV1) GetRelatedSeries ¶

func (o *SeriesModelUpdateV1) GetRelatedSeries() []SeriesModelUpdateV1RelatedSeries

GetRelatedSeries returns the RelatedSeries field value if set, zero value otherwise.

func (*SeriesModelUpdateV1) GetRelatedSeriesOk ¶

func (o *SeriesModelUpdateV1) GetRelatedSeriesOk() ([]SeriesModelUpdateV1RelatedSeries, bool)

GetRelatedSeriesOk returns a tuple with the RelatedSeries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelUpdateV1) GetStatus ¶

func (o *SeriesModelUpdateV1) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*SeriesModelUpdateV1) GetStatusOk ¶

func (o *SeriesModelUpdateV1) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelUpdateV1) GetTitle ¶

func (o *SeriesModelUpdateV1) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*SeriesModelUpdateV1) GetTitleOk ¶

func (o *SeriesModelUpdateV1) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelUpdateV1) GetType ¶

func (o *SeriesModelUpdateV1) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*SeriesModelUpdateV1) GetTypeOk ¶

func (o *SeriesModelUpdateV1) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelUpdateV1) GetYear ¶

func (o *SeriesModelUpdateV1) GetYear() string

GetYear returns the Year field value if set, zero value otherwise.

func (*SeriesModelUpdateV1) GetYearOk ¶

func (o *SeriesModelUpdateV1) GetYearOk() (*string, bool)

GetYearOk returns a tuple with the Year field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelUpdateV1) HasAdmin ¶

func (o *SeriesModelUpdateV1) HasAdmin() bool

HasAdmin returns a boolean if a field has been set.

func (*SeriesModelUpdateV1) HasAnime ¶

func (o *SeriesModelUpdateV1) HasAnime() bool

HasAnime returns a boolean if a field has been set.

func (*SeriesModelUpdateV1) HasAssociated ¶

func (o *SeriesModelUpdateV1) HasAssociated() bool

HasAssociated returns a boolean if a field has been set.

func (*SeriesModelUpdateV1) HasAuthors ¶

func (o *SeriesModelUpdateV1) HasAuthors() bool

HasAuthors returns a boolean if a field has been set.

func (*SeriesModelUpdateV1) HasCategories ¶

func (o *SeriesModelUpdateV1) HasCategories() bool

HasCategories returns a boolean if a field has been set.

func (*SeriesModelUpdateV1) HasCompleted ¶

func (o *SeriesModelUpdateV1) HasCompleted() bool

HasCompleted returns a boolean if a field has been set.

func (*SeriesModelUpdateV1) HasDescription ¶

func (o *SeriesModelUpdateV1) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*SeriesModelUpdateV1) HasGenres ¶

func (o *SeriesModelUpdateV1) HasGenres() bool

HasGenres returns a boolean if a field has been set.

func (*SeriesModelUpdateV1) HasLicensed ¶

func (o *SeriesModelUpdateV1) HasLicensed() bool

HasLicensed returns a boolean if a field has been set.

func (*SeriesModelUpdateV1) HasPublications ¶

func (o *SeriesModelUpdateV1) HasPublications() bool

HasPublications returns a boolean if a field has been set.

func (*SeriesModelUpdateV1) HasPublishers ¶

func (o *SeriesModelUpdateV1) HasPublishers() bool

HasPublishers returns a boolean if a field has been set.

func (*SeriesModelUpdateV1) HasRelatedSeries ¶

func (o *SeriesModelUpdateV1) HasRelatedSeries() bool

HasRelatedSeries returns a boolean if a field has been set.

func (*SeriesModelUpdateV1) HasStatus ¶

func (o *SeriesModelUpdateV1) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*SeriesModelUpdateV1) HasTitle ¶

func (o *SeriesModelUpdateV1) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*SeriesModelUpdateV1) HasType ¶

func (o *SeriesModelUpdateV1) HasType() bool

HasType returns a boolean if a field has been set.

func (*SeriesModelUpdateV1) HasYear ¶

func (o *SeriesModelUpdateV1) HasYear() bool

HasYear returns a boolean if a field has been set.

func (SeriesModelUpdateV1) MarshalJSON ¶

func (o SeriesModelUpdateV1) MarshalJSON() ([]byte, error)

func (*SeriesModelUpdateV1) SetAdmin ¶

SetAdmin gets a reference to the given SeriesModelUpdateV1Admin and assigns it to the Admin field.

func (*SeriesModelUpdateV1) SetAnime ¶

SetAnime gets a reference to the given SeriesModelUpdateV1Anime and assigns it to the Anime field.

func (*SeriesModelUpdateV1) SetAssociated ¶

func (o *SeriesModelUpdateV1) SetAssociated(v []SeriesModelUpdateV1Associated)

SetAssociated gets a reference to the given []SeriesModelUpdateV1Associated and assigns it to the Associated field.

func (*SeriesModelUpdateV1) SetAuthors ¶

SetAuthors gets a reference to the given []SeriesModelUpdateV1Authors and assigns it to the Authors field.

func (*SeriesModelUpdateV1) SetCategories ¶

func (o *SeriesModelUpdateV1) SetCategories(v []CategoriesModelUpdateV1)

SetCategories gets a reference to the given []CategoriesModelUpdateV1 and assigns it to the Categories field.

func (*SeriesModelUpdateV1) SetCompleted ¶

func (o *SeriesModelUpdateV1) SetCompleted(v bool)

SetCompleted gets a reference to the given bool and assigns it to the Completed field.

func (*SeriesModelUpdateV1) SetDescription ¶

func (o *SeriesModelUpdateV1) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*SeriesModelUpdateV1) SetGenres ¶

SetGenres gets a reference to the given []SeriesModelUpdateV1Genres and assigns it to the Genres field.

func (*SeriesModelUpdateV1) SetLicensed ¶

func (o *SeriesModelUpdateV1) SetLicensed(v bool)

SetLicensed gets a reference to the given bool and assigns it to the Licensed field.

func (*SeriesModelUpdateV1) SetPublications ¶

func (o *SeriesModelUpdateV1) SetPublications(v []SeriesModelUpdateV1Publications)

SetPublications gets a reference to the given []SeriesModelUpdateV1Publications and assigns it to the Publications field.

func (*SeriesModelUpdateV1) SetPublishers ¶

func (o *SeriesModelUpdateV1) SetPublishers(v []SeriesModelUpdateV1Publishers)

SetPublishers gets a reference to the given []SeriesModelUpdateV1Publishers and assigns it to the Publishers field.

func (*SeriesModelUpdateV1) SetRelatedSeries ¶

func (o *SeriesModelUpdateV1) SetRelatedSeries(v []SeriesModelUpdateV1RelatedSeries)

SetRelatedSeries gets a reference to the given []SeriesModelUpdateV1RelatedSeries and assigns it to the RelatedSeries field.

func (*SeriesModelUpdateV1) SetStatus ¶

func (o *SeriesModelUpdateV1) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*SeriesModelUpdateV1) SetTitle ¶

func (o *SeriesModelUpdateV1) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*SeriesModelUpdateV1) SetType ¶

func (o *SeriesModelUpdateV1) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*SeriesModelUpdateV1) SetYear ¶

func (o *SeriesModelUpdateV1) SetYear(v string)

SetYear gets a reference to the given string and assigns it to the Year field.

func (SeriesModelUpdateV1) ToMap ¶

func (o SeriesModelUpdateV1) ToMap() (map[string]interface{}, error)

type SeriesModelUpdateV1Admin ¶

type SeriesModelUpdateV1Admin struct {
	Approved *bool `json:"approved,omitempty"`
}

SeriesModelUpdateV1Admin struct for SeriesModelUpdateV1Admin

func NewSeriesModelUpdateV1Admin ¶

func NewSeriesModelUpdateV1Admin() *SeriesModelUpdateV1Admin

NewSeriesModelUpdateV1Admin instantiates a new SeriesModelUpdateV1Admin object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesModelUpdateV1AdminWithDefaults ¶

func NewSeriesModelUpdateV1AdminWithDefaults() *SeriesModelUpdateV1Admin

NewSeriesModelUpdateV1AdminWithDefaults instantiates a new SeriesModelUpdateV1Admin object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesModelUpdateV1Admin) GetApproved ¶

func (o *SeriesModelUpdateV1Admin) GetApproved() bool

GetApproved returns the Approved field value if set, zero value otherwise.

func (*SeriesModelUpdateV1Admin) GetApprovedOk ¶

func (o *SeriesModelUpdateV1Admin) GetApprovedOk() (*bool, bool)

GetApprovedOk returns a tuple with the Approved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelUpdateV1Admin) HasApproved ¶

func (o *SeriesModelUpdateV1Admin) HasApproved() bool

HasApproved returns a boolean if a field has been set.

func (SeriesModelUpdateV1Admin) MarshalJSON ¶

func (o SeriesModelUpdateV1Admin) MarshalJSON() ([]byte, error)

func (*SeriesModelUpdateV1Admin) SetApproved ¶

func (o *SeriesModelUpdateV1Admin) SetApproved(v bool)

SetApproved gets a reference to the given bool and assigns it to the Approved field.

func (SeriesModelUpdateV1Admin) ToMap ¶

func (o SeriesModelUpdateV1Admin) ToMap() (map[string]interface{}, error)

type SeriesModelUpdateV1Anime ¶

type SeriesModelUpdateV1Anime struct {
	Start *string `json:"start,omitempty"`
	End   *string `json:"end,omitempty"`
}

SeriesModelUpdateV1Anime struct for SeriesModelUpdateV1Anime

func NewSeriesModelUpdateV1Anime ¶

func NewSeriesModelUpdateV1Anime() *SeriesModelUpdateV1Anime

NewSeriesModelUpdateV1Anime instantiates a new SeriesModelUpdateV1Anime object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesModelUpdateV1AnimeWithDefaults ¶

func NewSeriesModelUpdateV1AnimeWithDefaults() *SeriesModelUpdateV1Anime

NewSeriesModelUpdateV1AnimeWithDefaults instantiates a new SeriesModelUpdateV1Anime object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesModelUpdateV1Anime) GetEnd ¶

func (o *SeriesModelUpdateV1Anime) GetEnd() string

GetEnd returns the End field value if set, zero value otherwise.

func (*SeriesModelUpdateV1Anime) GetEndOk ¶

func (o *SeriesModelUpdateV1Anime) GetEndOk() (*string, bool)

GetEndOk returns a tuple with the End field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelUpdateV1Anime) GetStart ¶

func (o *SeriesModelUpdateV1Anime) GetStart() string

GetStart returns the Start field value if set, zero value otherwise.

func (*SeriesModelUpdateV1Anime) GetStartOk ¶

func (o *SeriesModelUpdateV1Anime) GetStartOk() (*string, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelUpdateV1Anime) HasEnd ¶

func (o *SeriesModelUpdateV1Anime) HasEnd() bool

HasEnd returns a boolean if a field has been set.

func (*SeriesModelUpdateV1Anime) HasStart ¶

func (o *SeriesModelUpdateV1Anime) HasStart() bool

HasStart returns a boolean if a field has been set.

func (SeriesModelUpdateV1Anime) MarshalJSON ¶

func (o SeriesModelUpdateV1Anime) MarshalJSON() ([]byte, error)

func (*SeriesModelUpdateV1Anime) SetEnd ¶

func (o *SeriesModelUpdateV1Anime) SetEnd(v string)

SetEnd gets a reference to the given string and assigns it to the End field.

func (*SeriesModelUpdateV1Anime) SetStart ¶

func (o *SeriesModelUpdateV1Anime) SetStart(v string)

SetStart gets a reference to the given string and assigns it to the Start field.

func (SeriesModelUpdateV1Anime) ToMap ¶

func (o SeriesModelUpdateV1Anime) ToMap() (map[string]interface{}, error)

type SeriesModelUpdateV1Associated ¶

type SeriesModelUpdateV1Associated struct {
	Title *string `json:"title,omitempty"`
}

SeriesModelUpdateV1Associated struct for SeriesModelUpdateV1Associated

func NewSeriesModelUpdateV1Associated ¶

func NewSeriesModelUpdateV1Associated() *SeriesModelUpdateV1Associated

NewSeriesModelUpdateV1Associated instantiates a new SeriesModelUpdateV1Associated object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesModelUpdateV1AssociatedWithDefaults ¶

func NewSeriesModelUpdateV1AssociatedWithDefaults() *SeriesModelUpdateV1Associated

NewSeriesModelUpdateV1AssociatedWithDefaults instantiates a new SeriesModelUpdateV1Associated object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesModelUpdateV1Associated) GetTitle ¶

func (o *SeriesModelUpdateV1Associated) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*SeriesModelUpdateV1Associated) GetTitleOk ¶

func (o *SeriesModelUpdateV1Associated) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelUpdateV1Associated) HasTitle ¶

func (o *SeriesModelUpdateV1Associated) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (SeriesModelUpdateV1Associated) MarshalJSON ¶

func (o SeriesModelUpdateV1Associated) MarshalJSON() ([]byte, error)

func (*SeriesModelUpdateV1Associated) SetTitle ¶

func (o *SeriesModelUpdateV1Associated) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (SeriesModelUpdateV1Associated) ToMap ¶

func (o SeriesModelUpdateV1Associated) ToMap() (map[string]interface{}, error)

type SeriesModelUpdateV1Authors ¶

type SeriesModelUpdateV1Authors struct {
	Name *string `json:"name,omitempty"`
	Type *string `json:"type,omitempty"`
}

SeriesModelUpdateV1Authors struct for SeriesModelUpdateV1Authors

func NewSeriesModelUpdateV1Authors ¶

func NewSeriesModelUpdateV1Authors() *SeriesModelUpdateV1Authors

NewSeriesModelUpdateV1Authors instantiates a new SeriesModelUpdateV1Authors object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesModelUpdateV1AuthorsWithDefaults ¶

func NewSeriesModelUpdateV1AuthorsWithDefaults() *SeriesModelUpdateV1Authors

NewSeriesModelUpdateV1AuthorsWithDefaults instantiates a new SeriesModelUpdateV1Authors object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesModelUpdateV1Authors) GetName ¶

func (o *SeriesModelUpdateV1Authors) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*SeriesModelUpdateV1Authors) GetNameOk ¶

func (o *SeriesModelUpdateV1Authors) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelUpdateV1Authors) GetType ¶

func (o *SeriesModelUpdateV1Authors) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*SeriesModelUpdateV1Authors) GetTypeOk ¶

func (o *SeriesModelUpdateV1Authors) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelUpdateV1Authors) HasName ¶

func (o *SeriesModelUpdateV1Authors) HasName() bool

HasName returns a boolean if a field has been set.

func (*SeriesModelUpdateV1Authors) HasType ¶

func (o *SeriesModelUpdateV1Authors) HasType() bool

HasType returns a boolean if a field has been set.

func (SeriesModelUpdateV1Authors) MarshalJSON ¶

func (o SeriesModelUpdateV1Authors) MarshalJSON() ([]byte, error)

func (*SeriesModelUpdateV1Authors) SetName ¶

func (o *SeriesModelUpdateV1Authors) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*SeriesModelUpdateV1Authors) SetType ¶

func (o *SeriesModelUpdateV1Authors) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (SeriesModelUpdateV1Authors) ToMap ¶

func (o SeriesModelUpdateV1Authors) ToMap() (map[string]interface{}, error)

type SeriesModelUpdateV1Genres ¶

type SeriesModelUpdateV1Genres struct {
	Genre *string `json:"genre,omitempty"`
}

SeriesModelUpdateV1Genres struct for SeriesModelUpdateV1Genres

func NewSeriesModelUpdateV1Genres ¶

func NewSeriesModelUpdateV1Genres() *SeriesModelUpdateV1Genres

NewSeriesModelUpdateV1Genres instantiates a new SeriesModelUpdateV1Genres object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesModelUpdateV1GenresWithDefaults ¶

func NewSeriesModelUpdateV1GenresWithDefaults() *SeriesModelUpdateV1Genres

NewSeriesModelUpdateV1GenresWithDefaults instantiates a new SeriesModelUpdateV1Genres object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesModelUpdateV1Genres) GetGenre ¶

func (o *SeriesModelUpdateV1Genres) GetGenre() string

GetGenre returns the Genre field value if set, zero value otherwise.

func (*SeriesModelUpdateV1Genres) GetGenreOk ¶

func (o *SeriesModelUpdateV1Genres) GetGenreOk() (*string, bool)

GetGenreOk returns a tuple with the Genre field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelUpdateV1Genres) HasGenre ¶

func (o *SeriesModelUpdateV1Genres) HasGenre() bool

HasGenre returns a boolean if a field has been set.

func (SeriesModelUpdateV1Genres) MarshalJSON ¶

func (o SeriesModelUpdateV1Genres) MarshalJSON() ([]byte, error)

func (*SeriesModelUpdateV1Genres) SetGenre ¶

func (o *SeriesModelUpdateV1Genres) SetGenre(v string)

SetGenre gets a reference to the given string and assigns it to the Genre field.

func (SeriesModelUpdateV1Genres) ToMap ¶

func (o SeriesModelUpdateV1Genres) ToMap() (map[string]interface{}, error)

type SeriesModelUpdateV1Publications ¶

type SeriesModelUpdateV1Publications struct {
	PublicationName *string `json:"publication_name,omitempty"`
	PublisherName   *string `json:"publisher_name,omitempty"`
}

SeriesModelUpdateV1Publications struct for SeriesModelUpdateV1Publications

func NewSeriesModelUpdateV1Publications ¶

func NewSeriesModelUpdateV1Publications() *SeriesModelUpdateV1Publications

NewSeriesModelUpdateV1Publications instantiates a new SeriesModelUpdateV1Publications object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesModelUpdateV1PublicationsWithDefaults ¶

func NewSeriesModelUpdateV1PublicationsWithDefaults() *SeriesModelUpdateV1Publications

NewSeriesModelUpdateV1PublicationsWithDefaults instantiates a new SeriesModelUpdateV1Publications object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesModelUpdateV1Publications) GetPublicationName ¶

func (o *SeriesModelUpdateV1Publications) GetPublicationName() string

GetPublicationName returns the PublicationName field value if set, zero value otherwise.

func (*SeriesModelUpdateV1Publications) GetPublicationNameOk ¶

func (o *SeriesModelUpdateV1Publications) GetPublicationNameOk() (*string, bool)

GetPublicationNameOk returns a tuple with the PublicationName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelUpdateV1Publications) GetPublisherName ¶

func (o *SeriesModelUpdateV1Publications) GetPublisherName() string

GetPublisherName returns the PublisherName field value if set, zero value otherwise.

func (*SeriesModelUpdateV1Publications) GetPublisherNameOk ¶

func (o *SeriesModelUpdateV1Publications) GetPublisherNameOk() (*string, bool)

GetPublisherNameOk returns a tuple with the PublisherName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelUpdateV1Publications) HasPublicationName ¶

func (o *SeriesModelUpdateV1Publications) HasPublicationName() bool

HasPublicationName returns a boolean if a field has been set.

func (*SeriesModelUpdateV1Publications) HasPublisherName ¶

func (o *SeriesModelUpdateV1Publications) HasPublisherName() bool

HasPublisherName returns a boolean if a field has been set.

func (SeriesModelUpdateV1Publications) MarshalJSON ¶

func (o SeriesModelUpdateV1Publications) MarshalJSON() ([]byte, error)

func (*SeriesModelUpdateV1Publications) SetPublicationName ¶

func (o *SeriesModelUpdateV1Publications) SetPublicationName(v string)

SetPublicationName gets a reference to the given string and assigns it to the PublicationName field.

func (*SeriesModelUpdateV1Publications) SetPublisherName ¶

func (o *SeriesModelUpdateV1Publications) SetPublisherName(v string)

SetPublisherName gets a reference to the given string and assigns it to the PublisherName field.

func (SeriesModelUpdateV1Publications) ToMap ¶

func (o SeriesModelUpdateV1Publications) ToMap() (map[string]interface{}, error)

type SeriesModelUpdateV1Publishers ¶

type SeriesModelUpdateV1Publishers struct {
	PublisherName *string `json:"publisher_name,omitempty"`
	Type          *string `json:"type,omitempty"`
	Notes         *string `json:"notes,omitempty"`
}

SeriesModelUpdateV1Publishers struct for SeriesModelUpdateV1Publishers

func NewSeriesModelUpdateV1Publishers ¶

func NewSeriesModelUpdateV1Publishers() *SeriesModelUpdateV1Publishers

NewSeriesModelUpdateV1Publishers instantiates a new SeriesModelUpdateV1Publishers object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesModelUpdateV1PublishersWithDefaults ¶

func NewSeriesModelUpdateV1PublishersWithDefaults() *SeriesModelUpdateV1Publishers

NewSeriesModelUpdateV1PublishersWithDefaults instantiates a new SeriesModelUpdateV1Publishers object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesModelUpdateV1Publishers) GetNotes ¶

func (o *SeriesModelUpdateV1Publishers) GetNotes() string

GetNotes returns the Notes field value if set, zero value otherwise.

func (*SeriesModelUpdateV1Publishers) GetNotesOk ¶

func (o *SeriesModelUpdateV1Publishers) GetNotesOk() (*string, bool)

GetNotesOk returns a tuple with the Notes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelUpdateV1Publishers) GetPublisherName ¶

func (o *SeriesModelUpdateV1Publishers) GetPublisherName() string

GetPublisherName returns the PublisherName field value if set, zero value otherwise.

func (*SeriesModelUpdateV1Publishers) GetPublisherNameOk ¶

func (o *SeriesModelUpdateV1Publishers) GetPublisherNameOk() (*string, bool)

GetPublisherNameOk returns a tuple with the PublisherName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelUpdateV1Publishers) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*SeriesModelUpdateV1Publishers) GetTypeOk ¶

func (o *SeriesModelUpdateV1Publishers) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelUpdateV1Publishers) HasNotes ¶

func (o *SeriesModelUpdateV1Publishers) HasNotes() bool

HasNotes returns a boolean if a field has been set.

func (*SeriesModelUpdateV1Publishers) HasPublisherName ¶

func (o *SeriesModelUpdateV1Publishers) HasPublisherName() bool

HasPublisherName returns a boolean if a field has been set.

func (*SeriesModelUpdateV1Publishers) HasType ¶

func (o *SeriesModelUpdateV1Publishers) HasType() bool

HasType returns a boolean if a field has been set.

func (SeriesModelUpdateV1Publishers) MarshalJSON ¶

func (o SeriesModelUpdateV1Publishers) MarshalJSON() ([]byte, error)

func (*SeriesModelUpdateV1Publishers) SetNotes ¶

func (o *SeriesModelUpdateV1Publishers) SetNotes(v string)

SetNotes gets a reference to the given string and assigns it to the Notes field.

func (*SeriesModelUpdateV1Publishers) SetPublisherName ¶

func (o *SeriesModelUpdateV1Publishers) SetPublisherName(v string)

SetPublisherName gets a reference to the given string and assigns it to the PublisherName field.

func (*SeriesModelUpdateV1Publishers) SetType ¶

func (o *SeriesModelUpdateV1Publishers) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (SeriesModelUpdateV1Publishers) ToMap ¶

func (o SeriesModelUpdateV1Publishers) ToMap() (map[string]interface{}, error)

type SeriesModelUpdateV1RelatedSeries ¶

type SeriesModelUpdateV1RelatedSeries struct {
	RelationType    string `json:"relation_type"`
	RelatedSeriesId int64  `json:"related_series_id"`
}

SeriesModelUpdateV1RelatedSeries struct for SeriesModelUpdateV1RelatedSeries

func NewSeriesModelUpdateV1RelatedSeries ¶

func NewSeriesModelUpdateV1RelatedSeries(relationType string, relatedSeriesId int64) *SeriesModelUpdateV1RelatedSeries

NewSeriesModelUpdateV1RelatedSeries instantiates a new SeriesModelUpdateV1RelatedSeries object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesModelUpdateV1RelatedSeriesWithDefaults ¶

func NewSeriesModelUpdateV1RelatedSeriesWithDefaults() *SeriesModelUpdateV1RelatedSeries

NewSeriesModelUpdateV1RelatedSeriesWithDefaults instantiates a new SeriesModelUpdateV1RelatedSeries object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesModelUpdateV1RelatedSeries) GetRelatedSeriesId ¶

func (o *SeriesModelUpdateV1RelatedSeries) GetRelatedSeriesId() int64

GetRelatedSeriesId returns the RelatedSeriesId field value

func (*SeriesModelUpdateV1RelatedSeries) GetRelatedSeriesIdOk ¶

func (o *SeriesModelUpdateV1RelatedSeries) GetRelatedSeriesIdOk() (*int64, bool)

GetRelatedSeriesIdOk returns a tuple with the RelatedSeriesId field value and a boolean to check if the value has been set.

func (*SeriesModelUpdateV1RelatedSeries) GetRelationType ¶

func (o *SeriesModelUpdateV1RelatedSeries) GetRelationType() string

GetRelationType returns the RelationType field value

func (*SeriesModelUpdateV1RelatedSeries) GetRelationTypeOk ¶

func (o *SeriesModelUpdateV1RelatedSeries) GetRelationTypeOk() (*string, bool)

GetRelationTypeOk returns a tuple with the RelationType field value and a boolean to check if the value has been set.

func (SeriesModelUpdateV1RelatedSeries) MarshalJSON ¶

func (o SeriesModelUpdateV1RelatedSeries) MarshalJSON() ([]byte, error)

func (*SeriesModelUpdateV1RelatedSeries) SetRelatedSeriesId ¶

func (o *SeriesModelUpdateV1RelatedSeries) SetRelatedSeriesId(v int64)

SetRelatedSeriesId sets field value

func (*SeriesModelUpdateV1RelatedSeries) SetRelationType ¶

func (o *SeriesModelUpdateV1RelatedSeries) SetRelationType(v string)

SetRelationType sets field value

func (SeriesModelUpdateV1RelatedSeries) ToMap ¶

func (o SeriesModelUpdateV1RelatedSeries) ToMap() (map[string]interface{}, error)

type SeriesModelV1 ¶

type SeriesModelV1 struct {
	SeriesId                *int64                         `json:"series_id,omitempty"`
	Title                   *string                        `json:"title,omitempty"`
	Url                     *string                        `json:"url,omitempty"`
	Associated              []SeriesModelV1Associated      `json:"associated,omitempty"`
	Description             *string                        `json:"description,omitempty"`
	Image                   *ImageModelV1                  `json:"image,omitempty"`
	Type                    *string                        `json:"type,omitempty"`
	Year                    *string                        `json:"year,omitempty"`
	BayesianRating          *float32                       `json:"bayesian_rating,omitempty"`
	RatingVotes             *int64                         `json:"rating_votes,omitempty"`
	Genres                  []SeriesModelV1Genres          `json:"genres,omitempty"`
	Categories              []CategoriesModelV1            `json:"categories,omitempty"`
	LatestChapter           *int64                         `json:"latest_chapter,omitempty"`
	ForumId                 *int64                         `json:"forum_id,omitempty"`
	Status                  *string                        `json:"status,omitempty"`
	Licensed                *bool                          `json:"licensed,omitempty"`
	Completed               *bool                          `json:"completed,omitempty"`
	Anime                   *SeriesModelV1Anime            `json:"anime,omitempty"`
	RelatedSeries           []SeriesModelV1RelatedSeries   `json:"related_series,omitempty"`
	Authors                 []SeriesModelV1Authors         `json:"authors,omitempty"`
	Publishers              []SeriesModelV1Publishers      `json:"publishers,omitempty"`
	Publications            []SeriesModelV1Publications    `json:"publications,omitempty"`
	Recommendations         []SeriesRecommendationsModelV1 `json:"recommendations,omitempty"`
	CategoryRecommendations []SeriesRecommendationsModelV1 `json:"category_recommendations,omitempty"`
	Rank                    *SeriesModelV1Rank             `json:"rank,omitempty"`
	LastUpdated             *TimeV1                        `json:"last_updated,omitempty"`
	Admin                   *SeriesModelV1Admin            `json:"admin,omitempty"`
}

SeriesModelV1 struct for SeriesModelV1

func NewSeriesModelV1 ¶

func NewSeriesModelV1() *SeriesModelV1

NewSeriesModelV1 instantiates a new SeriesModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesModelV1WithDefaults ¶

func NewSeriesModelV1WithDefaults() *SeriesModelV1

NewSeriesModelV1WithDefaults instantiates a new SeriesModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesModelV1) GetAdmin ¶

func (o *SeriesModelV1) GetAdmin() SeriesModelV1Admin

GetAdmin returns the Admin field value if set, zero value otherwise.

func (*SeriesModelV1) GetAdminOk ¶

func (o *SeriesModelV1) GetAdminOk() (*SeriesModelV1Admin, bool)

GetAdminOk returns a tuple with the Admin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1) GetAnime ¶

func (o *SeriesModelV1) GetAnime() SeriesModelV1Anime

GetAnime returns the Anime field value if set, zero value otherwise.

func (*SeriesModelV1) GetAnimeOk ¶

func (o *SeriesModelV1) GetAnimeOk() (*SeriesModelV1Anime, bool)

GetAnimeOk returns a tuple with the Anime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1) GetAssociated ¶

func (o *SeriesModelV1) GetAssociated() []SeriesModelV1Associated

GetAssociated returns the Associated field value if set, zero value otherwise.

func (*SeriesModelV1) GetAssociatedOk ¶

func (o *SeriesModelV1) GetAssociatedOk() ([]SeriesModelV1Associated, bool)

GetAssociatedOk returns a tuple with the Associated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1) GetAuthors ¶

func (o *SeriesModelV1) GetAuthors() []SeriesModelV1Authors

GetAuthors returns the Authors field value if set, zero value otherwise.

func (*SeriesModelV1) GetAuthorsOk ¶

func (o *SeriesModelV1) GetAuthorsOk() ([]SeriesModelV1Authors, bool)

GetAuthorsOk returns a tuple with the Authors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1) GetBayesianRating ¶

func (o *SeriesModelV1) GetBayesianRating() float32

GetBayesianRating returns the BayesianRating field value if set, zero value otherwise.

func (*SeriesModelV1) GetBayesianRatingOk ¶

func (o *SeriesModelV1) GetBayesianRatingOk() (*float32, bool)

GetBayesianRatingOk returns a tuple with the BayesianRating field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1) GetCategories ¶

func (o *SeriesModelV1) GetCategories() []CategoriesModelV1

GetCategories returns the Categories field value if set, zero value otherwise.

func (*SeriesModelV1) GetCategoriesOk ¶

func (o *SeriesModelV1) GetCategoriesOk() ([]CategoriesModelV1, bool)

GetCategoriesOk returns a tuple with the Categories field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1) GetCategoryRecommendations ¶

func (o *SeriesModelV1) GetCategoryRecommendations() []SeriesRecommendationsModelV1

GetCategoryRecommendations returns the CategoryRecommendations field value if set, zero value otherwise.

func (*SeriesModelV1) GetCategoryRecommendationsOk ¶

func (o *SeriesModelV1) GetCategoryRecommendationsOk() ([]SeriesRecommendationsModelV1, bool)

GetCategoryRecommendationsOk returns a tuple with the CategoryRecommendations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1) GetCompleted ¶

func (o *SeriesModelV1) GetCompleted() bool

GetCompleted returns the Completed field value if set, zero value otherwise.

func (*SeriesModelV1) GetCompletedOk ¶

func (o *SeriesModelV1) GetCompletedOk() (*bool, bool)

GetCompletedOk returns a tuple with the Completed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1) GetDescription ¶

func (o *SeriesModelV1) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*SeriesModelV1) GetDescriptionOk ¶

func (o *SeriesModelV1) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1) GetForumId ¶

func (o *SeriesModelV1) GetForumId() int64

GetForumId returns the ForumId field value if set, zero value otherwise.

func (*SeriesModelV1) GetForumIdOk ¶

func (o *SeriesModelV1) GetForumIdOk() (*int64, bool)

GetForumIdOk returns a tuple with the ForumId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1) GetGenres ¶

func (o *SeriesModelV1) GetGenres() []SeriesModelV1Genres

GetGenres returns the Genres field value if set, zero value otherwise.

func (*SeriesModelV1) GetGenresOk ¶

func (o *SeriesModelV1) GetGenresOk() ([]SeriesModelV1Genres, bool)

GetGenresOk returns a tuple with the Genres field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1) GetImage ¶

func (o *SeriesModelV1) GetImage() ImageModelV1

GetImage returns the Image field value if set, zero value otherwise.

func (*SeriesModelV1) GetImageOk ¶

func (o *SeriesModelV1) GetImageOk() (*ImageModelV1, bool)

GetImageOk returns a tuple with the Image field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1) GetLastUpdated ¶

func (o *SeriesModelV1) GetLastUpdated() TimeV1

GetLastUpdated returns the LastUpdated field value if set, zero value otherwise.

func (*SeriesModelV1) GetLastUpdatedOk ¶

func (o *SeriesModelV1) GetLastUpdatedOk() (*TimeV1, bool)

GetLastUpdatedOk returns a tuple with the LastUpdated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1) GetLatestChapter ¶

func (o *SeriesModelV1) GetLatestChapter() int64

GetLatestChapter returns the LatestChapter field value if set, zero value otherwise.

func (*SeriesModelV1) GetLatestChapterOk ¶

func (o *SeriesModelV1) GetLatestChapterOk() (*int64, bool)

GetLatestChapterOk returns a tuple with the LatestChapter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1) GetLicensed ¶

func (o *SeriesModelV1) GetLicensed() bool

GetLicensed returns the Licensed field value if set, zero value otherwise.

func (*SeriesModelV1) GetLicensedOk ¶

func (o *SeriesModelV1) GetLicensedOk() (*bool, bool)

GetLicensedOk returns a tuple with the Licensed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1) GetPublications ¶

func (o *SeriesModelV1) GetPublications() []SeriesModelV1Publications

GetPublications returns the Publications field value if set, zero value otherwise.

func (*SeriesModelV1) GetPublicationsOk ¶

func (o *SeriesModelV1) GetPublicationsOk() ([]SeriesModelV1Publications, bool)

GetPublicationsOk returns a tuple with the Publications field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1) GetPublishers ¶

func (o *SeriesModelV1) GetPublishers() []SeriesModelV1Publishers

GetPublishers returns the Publishers field value if set, zero value otherwise.

func (*SeriesModelV1) GetPublishersOk ¶

func (o *SeriesModelV1) GetPublishersOk() ([]SeriesModelV1Publishers, bool)

GetPublishersOk returns a tuple with the Publishers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1) GetRank ¶

func (o *SeriesModelV1) GetRank() SeriesModelV1Rank

GetRank returns the Rank field value if set, zero value otherwise.

func (*SeriesModelV1) GetRankOk ¶

func (o *SeriesModelV1) GetRankOk() (*SeriesModelV1Rank, bool)

GetRankOk returns a tuple with the Rank field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1) GetRatingVotes ¶

func (o *SeriesModelV1) GetRatingVotes() int64

GetRatingVotes returns the RatingVotes field value if set, zero value otherwise.

func (*SeriesModelV1) GetRatingVotesOk ¶

func (o *SeriesModelV1) GetRatingVotesOk() (*int64, bool)

GetRatingVotesOk returns a tuple with the RatingVotes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1) GetRecommendations ¶

func (o *SeriesModelV1) GetRecommendations() []SeriesRecommendationsModelV1

GetRecommendations returns the Recommendations field value if set, zero value otherwise.

func (*SeriesModelV1) GetRecommendationsOk ¶

func (o *SeriesModelV1) GetRecommendationsOk() ([]SeriesRecommendationsModelV1, bool)

GetRecommendationsOk returns a tuple with the Recommendations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1) GetRelatedSeries ¶

func (o *SeriesModelV1) GetRelatedSeries() []SeriesModelV1RelatedSeries

GetRelatedSeries returns the RelatedSeries field value if set, zero value otherwise.

func (*SeriesModelV1) GetRelatedSeriesOk ¶

func (o *SeriesModelV1) GetRelatedSeriesOk() ([]SeriesModelV1RelatedSeries, bool)

GetRelatedSeriesOk returns a tuple with the RelatedSeries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1) GetSeriesId ¶

func (o *SeriesModelV1) GetSeriesId() int64

GetSeriesId returns the SeriesId field value if set, zero value otherwise.

func (*SeriesModelV1) GetSeriesIdOk ¶

func (o *SeriesModelV1) GetSeriesIdOk() (*int64, bool)

GetSeriesIdOk returns a tuple with the SeriesId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1) GetStatus ¶

func (o *SeriesModelV1) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*SeriesModelV1) GetStatusOk ¶

func (o *SeriesModelV1) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1) GetTitle ¶

func (o *SeriesModelV1) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*SeriesModelV1) GetTitleOk ¶

func (o *SeriesModelV1) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1) GetType ¶

func (o *SeriesModelV1) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*SeriesModelV1) GetTypeOk ¶

func (o *SeriesModelV1) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1) GetUrl ¶

func (o *SeriesModelV1) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*SeriesModelV1) GetUrlOk ¶

func (o *SeriesModelV1) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1) GetYear ¶

func (o *SeriesModelV1) GetYear() string

GetYear returns the Year field value if set, zero value otherwise.

func (*SeriesModelV1) GetYearOk ¶

func (o *SeriesModelV1) GetYearOk() (*string, bool)

GetYearOk returns a tuple with the Year field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1) HasAdmin ¶

func (o *SeriesModelV1) HasAdmin() bool

HasAdmin returns a boolean if a field has been set.

func (*SeriesModelV1) HasAnime ¶

func (o *SeriesModelV1) HasAnime() bool

HasAnime returns a boolean if a field has been set.

func (*SeriesModelV1) HasAssociated ¶

func (o *SeriesModelV1) HasAssociated() bool

HasAssociated returns a boolean if a field has been set.

func (*SeriesModelV1) HasAuthors ¶

func (o *SeriesModelV1) HasAuthors() bool

HasAuthors returns a boolean if a field has been set.

func (*SeriesModelV1) HasBayesianRating ¶

func (o *SeriesModelV1) HasBayesianRating() bool

HasBayesianRating returns a boolean if a field has been set.

func (*SeriesModelV1) HasCategories ¶

func (o *SeriesModelV1) HasCategories() bool

HasCategories returns a boolean if a field has been set.

func (*SeriesModelV1) HasCategoryRecommendations ¶

func (o *SeriesModelV1) HasCategoryRecommendations() bool

HasCategoryRecommendations returns a boolean if a field has been set.

func (*SeriesModelV1) HasCompleted ¶

func (o *SeriesModelV1) HasCompleted() bool

HasCompleted returns a boolean if a field has been set.

func (*SeriesModelV1) HasDescription ¶

func (o *SeriesModelV1) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*SeriesModelV1) HasForumId ¶

func (o *SeriesModelV1) HasForumId() bool

HasForumId returns a boolean if a field has been set.

func (*SeriesModelV1) HasGenres ¶

func (o *SeriesModelV1) HasGenres() bool

HasGenres returns a boolean if a field has been set.

func (*SeriesModelV1) HasImage ¶

func (o *SeriesModelV1) HasImage() bool

HasImage returns a boolean if a field has been set.

func (*SeriesModelV1) HasLastUpdated ¶

func (o *SeriesModelV1) HasLastUpdated() bool

HasLastUpdated returns a boolean if a field has been set.

func (*SeriesModelV1) HasLatestChapter ¶

func (o *SeriesModelV1) HasLatestChapter() bool

HasLatestChapter returns a boolean if a field has been set.

func (*SeriesModelV1) HasLicensed ¶

func (o *SeriesModelV1) HasLicensed() bool

HasLicensed returns a boolean if a field has been set.

func (*SeriesModelV1) HasPublications ¶

func (o *SeriesModelV1) HasPublications() bool

HasPublications returns a boolean if a field has been set.

func (*SeriesModelV1) HasPublishers ¶

func (o *SeriesModelV1) HasPublishers() bool

HasPublishers returns a boolean if a field has been set.

func (*SeriesModelV1) HasRank ¶

func (o *SeriesModelV1) HasRank() bool

HasRank returns a boolean if a field has been set.

func (*SeriesModelV1) HasRatingVotes ¶

func (o *SeriesModelV1) HasRatingVotes() bool

HasRatingVotes returns a boolean if a field has been set.

func (*SeriesModelV1) HasRecommendations ¶

func (o *SeriesModelV1) HasRecommendations() bool

HasRecommendations returns a boolean if a field has been set.

func (*SeriesModelV1) HasRelatedSeries ¶

func (o *SeriesModelV1) HasRelatedSeries() bool

HasRelatedSeries returns a boolean if a field has been set.

func (*SeriesModelV1) HasSeriesId ¶

func (o *SeriesModelV1) HasSeriesId() bool

HasSeriesId returns a boolean if a field has been set.

func (*SeriesModelV1) HasStatus ¶

func (o *SeriesModelV1) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*SeriesModelV1) HasTitle ¶

func (o *SeriesModelV1) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*SeriesModelV1) HasType ¶

func (o *SeriesModelV1) HasType() bool

HasType returns a boolean if a field has been set.

func (*SeriesModelV1) HasUrl ¶

func (o *SeriesModelV1) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (*SeriesModelV1) HasYear ¶

func (o *SeriesModelV1) HasYear() bool

HasYear returns a boolean if a field has been set.

func (SeriesModelV1) MarshalJSON ¶

func (o SeriesModelV1) MarshalJSON() ([]byte, error)

func (*SeriesModelV1) SetAdmin ¶

func (o *SeriesModelV1) SetAdmin(v SeriesModelV1Admin)

SetAdmin gets a reference to the given SeriesModelV1Admin and assigns it to the Admin field.

func (*SeriesModelV1) SetAnime ¶

func (o *SeriesModelV1) SetAnime(v SeriesModelV1Anime)

SetAnime gets a reference to the given SeriesModelV1Anime and assigns it to the Anime field.

func (*SeriesModelV1) SetAssociated ¶

func (o *SeriesModelV1) SetAssociated(v []SeriesModelV1Associated)

SetAssociated gets a reference to the given []SeriesModelV1Associated and assigns it to the Associated field.

func (*SeriesModelV1) SetAuthors ¶

func (o *SeriesModelV1) SetAuthors(v []SeriesModelV1Authors)

SetAuthors gets a reference to the given []SeriesModelV1Authors and assigns it to the Authors field.

func (*SeriesModelV1) SetBayesianRating ¶

func (o *SeriesModelV1) SetBayesianRating(v float32)

SetBayesianRating gets a reference to the given float32 and assigns it to the BayesianRating field.

func (*SeriesModelV1) SetCategories ¶

func (o *SeriesModelV1) SetCategories(v []CategoriesModelV1)

SetCategories gets a reference to the given []CategoriesModelV1 and assigns it to the Categories field.

func (*SeriesModelV1) SetCategoryRecommendations ¶

func (o *SeriesModelV1) SetCategoryRecommendations(v []SeriesRecommendationsModelV1)

SetCategoryRecommendations gets a reference to the given []SeriesRecommendationsModelV1 and assigns it to the CategoryRecommendations field.

func (*SeriesModelV1) SetCompleted ¶

func (o *SeriesModelV1) SetCompleted(v bool)

SetCompleted gets a reference to the given bool and assigns it to the Completed field.

func (*SeriesModelV1) SetDescription ¶

func (o *SeriesModelV1) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*SeriesModelV1) SetForumId ¶

func (o *SeriesModelV1) SetForumId(v int64)

SetForumId gets a reference to the given int64 and assigns it to the ForumId field.

func (*SeriesModelV1) SetGenres ¶

func (o *SeriesModelV1) SetGenres(v []SeriesModelV1Genres)

SetGenres gets a reference to the given []SeriesModelV1Genres and assigns it to the Genres field.

func (*SeriesModelV1) SetImage ¶

func (o *SeriesModelV1) SetImage(v ImageModelV1)

SetImage gets a reference to the given ImageModelV1 and assigns it to the Image field.

func (*SeriesModelV1) SetLastUpdated ¶

func (o *SeriesModelV1) SetLastUpdated(v TimeV1)

SetLastUpdated gets a reference to the given TimeV1 and assigns it to the LastUpdated field.

func (*SeriesModelV1) SetLatestChapter ¶

func (o *SeriesModelV1) SetLatestChapter(v int64)

SetLatestChapter gets a reference to the given int64 and assigns it to the LatestChapter field.

func (*SeriesModelV1) SetLicensed ¶

func (o *SeriesModelV1) SetLicensed(v bool)

SetLicensed gets a reference to the given bool and assigns it to the Licensed field.

func (*SeriesModelV1) SetPublications ¶

func (o *SeriesModelV1) SetPublications(v []SeriesModelV1Publications)

SetPublications gets a reference to the given []SeriesModelV1Publications and assigns it to the Publications field.

func (*SeriesModelV1) SetPublishers ¶

func (o *SeriesModelV1) SetPublishers(v []SeriesModelV1Publishers)

SetPublishers gets a reference to the given []SeriesModelV1Publishers and assigns it to the Publishers field.

func (*SeriesModelV1) SetRank ¶

func (o *SeriesModelV1) SetRank(v SeriesModelV1Rank)

SetRank gets a reference to the given SeriesModelV1Rank and assigns it to the Rank field.

func (*SeriesModelV1) SetRatingVotes ¶

func (o *SeriesModelV1) SetRatingVotes(v int64)

SetRatingVotes gets a reference to the given int64 and assigns it to the RatingVotes field.

func (*SeriesModelV1) SetRecommendations ¶

func (o *SeriesModelV1) SetRecommendations(v []SeriesRecommendationsModelV1)

SetRecommendations gets a reference to the given []SeriesRecommendationsModelV1 and assigns it to the Recommendations field.

func (*SeriesModelV1) SetRelatedSeries ¶

func (o *SeriesModelV1) SetRelatedSeries(v []SeriesModelV1RelatedSeries)

SetRelatedSeries gets a reference to the given []SeriesModelV1RelatedSeries and assigns it to the RelatedSeries field.

func (*SeriesModelV1) SetSeriesId ¶

func (o *SeriesModelV1) SetSeriesId(v int64)

SetSeriesId gets a reference to the given int64 and assigns it to the SeriesId field.

func (*SeriesModelV1) SetStatus ¶

func (o *SeriesModelV1) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*SeriesModelV1) SetTitle ¶

func (o *SeriesModelV1) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*SeriesModelV1) SetType ¶

func (o *SeriesModelV1) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*SeriesModelV1) SetUrl ¶

func (o *SeriesModelV1) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (*SeriesModelV1) SetYear ¶

func (o *SeriesModelV1) SetYear(v string)

SetYear gets a reference to the given string and assigns it to the Year field.

func (SeriesModelV1) ToMap ¶

func (o SeriesModelV1) ToMap() (map[string]interface{}, error)

type SeriesModelV1Admin ¶

type SeriesModelV1Admin struct {
	AddedBy  *UserModelSearchV1 `json:"added_by,omitempty"`
	Approved *bool              `json:"approved,omitempty"`
}

SeriesModelV1Admin struct for SeriesModelV1Admin

func NewSeriesModelV1Admin ¶

func NewSeriesModelV1Admin() *SeriesModelV1Admin

NewSeriesModelV1Admin instantiates a new SeriesModelV1Admin object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesModelV1AdminWithDefaults ¶

func NewSeriesModelV1AdminWithDefaults() *SeriesModelV1Admin

NewSeriesModelV1AdminWithDefaults instantiates a new SeriesModelV1Admin object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesModelV1Admin) GetAddedBy ¶

func (o *SeriesModelV1Admin) GetAddedBy() UserModelSearchV1

GetAddedBy returns the AddedBy field value if set, zero value otherwise.

func (*SeriesModelV1Admin) GetAddedByOk ¶

func (o *SeriesModelV1Admin) GetAddedByOk() (*UserModelSearchV1, bool)

GetAddedByOk returns a tuple with the AddedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1Admin) GetApproved ¶

func (o *SeriesModelV1Admin) GetApproved() bool

GetApproved returns the Approved field value if set, zero value otherwise.

func (*SeriesModelV1Admin) GetApprovedOk ¶

func (o *SeriesModelV1Admin) GetApprovedOk() (*bool, bool)

GetApprovedOk returns a tuple with the Approved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1Admin) HasAddedBy ¶

func (o *SeriesModelV1Admin) HasAddedBy() bool

HasAddedBy returns a boolean if a field has been set.

func (*SeriesModelV1Admin) HasApproved ¶

func (o *SeriesModelV1Admin) HasApproved() bool

HasApproved returns a boolean if a field has been set.

func (SeriesModelV1Admin) MarshalJSON ¶

func (o SeriesModelV1Admin) MarshalJSON() ([]byte, error)

func (*SeriesModelV1Admin) SetAddedBy ¶

func (o *SeriesModelV1Admin) SetAddedBy(v UserModelSearchV1)

SetAddedBy gets a reference to the given UserModelSearchV1 and assigns it to the AddedBy field.

func (*SeriesModelV1Admin) SetApproved ¶

func (o *SeriesModelV1Admin) SetApproved(v bool)

SetApproved gets a reference to the given bool and assigns it to the Approved field.

func (SeriesModelV1Admin) ToMap ¶

func (o SeriesModelV1Admin) ToMap() (map[string]interface{}, error)

type SeriesModelV1Anime ¶

type SeriesModelV1Anime struct {
	Start *string `json:"start,omitempty"`
	End   *string `json:"end,omitempty"`
}

SeriesModelV1Anime struct for SeriesModelV1Anime

func NewSeriesModelV1Anime ¶

func NewSeriesModelV1Anime() *SeriesModelV1Anime

NewSeriesModelV1Anime instantiates a new SeriesModelV1Anime object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesModelV1AnimeWithDefaults ¶

func NewSeriesModelV1AnimeWithDefaults() *SeriesModelV1Anime

NewSeriesModelV1AnimeWithDefaults instantiates a new SeriesModelV1Anime object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesModelV1Anime) GetEnd ¶

func (o *SeriesModelV1Anime) GetEnd() string

GetEnd returns the End field value if set, zero value otherwise.

func (*SeriesModelV1Anime) GetEndOk ¶

func (o *SeriesModelV1Anime) GetEndOk() (*string, bool)

GetEndOk returns a tuple with the End field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1Anime) GetStart ¶

func (o *SeriesModelV1Anime) GetStart() string

GetStart returns the Start field value if set, zero value otherwise.

func (*SeriesModelV1Anime) GetStartOk ¶

func (o *SeriesModelV1Anime) GetStartOk() (*string, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1Anime) HasEnd ¶

func (o *SeriesModelV1Anime) HasEnd() bool

HasEnd returns a boolean if a field has been set.

func (*SeriesModelV1Anime) HasStart ¶

func (o *SeriesModelV1Anime) HasStart() bool

HasStart returns a boolean if a field has been set.

func (SeriesModelV1Anime) MarshalJSON ¶

func (o SeriesModelV1Anime) MarshalJSON() ([]byte, error)

func (*SeriesModelV1Anime) SetEnd ¶

func (o *SeriesModelV1Anime) SetEnd(v string)

SetEnd gets a reference to the given string and assigns it to the End field.

func (*SeriesModelV1Anime) SetStart ¶

func (o *SeriesModelV1Anime) SetStart(v string)

SetStart gets a reference to the given string and assigns it to the Start field.

func (SeriesModelV1Anime) ToMap ¶

func (o SeriesModelV1Anime) ToMap() (map[string]interface{}, error)

type SeriesModelV1Associated ¶

type SeriesModelV1Associated struct {
	Title *string `json:"title,omitempty"`
}

SeriesModelV1Associated struct for SeriesModelV1Associated

func NewSeriesModelV1Associated ¶

func NewSeriesModelV1Associated() *SeriesModelV1Associated

NewSeriesModelV1Associated instantiates a new SeriesModelV1Associated object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesModelV1AssociatedWithDefaults ¶

func NewSeriesModelV1AssociatedWithDefaults() *SeriesModelV1Associated

NewSeriesModelV1AssociatedWithDefaults instantiates a new SeriesModelV1Associated object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesModelV1Associated) GetTitle ¶

func (o *SeriesModelV1Associated) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*SeriesModelV1Associated) GetTitleOk ¶

func (o *SeriesModelV1Associated) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1Associated) HasTitle ¶

func (o *SeriesModelV1Associated) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (SeriesModelV1Associated) MarshalJSON ¶

func (o SeriesModelV1Associated) MarshalJSON() ([]byte, error)

func (*SeriesModelV1Associated) SetTitle ¶

func (o *SeriesModelV1Associated) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (SeriesModelV1Associated) ToMap ¶

func (o SeriesModelV1Associated) ToMap() (map[string]interface{}, error)

type SeriesModelV1Authors ¶

type SeriesModelV1Authors struct {
	Name     *string `json:"name,omitempty"`
	AuthorId *int64  `json:"author_id,omitempty"`
	Type     *string `json:"type,omitempty"`
}

SeriesModelV1Authors struct for SeriesModelV1Authors

func NewSeriesModelV1Authors ¶

func NewSeriesModelV1Authors() *SeriesModelV1Authors

NewSeriesModelV1Authors instantiates a new SeriesModelV1Authors object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesModelV1AuthorsWithDefaults ¶

func NewSeriesModelV1AuthorsWithDefaults() *SeriesModelV1Authors

NewSeriesModelV1AuthorsWithDefaults instantiates a new SeriesModelV1Authors object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesModelV1Authors) GetAuthorId ¶

func (o *SeriesModelV1Authors) GetAuthorId() int64

GetAuthorId returns the AuthorId field value if set, zero value otherwise.

func (*SeriesModelV1Authors) GetAuthorIdOk ¶

func (o *SeriesModelV1Authors) GetAuthorIdOk() (*int64, bool)

GetAuthorIdOk returns a tuple with the AuthorId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1Authors) GetName ¶

func (o *SeriesModelV1Authors) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*SeriesModelV1Authors) GetNameOk ¶

func (o *SeriesModelV1Authors) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1Authors) GetType ¶

func (o *SeriesModelV1Authors) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*SeriesModelV1Authors) GetTypeOk ¶

func (o *SeriesModelV1Authors) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1Authors) HasAuthorId ¶

func (o *SeriesModelV1Authors) HasAuthorId() bool

HasAuthorId returns a boolean if a field has been set.

func (*SeriesModelV1Authors) HasName ¶

func (o *SeriesModelV1Authors) HasName() bool

HasName returns a boolean if a field has been set.

func (*SeriesModelV1Authors) HasType ¶

func (o *SeriesModelV1Authors) HasType() bool

HasType returns a boolean if a field has been set.

func (SeriesModelV1Authors) MarshalJSON ¶

func (o SeriesModelV1Authors) MarshalJSON() ([]byte, error)

func (*SeriesModelV1Authors) SetAuthorId ¶

func (o *SeriesModelV1Authors) SetAuthorId(v int64)

SetAuthorId gets a reference to the given int64 and assigns it to the AuthorId field.

func (*SeriesModelV1Authors) SetName ¶

func (o *SeriesModelV1Authors) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*SeriesModelV1Authors) SetType ¶

func (o *SeriesModelV1Authors) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (SeriesModelV1Authors) ToMap ¶

func (o SeriesModelV1Authors) ToMap() (map[string]interface{}, error)

type SeriesModelV1Genres ¶

type SeriesModelV1Genres struct {
	Genre *string `json:"genre,omitempty"`
}

SeriesModelV1Genres struct for SeriesModelV1Genres

func NewSeriesModelV1Genres ¶

func NewSeriesModelV1Genres() *SeriesModelV1Genres

NewSeriesModelV1Genres instantiates a new SeriesModelV1Genres object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesModelV1GenresWithDefaults ¶

func NewSeriesModelV1GenresWithDefaults() *SeriesModelV1Genres

NewSeriesModelV1GenresWithDefaults instantiates a new SeriesModelV1Genres object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesModelV1Genres) GetGenre ¶

func (o *SeriesModelV1Genres) GetGenre() string

GetGenre returns the Genre field value if set, zero value otherwise.

func (*SeriesModelV1Genres) GetGenreOk ¶

func (o *SeriesModelV1Genres) GetGenreOk() (*string, bool)

GetGenreOk returns a tuple with the Genre field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1Genres) HasGenre ¶

func (o *SeriesModelV1Genres) HasGenre() bool

HasGenre returns a boolean if a field has been set.

func (SeriesModelV1Genres) MarshalJSON ¶

func (o SeriesModelV1Genres) MarshalJSON() ([]byte, error)

func (*SeriesModelV1Genres) SetGenre ¶

func (o *SeriesModelV1Genres) SetGenre(v string)

SetGenre gets a reference to the given string and assigns it to the Genre field.

func (SeriesModelV1Genres) ToMap ¶

func (o SeriesModelV1Genres) ToMap() (map[string]interface{}, error)

type SeriesModelV1Publications ¶

type SeriesModelV1Publications struct {
	PublicationName *string `json:"publication_name,omitempty"`
	PublisherName   *string `json:"publisher_name,omitempty"`
	PublisherId     *string `json:"publisher_id,omitempty"`
}

SeriesModelV1Publications struct for SeriesModelV1Publications

func NewSeriesModelV1Publications ¶

func NewSeriesModelV1Publications() *SeriesModelV1Publications

NewSeriesModelV1Publications instantiates a new SeriesModelV1Publications object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesModelV1PublicationsWithDefaults ¶

func NewSeriesModelV1PublicationsWithDefaults() *SeriesModelV1Publications

NewSeriesModelV1PublicationsWithDefaults instantiates a new SeriesModelV1Publications object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesModelV1Publications) GetPublicationName ¶

func (o *SeriesModelV1Publications) GetPublicationName() string

GetPublicationName returns the PublicationName field value if set, zero value otherwise.

func (*SeriesModelV1Publications) GetPublicationNameOk ¶

func (o *SeriesModelV1Publications) GetPublicationNameOk() (*string, bool)

GetPublicationNameOk returns a tuple with the PublicationName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1Publications) GetPublisherId ¶

func (o *SeriesModelV1Publications) GetPublisherId() string

GetPublisherId returns the PublisherId field value if set, zero value otherwise.

func (*SeriesModelV1Publications) GetPublisherIdOk ¶

func (o *SeriesModelV1Publications) GetPublisherIdOk() (*string, bool)

GetPublisherIdOk returns a tuple with the PublisherId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1Publications) GetPublisherName ¶

func (o *SeriesModelV1Publications) GetPublisherName() string

GetPublisherName returns the PublisherName field value if set, zero value otherwise.

func (*SeriesModelV1Publications) GetPublisherNameOk ¶

func (o *SeriesModelV1Publications) GetPublisherNameOk() (*string, bool)

GetPublisherNameOk returns a tuple with the PublisherName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1Publications) HasPublicationName ¶

func (o *SeriesModelV1Publications) HasPublicationName() bool

HasPublicationName returns a boolean if a field has been set.

func (*SeriesModelV1Publications) HasPublisherId ¶

func (o *SeriesModelV1Publications) HasPublisherId() bool

HasPublisherId returns a boolean if a field has been set.

func (*SeriesModelV1Publications) HasPublisherName ¶

func (o *SeriesModelV1Publications) HasPublisherName() bool

HasPublisherName returns a boolean if a field has been set.

func (SeriesModelV1Publications) MarshalJSON ¶

func (o SeriesModelV1Publications) MarshalJSON() ([]byte, error)

func (*SeriesModelV1Publications) SetPublicationName ¶

func (o *SeriesModelV1Publications) SetPublicationName(v string)

SetPublicationName gets a reference to the given string and assigns it to the PublicationName field.

func (*SeriesModelV1Publications) SetPublisherId ¶

func (o *SeriesModelV1Publications) SetPublisherId(v string)

SetPublisherId gets a reference to the given string and assigns it to the PublisherId field.

func (*SeriesModelV1Publications) SetPublisherName ¶

func (o *SeriesModelV1Publications) SetPublisherName(v string)

SetPublisherName gets a reference to the given string and assigns it to the PublisherName field.

func (SeriesModelV1Publications) ToMap ¶

func (o SeriesModelV1Publications) ToMap() (map[string]interface{}, error)

type SeriesModelV1Publishers ¶

type SeriesModelV1Publishers struct {
	PublisherName *string `json:"publisher_name,omitempty"`
	PublisherId   *int64  `json:"publisher_id,omitempty"`
	Type          *string `json:"type,omitempty"`
	Notes         *string `json:"notes,omitempty"`
}

SeriesModelV1Publishers struct for SeriesModelV1Publishers

func NewSeriesModelV1Publishers ¶

func NewSeriesModelV1Publishers() *SeriesModelV1Publishers

NewSeriesModelV1Publishers instantiates a new SeriesModelV1Publishers object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesModelV1PublishersWithDefaults ¶

func NewSeriesModelV1PublishersWithDefaults() *SeriesModelV1Publishers

NewSeriesModelV1PublishersWithDefaults instantiates a new SeriesModelV1Publishers object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesModelV1Publishers) GetNotes ¶

func (o *SeriesModelV1Publishers) GetNotes() string

GetNotes returns the Notes field value if set, zero value otherwise.

func (*SeriesModelV1Publishers) GetNotesOk ¶

func (o *SeriesModelV1Publishers) GetNotesOk() (*string, bool)

GetNotesOk returns a tuple with the Notes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1Publishers) GetPublisherId ¶

func (o *SeriesModelV1Publishers) GetPublisherId() int64

GetPublisherId returns the PublisherId field value if set, zero value otherwise.

func (*SeriesModelV1Publishers) GetPublisherIdOk ¶

func (o *SeriesModelV1Publishers) GetPublisherIdOk() (*int64, bool)

GetPublisherIdOk returns a tuple with the PublisherId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1Publishers) GetPublisherName ¶

func (o *SeriesModelV1Publishers) GetPublisherName() string

GetPublisherName returns the PublisherName field value if set, zero value otherwise.

func (*SeriesModelV1Publishers) GetPublisherNameOk ¶

func (o *SeriesModelV1Publishers) GetPublisherNameOk() (*string, bool)

GetPublisherNameOk returns a tuple with the PublisherName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1Publishers) GetType ¶

func (o *SeriesModelV1Publishers) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*SeriesModelV1Publishers) GetTypeOk ¶

func (o *SeriesModelV1Publishers) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1Publishers) HasNotes ¶

func (o *SeriesModelV1Publishers) HasNotes() bool

HasNotes returns a boolean if a field has been set.

func (*SeriesModelV1Publishers) HasPublisherId ¶

func (o *SeriesModelV1Publishers) HasPublisherId() bool

HasPublisherId returns a boolean if a field has been set.

func (*SeriesModelV1Publishers) HasPublisherName ¶

func (o *SeriesModelV1Publishers) HasPublisherName() bool

HasPublisherName returns a boolean if a field has been set.

func (*SeriesModelV1Publishers) HasType ¶

func (o *SeriesModelV1Publishers) HasType() bool

HasType returns a boolean if a field has been set.

func (SeriesModelV1Publishers) MarshalJSON ¶

func (o SeriesModelV1Publishers) MarshalJSON() ([]byte, error)

func (*SeriesModelV1Publishers) SetNotes ¶

func (o *SeriesModelV1Publishers) SetNotes(v string)

SetNotes gets a reference to the given string and assigns it to the Notes field.

func (*SeriesModelV1Publishers) SetPublisherId ¶

func (o *SeriesModelV1Publishers) SetPublisherId(v int64)

SetPublisherId gets a reference to the given int64 and assigns it to the PublisherId field.

func (*SeriesModelV1Publishers) SetPublisherName ¶

func (o *SeriesModelV1Publishers) SetPublisherName(v string)

SetPublisherName gets a reference to the given string and assigns it to the PublisherName field.

func (*SeriesModelV1Publishers) SetType ¶

func (o *SeriesModelV1Publishers) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (SeriesModelV1Publishers) ToMap ¶

func (o SeriesModelV1Publishers) ToMap() (map[string]interface{}, error)

type SeriesModelV1Rank ¶

type SeriesModelV1Rank struct {
	Position    *SeriesModelV1RankPosition    `json:"position,omitempty"`
	OldPosition *SeriesModelV1RankOldPosition `json:"old_position,omitempty"`
	Lists       *SeriesModelV1RankLists       `json:"lists,omitempty"`
}

SeriesModelV1Rank struct for SeriesModelV1Rank

func NewSeriesModelV1Rank ¶

func NewSeriesModelV1Rank() *SeriesModelV1Rank

NewSeriesModelV1Rank instantiates a new SeriesModelV1Rank object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesModelV1RankWithDefaults ¶

func NewSeriesModelV1RankWithDefaults() *SeriesModelV1Rank

NewSeriesModelV1RankWithDefaults instantiates a new SeriesModelV1Rank object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesModelV1Rank) GetLists ¶

GetLists returns the Lists field value if set, zero value otherwise.

func (*SeriesModelV1Rank) GetListsOk ¶

func (o *SeriesModelV1Rank) GetListsOk() (*SeriesModelV1RankLists, bool)

GetListsOk returns a tuple with the Lists field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1Rank) GetOldPosition ¶

func (o *SeriesModelV1Rank) GetOldPosition() SeriesModelV1RankOldPosition

GetOldPosition returns the OldPosition field value if set, zero value otherwise.

func (*SeriesModelV1Rank) GetOldPositionOk ¶

func (o *SeriesModelV1Rank) GetOldPositionOk() (*SeriesModelV1RankOldPosition, bool)

GetOldPositionOk returns a tuple with the OldPosition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1Rank) GetPosition ¶

GetPosition returns the Position field value if set, zero value otherwise.

func (*SeriesModelV1Rank) GetPositionOk ¶

func (o *SeriesModelV1Rank) GetPositionOk() (*SeriesModelV1RankPosition, bool)

GetPositionOk returns a tuple with the Position field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1Rank) HasLists ¶

func (o *SeriesModelV1Rank) HasLists() bool

HasLists returns a boolean if a field has been set.

func (*SeriesModelV1Rank) HasOldPosition ¶

func (o *SeriesModelV1Rank) HasOldPosition() bool

HasOldPosition returns a boolean if a field has been set.

func (*SeriesModelV1Rank) HasPosition ¶

func (o *SeriesModelV1Rank) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (SeriesModelV1Rank) MarshalJSON ¶

func (o SeriesModelV1Rank) MarshalJSON() ([]byte, error)

func (*SeriesModelV1Rank) SetLists ¶

SetLists gets a reference to the given SeriesModelV1RankLists and assigns it to the Lists field.

func (*SeriesModelV1Rank) SetOldPosition ¶

func (o *SeriesModelV1Rank) SetOldPosition(v SeriesModelV1RankOldPosition)

SetOldPosition gets a reference to the given SeriesModelV1RankOldPosition and assigns it to the OldPosition field.

func (*SeriesModelV1Rank) SetPosition ¶

func (o *SeriesModelV1Rank) SetPosition(v SeriesModelV1RankPosition)

SetPosition gets a reference to the given SeriesModelV1RankPosition and assigns it to the Position field.

func (SeriesModelV1Rank) ToMap ¶

func (o SeriesModelV1Rank) ToMap() (map[string]interface{}, error)

type SeriesModelV1RankLists ¶

type SeriesModelV1RankLists struct {
	Reading    *int64 `json:"reading,omitempty"`
	Wish       *int64 `json:"wish,omitempty"`
	Complete   *int64 `json:"complete,omitempty"`
	Unfinished *int64 `json:"unfinished,omitempty"`
	Custom     *int64 `json:"custom,omitempty"`
}

SeriesModelV1RankLists struct for SeriesModelV1RankLists

func NewSeriesModelV1RankLists ¶

func NewSeriesModelV1RankLists() *SeriesModelV1RankLists

NewSeriesModelV1RankLists instantiates a new SeriesModelV1RankLists object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesModelV1RankListsWithDefaults ¶

func NewSeriesModelV1RankListsWithDefaults() *SeriesModelV1RankLists

NewSeriesModelV1RankListsWithDefaults instantiates a new SeriesModelV1RankLists object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesModelV1RankLists) GetComplete ¶

func (o *SeriesModelV1RankLists) GetComplete() int64

GetComplete returns the Complete field value if set, zero value otherwise.

func (*SeriesModelV1RankLists) GetCompleteOk ¶

func (o *SeriesModelV1RankLists) GetCompleteOk() (*int64, bool)

GetCompleteOk returns a tuple with the Complete field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1RankLists) GetCustom ¶

func (o *SeriesModelV1RankLists) GetCustom() int64

GetCustom returns the Custom field value if set, zero value otherwise.

func (*SeriesModelV1RankLists) GetCustomOk ¶

func (o *SeriesModelV1RankLists) GetCustomOk() (*int64, bool)

GetCustomOk returns a tuple with the Custom field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1RankLists) GetReading ¶

func (o *SeriesModelV1RankLists) GetReading() int64

GetReading returns the Reading field value if set, zero value otherwise.

func (*SeriesModelV1RankLists) GetReadingOk ¶

func (o *SeriesModelV1RankLists) GetReadingOk() (*int64, bool)

GetReadingOk returns a tuple with the Reading field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1RankLists) GetUnfinished ¶

func (o *SeriesModelV1RankLists) GetUnfinished() int64

GetUnfinished returns the Unfinished field value if set, zero value otherwise.

func (*SeriesModelV1RankLists) GetUnfinishedOk ¶

func (o *SeriesModelV1RankLists) GetUnfinishedOk() (*int64, bool)

GetUnfinishedOk returns a tuple with the Unfinished field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1RankLists) GetWish ¶

func (o *SeriesModelV1RankLists) GetWish() int64

GetWish returns the Wish field value if set, zero value otherwise.

func (*SeriesModelV1RankLists) GetWishOk ¶

func (o *SeriesModelV1RankLists) GetWishOk() (*int64, bool)

GetWishOk returns a tuple with the Wish field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1RankLists) HasComplete ¶

func (o *SeriesModelV1RankLists) HasComplete() bool

HasComplete returns a boolean if a field has been set.

func (*SeriesModelV1RankLists) HasCustom ¶

func (o *SeriesModelV1RankLists) HasCustom() bool

HasCustom returns a boolean if a field has been set.

func (*SeriesModelV1RankLists) HasReading ¶

func (o *SeriesModelV1RankLists) HasReading() bool

HasReading returns a boolean if a field has been set.

func (*SeriesModelV1RankLists) HasUnfinished ¶

func (o *SeriesModelV1RankLists) HasUnfinished() bool

HasUnfinished returns a boolean if a field has been set.

func (*SeriesModelV1RankLists) HasWish ¶

func (o *SeriesModelV1RankLists) HasWish() bool

HasWish returns a boolean if a field has been set.

func (SeriesModelV1RankLists) MarshalJSON ¶

func (o SeriesModelV1RankLists) MarshalJSON() ([]byte, error)

func (*SeriesModelV1RankLists) SetComplete ¶

func (o *SeriesModelV1RankLists) SetComplete(v int64)

SetComplete gets a reference to the given int64 and assigns it to the Complete field.

func (*SeriesModelV1RankLists) SetCustom ¶

func (o *SeriesModelV1RankLists) SetCustom(v int64)

SetCustom gets a reference to the given int64 and assigns it to the Custom field.

func (*SeriesModelV1RankLists) SetReading ¶

func (o *SeriesModelV1RankLists) SetReading(v int64)

SetReading gets a reference to the given int64 and assigns it to the Reading field.

func (*SeriesModelV1RankLists) SetUnfinished ¶

func (o *SeriesModelV1RankLists) SetUnfinished(v int64)

SetUnfinished gets a reference to the given int64 and assigns it to the Unfinished field.

func (*SeriesModelV1RankLists) SetWish ¶

func (o *SeriesModelV1RankLists) SetWish(v int64)

SetWish gets a reference to the given int64 and assigns it to the Wish field.

func (SeriesModelV1RankLists) ToMap ¶

func (o SeriesModelV1RankLists) ToMap() (map[string]interface{}, error)

type SeriesModelV1RankOldPosition ¶

type SeriesModelV1RankOldPosition struct {
	Week        *int64 `json:"week,omitempty"`
	Month       *int64 `json:"month,omitempty"`
	ThreeMonths *int64 `json:"three_months,omitempty"`
	SixMonths   *int64 `json:"six_months,omitempty"`
	Year        *int64 `json:"year,omitempty"`
}

SeriesModelV1RankOldPosition struct for SeriesModelV1RankOldPosition

func NewSeriesModelV1RankOldPosition ¶

func NewSeriesModelV1RankOldPosition() *SeriesModelV1RankOldPosition

NewSeriesModelV1RankOldPosition instantiates a new SeriesModelV1RankOldPosition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesModelV1RankOldPositionWithDefaults ¶

func NewSeriesModelV1RankOldPositionWithDefaults() *SeriesModelV1RankOldPosition

NewSeriesModelV1RankOldPositionWithDefaults instantiates a new SeriesModelV1RankOldPosition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesModelV1RankOldPosition) GetMonth ¶

func (o *SeriesModelV1RankOldPosition) GetMonth() int64

GetMonth returns the Month field value if set, zero value otherwise.

func (*SeriesModelV1RankOldPosition) GetMonthOk ¶

func (o *SeriesModelV1RankOldPosition) GetMonthOk() (*int64, bool)

GetMonthOk returns a tuple with the Month field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1RankOldPosition) GetSixMonths ¶

func (o *SeriesModelV1RankOldPosition) GetSixMonths() int64

GetSixMonths returns the SixMonths field value if set, zero value otherwise.

func (*SeriesModelV1RankOldPosition) GetSixMonthsOk ¶

func (o *SeriesModelV1RankOldPosition) GetSixMonthsOk() (*int64, bool)

GetSixMonthsOk returns a tuple with the SixMonths field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1RankOldPosition) GetThreeMonths ¶

func (o *SeriesModelV1RankOldPosition) GetThreeMonths() int64

GetThreeMonths returns the ThreeMonths field value if set, zero value otherwise.

func (*SeriesModelV1RankOldPosition) GetThreeMonthsOk ¶

func (o *SeriesModelV1RankOldPosition) GetThreeMonthsOk() (*int64, bool)

GetThreeMonthsOk returns a tuple with the ThreeMonths field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1RankOldPosition) GetWeek ¶

func (o *SeriesModelV1RankOldPosition) GetWeek() int64

GetWeek returns the Week field value if set, zero value otherwise.

func (*SeriesModelV1RankOldPosition) GetWeekOk ¶

func (o *SeriesModelV1RankOldPosition) GetWeekOk() (*int64, bool)

GetWeekOk returns a tuple with the Week field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1RankOldPosition) GetYear ¶

func (o *SeriesModelV1RankOldPosition) GetYear() int64

GetYear returns the Year field value if set, zero value otherwise.

func (*SeriesModelV1RankOldPosition) GetYearOk ¶

func (o *SeriesModelV1RankOldPosition) GetYearOk() (*int64, bool)

GetYearOk returns a tuple with the Year field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1RankOldPosition) HasMonth ¶

func (o *SeriesModelV1RankOldPosition) HasMonth() bool

HasMonth returns a boolean if a field has been set.

func (*SeriesModelV1RankOldPosition) HasSixMonths ¶

func (o *SeriesModelV1RankOldPosition) HasSixMonths() bool

HasSixMonths returns a boolean if a field has been set.

func (*SeriesModelV1RankOldPosition) HasThreeMonths ¶

func (o *SeriesModelV1RankOldPosition) HasThreeMonths() bool

HasThreeMonths returns a boolean if a field has been set.

func (*SeriesModelV1RankOldPosition) HasWeek ¶

func (o *SeriesModelV1RankOldPosition) HasWeek() bool

HasWeek returns a boolean if a field has been set.

func (*SeriesModelV1RankOldPosition) HasYear ¶

func (o *SeriesModelV1RankOldPosition) HasYear() bool

HasYear returns a boolean if a field has been set.

func (SeriesModelV1RankOldPosition) MarshalJSON ¶

func (o SeriesModelV1RankOldPosition) MarshalJSON() ([]byte, error)

func (*SeriesModelV1RankOldPosition) SetMonth ¶

func (o *SeriesModelV1RankOldPosition) SetMonth(v int64)

SetMonth gets a reference to the given int64 and assigns it to the Month field.

func (*SeriesModelV1RankOldPosition) SetSixMonths ¶

func (o *SeriesModelV1RankOldPosition) SetSixMonths(v int64)

SetSixMonths gets a reference to the given int64 and assigns it to the SixMonths field.

func (*SeriesModelV1RankOldPosition) SetThreeMonths ¶

func (o *SeriesModelV1RankOldPosition) SetThreeMonths(v int64)

SetThreeMonths gets a reference to the given int64 and assigns it to the ThreeMonths field.

func (*SeriesModelV1RankOldPosition) SetWeek ¶

func (o *SeriesModelV1RankOldPosition) SetWeek(v int64)

SetWeek gets a reference to the given int64 and assigns it to the Week field.

func (*SeriesModelV1RankOldPosition) SetYear ¶

func (o *SeriesModelV1RankOldPosition) SetYear(v int64)

SetYear gets a reference to the given int64 and assigns it to the Year field.

func (SeriesModelV1RankOldPosition) ToMap ¶

func (o SeriesModelV1RankOldPosition) ToMap() (map[string]interface{}, error)

type SeriesModelV1RankPosition ¶

type SeriesModelV1RankPosition struct {
	Week        *int64 `json:"week,omitempty"`
	Month       *int64 `json:"month,omitempty"`
	ThreeMonths *int64 `json:"three_months,omitempty"`
	SixMonths   *int64 `json:"six_months,omitempty"`
	Year        *int64 `json:"year,omitempty"`
}

SeriesModelV1RankPosition struct for SeriesModelV1RankPosition

func NewSeriesModelV1RankPosition ¶

func NewSeriesModelV1RankPosition() *SeriesModelV1RankPosition

NewSeriesModelV1RankPosition instantiates a new SeriesModelV1RankPosition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesModelV1RankPositionWithDefaults ¶

func NewSeriesModelV1RankPositionWithDefaults() *SeriesModelV1RankPosition

NewSeriesModelV1RankPositionWithDefaults instantiates a new SeriesModelV1RankPosition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesModelV1RankPosition) GetMonth ¶

func (o *SeriesModelV1RankPosition) GetMonth() int64

GetMonth returns the Month field value if set, zero value otherwise.

func (*SeriesModelV1RankPosition) GetMonthOk ¶

func (o *SeriesModelV1RankPosition) GetMonthOk() (*int64, bool)

GetMonthOk returns a tuple with the Month field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1RankPosition) GetSixMonths ¶

func (o *SeriesModelV1RankPosition) GetSixMonths() int64

GetSixMonths returns the SixMonths field value if set, zero value otherwise.

func (*SeriesModelV1RankPosition) GetSixMonthsOk ¶

func (o *SeriesModelV1RankPosition) GetSixMonthsOk() (*int64, bool)

GetSixMonthsOk returns a tuple with the SixMonths field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1RankPosition) GetThreeMonths ¶

func (o *SeriesModelV1RankPosition) GetThreeMonths() int64

GetThreeMonths returns the ThreeMonths field value if set, zero value otherwise.

func (*SeriesModelV1RankPosition) GetThreeMonthsOk ¶

func (o *SeriesModelV1RankPosition) GetThreeMonthsOk() (*int64, bool)

GetThreeMonthsOk returns a tuple with the ThreeMonths field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1RankPosition) GetWeek ¶

func (o *SeriesModelV1RankPosition) GetWeek() int64

GetWeek returns the Week field value if set, zero value otherwise.

func (*SeriesModelV1RankPosition) GetWeekOk ¶

func (o *SeriesModelV1RankPosition) GetWeekOk() (*int64, bool)

GetWeekOk returns a tuple with the Week field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1RankPosition) GetYear ¶

func (o *SeriesModelV1RankPosition) GetYear() int64

GetYear returns the Year field value if set, zero value otherwise.

func (*SeriesModelV1RankPosition) GetYearOk ¶

func (o *SeriesModelV1RankPosition) GetYearOk() (*int64, bool)

GetYearOk returns a tuple with the Year field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1RankPosition) HasMonth ¶

func (o *SeriesModelV1RankPosition) HasMonth() bool

HasMonth returns a boolean if a field has been set.

func (*SeriesModelV1RankPosition) HasSixMonths ¶

func (o *SeriesModelV1RankPosition) HasSixMonths() bool

HasSixMonths returns a boolean if a field has been set.

func (*SeriesModelV1RankPosition) HasThreeMonths ¶

func (o *SeriesModelV1RankPosition) HasThreeMonths() bool

HasThreeMonths returns a boolean if a field has been set.

func (*SeriesModelV1RankPosition) HasWeek ¶

func (o *SeriesModelV1RankPosition) HasWeek() bool

HasWeek returns a boolean if a field has been set.

func (*SeriesModelV1RankPosition) HasYear ¶

func (o *SeriesModelV1RankPosition) HasYear() bool

HasYear returns a boolean if a field has been set.

func (SeriesModelV1RankPosition) MarshalJSON ¶

func (o SeriesModelV1RankPosition) MarshalJSON() ([]byte, error)

func (*SeriesModelV1RankPosition) SetMonth ¶

func (o *SeriesModelV1RankPosition) SetMonth(v int64)

SetMonth gets a reference to the given int64 and assigns it to the Month field.

func (*SeriesModelV1RankPosition) SetSixMonths ¶

func (o *SeriesModelV1RankPosition) SetSixMonths(v int64)

SetSixMonths gets a reference to the given int64 and assigns it to the SixMonths field.

func (*SeriesModelV1RankPosition) SetThreeMonths ¶

func (o *SeriesModelV1RankPosition) SetThreeMonths(v int64)

SetThreeMonths gets a reference to the given int64 and assigns it to the ThreeMonths field.

func (*SeriesModelV1RankPosition) SetWeek ¶

func (o *SeriesModelV1RankPosition) SetWeek(v int64)

SetWeek gets a reference to the given int64 and assigns it to the Week field.

func (*SeriesModelV1RankPosition) SetYear ¶

func (o *SeriesModelV1RankPosition) SetYear(v int64)

SetYear gets a reference to the given int64 and assigns it to the Year field.

func (SeriesModelV1RankPosition) ToMap ¶

func (o SeriesModelV1RankPosition) ToMap() (map[string]interface{}, error)

type SeriesModelV1RelatedSeries ¶

type SeriesModelV1RelatedSeries struct {
	RelationId            *int64  `json:"relation_id,omitempty"`
	RelationType          string  `json:"relation_type"`
	RelatedSeriesId       int64   `json:"related_series_id"`
	RelatedSeriesName     *string `json:"related_series_name,omitempty"`
	TriggeredByRelationId *int64  `json:"triggered_by_relation_id,omitempty"`
}

SeriesModelV1RelatedSeries struct for SeriesModelV1RelatedSeries

func NewSeriesModelV1RelatedSeries ¶

func NewSeriesModelV1RelatedSeries(relationType string, relatedSeriesId int64) *SeriesModelV1RelatedSeries

NewSeriesModelV1RelatedSeries instantiates a new SeriesModelV1RelatedSeries object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesModelV1RelatedSeriesWithDefaults ¶

func NewSeriesModelV1RelatedSeriesWithDefaults() *SeriesModelV1RelatedSeries

NewSeriesModelV1RelatedSeriesWithDefaults instantiates a new SeriesModelV1RelatedSeries object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesModelV1RelatedSeries) GetRelatedSeriesId ¶

func (o *SeriesModelV1RelatedSeries) GetRelatedSeriesId() int64

GetRelatedSeriesId returns the RelatedSeriesId field value

func (*SeriesModelV1RelatedSeries) GetRelatedSeriesIdOk ¶

func (o *SeriesModelV1RelatedSeries) GetRelatedSeriesIdOk() (*int64, bool)

GetRelatedSeriesIdOk returns a tuple with the RelatedSeriesId field value and a boolean to check if the value has been set.

func (*SeriesModelV1RelatedSeries) GetRelatedSeriesName ¶

func (o *SeriesModelV1RelatedSeries) GetRelatedSeriesName() string

GetRelatedSeriesName returns the RelatedSeriesName field value if set, zero value otherwise.

func (*SeriesModelV1RelatedSeries) GetRelatedSeriesNameOk ¶

func (o *SeriesModelV1RelatedSeries) GetRelatedSeriesNameOk() (*string, bool)

GetRelatedSeriesNameOk returns a tuple with the RelatedSeriesName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1RelatedSeries) GetRelationId ¶

func (o *SeriesModelV1RelatedSeries) GetRelationId() int64

GetRelationId returns the RelationId field value if set, zero value otherwise.

func (*SeriesModelV1RelatedSeries) GetRelationIdOk ¶

func (o *SeriesModelV1RelatedSeries) GetRelationIdOk() (*int64, bool)

GetRelationIdOk returns a tuple with the RelationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1RelatedSeries) GetRelationType ¶

func (o *SeriesModelV1RelatedSeries) GetRelationType() string

GetRelationType returns the RelationType field value

func (*SeriesModelV1RelatedSeries) GetRelationTypeOk ¶

func (o *SeriesModelV1RelatedSeries) GetRelationTypeOk() (*string, bool)

GetRelationTypeOk returns a tuple with the RelationType field value and a boolean to check if the value has been set.

func (*SeriesModelV1RelatedSeries) GetTriggeredByRelationId ¶

func (o *SeriesModelV1RelatedSeries) GetTriggeredByRelationId() int64

GetTriggeredByRelationId returns the TriggeredByRelationId field value if set, zero value otherwise.

func (*SeriesModelV1RelatedSeries) GetTriggeredByRelationIdOk ¶

func (o *SeriesModelV1RelatedSeries) GetTriggeredByRelationIdOk() (*int64, bool)

GetTriggeredByRelationIdOk returns a tuple with the TriggeredByRelationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesModelV1RelatedSeries) HasRelatedSeriesName ¶

func (o *SeriesModelV1RelatedSeries) HasRelatedSeriesName() bool

HasRelatedSeriesName returns a boolean if a field has been set.

func (*SeriesModelV1RelatedSeries) HasRelationId ¶

func (o *SeriesModelV1RelatedSeries) HasRelationId() bool

HasRelationId returns a boolean if a field has been set.

func (*SeriesModelV1RelatedSeries) HasTriggeredByRelationId ¶

func (o *SeriesModelV1RelatedSeries) HasTriggeredByRelationId() bool

HasTriggeredByRelationId returns a boolean if a field has been set.

func (SeriesModelV1RelatedSeries) MarshalJSON ¶

func (o SeriesModelV1RelatedSeries) MarshalJSON() ([]byte, error)

func (*SeriesModelV1RelatedSeries) SetRelatedSeriesId ¶

func (o *SeriesModelV1RelatedSeries) SetRelatedSeriesId(v int64)

SetRelatedSeriesId sets field value

func (*SeriesModelV1RelatedSeries) SetRelatedSeriesName ¶

func (o *SeriesModelV1RelatedSeries) SetRelatedSeriesName(v string)

SetRelatedSeriesName gets a reference to the given string and assigns it to the RelatedSeriesName field.

func (*SeriesModelV1RelatedSeries) SetRelationId ¶

func (o *SeriesModelV1RelatedSeries) SetRelationId(v int64)

SetRelationId gets a reference to the given int64 and assigns it to the RelationId field.

func (*SeriesModelV1RelatedSeries) SetRelationType ¶

func (o *SeriesModelV1RelatedSeries) SetRelationType(v string)

SetRelationType sets field value

func (*SeriesModelV1RelatedSeries) SetTriggeredByRelationId ¶

func (o *SeriesModelV1RelatedSeries) SetTriggeredByRelationId(v int64)

SetTriggeredByRelationId gets a reference to the given int64 and assigns it to the TriggeredByRelationId field.

func (SeriesModelV1RelatedSeries) ToMap ¶

func (o SeriesModelV1RelatedSeries) ToMap() (map[string]interface{}, error)

type SeriesRatingModelV1 ¶

type SeriesRatingModelV1 struct {
	Rating      float32 `json:"rating"`
	LastUpdated *TimeV1 `json:"last_updated,omitempty"`
}

SeriesRatingModelV1 struct for SeriesRatingModelV1

func NewSeriesRatingModelV1 ¶

func NewSeriesRatingModelV1(rating float32) *SeriesRatingModelV1

NewSeriesRatingModelV1 instantiates a new SeriesRatingModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesRatingModelV1WithDefaults ¶

func NewSeriesRatingModelV1WithDefaults() *SeriesRatingModelV1

NewSeriesRatingModelV1WithDefaults instantiates a new SeriesRatingModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesRatingModelV1) GetLastUpdated ¶

func (o *SeriesRatingModelV1) GetLastUpdated() TimeV1

GetLastUpdated returns the LastUpdated field value if set, zero value otherwise.

func (*SeriesRatingModelV1) GetLastUpdatedOk ¶

func (o *SeriesRatingModelV1) GetLastUpdatedOk() (*TimeV1, bool)

GetLastUpdatedOk returns a tuple with the LastUpdated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesRatingModelV1) GetRating ¶

func (o *SeriesRatingModelV1) GetRating() float32

GetRating returns the Rating field value

func (*SeriesRatingModelV1) GetRatingOk ¶

func (o *SeriesRatingModelV1) GetRatingOk() (*float32, bool)

GetRatingOk returns a tuple with the Rating field value and a boolean to check if the value has been set.

func (*SeriesRatingModelV1) HasLastUpdated ¶

func (o *SeriesRatingModelV1) HasLastUpdated() bool

HasLastUpdated returns a boolean if a field has been set.

func (SeriesRatingModelV1) MarshalJSON ¶

func (o SeriesRatingModelV1) MarshalJSON() ([]byte, error)

func (*SeriesRatingModelV1) SetLastUpdated ¶

func (o *SeriesRatingModelV1) SetLastUpdated(v TimeV1)

SetLastUpdated gets a reference to the given TimeV1 and assigns it to the LastUpdated field.

func (*SeriesRatingModelV1) SetRating ¶

func (o *SeriesRatingModelV1) SetRating(v float32)

SetRating sets field value

func (SeriesRatingModelV1) ToMap ¶

func (o SeriesRatingModelV1) ToMap() (map[string]interface{}, error)

type SeriesRatingRainbowModelV1 ¶

type SeriesRatingRainbowModelV1 struct {
	AverageRating *float32                            `json:"average_rating,omitempty"`
	Rainbow       []SeriesRatingRainbowModelV1Rainbow `json:"rainbow,omitempty"`
}

SeriesRatingRainbowModelV1 struct for SeriesRatingRainbowModelV1

func NewSeriesRatingRainbowModelV1 ¶

func NewSeriesRatingRainbowModelV1() *SeriesRatingRainbowModelV1

NewSeriesRatingRainbowModelV1 instantiates a new SeriesRatingRainbowModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesRatingRainbowModelV1WithDefaults ¶

func NewSeriesRatingRainbowModelV1WithDefaults() *SeriesRatingRainbowModelV1

NewSeriesRatingRainbowModelV1WithDefaults instantiates a new SeriesRatingRainbowModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesRatingRainbowModelV1) GetAverageRating ¶

func (o *SeriesRatingRainbowModelV1) GetAverageRating() float32

GetAverageRating returns the AverageRating field value if set, zero value otherwise.

func (*SeriesRatingRainbowModelV1) GetAverageRatingOk ¶

func (o *SeriesRatingRainbowModelV1) GetAverageRatingOk() (*float32, bool)

GetAverageRatingOk returns a tuple with the AverageRating field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesRatingRainbowModelV1) GetRainbow ¶

GetRainbow returns the Rainbow field value if set, zero value otherwise.

func (*SeriesRatingRainbowModelV1) GetRainbowOk ¶

GetRainbowOk returns a tuple with the Rainbow field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesRatingRainbowModelV1) HasAverageRating ¶

func (o *SeriesRatingRainbowModelV1) HasAverageRating() bool

HasAverageRating returns a boolean if a field has been set.

func (*SeriesRatingRainbowModelV1) HasRainbow ¶

func (o *SeriesRatingRainbowModelV1) HasRainbow() bool

HasRainbow returns a boolean if a field has been set.

func (SeriesRatingRainbowModelV1) MarshalJSON ¶

func (o SeriesRatingRainbowModelV1) MarshalJSON() ([]byte, error)

func (*SeriesRatingRainbowModelV1) SetAverageRating ¶

func (o *SeriesRatingRainbowModelV1) SetAverageRating(v float32)

SetAverageRating gets a reference to the given float32 and assigns it to the AverageRating field.

func (*SeriesRatingRainbowModelV1) SetRainbow ¶

SetRainbow gets a reference to the given []SeriesRatingRainbowModelV1Rainbow and assigns it to the Rainbow field.

func (SeriesRatingRainbowModelV1) ToMap ¶

func (o SeriesRatingRainbowModelV1) ToMap() (map[string]interface{}, error)

type SeriesRatingRainbowModelV1Rainbow ¶

type SeriesRatingRainbowModelV1Rainbow struct {
	Rating *int64 `json:"rating,omitempty"`
	Count  *int64 `json:"count,omitempty"`
}

SeriesRatingRainbowModelV1Rainbow struct for SeriesRatingRainbowModelV1Rainbow

func NewSeriesRatingRainbowModelV1Rainbow ¶

func NewSeriesRatingRainbowModelV1Rainbow() *SeriesRatingRainbowModelV1Rainbow

NewSeriesRatingRainbowModelV1Rainbow instantiates a new SeriesRatingRainbowModelV1Rainbow object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesRatingRainbowModelV1RainbowWithDefaults ¶

func NewSeriesRatingRainbowModelV1RainbowWithDefaults() *SeriesRatingRainbowModelV1Rainbow

NewSeriesRatingRainbowModelV1RainbowWithDefaults instantiates a new SeriesRatingRainbowModelV1Rainbow object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesRatingRainbowModelV1Rainbow) GetCount ¶

GetCount returns the Count field value if set, zero value otherwise.

func (*SeriesRatingRainbowModelV1Rainbow) GetCountOk ¶

func (o *SeriesRatingRainbowModelV1Rainbow) GetCountOk() (*int64, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesRatingRainbowModelV1Rainbow) GetRating ¶

GetRating returns the Rating field value if set, zero value otherwise.

func (*SeriesRatingRainbowModelV1Rainbow) GetRatingOk ¶

func (o *SeriesRatingRainbowModelV1Rainbow) GetRatingOk() (*int64, bool)

GetRatingOk returns a tuple with the Rating field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesRatingRainbowModelV1Rainbow) HasCount ¶

HasCount returns a boolean if a field has been set.

func (*SeriesRatingRainbowModelV1Rainbow) HasRating ¶

func (o *SeriesRatingRainbowModelV1Rainbow) HasRating() bool

HasRating returns a boolean if a field has been set.

func (SeriesRatingRainbowModelV1Rainbow) MarshalJSON ¶

func (o SeriesRatingRainbowModelV1Rainbow) MarshalJSON() ([]byte, error)

func (*SeriesRatingRainbowModelV1Rainbow) SetCount ¶

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*SeriesRatingRainbowModelV1Rainbow) SetRating ¶

func (o *SeriesRatingRainbowModelV1Rainbow) SetRating(v int64)

SetRating gets a reference to the given int64 and assigns it to the Rating field.

func (SeriesRatingRainbowModelV1Rainbow) ToMap ¶

func (o SeriesRatingRainbowModelV1Rainbow) ToMap() (map[string]interface{}, error)

type SeriesRecommendationsModelV1 ¶

type SeriesRecommendationsModelV1 struct {
	SeriesName *string `json:"series_name,omitempty"`
	SeriesId   *int64  `json:"series_id,omitempty"`
	Weight     *int64  `json:"weight,omitempty"`
}

SeriesRecommendationsModelV1 struct for SeriesRecommendationsModelV1

func NewSeriesRecommendationsModelV1 ¶

func NewSeriesRecommendationsModelV1() *SeriesRecommendationsModelV1

NewSeriesRecommendationsModelV1 instantiates a new SeriesRecommendationsModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesRecommendationsModelV1WithDefaults ¶

func NewSeriesRecommendationsModelV1WithDefaults() *SeriesRecommendationsModelV1

NewSeriesRecommendationsModelV1WithDefaults instantiates a new SeriesRecommendationsModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesRecommendationsModelV1) GetSeriesId ¶

func (o *SeriesRecommendationsModelV1) GetSeriesId() int64

GetSeriesId returns the SeriesId field value if set, zero value otherwise.

func (*SeriesRecommendationsModelV1) GetSeriesIdOk ¶

func (o *SeriesRecommendationsModelV1) GetSeriesIdOk() (*int64, bool)

GetSeriesIdOk returns a tuple with the SeriesId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesRecommendationsModelV1) GetSeriesName ¶

func (o *SeriesRecommendationsModelV1) GetSeriesName() string

GetSeriesName returns the SeriesName field value if set, zero value otherwise.

func (*SeriesRecommendationsModelV1) GetSeriesNameOk ¶

func (o *SeriesRecommendationsModelV1) GetSeriesNameOk() (*string, bool)

GetSeriesNameOk returns a tuple with the SeriesName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesRecommendationsModelV1) GetWeight ¶

func (o *SeriesRecommendationsModelV1) GetWeight() int64

GetWeight returns the Weight field value if set, zero value otherwise.

func (*SeriesRecommendationsModelV1) GetWeightOk ¶

func (o *SeriesRecommendationsModelV1) GetWeightOk() (*int64, bool)

GetWeightOk returns a tuple with the Weight field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesRecommendationsModelV1) HasSeriesId ¶

func (o *SeriesRecommendationsModelV1) HasSeriesId() bool

HasSeriesId returns a boolean if a field has been set.

func (*SeriesRecommendationsModelV1) HasSeriesName ¶

func (o *SeriesRecommendationsModelV1) HasSeriesName() bool

HasSeriesName returns a boolean if a field has been set.

func (*SeriesRecommendationsModelV1) HasWeight ¶

func (o *SeriesRecommendationsModelV1) HasWeight() bool

HasWeight returns a boolean if a field has been set.

func (SeriesRecommendationsModelV1) MarshalJSON ¶

func (o SeriesRecommendationsModelV1) MarshalJSON() ([]byte, error)

func (*SeriesRecommendationsModelV1) SetSeriesId ¶

func (o *SeriesRecommendationsModelV1) SetSeriesId(v int64)

SetSeriesId gets a reference to the given int64 and assigns it to the SeriesId field.

func (*SeriesRecommendationsModelV1) SetSeriesName ¶

func (o *SeriesRecommendationsModelV1) SetSeriesName(v string)

SetSeriesName gets a reference to the given string and assigns it to the SeriesName field.

func (*SeriesRecommendationsModelV1) SetWeight ¶

func (o *SeriesRecommendationsModelV1) SetWeight(v int64)

SetWeight gets a reference to the given int64 and assigns it to the Weight field.

func (SeriesRecommendationsModelV1) ToMap ¶

func (o SeriesRecommendationsModelV1) ToMap() (map[string]interface{}, error)

type SeriesSearchRequestV1 ¶

type SeriesSearchRequestV1 struct {
	Search      *string  `json:"search,omitempty"`
	AddedBy     *int64   `json:"added_by,omitempty"`
	Stype       *string  `json:"stype,omitempty"`
	Licensed    *string  `json:"licensed,omitempty"`
	Type        []string `json:"type,omitempty"`
	Year        *string  `json:"year,omitempty"`
	FilterTypes []string `json:"filter_types,omitempty"`
	Category    []string `json:"category,omitempty"`
	Filter      *string  `json:"filter,omitempty"`
	// Meant to replace 'filter', it lets you specify multiple filters as an array of strings
	Filters               []string `json:"filters,omitempty"`
	List                  *string  `json:"list,omitempty"`
	Page                  *int64   `json:"page,omitempty"`
	Perpage               *int64   `json:"perpage,omitempty"`
	Letter                *string  `json:"letter,omitempty"`
	Genre                 []string `json:"genre,omitempty"`
	ExcludeGenre          []string `json:"exclude_genre,omitempty"`
	Orderby               *string  `json:"orderby,omitempty"`
	Pending               *bool    `json:"pending,omitempty"`
	IncludeRankMetadata   *bool    `json:"include_rank_metadata,omitempty"`
	ExcludeFilteredGenres *bool    `json:"exclude_filtered_genres,omitempty"`
}

SeriesSearchRequestV1 struct for SeriesSearchRequestV1

func NewSeriesSearchRequestV1 ¶

func NewSeriesSearchRequestV1() *SeriesSearchRequestV1

NewSeriesSearchRequestV1 instantiates a new SeriesSearchRequestV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesSearchRequestV1WithDefaults ¶

func NewSeriesSearchRequestV1WithDefaults() *SeriesSearchRequestV1

NewSeriesSearchRequestV1WithDefaults instantiates a new SeriesSearchRequestV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesSearchRequestV1) GetAddedBy ¶

func (o *SeriesSearchRequestV1) GetAddedBy() int64

GetAddedBy returns the AddedBy field value if set, zero value otherwise.

func (*SeriesSearchRequestV1) GetAddedByOk ¶

func (o *SeriesSearchRequestV1) GetAddedByOk() (*int64, bool)

GetAddedByOk returns a tuple with the AddedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchRequestV1) GetCategory ¶

func (o *SeriesSearchRequestV1) GetCategory() []string

GetCategory returns the Category field value if set, zero value otherwise.

func (*SeriesSearchRequestV1) GetCategoryOk ¶

func (o *SeriesSearchRequestV1) GetCategoryOk() ([]string, bool)

GetCategoryOk returns a tuple with the Category field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchRequestV1) GetExcludeFilteredGenres ¶

func (o *SeriesSearchRequestV1) GetExcludeFilteredGenres() bool

GetExcludeFilteredGenres returns the ExcludeFilteredGenres field value if set, zero value otherwise.

func (*SeriesSearchRequestV1) GetExcludeFilteredGenresOk ¶

func (o *SeriesSearchRequestV1) GetExcludeFilteredGenresOk() (*bool, bool)

GetExcludeFilteredGenresOk returns a tuple with the ExcludeFilteredGenres field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchRequestV1) GetExcludeGenre ¶

func (o *SeriesSearchRequestV1) GetExcludeGenre() []string

GetExcludeGenre returns the ExcludeGenre field value if set, zero value otherwise.

func (*SeriesSearchRequestV1) GetExcludeGenreOk ¶

func (o *SeriesSearchRequestV1) GetExcludeGenreOk() ([]string, bool)

GetExcludeGenreOk returns a tuple with the ExcludeGenre field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchRequestV1) GetFilter ¶

func (o *SeriesSearchRequestV1) GetFilter() string

GetFilter returns the Filter field value if set, zero value otherwise.

func (*SeriesSearchRequestV1) GetFilterOk ¶

func (o *SeriesSearchRequestV1) GetFilterOk() (*string, bool)

GetFilterOk returns a tuple with the Filter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchRequestV1) GetFilterTypes ¶

func (o *SeriesSearchRequestV1) GetFilterTypes() []string

GetFilterTypes returns the FilterTypes field value if set, zero value otherwise.

func (*SeriesSearchRequestV1) GetFilterTypesOk ¶

func (o *SeriesSearchRequestV1) GetFilterTypesOk() ([]string, bool)

GetFilterTypesOk returns a tuple with the FilterTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchRequestV1) GetFilters ¶

func (o *SeriesSearchRequestV1) GetFilters() []string

GetFilters returns the Filters field value if set, zero value otherwise.

func (*SeriesSearchRequestV1) GetFiltersOk ¶

func (o *SeriesSearchRequestV1) GetFiltersOk() ([]string, bool)

GetFiltersOk returns a tuple with the Filters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchRequestV1) GetGenre ¶

func (o *SeriesSearchRequestV1) GetGenre() []string

GetGenre returns the Genre field value if set, zero value otherwise.

func (*SeriesSearchRequestV1) GetGenreOk ¶

func (o *SeriesSearchRequestV1) GetGenreOk() ([]string, bool)

GetGenreOk returns a tuple with the Genre field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchRequestV1) GetIncludeRankMetadata ¶

func (o *SeriesSearchRequestV1) GetIncludeRankMetadata() bool

GetIncludeRankMetadata returns the IncludeRankMetadata field value if set, zero value otherwise.

func (*SeriesSearchRequestV1) GetIncludeRankMetadataOk ¶

func (o *SeriesSearchRequestV1) GetIncludeRankMetadataOk() (*bool, bool)

GetIncludeRankMetadataOk returns a tuple with the IncludeRankMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchRequestV1) GetLetter ¶

func (o *SeriesSearchRequestV1) GetLetter() string

GetLetter returns the Letter field value if set, zero value otherwise.

func (*SeriesSearchRequestV1) GetLetterOk ¶

func (o *SeriesSearchRequestV1) GetLetterOk() (*string, bool)

GetLetterOk returns a tuple with the Letter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchRequestV1) GetLicensed ¶

func (o *SeriesSearchRequestV1) GetLicensed() string

GetLicensed returns the Licensed field value if set, zero value otherwise.

func (*SeriesSearchRequestV1) GetLicensedOk ¶

func (o *SeriesSearchRequestV1) GetLicensedOk() (*string, bool)

GetLicensedOk returns a tuple with the Licensed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchRequestV1) GetList ¶

func (o *SeriesSearchRequestV1) GetList() string

GetList returns the List field value if set, zero value otherwise.

func (*SeriesSearchRequestV1) GetListOk ¶

func (o *SeriesSearchRequestV1) GetListOk() (*string, bool)

GetListOk returns a tuple with the List field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchRequestV1) GetOrderby ¶

func (o *SeriesSearchRequestV1) GetOrderby() string

GetOrderby returns the Orderby field value if set, zero value otherwise.

func (*SeriesSearchRequestV1) GetOrderbyOk ¶

func (o *SeriesSearchRequestV1) GetOrderbyOk() (*string, bool)

GetOrderbyOk returns a tuple with the Orderby field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchRequestV1) GetPage ¶

func (o *SeriesSearchRequestV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*SeriesSearchRequestV1) GetPageOk ¶

func (o *SeriesSearchRequestV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchRequestV1) GetPending ¶

func (o *SeriesSearchRequestV1) GetPending() bool

GetPending returns the Pending field value if set, zero value otherwise.

func (*SeriesSearchRequestV1) GetPendingOk ¶

func (o *SeriesSearchRequestV1) GetPendingOk() (*bool, bool)

GetPendingOk returns a tuple with the Pending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchRequestV1) GetPerpage ¶

func (o *SeriesSearchRequestV1) GetPerpage() int64

GetPerpage returns the Perpage field value if set, zero value otherwise.

func (*SeriesSearchRequestV1) GetPerpageOk ¶

func (o *SeriesSearchRequestV1) GetPerpageOk() (*int64, bool)

GetPerpageOk returns a tuple with the Perpage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchRequestV1) GetSearch ¶

func (o *SeriesSearchRequestV1) GetSearch() string

GetSearch returns the Search field value if set, zero value otherwise.

func (*SeriesSearchRequestV1) GetSearchOk ¶

func (o *SeriesSearchRequestV1) GetSearchOk() (*string, bool)

GetSearchOk returns a tuple with the Search field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchRequestV1) GetStype ¶

func (o *SeriesSearchRequestV1) GetStype() string

GetStype returns the Stype field value if set, zero value otherwise.

func (*SeriesSearchRequestV1) GetStypeOk ¶

func (o *SeriesSearchRequestV1) GetStypeOk() (*string, bool)

GetStypeOk returns a tuple with the Stype field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchRequestV1) GetType ¶

func (o *SeriesSearchRequestV1) GetType() []string

GetType returns the Type field value if set, zero value otherwise.

func (*SeriesSearchRequestV1) GetTypeOk ¶

func (o *SeriesSearchRequestV1) GetTypeOk() ([]string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchRequestV1) GetYear ¶

func (o *SeriesSearchRequestV1) GetYear() string

GetYear returns the Year field value if set, zero value otherwise.

func (*SeriesSearchRequestV1) GetYearOk ¶

func (o *SeriesSearchRequestV1) GetYearOk() (*string, bool)

GetYearOk returns a tuple with the Year field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchRequestV1) HasAddedBy ¶

func (o *SeriesSearchRequestV1) HasAddedBy() bool

HasAddedBy returns a boolean if a field has been set.

func (*SeriesSearchRequestV1) HasCategory ¶

func (o *SeriesSearchRequestV1) HasCategory() bool

HasCategory returns a boolean if a field has been set.

func (*SeriesSearchRequestV1) HasExcludeFilteredGenres ¶

func (o *SeriesSearchRequestV1) HasExcludeFilteredGenres() bool

HasExcludeFilteredGenres returns a boolean if a field has been set.

func (*SeriesSearchRequestV1) HasExcludeGenre ¶

func (o *SeriesSearchRequestV1) HasExcludeGenre() bool

HasExcludeGenre returns a boolean if a field has been set.

func (*SeriesSearchRequestV1) HasFilter ¶

func (o *SeriesSearchRequestV1) HasFilter() bool

HasFilter returns a boolean if a field has been set.

func (*SeriesSearchRequestV1) HasFilterTypes ¶

func (o *SeriesSearchRequestV1) HasFilterTypes() bool

HasFilterTypes returns a boolean if a field has been set.

func (*SeriesSearchRequestV1) HasFilters ¶

func (o *SeriesSearchRequestV1) HasFilters() bool

HasFilters returns a boolean if a field has been set.

func (*SeriesSearchRequestV1) HasGenre ¶

func (o *SeriesSearchRequestV1) HasGenre() bool

HasGenre returns a boolean if a field has been set.

func (*SeriesSearchRequestV1) HasIncludeRankMetadata ¶

func (o *SeriesSearchRequestV1) HasIncludeRankMetadata() bool

HasIncludeRankMetadata returns a boolean if a field has been set.

func (*SeriesSearchRequestV1) HasLetter ¶

func (o *SeriesSearchRequestV1) HasLetter() bool

HasLetter returns a boolean if a field has been set.

func (*SeriesSearchRequestV1) HasLicensed ¶

func (o *SeriesSearchRequestV1) HasLicensed() bool

HasLicensed returns a boolean if a field has been set.

func (*SeriesSearchRequestV1) HasList ¶

func (o *SeriesSearchRequestV1) HasList() bool

HasList returns a boolean if a field has been set.

func (*SeriesSearchRequestV1) HasOrderby ¶

func (o *SeriesSearchRequestV1) HasOrderby() bool

HasOrderby returns a boolean if a field has been set.

func (*SeriesSearchRequestV1) HasPage ¶

func (o *SeriesSearchRequestV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*SeriesSearchRequestV1) HasPending ¶

func (o *SeriesSearchRequestV1) HasPending() bool

HasPending returns a boolean if a field has been set.

func (*SeriesSearchRequestV1) HasPerpage ¶

func (o *SeriesSearchRequestV1) HasPerpage() bool

HasPerpage returns a boolean if a field has been set.

func (*SeriesSearchRequestV1) HasSearch ¶

func (o *SeriesSearchRequestV1) HasSearch() bool

HasSearch returns a boolean if a field has been set.

func (*SeriesSearchRequestV1) HasStype ¶

func (o *SeriesSearchRequestV1) HasStype() bool

HasStype returns a boolean if a field has been set.

func (*SeriesSearchRequestV1) HasType ¶

func (o *SeriesSearchRequestV1) HasType() bool

HasType returns a boolean if a field has been set.

func (*SeriesSearchRequestV1) HasYear ¶

func (o *SeriesSearchRequestV1) HasYear() bool

HasYear returns a boolean if a field has been set.

func (SeriesSearchRequestV1) MarshalJSON ¶

func (o SeriesSearchRequestV1) MarshalJSON() ([]byte, error)

func (*SeriesSearchRequestV1) SetAddedBy ¶

func (o *SeriesSearchRequestV1) SetAddedBy(v int64)

SetAddedBy gets a reference to the given int64 and assigns it to the AddedBy field.

func (*SeriesSearchRequestV1) SetCategory ¶

func (o *SeriesSearchRequestV1) SetCategory(v []string)

SetCategory gets a reference to the given []string and assigns it to the Category field.

func (*SeriesSearchRequestV1) SetExcludeFilteredGenres ¶

func (o *SeriesSearchRequestV1) SetExcludeFilteredGenres(v bool)

SetExcludeFilteredGenres gets a reference to the given bool and assigns it to the ExcludeFilteredGenres field.

func (*SeriesSearchRequestV1) SetExcludeGenre ¶

func (o *SeriesSearchRequestV1) SetExcludeGenre(v []string)

SetExcludeGenre gets a reference to the given []string and assigns it to the ExcludeGenre field.

func (*SeriesSearchRequestV1) SetFilter ¶

func (o *SeriesSearchRequestV1) SetFilter(v string)

SetFilter gets a reference to the given string and assigns it to the Filter field.

func (*SeriesSearchRequestV1) SetFilterTypes ¶

func (o *SeriesSearchRequestV1) SetFilterTypes(v []string)

SetFilterTypes gets a reference to the given []string and assigns it to the FilterTypes field.

func (*SeriesSearchRequestV1) SetFilters ¶

func (o *SeriesSearchRequestV1) SetFilters(v []string)

SetFilters gets a reference to the given []string and assigns it to the Filters field.

func (*SeriesSearchRequestV1) SetGenre ¶

func (o *SeriesSearchRequestV1) SetGenre(v []string)

SetGenre gets a reference to the given []string and assigns it to the Genre field.

func (*SeriesSearchRequestV1) SetIncludeRankMetadata ¶

func (o *SeriesSearchRequestV1) SetIncludeRankMetadata(v bool)

SetIncludeRankMetadata gets a reference to the given bool and assigns it to the IncludeRankMetadata field.

func (*SeriesSearchRequestV1) SetLetter ¶

func (o *SeriesSearchRequestV1) SetLetter(v string)

SetLetter gets a reference to the given string and assigns it to the Letter field.

func (*SeriesSearchRequestV1) SetLicensed ¶

func (o *SeriesSearchRequestV1) SetLicensed(v string)

SetLicensed gets a reference to the given string and assigns it to the Licensed field.

func (*SeriesSearchRequestV1) SetList ¶

func (o *SeriesSearchRequestV1) SetList(v string)

SetList gets a reference to the given string and assigns it to the List field.

func (*SeriesSearchRequestV1) SetOrderby ¶

func (o *SeriesSearchRequestV1) SetOrderby(v string)

SetOrderby gets a reference to the given string and assigns it to the Orderby field.

func (*SeriesSearchRequestV1) SetPage ¶

func (o *SeriesSearchRequestV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*SeriesSearchRequestV1) SetPending ¶

func (o *SeriesSearchRequestV1) SetPending(v bool)

SetPending gets a reference to the given bool and assigns it to the Pending field.

func (*SeriesSearchRequestV1) SetPerpage ¶

func (o *SeriesSearchRequestV1) SetPerpage(v int64)

SetPerpage gets a reference to the given int64 and assigns it to the Perpage field.

func (*SeriesSearchRequestV1) SetSearch ¶

func (o *SeriesSearchRequestV1) SetSearch(v string)

SetSearch gets a reference to the given string and assigns it to the Search field.

func (*SeriesSearchRequestV1) SetStype ¶

func (o *SeriesSearchRequestV1) SetStype(v string)

SetStype gets a reference to the given string and assigns it to the Stype field.

func (*SeriesSearchRequestV1) SetType ¶

func (o *SeriesSearchRequestV1) SetType(v []string)

SetType gets a reference to the given []string and assigns it to the Type field.

func (*SeriesSearchRequestV1) SetYear ¶

func (o *SeriesSearchRequestV1) SetYear(v string)

SetYear gets a reference to the given string and assigns it to the Year field.

func (SeriesSearchRequestV1) ToMap ¶

func (o SeriesSearchRequestV1) ToMap() (map[string]interface{}, error)

type SeriesSearchResponseV1 ¶

type SeriesSearchResponseV1 struct {
	TotalHits *int64                          `json:"total_hits,omitempty"`
	Page      *int64                          `json:"page,omitempty"`
	PerPage   *int64                          `json:"per_page,omitempty"`
	Results   []SeriesSearchResponseV1Results `json:"results,omitempty"`
}

SeriesSearchResponseV1 struct for SeriesSearchResponseV1

func NewSeriesSearchResponseV1 ¶

func NewSeriesSearchResponseV1() *SeriesSearchResponseV1

NewSeriesSearchResponseV1 instantiates a new SeriesSearchResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesSearchResponseV1WithDefaults ¶

func NewSeriesSearchResponseV1WithDefaults() *SeriesSearchResponseV1

NewSeriesSearchResponseV1WithDefaults instantiates a new SeriesSearchResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesSearchResponseV1) GetPage ¶

func (o *SeriesSearchResponseV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*SeriesSearchResponseV1) GetPageOk ¶

func (o *SeriesSearchResponseV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchResponseV1) GetPerPage ¶

func (o *SeriesSearchResponseV1) GetPerPage() int64

GetPerPage returns the PerPage field value if set, zero value otherwise.

func (*SeriesSearchResponseV1) GetPerPageOk ¶

func (o *SeriesSearchResponseV1) GetPerPageOk() (*int64, bool)

GetPerPageOk returns a tuple with the PerPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchResponseV1) GetResults ¶

GetResults returns the Results field value if set, zero value otherwise.

func (*SeriesSearchResponseV1) GetResultsOk ¶

GetResultsOk returns a tuple with the Results field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchResponseV1) GetTotalHits ¶

func (o *SeriesSearchResponseV1) GetTotalHits() int64

GetTotalHits returns the TotalHits field value if set, zero value otherwise.

func (*SeriesSearchResponseV1) GetTotalHitsOk ¶

func (o *SeriesSearchResponseV1) GetTotalHitsOk() (*int64, bool)

GetTotalHitsOk returns a tuple with the TotalHits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchResponseV1) HasPage ¶

func (o *SeriesSearchResponseV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*SeriesSearchResponseV1) HasPerPage ¶

func (o *SeriesSearchResponseV1) HasPerPage() bool

HasPerPage returns a boolean if a field has been set.

func (*SeriesSearchResponseV1) HasResults ¶

func (o *SeriesSearchResponseV1) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*SeriesSearchResponseV1) HasTotalHits ¶

func (o *SeriesSearchResponseV1) HasTotalHits() bool

HasTotalHits returns a boolean if a field has been set.

func (SeriesSearchResponseV1) MarshalJSON ¶

func (o SeriesSearchResponseV1) MarshalJSON() ([]byte, error)

func (*SeriesSearchResponseV1) SetPage ¶

func (o *SeriesSearchResponseV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*SeriesSearchResponseV1) SetPerPage ¶

func (o *SeriesSearchResponseV1) SetPerPage(v int64)

SetPerPage gets a reference to the given int64 and assigns it to the PerPage field.

func (*SeriesSearchResponseV1) SetResults ¶

SetResults gets a reference to the given []SeriesSearchResponseV1Results and assigns it to the Results field.

func (*SeriesSearchResponseV1) SetTotalHits ¶

func (o *SeriesSearchResponseV1) SetTotalHits(v int64)

SetTotalHits gets a reference to the given int64 and assigns it to the TotalHits field.

func (SeriesSearchResponseV1) ToMap ¶

func (o SeriesSearchResponseV1) ToMap() (map[string]interface{}, error)

type SeriesSearchResponseV1Results ¶

type SeriesSearchResponseV1Results struct {
	Record   *SeriesModelSearchV1                   `json:"record,omitempty"`
	HitTitle *string                                `json:"hit_title,omitempty"`
	Metadata *SeriesSearchResponseV1ResultsMetadata `json:"metadata,omitempty"`
}

SeriesSearchResponseV1Results struct for SeriesSearchResponseV1Results

func NewSeriesSearchResponseV1Results ¶

func NewSeriesSearchResponseV1Results() *SeriesSearchResponseV1Results

NewSeriesSearchResponseV1Results instantiates a new SeriesSearchResponseV1Results object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesSearchResponseV1ResultsWithDefaults ¶

func NewSeriesSearchResponseV1ResultsWithDefaults() *SeriesSearchResponseV1Results

NewSeriesSearchResponseV1ResultsWithDefaults instantiates a new SeriesSearchResponseV1Results object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesSearchResponseV1Results) GetHitTitle ¶

func (o *SeriesSearchResponseV1Results) GetHitTitle() string

GetHitTitle returns the HitTitle field value if set, zero value otherwise.

func (*SeriesSearchResponseV1Results) GetHitTitleOk ¶

func (o *SeriesSearchResponseV1Results) GetHitTitleOk() (*string, bool)

GetHitTitleOk returns a tuple with the HitTitle field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchResponseV1Results) GetMetadata ¶

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*SeriesSearchResponseV1Results) GetMetadataOk ¶

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchResponseV1Results) GetRecord ¶

GetRecord returns the Record field value if set, zero value otherwise.

func (*SeriesSearchResponseV1Results) GetRecordOk ¶

GetRecordOk returns a tuple with the Record field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchResponseV1Results) HasHitTitle ¶

func (o *SeriesSearchResponseV1Results) HasHitTitle() bool

HasHitTitle returns a boolean if a field has been set.

func (*SeriesSearchResponseV1Results) HasMetadata ¶

func (o *SeriesSearchResponseV1Results) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*SeriesSearchResponseV1Results) HasRecord ¶

func (o *SeriesSearchResponseV1Results) HasRecord() bool

HasRecord returns a boolean if a field has been set.

func (SeriesSearchResponseV1Results) MarshalJSON ¶

func (o SeriesSearchResponseV1Results) MarshalJSON() ([]byte, error)

func (*SeriesSearchResponseV1Results) SetHitTitle ¶

func (o *SeriesSearchResponseV1Results) SetHitTitle(v string)

SetHitTitle gets a reference to the given string and assigns it to the HitTitle field.

func (*SeriesSearchResponseV1Results) SetMetadata ¶

SetMetadata gets a reference to the given SeriesSearchResponseV1ResultsMetadata and assigns it to the Metadata field.

func (*SeriesSearchResponseV1Results) SetRecord ¶

SetRecord gets a reference to the given SeriesModelSearchV1 and assigns it to the Record field.

func (SeriesSearchResponseV1Results) ToMap ¶

func (o SeriesSearchResponseV1Results) ToMap() (map[string]interface{}, error)

type SeriesSearchResponseV1ResultsMetadata ¶

type SeriesSearchResponseV1ResultsMetadata struct {
	UserList            *ListsSeriesModelV1                                        `json:"user_list,omitempty"`
	UserGenreHighlights []SeriesSearchResponseV1ResultsMetadataUserGenreHighlights `json:"user_genre_highlights,omitempty"`
}

SeriesSearchResponseV1ResultsMetadata struct for SeriesSearchResponseV1ResultsMetadata

func NewSeriesSearchResponseV1ResultsMetadata ¶

func NewSeriesSearchResponseV1ResultsMetadata() *SeriesSearchResponseV1ResultsMetadata

NewSeriesSearchResponseV1ResultsMetadata instantiates a new SeriesSearchResponseV1ResultsMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesSearchResponseV1ResultsMetadataWithDefaults ¶

func NewSeriesSearchResponseV1ResultsMetadataWithDefaults() *SeriesSearchResponseV1ResultsMetadata

NewSeriesSearchResponseV1ResultsMetadataWithDefaults instantiates a new SeriesSearchResponseV1ResultsMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesSearchResponseV1ResultsMetadata) GetUserGenreHighlights ¶

GetUserGenreHighlights returns the UserGenreHighlights field value if set, zero value otherwise.

func (*SeriesSearchResponseV1ResultsMetadata) GetUserGenreHighlightsOk ¶

GetUserGenreHighlightsOk returns a tuple with the UserGenreHighlights field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchResponseV1ResultsMetadata) GetUserList ¶

GetUserList returns the UserList field value if set, zero value otherwise.

func (*SeriesSearchResponseV1ResultsMetadata) GetUserListOk ¶

GetUserListOk returns a tuple with the UserList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchResponseV1ResultsMetadata) HasUserGenreHighlights ¶

func (o *SeriesSearchResponseV1ResultsMetadata) HasUserGenreHighlights() bool

HasUserGenreHighlights returns a boolean if a field has been set.

func (*SeriesSearchResponseV1ResultsMetadata) HasUserList ¶

HasUserList returns a boolean if a field has been set.

func (SeriesSearchResponseV1ResultsMetadata) MarshalJSON ¶

func (o SeriesSearchResponseV1ResultsMetadata) MarshalJSON() ([]byte, error)

func (*SeriesSearchResponseV1ResultsMetadata) SetUserGenreHighlights ¶

SetUserGenreHighlights gets a reference to the given []SeriesSearchResponseV1ResultsMetadataUserGenreHighlights and assigns it to the UserGenreHighlights field.

func (*SeriesSearchResponseV1ResultsMetadata) SetUserList ¶

SetUserList gets a reference to the given ListsSeriesModelV1 and assigns it to the UserList field.

func (SeriesSearchResponseV1ResultsMetadata) ToMap ¶

func (o SeriesSearchResponseV1ResultsMetadata) ToMap() (map[string]interface{}, error)

type SeriesSearchResponseV1ResultsMetadataUserGenreHighlights ¶

type SeriesSearchResponseV1ResultsMetadataUserGenreHighlights struct {
	Genre *string `json:"genre,omitempty"`
	Color *string `json:"color,omitempty"`
}

SeriesSearchResponseV1ResultsMetadataUserGenreHighlights struct for SeriesSearchResponseV1ResultsMetadataUserGenreHighlights

func NewSeriesSearchResponseV1ResultsMetadataUserGenreHighlights ¶

func NewSeriesSearchResponseV1ResultsMetadataUserGenreHighlights() *SeriesSearchResponseV1ResultsMetadataUserGenreHighlights

NewSeriesSearchResponseV1ResultsMetadataUserGenreHighlights instantiates a new SeriesSearchResponseV1ResultsMetadataUserGenreHighlights object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSeriesSearchResponseV1ResultsMetadataUserGenreHighlightsWithDefaults ¶

func NewSeriesSearchResponseV1ResultsMetadataUserGenreHighlightsWithDefaults() *SeriesSearchResponseV1ResultsMetadataUserGenreHighlights

NewSeriesSearchResponseV1ResultsMetadataUserGenreHighlightsWithDefaults instantiates a new SeriesSearchResponseV1ResultsMetadataUserGenreHighlights object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SeriesSearchResponseV1ResultsMetadataUserGenreHighlights) GetColor ¶

GetColor returns the Color field value if set, zero value otherwise.

func (*SeriesSearchResponseV1ResultsMetadataUserGenreHighlights) GetColorOk ¶

GetColorOk returns a tuple with the Color field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchResponseV1ResultsMetadataUserGenreHighlights) GetGenre ¶

GetGenre returns the Genre field value if set, zero value otherwise.

func (*SeriesSearchResponseV1ResultsMetadataUserGenreHighlights) GetGenreOk ¶

GetGenreOk returns a tuple with the Genre field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeriesSearchResponseV1ResultsMetadataUserGenreHighlights) HasColor ¶

HasColor returns a boolean if a field has been set.

func (*SeriesSearchResponseV1ResultsMetadataUserGenreHighlights) HasGenre ¶

HasGenre returns a boolean if a field has been set.

func (SeriesSearchResponseV1ResultsMetadataUserGenreHighlights) MarshalJSON ¶

func (*SeriesSearchResponseV1ResultsMetadataUserGenreHighlights) SetColor ¶

SetColor gets a reference to the given string and assigns it to the Color field.

func (*SeriesSearchResponseV1ResultsMetadataUserGenreHighlights) SetGenre ¶

SetGenre gets a reference to the given string and assigns it to the Genre field.

func (SeriesSearchResponseV1ResultsMetadataUserGenreHighlights) ToMap ¶

type ServerConfiguration ¶

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations ¶

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL ¶

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable ¶

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type TimeUpdateV1 ¶

type TimeUpdateV1 struct {
	Timestamp *int64 `json:"timestamp,omitempty"`
}

TimeUpdateV1 struct for TimeUpdateV1

func NewTimeUpdateV1 ¶

func NewTimeUpdateV1() *TimeUpdateV1

NewTimeUpdateV1 instantiates a new TimeUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimeUpdateV1WithDefaults ¶

func NewTimeUpdateV1WithDefaults() *TimeUpdateV1

NewTimeUpdateV1WithDefaults instantiates a new TimeUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimeUpdateV1) GetTimestamp ¶

func (o *TimeUpdateV1) GetTimestamp() int64

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*TimeUpdateV1) GetTimestampOk ¶

func (o *TimeUpdateV1) GetTimestampOk() (*int64, bool)

GetTimestampOk returns a tuple with the Timestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimeUpdateV1) HasTimestamp ¶

func (o *TimeUpdateV1) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (TimeUpdateV1) MarshalJSON ¶

func (o TimeUpdateV1) MarshalJSON() ([]byte, error)

func (*TimeUpdateV1) SetTimestamp ¶

func (o *TimeUpdateV1) SetTimestamp(v int64)

SetTimestamp gets a reference to the given int64 and assigns it to the Timestamp field.

func (TimeUpdateV1) ToMap ¶

func (o TimeUpdateV1) ToMap() (map[string]interface{}, error)

type TimeV1 ¶

type TimeV1 struct {
	Timestamp *int64     `json:"timestamp,omitempty"`
	AsRfc3339 *time.Time `json:"as_rfc3339,omitempty"`
	AsString  *string    `json:"as_string,omitempty"`
}

TimeV1 struct for TimeV1

func NewTimeV1 ¶

func NewTimeV1() *TimeV1

NewTimeV1 instantiates a new TimeV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimeV1WithDefaults ¶

func NewTimeV1WithDefaults() *TimeV1

NewTimeV1WithDefaults instantiates a new TimeV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimeV1) GetAsRfc3339 ¶

func (o *TimeV1) GetAsRfc3339() time.Time

GetAsRfc3339 returns the AsRfc3339 field value if set, zero value otherwise.

func (*TimeV1) GetAsRfc3339Ok ¶

func (o *TimeV1) GetAsRfc3339Ok() (*time.Time, bool)

GetAsRfc3339Ok returns a tuple with the AsRfc3339 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimeV1) GetAsString ¶

func (o *TimeV1) GetAsString() string

GetAsString returns the AsString field value if set, zero value otherwise.

func (*TimeV1) GetAsStringOk ¶

func (o *TimeV1) GetAsStringOk() (*string, bool)

GetAsStringOk returns a tuple with the AsString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimeV1) GetTimestamp ¶

func (o *TimeV1) GetTimestamp() int64

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*TimeV1) GetTimestampOk ¶

func (o *TimeV1) GetTimestampOk() (*int64, bool)

GetTimestampOk returns a tuple with the Timestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimeV1) HasAsRfc3339 ¶

func (o *TimeV1) HasAsRfc3339() bool

HasAsRfc3339 returns a boolean if a field has been set.

func (*TimeV1) HasAsString ¶

func (o *TimeV1) HasAsString() bool

HasAsString returns a boolean if a field has been set.

func (*TimeV1) HasTimestamp ¶

func (o *TimeV1) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (TimeV1) MarshalJSON ¶

func (o TimeV1) MarshalJSON() ([]byte, error)

func (*TimeV1) SetAsRfc3339 ¶

func (o *TimeV1) SetAsRfc3339(v time.Time)

SetAsRfc3339 gets a reference to the given time.Time and assigns it to the AsRfc3339 field.

func (*TimeV1) SetAsString ¶

func (o *TimeV1) SetAsString(v string)

SetAsString gets a reference to the given string and assigns it to the AsString field.

func (*TimeV1) SetTimestamp ¶

func (o *TimeV1) SetTimestamp(v int64)

SetTimestamp gets a reference to the given int64 and assigns it to the Timestamp field.

func (TimeV1) ToMap ¶

func (o TimeV1) ToMap() (map[string]interface{}, error)

type UserChangeRequestModelUpdateV1 ¶

type UserChangeRequestModelUpdateV1 struct {
	Body     *string `json:"body,omitempty"`
	Archived *bool   `json:"archived,omitempty"`
}

UserChangeRequestModelUpdateV1 struct for UserChangeRequestModelUpdateV1

func NewUserChangeRequestModelUpdateV1 ¶

func NewUserChangeRequestModelUpdateV1() *UserChangeRequestModelUpdateV1

NewUserChangeRequestModelUpdateV1 instantiates a new UserChangeRequestModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserChangeRequestModelUpdateV1WithDefaults ¶

func NewUserChangeRequestModelUpdateV1WithDefaults() *UserChangeRequestModelUpdateV1

NewUserChangeRequestModelUpdateV1WithDefaults instantiates a new UserChangeRequestModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserChangeRequestModelUpdateV1) GetArchived ¶

func (o *UserChangeRequestModelUpdateV1) GetArchived() bool

GetArchived returns the Archived field value if set, zero value otherwise.

func (*UserChangeRequestModelUpdateV1) GetArchivedOk ¶

func (o *UserChangeRequestModelUpdateV1) GetArchivedOk() (*bool, bool)

GetArchivedOk returns a tuple with the Archived field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserChangeRequestModelUpdateV1) GetBody ¶

GetBody returns the Body field value if set, zero value otherwise.

func (*UserChangeRequestModelUpdateV1) GetBodyOk ¶

func (o *UserChangeRequestModelUpdateV1) GetBodyOk() (*string, bool)

GetBodyOk returns a tuple with the Body field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserChangeRequestModelUpdateV1) HasArchived ¶

func (o *UserChangeRequestModelUpdateV1) HasArchived() bool

HasArchived returns a boolean if a field has been set.

func (*UserChangeRequestModelUpdateV1) HasBody ¶

func (o *UserChangeRequestModelUpdateV1) HasBody() bool

HasBody returns a boolean if a field has been set.

func (UserChangeRequestModelUpdateV1) MarshalJSON ¶

func (o UserChangeRequestModelUpdateV1) MarshalJSON() ([]byte, error)

func (*UserChangeRequestModelUpdateV1) SetArchived ¶

func (o *UserChangeRequestModelUpdateV1) SetArchived(v bool)

SetArchived gets a reference to the given bool and assigns it to the Archived field.

func (*UserChangeRequestModelUpdateV1) SetBody ¶

func (o *UserChangeRequestModelUpdateV1) SetBody(v string)

SetBody gets a reference to the given string and assigns it to the Body field.

func (UserChangeRequestModelUpdateV1) ToMap ¶

func (o UserChangeRequestModelUpdateV1) ToMap() (map[string]interface{}, error)

type UserChangeRequestModelV1 ¶

type UserChangeRequestModelV1 struct {
	Id        *int64             `json:"id,omitempty"`
	Body      *string            `json:"body,omitempty"`
	AddedBy   *UserModelSearchV1 `json:"added_by,omitempty"`
	TimeAdded *TimeV1            `json:"time_added,omitempty"`
}

UserChangeRequestModelV1 struct for UserChangeRequestModelV1

func NewUserChangeRequestModelV1 ¶

func NewUserChangeRequestModelV1() *UserChangeRequestModelV1

NewUserChangeRequestModelV1 instantiates a new UserChangeRequestModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserChangeRequestModelV1WithDefaults ¶

func NewUserChangeRequestModelV1WithDefaults() *UserChangeRequestModelV1

NewUserChangeRequestModelV1WithDefaults instantiates a new UserChangeRequestModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserChangeRequestModelV1) GetAddedBy ¶

GetAddedBy returns the AddedBy field value if set, zero value otherwise.

func (*UserChangeRequestModelV1) GetAddedByOk ¶

func (o *UserChangeRequestModelV1) GetAddedByOk() (*UserModelSearchV1, bool)

GetAddedByOk returns a tuple with the AddedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserChangeRequestModelV1) GetBody ¶

func (o *UserChangeRequestModelV1) GetBody() string

GetBody returns the Body field value if set, zero value otherwise.

func (*UserChangeRequestModelV1) GetBodyOk ¶

func (o *UserChangeRequestModelV1) GetBodyOk() (*string, bool)

GetBodyOk returns a tuple with the Body field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserChangeRequestModelV1) GetId ¶

func (o *UserChangeRequestModelV1) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*UserChangeRequestModelV1) GetIdOk ¶

func (o *UserChangeRequestModelV1) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserChangeRequestModelV1) GetTimeAdded ¶

func (o *UserChangeRequestModelV1) GetTimeAdded() TimeV1

GetTimeAdded returns the TimeAdded field value if set, zero value otherwise.

func (*UserChangeRequestModelV1) GetTimeAddedOk ¶

func (o *UserChangeRequestModelV1) GetTimeAddedOk() (*TimeV1, bool)

GetTimeAddedOk returns a tuple with the TimeAdded field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserChangeRequestModelV1) HasAddedBy ¶

func (o *UserChangeRequestModelV1) HasAddedBy() bool

HasAddedBy returns a boolean if a field has been set.

func (*UserChangeRequestModelV1) HasBody ¶

func (o *UserChangeRequestModelV1) HasBody() bool

HasBody returns a boolean if a field has been set.

func (*UserChangeRequestModelV1) HasId ¶

func (o *UserChangeRequestModelV1) HasId() bool

HasId returns a boolean if a field has been set.

func (*UserChangeRequestModelV1) HasTimeAdded ¶

func (o *UserChangeRequestModelV1) HasTimeAdded() bool

HasTimeAdded returns a boolean if a field has been set.

func (UserChangeRequestModelV1) MarshalJSON ¶

func (o UserChangeRequestModelV1) MarshalJSON() ([]byte, error)

func (*UserChangeRequestModelV1) SetAddedBy ¶

SetAddedBy gets a reference to the given UserModelSearchV1 and assigns it to the AddedBy field.

func (*UserChangeRequestModelV1) SetBody ¶

func (o *UserChangeRequestModelV1) SetBody(v string)

SetBody gets a reference to the given string and assigns it to the Body field.

func (*UserChangeRequestModelV1) SetId ¶

func (o *UserChangeRequestModelV1) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*UserChangeRequestModelV1) SetTimeAdded ¶

func (o *UserChangeRequestModelV1) SetTimeAdded(v TimeV1)

SetTimeAdded gets a reference to the given TimeV1 and assigns it to the TimeAdded field.

func (UserChangeRequestModelV1) ToMap ¶

func (o UserChangeRequestModelV1) ToMap() (map[string]interface{}, error)

type UserChangeRequestSearchResponseV1 ¶

type UserChangeRequestSearchResponseV1 struct {
	TotalHits *int64                                     `json:"total_hits,omitempty"`
	Page      *int64                                     `json:"page,omitempty"`
	PerPage   *int64                                     `json:"per_page,omitempty"`
	Results   []UserChangeRequestSearchResponseV1Results `json:"results,omitempty"`
}

UserChangeRequestSearchResponseV1 struct for UserChangeRequestSearchResponseV1

func NewUserChangeRequestSearchResponseV1 ¶

func NewUserChangeRequestSearchResponseV1() *UserChangeRequestSearchResponseV1

NewUserChangeRequestSearchResponseV1 instantiates a new UserChangeRequestSearchResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserChangeRequestSearchResponseV1WithDefaults ¶

func NewUserChangeRequestSearchResponseV1WithDefaults() *UserChangeRequestSearchResponseV1

NewUserChangeRequestSearchResponseV1WithDefaults instantiates a new UserChangeRequestSearchResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserChangeRequestSearchResponseV1) GetPage ¶

GetPage returns the Page field value if set, zero value otherwise.

func (*UserChangeRequestSearchResponseV1) GetPageOk ¶

func (o *UserChangeRequestSearchResponseV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserChangeRequestSearchResponseV1) GetPerPage ¶

func (o *UserChangeRequestSearchResponseV1) GetPerPage() int64

GetPerPage returns the PerPage field value if set, zero value otherwise.

func (*UserChangeRequestSearchResponseV1) GetPerPageOk ¶

func (o *UserChangeRequestSearchResponseV1) GetPerPageOk() (*int64, bool)

GetPerPageOk returns a tuple with the PerPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserChangeRequestSearchResponseV1) GetResults ¶

GetResults returns the Results field value if set, zero value otherwise.

func (*UserChangeRequestSearchResponseV1) GetResultsOk ¶

GetResultsOk returns a tuple with the Results field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserChangeRequestSearchResponseV1) GetTotalHits ¶

func (o *UserChangeRequestSearchResponseV1) GetTotalHits() int64

GetTotalHits returns the TotalHits field value if set, zero value otherwise.

func (*UserChangeRequestSearchResponseV1) GetTotalHitsOk ¶

func (o *UserChangeRequestSearchResponseV1) GetTotalHitsOk() (*int64, bool)

GetTotalHitsOk returns a tuple with the TotalHits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserChangeRequestSearchResponseV1) HasPage ¶

HasPage returns a boolean if a field has been set.

func (*UserChangeRequestSearchResponseV1) HasPerPage ¶

func (o *UserChangeRequestSearchResponseV1) HasPerPage() bool

HasPerPage returns a boolean if a field has been set.

func (*UserChangeRequestSearchResponseV1) HasResults ¶

func (o *UserChangeRequestSearchResponseV1) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*UserChangeRequestSearchResponseV1) HasTotalHits ¶

func (o *UserChangeRequestSearchResponseV1) HasTotalHits() bool

HasTotalHits returns a boolean if a field has been set.

func (UserChangeRequestSearchResponseV1) MarshalJSON ¶

func (o UserChangeRequestSearchResponseV1) MarshalJSON() ([]byte, error)

func (*UserChangeRequestSearchResponseV1) SetPage ¶

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*UserChangeRequestSearchResponseV1) SetPerPage ¶

func (o *UserChangeRequestSearchResponseV1) SetPerPage(v int64)

SetPerPage gets a reference to the given int64 and assigns it to the PerPage field.

func (*UserChangeRequestSearchResponseV1) SetResults ¶

SetResults gets a reference to the given []UserChangeRequestSearchResponseV1Results and assigns it to the Results field.

func (*UserChangeRequestSearchResponseV1) SetTotalHits ¶

func (o *UserChangeRequestSearchResponseV1) SetTotalHits(v int64)

SetTotalHits gets a reference to the given int64 and assigns it to the TotalHits field.

func (UserChangeRequestSearchResponseV1) ToMap ¶

func (o UserChangeRequestSearchResponseV1) ToMap() (map[string]interface{}, error)

type UserChangeRequestSearchResponseV1Results ¶

type UserChangeRequestSearchResponseV1Results struct {
	Record *UserChangeRequestModelV1 `json:"record,omitempty"`
}

UserChangeRequestSearchResponseV1Results struct for UserChangeRequestSearchResponseV1Results

func NewUserChangeRequestSearchResponseV1Results ¶

func NewUserChangeRequestSearchResponseV1Results() *UserChangeRequestSearchResponseV1Results

NewUserChangeRequestSearchResponseV1Results instantiates a new UserChangeRequestSearchResponseV1Results object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserChangeRequestSearchResponseV1ResultsWithDefaults ¶

func NewUserChangeRequestSearchResponseV1ResultsWithDefaults() *UserChangeRequestSearchResponseV1Results

NewUserChangeRequestSearchResponseV1ResultsWithDefaults instantiates a new UserChangeRequestSearchResponseV1Results object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserChangeRequestSearchResponseV1Results) GetRecord ¶

GetRecord returns the Record field value if set, zero value otherwise.

func (*UserChangeRequestSearchResponseV1Results) GetRecordOk ¶

GetRecordOk returns a tuple with the Record field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserChangeRequestSearchResponseV1Results) HasRecord ¶

HasRecord returns a boolean if a field has been set.

func (UserChangeRequestSearchResponseV1Results) MarshalJSON ¶

func (*UserChangeRequestSearchResponseV1Results) SetRecord ¶

SetRecord gets a reference to the given UserChangeRequestModelV1 and assigns it to the Record field.

func (UserChangeRequestSearchResponseV1Results) ToMap ¶

func (o UserChangeRequestSearchResponseV1Results) ToMap() (map[string]interface{}, error)

type UserGenreFilterModelV1 ¶

type UserGenreFilterModelV1 struct {
	GenreId   *int64  `json:"genre_id,omitempty"`
	GenreName *string `json:"genre_name,omitempty"`
}

UserGenreFilterModelV1 struct for UserGenreFilterModelV1

func NewUserGenreFilterModelV1 ¶

func NewUserGenreFilterModelV1() *UserGenreFilterModelV1

NewUserGenreFilterModelV1 instantiates a new UserGenreFilterModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserGenreFilterModelV1WithDefaults ¶

func NewUserGenreFilterModelV1WithDefaults() *UserGenreFilterModelV1

NewUserGenreFilterModelV1WithDefaults instantiates a new UserGenreFilterModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserGenreFilterModelV1) GetGenreId ¶

func (o *UserGenreFilterModelV1) GetGenreId() int64

GetGenreId returns the GenreId field value if set, zero value otherwise.

func (*UserGenreFilterModelV1) GetGenreIdOk ¶

func (o *UserGenreFilterModelV1) GetGenreIdOk() (*int64, bool)

GetGenreIdOk returns a tuple with the GenreId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserGenreFilterModelV1) GetGenreName ¶

func (o *UserGenreFilterModelV1) GetGenreName() string

GetGenreName returns the GenreName field value if set, zero value otherwise.

func (*UserGenreFilterModelV1) GetGenreNameOk ¶

func (o *UserGenreFilterModelV1) GetGenreNameOk() (*string, bool)

GetGenreNameOk returns a tuple with the GenreName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserGenreFilterModelV1) HasGenreId ¶

func (o *UserGenreFilterModelV1) HasGenreId() bool

HasGenreId returns a boolean if a field has been set.

func (*UserGenreFilterModelV1) HasGenreName ¶

func (o *UserGenreFilterModelV1) HasGenreName() bool

HasGenreName returns a boolean if a field has been set.

func (UserGenreFilterModelV1) MarshalJSON ¶

func (o UserGenreFilterModelV1) MarshalJSON() ([]byte, error)

func (*UserGenreFilterModelV1) SetGenreId ¶

func (o *UserGenreFilterModelV1) SetGenreId(v int64)

SetGenreId gets a reference to the given int64 and assigns it to the GenreId field.

func (*UserGenreFilterModelV1) SetGenreName ¶

func (o *UserGenreFilterModelV1) SetGenreName(v string)

SetGenreName gets a reference to the given string and assigns it to the GenreName field.

func (UserGenreFilterModelV1) ToMap ¶

func (o UserGenreFilterModelV1) ToMap() (map[string]interface{}, error)

type UserGenreHighlightModelUpdateV1 ¶

type UserGenreHighlightModelUpdateV1 struct {
	Color *string `json:"color,omitempty"`
}

UserGenreHighlightModelUpdateV1 struct for UserGenreHighlightModelUpdateV1

func NewUserGenreHighlightModelUpdateV1 ¶

func NewUserGenreHighlightModelUpdateV1() *UserGenreHighlightModelUpdateV1

NewUserGenreHighlightModelUpdateV1 instantiates a new UserGenreHighlightModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserGenreHighlightModelUpdateV1WithDefaults ¶

func NewUserGenreHighlightModelUpdateV1WithDefaults() *UserGenreHighlightModelUpdateV1

NewUserGenreHighlightModelUpdateV1WithDefaults instantiates a new UserGenreHighlightModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserGenreHighlightModelUpdateV1) GetColor ¶

GetColor returns the Color field value if set, zero value otherwise.

func (*UserGenreHighlightModelUpdateV1) GetColorOk ¶

func (o *UserGenreHighlightModelUpdateV1) GetColorOk() (*string, bool)

GetColorOk returns a tuple with the Color field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserGenreHighlightModelUpdateV1) HasColor ¶

func (o *UserGenreHighlightModelUpdateV1) HasColor() bool

HasColor returns a boolean if a field has been set.

func (UserGenreHighlightModelUpdateV1) MarshalJSON ¶

func (o UserGenreHighlightModelUpdateV1) MarshalJSON() ([]byte, error)

func (*UserGenreHighlightModelUpdateV1) SetColor ¶

func (o *UserGenreHighlightModelUpdateV1) SetColor(v string)

SetColor gets a reference to the given string and assigns it to the Color field.

func (UserGenreHighlightModelUpdateV1) ToMap ¶

func (o UserGenreHighlightModelUpdateV1) ToMap() (map[string]interface{}, error)

type UserGenreHighlightModelV1 ¶

type UserGenreHighlightModelV1 struct {
	GenreId   *int64  `json:"genre_id,omitempty"`
	GenreName *string `json:"genre_name,omitempty"`
	Color     *string `json:"color,omitempty"`
}

UserGenreHighlightModelV1 struct for UserGenreHighlightModelV1

func NewUserGenreHighlightModelV1 ¶

func NewUserGenreHighlightModelV1() *UserGenreHighlightModelV1

NewUserGenreHighlightModelV1 instantiates a new UserGenreHighlightModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserGenreHighlightModelV1WithDefaults ¶

func NewUserGenreHighlightModelV1WithDefaults() *UserGenreHighlightModelV1

NewUserGenreHighlightModelV1WithDefaults instantiates a new UserGenreHighlightModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserGenreHighlightModelV1) GetColor ¶

func (o *UserGenreHighlightModelV1) GetColor() string

GetColor returns the Color field value if set, zero value otherwise.

func (*UserGenreHighlightModelV1) GetColorOk ¶

func (o *UserGenreHighlightModelV1) GetColorOk() (*string, bool)

GetColorOk returns a tuple with the Color field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserGenreHighlightModelV1) GetGenreId ¶

func (o *UserGenreHighlightModelV1) GetGenreId() int64

GetGenreId returns the GenreId field value if set, zero value otherwise.

func (*UserGenreHighlightModelV1) GetGenreIdOk ¶

func (o *UserGenreHighlightModelV1) GetGenreIdOk() (*int64, bool)

GetGenreIdOk returns a tuple with the GenreId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserGenreHighlightModelV1) GetGenreName ¶

func (o *UserGenreHighlightModelV1) GetGenreName() string

GetGenreName returns the GenreName field value if set, zero value otherwise.

func (*UserGenreHighlightModelV1) GetGenreNameOk ¶

func (o *UserGenreHighlightModelV1) GetGenreNameOk() (*string, bool)

GetGenreNameOk returns a tuple with the GenreName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserGenreHighlightModelV1) HasColor ¶

func (o *UserGenreHighlightModelV1) HasColor() bool

HasColor returns a boolean if a field has been set.

func (*UserGenreHighlightModelV1) HasGenreId ¶

func (o *UserGenreHighlightModelV1) HasGenreId() bool

HasGenreId returns a boolean if a field has been set.

func (*UserGenreHighlightModelV1) HasGenreName ¶

func (o *UserGenreHighlightModelV1) HasGenreName() bool

HasGenreName returns a boolean if a field has been set.

func (UserGenreHighlightModelV1) MarshalJSON ¶

func (o UserGenreHighlightModelV1) MarshalJSON() ([]byte, error)

func (*UserGenreHighlightModelV1) SetColor ¶

func (o *UserGenreHighlightModelV1) SetColor(v string)

SetColor gets a reference to the given string and assigns it to the Color field.

func (*UserGenreHighlightModelV1) SetGenreId ¶

func (o *UserGenreHighlightModelV1) SetGenreId(v int64)

SetGenreId gets a reference to the given int64 and assigns it to the GenreId field.

func (*UserGenreHighlightModelV1) SetGenreName ¶

func (o *UserGenreHighlightModelV1) SetGenreName(v string)

SetGenreName gets a reference to the given string and assigns it to the GenreName field.

func (UserGenreHighlightModelV1) ToMap ¶

func (o UserGenreHighlightModelV1) ToMap() (map[string]interface{}, error)

type UserGroupFilterModelV1 ¶

type UserGroupFilterModelV1 struct {
	GroupId   *int64  `json:"group_id,omitempty"`
	GroupName *string `json:"group_name,omitempty"`
}

UserGroupFilterModelV1 struct for UserGroupFilterModelV1

func NewUserGroupFilterModelV1 ¶

func NewUserGroupFilterModelV1() *UserGroupFilterModelV1

NewUserGroupFilterModelV1 instantiates a new UserGroupFilterModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserGroupFilterModelV1WithDefaults ¶

func NewUserGroupFilterModelV1WithDefaults() *UserGroupFilterModelV1

NewUserGroupFilterModelV1WithDefaults instantiates a new UserGroupFilterModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserGroupFilterModelV1) GetGroupId ¶

func (o *UserGroupFilterModelV1) GetGroupId() int64

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*UserGroupFilterModelV1) GetGroupIdOk ¶

func (o *UserGroupFilterModelV1) GetGroupIdOk() (*int64, bool)

GetGroupIdOk returns a tuple with the GroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserGroupFilterModelV1) GetGroupName ¶

func (o *UserGroupFilterModelV1) GetGroupName() string

GetGroupName returns the GroupName field value if set, zero value otherwise.

func (*UserGroupFilterModelV1) GetGroupNameOk ¶

func (o *UserGroupFilterModelV1) GetGroupNameOk() (*string, bool)

GetGroupNameOk returns a tuple with the GroupName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserGroupFilterModelV1) HasGroupId ¶

func (o *UserGroupFilterModelV1) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*UserGroupFilterModelV1) HasGroupName ¶

func (o *UserGroupFilterModelV1) HasGroupName() bool

HasGroupName returns a boolean if a field has been set.

func (UserGroupFilterModelV1) MarshalJSON ¶

func (o UserGroupFilterModelV1) MarshalJSON() ([]byte, error)

func (*UserGroupFilterModelV1) SetGroupId ¶

func (o *UserGroupFilterModelV1) SetGroupId(v int64)

SetGroupId gets a reference to the given int64 and assigns it to the GroupId field.

func (*UserGroupFilterModelV1) SetGroupName ¶

func (o *UserGroupFilterModelV1) SetGroupName(v string)

SetGroupName gets a reference to the given string and assigns it to the GroupName field.

func (UserGroupFilterModelV1) ToMap ¶

func (o UserGroupFilterModelV1) ToMap() (map[string]interface{}, error)

type UserGroupModelUpdateV1 ¶

type UserGroupModelUpdateV1 struct {
	Name        string `json:"name"`
	Description string `json:"description"`
}

UserGroupModelUpdateV1 struct for UserGroupModelUpdateV1

func NewUserGroupModelUpdateV1 ¶

func NewUserGroupModelUpdateV1(name string, description string) *UserGroupModelUpdateV1

NewUserGroupModelUpdateV1 instantiates a new UserGroupModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserGroupModelUpdateV1WithDefaults ¶

func NewUserGroupModelUpdateV1WithDefaults() *UserGroupModelUpdateV1

NewUserGroupModelUpdateV1WithDefaults instantiates a new UserGroupModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserGroupModelUpdateV1) GetDescription ¶

func (o *UserGroupModelUpdateV1) GetDescription() string

GetDescription returns the Description field value

func (*UserGroupModelUpdateV1) GetDescriptionOk ¶

func (o *UserGroupModelUpdateV1) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value and a boolean to check if the value has been set.

func (*UserGroupModelUpdateV1) GetName ¶

func (o *UserGroupModelUpdateV1) GetName() string

GetName returns the Name field value

func (*UserGroupModelUpdateV1) GetNameOk ¶

func (o *UserGroupModelUpdateV1) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (UserGroupModelUpdateV1) MarshalJSON ¶

func (o UserGroupModelUpdateV1) MarshalJSON() ([]byte, error)

func (*UserGroupModelUpdateV1) SetDescription ¶

func (o *UserGroupModelUpdateV1) SetDescription(v string)

SetDescription sets field value

func (*UserGroupModelUpdateV1) SetName ¶

func (o *UserGroupModelUpdateV1) SetName(v string)

SetName sets field value

func (UserGroupModelUpdateV1) ToMap ¶

func (o UserGroupModelUpdateV1) ToMap() (map[string]interface{}, error)

type UserGroupModelV1 ¶

type UserGroupModelV1 struct {
	Id          *string `json:"id,omitempty"`
	Name        string  `json:"name"`
	Description string  `json:"description"`
}

UserGroupModelV1 struct for UserGroupModelV1

func NewUserGroupModelV1 ¶

func NewUserGroupModelV1(name string, description string) *UserGroupModelV1

NewUserGroupModelV1 instantiates a new UserGroupModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserGroupModelV1WithDefaults ¶

func NewUserGroupModelV1WithDefaults() *UserGroupModelV1

NewUserGroupModelV1WithDefaults instantiates a new UserGroupModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserGroupModelV1) GetDescription ¶

func (o *UserGroupModelV1) GetDescription() string

GetDescription returns the Description field value

func (*UserGroupModelV1) GetDescriptionOk ¶

func (o *UserGroupModelV1) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value and a boolean to check if the value has been set.

func (*UserGroupModelV1) GetId ¶

func (o *UserGroupModelV1) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*UserGroupModelV1) GetIdOk ¶

func (o *UserGroupModelV1) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserGroupModelV1) GetName ¶

func (o *UserGroupModelV1) GetName() string

GetName returns the Name field value

func (*UserGroupModelV1) GetNameOk ¶

func (o *UserGroupModelV1) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*UserGroupModelV1) HasId ¶

func (o *UserGroupModelV1) HasId() bool

HasId returns a boolean if a field has been set.

func (UserGroupModelV1) MarshalJSON ¶

func (o UserGroupModelV1) MarshalJSON() ([]byte, error)

func (*UserGroupModelV1) SetDescription ¶

func (o *UserGroupModelV1) SetDescription(v string)

SetDescription sets field value

func (*UserGroupModelV1) SetId ¶

func (o *UserGroupModelV1) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*UserGroupModelV1) SetName ¶

func (o *UserGroupModelV1) SetName(v string)

SetName sets field value

func (UserGroupModelV1) ToMap ¶

func (o UserGroupModelV1) ToMap() (map[string]interface{}, error)

type UserModelRegisterV1 ¶

type UserModelRegisterV1 struct {
	Username *string `json:"username,omitempty"`
	Email    *string `json:"email,omitempty"`
	Password *string `json:"password,omitempty"`
}

UserModelRegisterV1 struct for UserModelRegisterV1

func NewUserModelRegisterV1 ¶

func NewUserModelRegisterV1() *UserModelRegisterV1

NewUserModelRegisterV1 instantiates a new UserModelRegisterV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserModelRegisterV1WithDefaults ¶

func NewUserModelRegisterV1WithDefaults() *UserModelRegisterV1

NewUserModelRegisterV1WithDefaults instantiates a new UserModelRegisterV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserModelRegisterV1) GetEmail ¶

func (o *UserModelRegisterV1) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*UserModelRegisterV1) GetEmailOk ¶

func (o *UserModelRegisterV1) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelRegisterV1) GetPassword ¶

func (o *UserModelRegisterV1) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*UserModelRegisterV1) GetPasswordOk ¶

func (o *UserModelRegisterV1) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelRegisterV1) GetUsername ¶

func (o *UserModelRegisterV1) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*UserModelRegisterV1) GetUsernameOk ¶

func (o *UserModelRegisterV1) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelRegisterV1) HasEmail ¶

func (o *UserModelRegisterV1) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*UserModelRegisterV1) HasPassword ¶

func (o *UserModelRegisterV1) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*UserModelRegisterV1) HasUsername ¶

func (o *UserModelRegisterV1) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (UserModelRegisterV1) MarshalJSON ¶

func (o UserModelRegisterV1) MarshalJSON() ([]byte, error)

func (*UserModelRegisterV1) SetEmail ¶

func (o *UserModelRegisterV1) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*UserModelRegisterV1) SetPassword ¶

func (o *UserModelRegisterV1) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*UserModelRegisterV1) SetUsername ¶

func (o *UserModelRegisterV1) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (UserModelRegisterV1) ToMap ¶

func (o UserModelRegisterV1) ToMap() (map[string]interface{}, error)

type UserModelSearchV1 ¶

type UserModelSearchV1 struct {
	UserId        *int64                    `json:"user_id,omitempty"`
	Username      *string                   `json:"username,omitempty"`
	Url           *string                   `json:"url,omitempty"`
	Avatar        *AvatarModelSearchV1      `json:"avatar,omitempty"`
	TimeJoined    *TimeV1                   `json:"time_joined,omitempty"`
	Signature     *string                   `json:"signature,omitempty"`
	ForumTitle    *string                   `json:"forum_title,omitempty"`
	FoldingAtHome *bool                     `json:"folding_at_home,omitempty"`
	Profile       *UserModelSearchV1Profile `json:"profile,omitempty"`
	Stats         *UserModelSearchV1Stats   `json:"stats,omitempty"`
	UserGroup     *string                   `json:"user_group,omitempty"`
	UserGroupName *string                   `json:"user_group_name,omitempty"`
}

UserModelSearchV1 struct for UserModelSearchV1

func NewUserModelSearchV1 ¶

func NewUserModelSearchV1() *UserModelSearchV1

NewUserModelSearchV1 instantiates a new UserModelSearchV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserModelSearchV1WithDefaults ¶

func NewUserModelSearchV1WithDefaults() *UserModelSearchV1

NewUserModelSearchV1WithDefaults instantiates a new UserModelSearchV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserModelSearchV1) GetAvatar ¶

func (o *UserModelSearchV1) GetAvatar() AvatarModelSearchV1

GetAvatar returns the Avatar field value if set, zero value otherwise.

func (*UserModelSearchV1) GetAvatarOk ¶

func (o *UserModelSearchV1) GetAvatarOk() (*AvatarModelSearchV1, bool)

GetAvatarOk returns a tuple with the Avatar field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelSearchV1) GetFoldingAtHome ¶

func (o *UserModelSearchV1) GetFoldingAtHome() bool

GetFoldingAtHome returns the FoldingAtHome field value if set, zero value otherwise.

func (*UserModelSearchV1) GetFoldingAtHomeOk ¶

func (o *UserModelSearchV1) GetFoldingAtHomeOk() (*bool, bool)

GetFoldingAtHomeOk returns a tuple with the FoldingAtHome field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelSearchV1) GetForumTitle ¶

func (o *UserModelSearchV1) GetForumTitle() string

GetForumTitle returns the ForumTitle field value if set, zero value otherwise.

func (*UserModelSearchV1) GetForumTitleOk ¶

func (o *UserModelSearchV1) GetForumTitleOk() (*string, bool)

GetForumTitleOk returns a tuple with the ForumTitle field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelSearchV1) GetProfile ¶

GetProfile returns the Profile field value if set, zero value otherwise.

func (*UserModelSearchV1) GetProfileOk ¶

func (o *UserModelSearchV1) GetProfileOk() (*UserModelSearchV1Profile, bool)

GetProfileOk returns a tuple with the Profile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelSearchV1) GetSignature ¶

func (o *UserModelSearchV1) GetSignature() string

GetSignature returns the Signature field value if set, zero value otherwise.

func (*UserModelSearchV1) GetSignatureOk ¶

func (o *UserModelSearchV1) GetSignatureOk() (*string, bool)

GetSignatureOk returns a tuple with the Signature field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelSearchV1) GetStats ¶

GetStats returns the Stats field value if set, zero value otherwise.

func (*UserModelSearchV1) GetStatsOk ¶

func (o *UserModelSearchV1) GetStatsOk() (*UserModelSearchV1Stats, bool)

GetStatsOk returns a tuple with the Stats field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelSearchV1) GetTimeJoined ¶

func (o *UserModelSearchV1) GetTimeJoined() TimeV1

GetTimeJoined returns the TimeJoined field value if set, zero value otherwise.

func (*UserModelSearchV1) GetTimeJoinedOk ¶

func (o *UserModelSearchV1) GetTimeJoinedOk() (*TimeV1, bool)

GetTimeJoinedOk returns a tuple with the TimeJoined field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelSearchV1) GetUrl ¶

func (o *UserModelSearchV1) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*UserModelSearchV1) GetUrlOk ¶

func (o *UserModelSearchV1) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelSearchV1) GetUserGroup ¶

func (o *UserModelSearchV1) GetUserGroup() string

GetUserGroup returns the UserGroup field value if set, zero value otherwise.

func (*UserModelSearchV1) GetUserGroupName ¶

func (o *UserModelSearchV1) GetUserGroupName() string

GetUserGroupName returns the UserGroupName field value if set, zero value otherwise.

func (*UserModelSearchV1) GetUserGroupNameOk ¶

func (o *UserModelSearchV1) GetUserGroupNameOk() (*string, bool)

GetUserGroupNameOk returns a tuple with the UserGroupName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelSearchV1) GetUserGroupOk ¶

func (o *UserModelSearchV1) GetUserGroupOk() (*string, bool)

GetUserGroupOk returns a tuple with the UserGroup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelSearchV1) GetUserId ¶

func (o *UserModelSearchV1) GetUserId() int64

GetUserId returns the UserId field value if set, zero value otherwise.

func (*UserModelSearchV1) GetUserIdOk ¶

func (o *UserModelSearchV1) GetUserIdOk() (*int64, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelSearchV1) GetUsername ¶

func (o *UserModelSearchV1) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*UserModelSearchV1) GetUsernameOk ¶

func (o *UserModelSearchV1) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelSearchV1) HasAvatar ¶

func (o *UserModelSearchV1) HasAvatar() bool

HasAvatar returns a boolean if a field has been set.

func (*UserModelSearchV1) HasFoldingAtHome ¶

func (o *UserModelSearchV1) HasFoldingAtHome() bool

HasFoldingAtHome returns a boolean if a field has been set.

func (*UserModelSearchV1) HasForumTitle ¶

func (o *UserModelSearchV1) HasForumTitle() bool

HasForumTitle returns a boolean if a field has been set.

func (*UserModelSearchV1) HasProfile ¶

func (o *UserModelSearchV1) HasProfile() bool

HasProfile returns a boolean if a field has been set.

func (*UserModelSearchV1) HasSignature ¶

func (o *UserModelSearchV1) HasSignature() bool

HasSignature returns a boolean if a field has been set.

func (*UserModelSearchV1) HasStats ¶

func (o *UserModelSearchV1) HasStats() bool

HasStats returns a boolean if a field has been set.

func (*UserModelSearchV1) HasTimeJoined ¶

func (o *UserModelSearchV1) HasTimeJoined() bool

HasTimeJoined returns a boolean if a field has been set.

func (*UserModelSearchV1) HasUrl ¶

func (o *UserModelSearchV1) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (*UserModelSearchV1) HasUserGroup ¶

func (o *UserModelSearchV1) HasUserGroup() bool

HasUserGroup returns a boolean if a field has been set.

func (*UserModelSearchV1) HasUserGroupName ¶

func (o *UserModelSearchV1) HasUserGroupName() bool

HasUserGroupName returns a boolean if a field has been set.

func (*UserModelSearchV1) HasUserId ¶

func (o *UserModelSearchV1) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (*UserModelSearchV1) HasUsername ¶

func (o *UserModelSearchV1) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (UserModelSearchV1) MarshalJSON ¶

func (o UserModelSearchV1) MarshalJSON() ([]byte, error)

func (*UserModelSearchV1) SetAvatar ¶

func (o *UserModelSearchV1) SetAvatar(v AvatarModelSearchV1)

SetAvatar gets a reference to the given AvatarModelSearchV1 and assigns it to the Avatar field.

func (*UserModelSearchV1) SetFoldingAtHome ¶

func (o *UserModelSearchV1) SetFoldingAtHome(v bool)

SetFoldingAtHome gets a reference to the given bool and assigns it to the FoldingAtHome field.

func (*UserModelSearchV1) SetForumTitle ¶

func (o *UserModelSearchV1) SetForumTitle(v string)

SetForumTitle gets a reference to the given string and assigns it to the ForumTitle field.

func (*UserModelSearchV1) SetProfile ¶

SetProfile gets a reference to the given UserModelSearchV1Profile and assigns it to the Profile field.

func (*UserModelSearchV1) SetSignature ¶

func (o *UserModelSearchV1) SetSignature(v string)

SetSignature gets a reference to the given string and assigns it to the Signature field.

func (*UserModelSearchV1) SetStats ¶

SetStats gets a reference to the given UserModelSearchV1Stats and assigns it to the Stats field.

func (*UserModelSearchV1) SetTimeJoined ¶

func (o *UserModelSearchV1) SetTimeJoined(v TimeV1)

SetTimeJoined gets a reference to the given TimeV1 and assigns it to the TimeJoined field.

func (*UserModelSearchV1) SetUrl ¶

func (o *UserModelSearchV1) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (*UserModelSearchV1) SetUserGroup ¶

func (o *UserModelSearchV1) SetUserGroup(v string)

SetUserGroup gets a reference to the given string and assigns it to the UserGroup field.

func (*UserModelSearchV1) SetUserGroupName ¶

func (o *UserModelSearchV1) SetUserGroupName(v string)

SetUserGroupName gets a reference to the given string and assigns it to the UserGroupName field.

func (*UserModelSearchV1) SetUserId ¶

func (o *UserModelSearchV1) SetUserId(v int64)

SetUserId gets a reference to the given int64 and assigns it to the UserId field.

func (*UserModelSearchV1) SetUsername ¶

func (o *UserModelSearchV1) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (UserModelSearchV1) ToMap ¶

func (o UserModelSearchV1) ToMap() (map[string]interface{}, error)

type UserModelSearchV1Profile ¶

type UserModelSearchV1Profile struct {
	Upgrade *UserModelSearchV1ProfileUpgrade `json:"upgrade,omitempty"`
}

UserModelSearchV1Profile struct for UserModelSearchV1Profile

func NewUserModelSearchV1Profile ¶

func NewUserModelSearchV1Profile() *UserModelSearchV1Profile

NewUserModelSearchV1Profile instantiates a new UserModelSearchV1Profile object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserModelSearchV1ProfileWithDefaults ¶

func NewUserModelSearchV1ProfileWithDefaults() *UserModelSearchV1Profile

NewUserModelSearchV1ProfileWithDefaults instantiates a new UserModelSearchV1Profile object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserModelSearchV1Profile) GetUpgrade ¶

GetUpgrade returns the Upgrade field value if set, zero value otherwise.

func (*UserModelSearchV1Profile) GetUpgradeOk ¶

GetUpgradeOk returns a tuple with the Upgrade field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelSearchV1Profile) HasUpgrade ¶

func (o *UserModelSearchV1Profile) HasUpgrade() bool

HasUpgrade returns a boolean if a field has been set.

func (UserModelSearchV1Profile) MarshalJSON ¶

func (o UserModelSearchV1Profile) MarshalJSON() ([]byte, error)

func (*UserModelSearchV1Profile) SetUpgrade ¶

SetUpgrade gets a reference to the given UserModelSearchV1ProfileUpgrade and assigns it to the Upgrade field.

func (UserModelSearchV1Profile) ToMap ¶

func (o UserModelSearchV1Profile) ToMap() (map[string]interface{}, error)

type UserModelSearchV1ProfileUpgrade ¶

type UserModelSearchV1ProfileUpgrade struct {
	Requested *bool   `json:"requested,omitempty"`
	Reason    *string `json:"reason,omitempty"`
}

UserModelSearchV1ProfileUpgrade struct for UserModelSearchV1ProfileUpgrade

func NewUserModelSearchV1ProfileUpgrade ¶

func NewUserModelSearchV1ProfileUpgrade() *UserModelSearchV1ProfileUpgrade

NewUserModelSearchV1ProfileUpgrade instantiates a new UserModelSearchV1ProfileUpgrade object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserModelSearchV1ProfileUpgradeWithDefaults ¶

func NewUserModelSearchV1ProfileUpgradeWithDefaults() *UserModelSearchV1ProfileUpgrade

NewUserModelSearchV1ProfileUpgradeWithDefaults instantiates a new UserModelSearchV1ProfileUpgrade object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserModelSearchV1ProfileUpgrade) GetReason ¶

func (o *UserModelSearchV1ProfileUpgrade) GetReason() string

GetReason returns the Reason field value if set, zero value otherwise.

func (*UserModelSearchV1ProfileUpgrade) GetReasonOk ¶

func (o *UserModelSearchV1ProfileUpgrade) GetReasonOk() (*string, bool)

GetReasonOk returns a tuple with the Reason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelSearchV1ProfileUpgrade) GetRequested ¶

func (o *UserModelSearchV1ProfileUpgrade) GetRequested() bool

GetRequested returns the Requested field value if set, zero value otherwise.

func (*UserModelSearchV1ProfileUpgrade) GetRequestedOk ¶

func (o *UserModelSearchV1ProfileUpgrade) GetRequestedOk() (*bool, bool)

GetRequestedOk returns a tuple with the Requested field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelSearchV1ProfileUpgrade) HasReason ¶

func (o *UserModelSearchV1ProfileUpgrade) HasReason() bool

HasReason returns a boolean if a field has been set.

func (*UserModelSearchV1ProfileUpgrade) HasRequested ¶

func (o *UserModelSearchV1ProfileUpgrade) HasRequested() bool

HasRequested returns a boolean if a field has been set.

func (UserModelSearchV1ProfileUpgrade) MarshalJSON ¶

func (o UserModelSearchV1ProfileUpgrade) MarshalJSON() ([]byte, error)

func (*UserModelSearchV1ProfileUpgrade) SetReason ¶

func (o *UserModelSearchV1ProfileUpgrade) SetReason(v string)

SetReason gets a reference to the given string and assigns it to the Reason field.

func (*UserModelSearchV1ProfileUpgrade) SetRequested ¶

func (o *UserModelSearchV1ProfileUpgrade) SetRequested(v bool)

SetRequested gets a reference to the given bool and assigns it to the Requested field.

func (UserModelSearchV1ProfileUpgrade) ToMap ¶

func (o UserModelSearchV1ProfileUpgrade) ToMap() (map[string]interface{}, error)

type UserModelSearchV1Stats ¶

type UserModelSearchV1Stats struct {
	ForumPosts      *int64 `json:"forum_posts,omitempty"`
	AddedAuthors    *int64 `json:"added_authors,omitempty"`
	AddedGroups     *int64 `json:"added_groups,omitempty"`
	AddedPublishers *int64 `json:"added_publishers,omitempty"`
	AddedReleases   *int64 `json:"added_releases,omitempty"`
	AddedSeries     *int64 `json:"added_series,omitempty"`
}

UserModelSearchV1Stats struct for UserModelSearchV1Stats

func NewUserModelSearchV1Stats ¶

func NewUserModelSearchV1Stats() *UserModelSearchV1Stats

NewUserModelSearchV1Stats instantiates a new UserModelSearchV1Stats object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserModelSearchV1StatsWithDefaults ¶

func NewUserModelSearchV1StatsWithDefaults() *UserModelSearchV1Stats

NewUserModelSearchV1StatsWithDefaults instantiates a new UserModelSearchV1Stats object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserModelSearchV1Stats) GetAddedAuthors ¶

func (o *UserModelSearchV1Stats) GetAddedAuthors() int64

GetAddedAuthors returns the AddedAuthors field value if set, zero value otherwise.

func (*UserModelSearchV1Stats) GetAddedAuthorsOk ¶

func (o *UserModelSearchV1Stats) GetAddedAuthorsOk() (*int64, bool)

GetAddedAuthorsOk returns a tuple with the AddedAuthors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelSearchV1Stats) GetAddedGroups ¶

func (o *UserModelSearchV1Stats) GetAddedGroups() int64

GetAddedGroups returns the AddedGroups field value if set, zero value otherwise.

func (*UserModelSearchV1Stats) GetAddedGroupsOk ¶

func (o *UserModelSearchV1Stats) GetAddedGroupsOk() (*int64, bool)

GetAddedGroupsOk returns a tuple with the AddedGroups field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelSearchV1Stats) GetAddedPublishers ¶

func (o *UserModelSearchV1Stats) GetAddedPublishers() int64

GetAddedPublishers returns the AddedPublishers field value if set, zero value otherwise.

func (*UserModelSearchV1Stats) GetAddedPublishersOk ¶

func (o *UserModelSearchV1Stats) GetAddedPublishersOk() (*int64, bool)

GetAddedPublishersOk returns a tuple with the AddedPublishers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelSearchV1Stats) GetAddedReleases ¶

func (o *UserModelSearchV1Stats) GetAddedReleases() int64

GetAddedReleases returns the AddedReleases field value if set, zero value otherwise.

func (*UserModelSearchV1Stats) GetAddedReleasesOk ¶

func (o *UserModelSearchV1Stats) GetAddedReleasesOk() (*int64, bool)

GetAddedReleasesOk returns a tuple with the AddedReleases field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelSearchV1Stats) GetAddedSeries ¶

func (o *UserModelSearchV1Stats) GetAddedSeries() int64

GetAddedSeries returns the AddedSeries field value if set, zero value otherwise.

func (*UserModelSearchV1Stats) GetAddedSeriesOk ¶

func (o *UserModelSearchV1Stats) GetAddedSeriesOk() (*int64, bool)

GetAddedSeriesOk returns a tuple with the AddedSeries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelSearchV1Stats) GetForumPosts ¶

func (o *UserModelSearchV1Stats) GetForumPosts() int64

GetForumPosts returns the ForumPosts field value if set, zero value otherwise.

func (*UserModelSearchV1Stats) GetForumPostsOk ¶

func (o *UserModelSearchV1Stats) GetForumPostsOk() (*int64, bool)

GetForumPostsOk returns a tuple with the ForumPosts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelSearchV1Stats) HasAddedAuthors ¶

func (o *UserModelSearchV1Stats) HasAddedAuthors() bool

HasAddedAuthors returns a boolean if a field has been set.

func (*UserModelSearchV1Stats) HasAddedGroups ¶

func (o *UserModelSearchV1Stats) HasAddedGroups() bool

HasAddedGroups returns a boolean if a field has been set.

func (*UserModelSearchV1Stats) HasAddedPublishers ¶

func (o *UserModelSearchV1Stats) HasAddedPublishers() bool

HasAddedPublishers returns a boolean if a field has been set.

func (*UserModelSearchV1Stats) HasAddedReleases ¶

func (o *UserModelSearchV1Stats) HasAddedReleases() bool

HasAddedReleases returns a boolean if a field has been set.

func (*UserModelSearchV1Stats) HasAddedSeries ¶

func (o *UserModelSearchV1Stats) HasAddedSeries() bool

HasAddedSeries returns a boolean if a field has been set.

func (*UserModelSearchV1Stats) HasForumPosts ¶

func (o *UserModelSearchV1Stats) HasForumPosts() bool

HasForumPosts returns a boolean if a field has been set.

func (UserModelSearchV1Stats) MarshalJSON ¶

func (o UserModelSearchV1Stats) MarshalJSON() ([]byte, error)

func (*UserModelSearchV1Stats) SetAddedAuthors ¶

func (o *UserModelSearchV1Stats) SetAddedAuthors(v int64)

SetAddedAuthors gets a reference to the given int64 and assigns it to the AddedAuthors field.

func (*UserModelSearchV1Stats) SetAddedGroups ¶

func (o *UserModelSearchV1Stats) SetAddedGroups(v int64)

SetAddedGroups gets a reference to the given int64 and assigns it to the AddedGroups field.

func (*UserModelSearchV1Stats) SetAddedPublishers ¶

func (o *UserModelSearchV1Stats) SetAddedPublishers(v int64)

SetAddedPublishers gets a reference to the given int64 and assigns it to the AddedPublishers field.

func (*UserModelSearchV1Stats) SetAddedReleases ¶

func (o *UserModelSearchV1Stats) SetAddedReleases(v int64)

SetAddedReleases gets a reference to the given int64 and assigns it to the AddedReleases field.

func (*UserModelSearchV1Stats) SetAddedSeries ¶

func (o *UserModelSearchV1Stats) SetAddedSeries(v int64)

SetAddedSeries gets a reference to the given int64 and assigns it to the AddedSeries field.

func (*UserModelSearchV1Stats) SetForumPosts ¶

func (o *UserModelSearchV1Stats) SetForumPosts(v int64)

SetForumPosts gets a reference to the given int64 and assigns it to the ForumPosts field.

func (UserModelSearchV1Stats) ToMap ¶

func (o UserModelSearchV1Stats) ToMap() (map[string]interface{}, error)

type UserModelUpdatePasswordV1 ¶

type UserModelUpdatePasswordV1 struct {
	Password *string `json:"password,omitempty"`
}

UserModelUpdatePasswordV1 struct for UserModelUpdatePasswordV1

func NewUserModelUpdatePasswordV1 ¶

func NewUserModelUpdatePasswordV1() *UserModelUpdatePasswordV1

NewUserModelUpdatePasswordV1 instantiates a new UserModelUpdatePasswordV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserModelUpdatePasswordV1WithDefaults ¶

func NewUserModelUpdatePasswordV1WithDefaults() *UserModelUpdatePasswordV1

NewUserModelUpdatePasswordV1WithDefaults instantiates a new UserModelUpdatePasswordV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserModelUpdatePasswordV1) GetPassword ¶

func (o *UserModelUpdatePasswordV1) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*UserModelUpdatePasswordV1) GetPasswordOk ¶

func (o *UserModelUpdatePasswordV1) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdatePasswordV1) HasPassword ¶

func (o *UserModelUpdatePasswordV1) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (UserModelUpdatePasswordV1) MarshalJSON ¶

func (o UserModelUpdatePasswordV1) MarshalJSON() ([]byte, error)

func (*UserModelUpdatePasswordV1) SetPassword ¶

func (o *UserModelUpdatePasswordV1) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (UserModelUpdatePasswordV1) ToMap ¶

func (o UserModelUpdatePasswordV1) ToMap() (map[string]interface{}, error)

type UserModelUpdateV1 ¶

type UserModelUpdateV1 struct {
	Username      *string                   `json:"username,omitempty"`
	Email         *string                   `json:"email,omitempty"`
	Password      *string                   `json:"password,omitempty"`
	NewAvatarId   *int64                    `json:"new_avatar_id,omitempty"`
	Gender        *string                   `json:"gender,omitempty"`
	Birthday      *BirthdayModelV1          `json:"birthday,omitempty"`
	Timezone      *int64                    `json:"timezone,omitempty"`
	Signature     *string                   `json:"signature,omitempty"`
	Location      *string                   `json:"location,omitempty"`
	ForumTitle    *string                   `json:"forum_title,omitempty"`
	FoldingAtHome *bool                     `json:"folding_at_home,omitempty"`
	Profile       *UserModelUpdateV1Profile `json:"profile,omitempty"`
	Admin         *UserModelUpdateV1Admin   `json:"admin,omitempty"`
	UserGroup     *string                   `json:"user_group,omitempty"`
}

UserModelUpdateV1 struct for UserModelUpdateV1

func NewUserModelUpdateV1 ¶

func NewUserModelUpdateV1() *UserModelUpdateV1

NewUserModelUpdateV1 instantiates a new UserModelUpdateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserModelUpdateV1WithDefaults ¶

func NewUserModelUpdateV1WithDefaults() *UserModelUpdateV1

NewUserModelUpdateV1WithDefaults instantiates a new UserModelUpdateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserModelUpdateV1) GetAdmin ¶

GetAdmin returns the Admin field value if set, zero value otherwise.

func (*UserModelUpdateV1) GetAdminOk ¶

func (o *UserModelUpdateV1) GetAdminOk() (*UserModelUpdateV1Admin, bool)

GetAdminOk returns a tuple with the Admin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1) GetBirthday ¶

func (o *UserModelUpdateV1) GetBirthday() BirthdayModelV1

GetBirthday returns the Birthday field value if set, zero value otherwise.

func (*UserModelUpdateV1) GetBirthdayOk ¶

func (o *UserModelUpdateV1) GetBirthdayOk() (*BirthdayModelV1, bool)

GetBirthdayOk returns a tuple with the Birthday field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1) GetEmail ¶

func (o *UserModelUpdateV1) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*UserModelUpdateV1) GetEmailOk ¶

func (o *UserModelUpdateV1) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1) GetFoldingAtHome ¶

func (o *UserModelUpdateV1) GetFoldingAtHome() bool

GetFoldingAtHome returns the FoldingAtHome field value if set, zero value otherwise.

func (*UserModelUpdateV1) GetFoldingAtHomeOk ¶

func (o *UserModelUpdateV1) GetFoldingAtHomeOk() (*bool, bool)

GetFoldingAtHomeOk returns a tuple with the FoldingAtHome field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1) GetForumTitle ¶

func (o *UserModelUpdateV1) GetForumTitle() string

GetForumTitle returns the ForumTitle field value if set, zero value otherwise.

func (*UserModelUpdateV1) GetForumTitleOk ¶

func (o *UserModelUpdateV1) GetForumTitleOk() (*string, bool)

GetForumTitleOk returns a tuple with the ForumTitle field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1) GetGender ¶

func (o *UserModelUpdateV1) GetGender() string

GetGender returns the Gender field value if set, zero value otherwise.

func (*UserModelUpdateV1) GetGenderOk ¶

func (o *UserModelUpdateV1) GetGenderOk() (*string, bool)

GetGenderOk returns a tuple with the Gender field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1) GetLocation ¶

func (o *UserModelUpdateV1) GetLocation() string

GetLocation returns the Location field value if set, zero value otherwise.

func (*UserModelUpdateV1) GetLocationOk ¶

func (o *UserModelUpdateV1) GetLocationOk() (*string, bool)

GetLocationOk returns a tuple with the Location field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1) GetNewAvatarId ¶

func (o *UserModelUpdateV1) GetNewAvatarId() int64

GetNewAvatarId returns the NewAvatarId field value if set, zero value otherwise.

func (*UserModelUpdateV1) GetNewAvatarIdOk ¶

func (o *UserModelUpdateV1) GetNewAvatarIdOk() (*int64, bool)

GetNewAvatarIdOk returns a tuple with the NewAvatarId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1) GetPassword ¶

func (o *UserModelUpdateV1) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*UserModelUpdateV1) GetPasswordOk ¶

func (o *UserModelUpdateV1) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1) GetProfile ¶

GetProfile returns the Profile field value if set, zero value otherwise.

func (*UserModelUpdateV1) GetProfileOk ¶

func (o *UserModelUpdateV1) GetProfileOk() (*UserModelUpdateV1Profile, bool)

GetProfileOk returns a tuple with the Profile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1) GetSignature ¶

func (o *UserModelUpdateV1) GetSignature() string

GetSignature returns the Signature field value if set, zero value otherwise.

func (*UserModelUpdateV1) GetSignatureOk ¶

func (o *UserModelUpdateV1) GetSignatureOk() (*string, bool)

GetSignatureOk returns a tuple with the Signature field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1) GetTimezone ¶

func (o *UserModelUpdateV1) GetTimezone() int64

GetTimezone returns the Timezone field value if set, zero value otherwise.

func (*UserModelUpdateV1) GetTimezoneOk ¶

func (o *UserModelUpdateV1) GetTimezoneOk() (*int64, bool)

GetTimezoneOk returns a tuple with the Timezone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1) GetUserGroup ¶

func (o *UserModelUpdateV1) GetUserGroup() string

GetUserGroup returns the UserGroup field value if set, zero value otherwise.

func (*UserModelUpdateV1) GetUserGroupOk ¶

func (o *UserModelUpdateV1) GetUserGroupOk() (*string, bool)

GetUserGroupOk returns a tuple with the UserGroup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1) GetUsername ¶

func (o *UserModelUpdateV1) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*UserModelUpdateV1) GetUsernameOk ¶

func (o *UserModelUpdateV1) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1) HasAdmin ¶

func (o *UserModelUpdateV1) HasAdmin() bool

HasAdmin returns a boolean if a field has been set.

func (*UserModelUpdateV1) HasBirthday ¶

func (o *UserModelUpdateV1) HasBirthday() bool

HasBirthday returns a boolean if a field has been set.

func (*UserModelUpdateV1) HasEmail ¶

func (o *UserModelUpdateV1) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*UserModelUpdateV1) HasFoldingAtHome ¶

func (o *UserModelUpdateV1) HasFoldingAtHome() bool

HasFoldingAtHome returns a boolean if a field has been set.

func (*UserModelUpdateV1) HasForumTitle ¶

func (o *UserModelUpdateV1) HasForumTitle() bool

HasForumTitle returns a boolean if a field has been set.

func (*UserModelUpdateV1) HasGender ¶

func (o *UserModelUpdateV1) HasGender() bool

HasGender returns a boolean if a field has been set.

func (*UserModelUpdateV1) HasLocation ¶

func (o *UserModelUpdateV1) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*UserModelUpdateV1) HasNewAvatarId ¶

func (o *UserModelUpdateV1) HasNewAvatarId() bool

HasNewAvatarId returns a boolean if a field has been set.

func (*UserModelUpdateV1) HasPassword ¶

func (o *UserModelUpdateV1) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*UserModelUpdateV1) HasProfile ¶

func (o *UserModelUpdateV1) HasProfile() bool

HasProfile returns a boolean if a field has been set.

func (*UserModelUpdateV1) HasSignature ¶

func (o *UserModelUpdateV1) HasSignature() bool

HasSignature returns a boolean if a field has been set.

func (*UserModelUpdateV1) HasTimezone ¶

func (o *UserModelUpdateV1) HasTimezone() bool

HasTimezone returns a boolean if a field has been set.

func (*UserModelUpdateV1) HasUserGroup ¶

func (o *UserModelUpdateV1) HasUserGroup() bool

HasUserGroup returns a boolean if a field has been set.

func (*UserModelUpdateV1) HasUsername ¶

func (o *UserModelUpdateV1) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (UserModelUpdateV1) MarshalJSON ¶

func (o UserModelUpdateV1) MarshalJSON() ([]byte, error)

func (*UserModelUpdateV1) SetAdmin ¶

SetAdmin gets a reference to the given UserModelUpdateV1Admin and assigns it to the Admin field.

func (*UserModelUpdateV1) SetBirthday ¶

func (o *UserModelUpdateV1) SetBirthday(v BirthdayModelV1)

SetBirthday gets a reference to the given BirthdayModelV1 and assigns it to the Birthday field.

func (*UserModelUpdateV1) SetEmail ¶

func (o *UserModelUpdateV1) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*UserModelUpdateV1) SetFoldingAtHome ¶

func (o *UserModelUpdateV1) SetFoldingAtHome(v bool)

SetFoldingAtHome gets a reference to the given bool and assigns it to the FoldingAtHome field.

func (*UserModelUpdateV1) SetForumTitle ¶

func (o *UserModelUpdateV1) SetForumTitle(v string)

SetForumTitle gets a reference to the given string and assigns it to the ForumTitle field.

func (*UserModelUpdateV1) SetGender ¶

func (o *UserModelUpdateV1) SetGender(v string)

SetGender gets a reference to the given string and assigns it to the Gender field.

func (*UserModelUpdateV1) SetLocation ¶

func (o *UserModelUpdateV1) SetLocation(v string)

SetLocation gets a reference to the given string and assigns it to the Location field.

func (*UserModelUpdateV1) SetNewAvatarId ¶

func (o *UserModelUpdateV1) SetNewAvatarId(v int64)

SetNewAvatarId gets a reference to the given int64 and assigns it to the NewAvatarId field.

func (*UserModelUpdateV1) SetPassword ¶

func (o *UserModelUpdateV1) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*UserModelUpdateV1) SetProfile ¶

SetProfile gets a reference to the given UserModelUpdateV1Profile and assigns it to the Profile field.

func (*UserModelUpdateV1) SetSignature ¶

func (o *UserModelUpdateV1) SetSignature(v string)

SetSignature gets a reference to the given string and assigns it to the Signature field.

func (*UserModelUpdateV1) SetTimezone ¶

func (o *UserModelUpdateV1) SetTimezone(v int64)

SetTimezone gets a reference to the given int64 and assigns it to the Timezone field.

func (*UserModelUpdateV1) SetUserGroup ¶

func (o *UserModelUpdateV1) SetUserGroup(v string)

SetUserGroup gets a reference to the given string and assigns it to the UserGroup field.

func (*UserModelUpdateV1) SetUsername ¶

func (o *UserModelUpdateV1) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (UserModelUpdateV1) ToMap ¶

func (o UserModelUpdateV1) ToMap() (map[string]interface{}, error)

type UserModelUpdateV1Admin ¶

type UserModelUpdateV1Admin struct {
	IsAdmin       *bool                              `json:"is_admin,omitempty"`
	Permissions   *UserModelUpdateV1AdminPermissions `json:"permissions,omitempty"`
	Approved      *bool                              `json:"approved,omitempty"`
	EmailApproved *bool                              `json:"email_approved,omitempty"`
	ForumAdmin    *bool                              `json:"forum_admin,omitempty"`
	Banned        *bool                              `json:"banned,omitempty"`
}

UserModelUpdateV1Admin struct for UserModelUpdateV1Admin

func NewUserModelUpdateV1Admin ¶

func NewUserModelUpdateV1Admin() *UserModelUpdateV1Admin

NewUserModelUpdateV1Admin instantiates a new UserModelUpdateV1Admin object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserModelUpdateV1AdminWithDefaults ¶

func NewUserModelUpdateV1AdminWithDefaults() *UserModelUpdateV1Admin

NewUserModelUpdateV1AdminWithDefaults instantiates a new UserModelUpdateV1Admin object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserModelUpdateV1Admin) GetApproved ¶

func (o *UserModelUpdateV1Admin) GetApproved() bool

GetApproved returns the Approved field value if set, zero value otherwise.

func (*UserModelUpdateV1Admin) GetApprovedOk ¶

func (o *UserModelUpdateV1Admin) GetApprovedOk() (*bool, bool)

GetApprovedOk returns a tuple with the Approved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1Admin) GetBanned ¶

func (o *UserModelUpdateV1Admin) GetBanned() bool

GetBanned returns the Banned field value if set, zero value otherwise.

func (*UserModelUpdateV1Admin) GetBannedOk ¶

func (o *UserModelUpdateV1Admin) GetBannedOk() (*bool, bool)

GetBannedOk returns a tuple with the Banned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1Admin) GetEmailApproved ¶

func (o *UserModelUpdateV1Admin) GetEmailApproved() bool

GetEmailApproved returns the EmailApproved field value if set, zero value otherwise.

func (*UserModelUpdateV1Admin) GetEmailApprovedOk ¶

func (o *UserModelUpdateV1Admin) GetEmailApprovedOk() (*bool, bool)

GetEmailApprovedOk returns a tuple with the EmailApproved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1Admin) GetForumAdmin ¶

func (o *UserModelUpdateV1Admin) GetForumAdmin() bool

GetForumAdmin returns the ForumAdmin field value if set, zero value otherwise.

func (*UserModelUpdateV1Admin) GetForumAdminOk ¶

func (o *UserModelUpdateV1Admin) GetForumAdminOk() (*bool, bool)

GetForumAdminOk returns a tuple with the ForumAdmin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1Admin) GetIsAdmin ¶

func (o *UserModelUpdateV1Admin) GetIsAdmin() bool

GetIsAdmin returns the IsAdmin field value if set, zero value otherwise.

func (*UserModelUpdateV1Admin) GetIsAdminOk ¶

func (o *UserModelUpdateV1Admin) GetIsAdminOk() (*bool, bool)

GetIsAdminOk returns a tuple with the IsAdmin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1Admin) GetPermissions ¶

GetPermissions returns the Permissions field value if set, zero value otherwise.

func (*UserModelUpdateV1Admin) GetPermissionsOk ¶

GetPermissionsOk returns a tuple with the Permissions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1Admin) HasApproved ¶

func (o *UserModelUpdateV1Admin) HasApproved() bool

HasApproved returns a boolean if a field has been set.

func (*UserModelUpdateV1Admin) HasBanned ¶

func (o *UserModelUpdateV1Admin) HasBanned() bool

HasBanned returns a boolean if a field has been set.

func (*UserModelUpdateV1Admin) HasEmailApproved ¶

func (o *UserModelUpdateV1Admin) HasEmailApproved() bool

HasEmailApproved returns a boolean if a field has been set.

func (*UserModelUpdateV1Admin) HasForumAdmin ¶

func (o *UserModelUpdateV1Admin) HasForumAdmin() bool

HasForumAdmin returns a boolean if a field has been set.

func (*UserModelUpdateV1Admin) HasIsAdmin ¶

func (o *UserModelUpdateV1Admin) HasIsAdmin() bool

HasIsAdmin returns a boolean if a field has been set.

func (*UserModelUpdateV1Admin) HasPermissions ¶

func (o *UserModelUpdateV1Admin) HasPermissions() bool

HasPermissions returns a boolean if a field has been set.

func (UserModelUpdateV1Admin) MarshalJSON ¶

func (o UserModelUpdateV1Admin) MarshalJSON() ([]byte, error)

func (*UserModelUpdateV1Admin) SetApproved ¶

func (o *UserModelUpdateV1Admin) SetApproved(v bool)

SetApproved gets a reference to the given bool and assigns it to the Approved field.

func (*UserModelUpdateV1Admin) SetBanned ¶

func (o *UserModelUpdateV1Admin) SetBanned(v bool)

SetBanned gets a reference to the given bool and assigns it to the Banned field.

func (*UserModelUpdateV1Admin) SetEmailApproved ¶

func (o *UserModelUpdateV1Admin) SetEmailApproved(v bool)

SetEmailApproved gets a reference to the given bool and assigns it to the EmailApproved field.

func (*UserModelUpdateV1Admin) SetForumAdmin ¶

func (o *UserModelUpdateV1Admin) SetForumAdmin(v bool)

SetForumAdmin gets a reference to the given bool and assigns it to the ForumAdmin field.

func (*UserModelUpdateV1Admin) SetIsAdmin ¶

func (o *UserModelUpdateV1Admin) SetIsAdmin(v bool)

SetIsAdmin gets a reference to the given bool and assigns it to the IsAdmin field.

func (*UserModelUpdateV1Admin) SetPermissions ¶

SetPermissions gets a reference to the given UserModelUpdateV1AdminPermissions and assigns it to the Permissions field.

func (UserModelUpdateV1Admin) ToMap ¶

func (o UserModelUpdateV1Admin) ToMap() (map[string]interface{}, error)

type UserModelUpdateV1AdminPermissions ¶

type UserModelUpdateV1AdminPermissions struct {
	PAddReleases      *bool `json:"p_add_releases,omitempty"`
	PEditUsers        *bool `json:"p_edit_users,omitempty"`
	PEditGroups       *bool `json:"p_edit_groups,omitempty"`
	PEditPoll         *bool `json:"p_edit_poll,omitempty"`
	PEditSeries       *bool `json:"p_edit_series,omitempty"`
	PEditReviews      *bool `json:"p_edit_reviews,omitempty"`
	PEditNews         *bool `json:"p_edit_news,omitempty"`
	PEditAffiliates   *bool `json:"p_edit_affiliates,omitempty"`
	PEditAboutus      *bool `json:"p_edit_aboutus,omitempty"`
	PViewLog          *bool `json:"p_view_log,omitempty"`
	PEditConfig       *bool `json:"p_edit_config,omitempty"`
	PViewStats        *bool `json:"p_view_stats,omitempty"`
	PEditGenre        *bool `json:"p_edit_genre,omitempty"`
	PEditAuthors      *bool `json:"p_edit_authors,omitempty"`
	PEditPublishers   *bool `json:"p_edit_publishers,omitempty"`
	PEditPartialUsers *bool `json:"p_edit_partial_users,omitempty"`
}

UserModelUpdateV1AdminPermissions struct for UserModelUpdateV1AdminPermissions

func NewUserModelUpdateV1AdminPermissions ¶

func NewUserModelUpdateV1AdminPermissions() *UserModelUpdateV1AdminPermissions

NewUserModelUpdateV1AdminPermissions instantiates a new UserModelUpdateV1AdminPermissions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserModelUpdateV1AdminPermissionsWithDefaults ¶

func NewUserModelUpdateV1AdminPermissionsWithDefaults() *UserModelUpdateV1AdminPermissions

NewUserModelUpdateV1AdminPermissionsWithDefaults instantiates a new UserModelUpdateV1AdminPermissions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserModelUpdateV1AdminPermissions) GetPAddReleases ¶

func (o *UserModelUpdateV1AdminPermissions) GetPAddReleases() bool

GetPAddReleases returns the PAddReleases field value if set, zero value otherwise.

func (*UserModelUpdateV1AdminPermissions) GetPAddReleasesOk ¶

func (o *UserModelUpdateV1AdminPermissions) GetPAddReleasesOk() (*bool, bool)

GetPAddReleasesOk returns a tuple with the PAddReleases field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1AdminPermissions) GetPEditAboutus ¶

func (o *UserModelUpdateV1AdminPermissions) GetPEditAboutus() bool

GetPEditAboutus returns the PEditAboutus field value if set, zero value otherwise.

func (*UserModelUpdateV1AdminPermissions) GetPEditAboutusOk ¶

func (o *UserModelUpdateV1AdminPermissions) GetPEditAboutusOk() (*bool, bool)

GetPEditAboutusOk returns a tuple with the PEditAboutus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1AdminPermissions) GetPEditAffiliates ¶

func (o *UserModelUpdateV1AdminPermissions) GetPEditAffiliates() bool

GetPEditAffiliates returns the PEditAffiliates field value if set, zero value otherwise.

func (*UserModelUpdateV1AdminPermissions) GetPEditAffiliatesOk ¶

func (o *UserModelUpdateV1AdminPermissions) GetPEditAffiliatesOk() (*bool, bool)

GetPEditAffiliatesOk returns a tuple with the PEditAffiliates field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1AdminPermissions) GetPEditAuthors ¶

func (o *UserModelUpdateV1AdminPermissions) GetPEditAuthors() bool

GetPEditAuthors returns the PEditAuthors field value if set, zero value otherwise.

func (*UserModelUpdateV1AdminPermissions) GetPEditAuthorsOk ¶

func (o *UserModelUpdateV1AdminPermissions) GetPEditAuthorsOk() (*bool, bool)

GetPEditAuthorsOk returns a tuple with the PEditAuthors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1AdminPermissions) GetPEditConfig ¶

func (o *UserModelUpdateV1AdminPermissions) GetPEditConfig() bool

GetPEditConfig returns the PEditConfig field value if set, zero value otherwise.

func (*UserModelUpdateV1AdminPermissions) GetPEditConfigOk ¶

func (o *UserModelUpdateV1AdminPermissions) GetPEditConfigOk() (*bool, bool)

GetPEditConfigOk returns a tuple with the PEditConfig field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1AdminPermissions) GetPEditGenre ¶

func (o *UserModelUpdateV1AdminPermissions) GetPEditGenre() bool

GetPEditGenre returns the PEditGenre field value if set, zero value otherwise.

func (*UserModelUpdateV1AdminPermissions) GetPEditGenreOk ¶

func (o *UserModelUpdateV1AdminPermissions) GetPEditGenreOk() (*bool, bool)

GetPEditGenreOk returns a tuple with the PEditGenre field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1AdminPermissions) GetPEditGroups ¶

func (o *UserModelUpdateV1AdminPermissions) GetPEditGroups() bool

GetPEditGroups returns the PEditGroups field value if set, zero value otherwise.

func (*UserModelUpdateV1AdminPermissions) GetPEditGroupsOk ¶

func (o *UserModelUpdateV1AdminPermissions) GetPEditGroupsOk() (*bool, bool)

GetPEditGroupsOk returns a tuple with the PEditGroups field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1AdminPermissions) GetPEditNews ¶

func (o *UserModelUpdateV1AdminPermissions) GetPEditNews() bool

GetPEditNews returns the PEditNews field value if set, zero value otherwise.

func (*UserModelUpdateV1AdminPermissions) GetPEditNewsOk ¶

func (o *UserModelUpdateV1AdminPermissions) GetPEditNewsOk() (*bool, bool)

GetPEditNewsOk returns a tuple with the PEditNews field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1AdminPermissions) GetPEditPartialUsers ¶

func (o *UserModelUpdateV1AdminPermissions) GetPEditPartialUsers() bool

GetPEditPartialUsers returns the PEditPartialUsers field value if set, zero value otherwise.

func (*UserModelUpdateV1AdminPermissions) GetPEditPartialUsersOk ¶

func (o *UserModelUpdateV1AdminPermissions) GetPEditPartialUsersOk() (*bool, bool)

GetPEditPartialUsersOk returns a tuple with the PEditPartialUsers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1AdminPermissions) GetPEditPoll ¶

func (o *UserModelUpdateV1AdminPermissions) GetPEditPoll() bool

GetPEditPoll returns the PEditPoll field value if set, zero value otherwise.

func (*UserModelUpdateV1AdminPermissions) GetPEditPollOk ¶

func (o *UserModelUpdateV1AdminPermissions) GetPEditPollOk() (*bool, bool)

GetPEditPollOk returns a tuple with the PEditPoll field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1AdminPermissions) GetPEditPublishers ¶

func (o *UserModelUpdateV1AdminPermissions) GetPEditPublishers() bool

GetPEditPublishers returns the PEditPublishers field value if set, zero value otherwise.

func (*UserModelUpdateV1AdminPermissions) GetPEditPublishersOk ¶

func (o *UserModelUpdateV1AdminPermissions) GetPEditPublishersOk() (*bool, bool)

GetPEditPublishersOk returns a tuple with the PEditPublishers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1AdminPermissions) GetPEditReviews ¶

func (o *UserModelUpdateV1AdminPermissions) GetPEditReviews() bool

GetPEditReviews returns the PEditReviews field value if set, zero value otherwise.

func (*UserModelUpdateV1AdminPermissions) GetPEditReviewsOk ¶

func (o *UserModelUpdateV1AdminPermissions) GetPEditReviewsOk() (*bool, bool)

GetPEditReviewsOk returns a tuple with the PEditReviews field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1AdminPermissions) GetPEditSeries ¶

func (o *UserModelUpdateV1AdminPermissions) GetPEditSeries() bool

GetPEditSeries returns the PEditSeries field value if set, zero value otherwise.

func (*UserModelUpdateV1AdminPermissions) GetPEditSeriesOk ¶

func (o *UserModelUpdateV1AdminPermissions) GetPEditSeriesOk() (*bool, bool)

GetPEditSeriesOk returns a tuple with the PEditSeries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1AdminPermissions) GetPEditUsers ¶

func (o *UserModelUpdateV1AdminPermissions) GetPEditUsers() bool

GetPEditUsers returns the PEditUsers field value if set, zero value otherwise.

func (*UserModelUpdateV1AdminPermissions) GetPEditUsersOk ¶

func (o *UserModelUpdateV1AdminPermissions) GetPEditUsersOk() (*bool, bool)

GetPEditUsersOk returns a tuple with the PEditUsers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1AdminPermissions) GetPViewLog ¶

func (o *UserModelUpdateV1AdminPermissions) GetPViewLog() bool

GetPViewLog returns the PViewLog field value if set, zero value otherwise.

func (*UserModelUpdateV1AdminPermissions) GetPViewLogOk ¶

func (o *UserModelUpdateV1AdminPermissions) GetPViewLogOk() (*bool, bool)

GetPViewLogOk returns a tuple with the PViewLog field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1AdminPermissions) GetPViewStats ¶

func (o *UserModelUpdateV1AdminPermissions) GetPViewStats() bool

GetPViewStats returns the PViewStats field value if set, zero value otherwise.

func (*UserModelUpdateV1AdminPermissions) GetPViewStatsOk ¶

func (o *UserModelUpdateV1AdminPermissions) GetPViewStatsOk() (*bool, bool)

GetPViewStatsOk returns a tuple with the PViewStats field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1AdminPermissions) HasPAddReleases ¶

func (o *UserModelUpdateV1AdminPermissions) HasPAddReleases() bool

HasPAddReleases returns a boolean if a field has been set.

func (*UserModelUpdateV1AdminPermissions) HasPEditAboutus ¶

func (o *UserModelUpdateV1AdminPermissions) HasPEditAboutus() bool

HasPEditAboutus returns a boolean if a field has been set.

func (*UserModelUpdateV1AdminPermissions) HasPEditAffiliates ¶

func (o *UserModelUpdateV1AdminPermissions) HasPEditAffiliates() bool

HasPEditAffiliates returns a boolean if a field has been set.

func (*UserModelUpdateV1AdminPermissions) HasPEditAuthors ¶

func (o *UserModelUpdateV1AdminPermissions) HasPEditAuthors() bool

HasPEditAuthors returns a boolean if a field has been set.

func (*UserModelUpdateV1AdminPermissions) HasPEditConfig ¶

func (o *UserModelUpdateV1AdminPermissions) HasPEditConfig() bool

HasPEditConfig returns a boolean if a field has been set.

func (*UserModelUpdateV1AdminPermissions) HasPEditGenre ¶

func (o *UserModelUpdateV1AdminPermissions) HasPEditGenre() bool

HasPEditGenre returns a boolean if a field has been set.

func (*UserModelUpdateV1AdminPermissions) HasPEditGroups ¶

func (o *UserModelUpdateV1AdminPermissions) HasPEditGroups() bool

HasPEditGroups returns a boolean if a field has been set.

func (*UserModelUpdateV1AdminPermissions) HasPEditNews ¶

func (o *UserModelUpdateV1AdminPermissions) HasPEditNews() bool

HasPEditNews returns a boolean if a field has been set.

func (*UserModelUpdateV1AdminPermissions) HasPEditPartialUsers ¶

func (o *UserModelUpdateV1AdminPermissions) HasPEditPartialUsers() bool

HasPEditPartialUsers returns a boolean if a field has been set.

func (*UserModelUpdateV1AdminPermissions) HasPEditPoll ¶

func (o *UserModelUpdateV1AdminPermissions) HasPEditPoll() bool

HasPEditPoll returns a boolean if a field has been set.

func (*UserModelUpdateV1AdminPermissions) HasPEditPublishers ¶

func (o *UserModelUpdateV1AdminPermissions) HasPEditPublishers() bool

HasPEditPublishers returns a boolean if a field has been set.

func (*UserModelUpdateV1AdminPermissions) HasPEditReviews ¶

func (o *UserModelUpdateV1AdminPermissions) HasPEditReviews() bool

HasPEditReviews returns a boolean if a field has been set.

func (*UserModelUpdateV1AdminPermissions) HasPEditSeries ¶

func (o *UserModelUpdateV1AdminPermissions) HasPEditSeries() bool

HasPEditSeries returns a boolean if a field has been set.

func (*UserModelUpdateV1AdminPermissions) HasPEditUsers ¶

func (o *UserModelUpdateV1AdminPermissions) HasPEditUsers() bool

HasPEditUsers returns a boolean if a field has been set.

func (*UserModelUpdateV1AdminPermissions) HasPViewLog ¶

func (o *UserModelUpdateV1AdminPermissions) HasPViewLog() bool

HasPViewLog returns a boolean if a field has been set.

func (*UserModelUpdateV1AdminPermissions) HasPViewStats ¶

func (o *UserModelUpdateV1AdminPermissions) HasPViewStats() bool

HasPViewStats returns a boolean if a field has been set.

func (UserModelUpdateV1AdminPermissions) MarshalJSON ¶

func (o UserModelUpdateV1AdminPermissions) MarshalJSON() ([]byte, error)

func (*UserModelUpdateV1AdminPermissions) SetPAddReleases ¶

func (o *UserModelUpdateV1AdminPermissions) SetPAddReleases(v bool)

SetPAddReleases gets a reference to the given bool and assigns it to the PAddReleases field.

func (*UserModelUpdateV1AdminPermissions) SetPEditAboutus ¶

func (o *UserModelUpdateV1AdminPermissions) SetPEditAboutus(v bool)

SetPEditAboutus gets a reference to the given bool and assigns it to the PEditAboutus field.

func (*UserModelUpdateV1AdminPermissions) SetPEditAffiliates ¶

func (o *UserModelUpdateV1AdminPermissions) SetPEditAffiliates(v bool)

SetPEditAffiliates gets a reference to the given bool and assigns it to the PEditAffiliates field.

func (*UserModelUpdateV1AdminPermissions) SetPEditAuthors ¶

func (o *UserModelUpdateV1AdminPermissions) SetPEditAuthors(v bool)

SetPEditAuthors gets a reference to the given bool and assigns it to the PEditAuthors field.

func (*UserModelUpdateV1AdminPermissions) SetPEditConfig ¶

func (o *UserModelUpdateV1AdminPermissions) SetPEditConfig(v bool)

SetPEditConfig gets a reference to the given bool and assigns it to the PEditConfig field.

func (*UserModelUpdateV1AdminPermissions) SetPEditGenre ¶

func (o *UserModelUpdateV1AdminPermissions) SetPEditGenre(v bool)

SetPEditGenre gets a reference to the given bool and assigns it to the PEditGenre field.

func (*UserModelUpdateV1AdminPermissions) SetPEditGroups ¶

func (o *UserModelUpdateV1AdminPermissions) SetPEditGroups(v bool)

SetPEditGroups gets a reference to the given bool and assigns it to the PEditGroups field.

func (*UserModelUpdateV1AdminPermissions) SetPEditNews ¶

func (o *UserModelUpdateV1AdminPermissions) SetPEditNews(v bool)

SetPEditNews gets a reference to the given bool and assigns it to the PEditNews field.

func (*UserModelUpdateV1AdminPermissions) SetPEditPartialUsers ¶

func (o *UserModelUpdateV1AdminPermissions) SetPEditPartialUsers(v bool)

SetPEditPartialUsers gets a reference to the given bool and assigns it to the PEditPartialUsers field.

func (*UserModelUpdateV1AdminPermissions) SetPEditPoll ¶

func (o *UserModelUpdateV1AdminPermissions) SetPEditPoll(v bool)

SetPEditPoll gets a reference to the given bool and assigns it to the PEditPoll field.

func (*UserModelUpdateV1AdminPermissions) SetPEditPublishers ¶

func (o *UserModelUpdateV1AdminPermissions) SetPEditPublishers(v bool)

SetPEditPublishers gets a reference to the given bool and assigns it to the PEditPublishers field.

func (*UserModelUpdateV1AdminPermissions) SetPEditReviews ¶

func (o *UserModelUpdateV1AdminPermissions) SetPEditReviews(v bool)

SetPEditReviews gets a reference to the given bool and assigns it to the PEditReviews field.

func (*UserModelUpdateV1AdminPermissions) SetPEditSeries ¶

func (o *UserModelUpdateV1AdminPermissions) SetPEditSeries(v bool)

SetPEditSeries gets a reference to the given bool and assigns it to the PEditSeries field.

func (*UserModelUpdateV1AdminPermissions) SetPEditUsers ¶

func (o *UserModelUpdateV1AdminPermissions) SetPEditUsers(v bool)

SetPEditUsers gets a reference to the given bool and assigns it to the PEditUsers field.

func (*UserModelUpdateV1AdminPermissions) SetPViewLog ¶

func (o *UserModelUpdateV1AdminPermissions) SetPViewLog(v bool)

SetPViewLog gets a reference to the given bool and assigns it to the PViewLog field.

func (*UserModelUpdateV1AdminPermissions) SetPViewStats ¶

func (o *UserModelUpdateV1AdminPermissions) SetPViewStats(v bool)

SetPViewStats gets a reference to the given bool and assigns it to the PViewStats field.

func (UserModelUpdateV1AdminPermissions) ToMap ¶

func (o UserModelUpdateV1AdminPermissions) ToMap() (map[string]interface{}, error)

type UserModelUpdateV1Profile ¶

type UserModelUpdateV1Profile struct {
	PerPage        *int64                           `json:"per_page,omitempty"`
	Invisible      *bool                            `json:"invisible,omitempty"`
	HideBirthday   *bool                            `json:"hide_birthday,omitempty"`
	HideCategories *bool                            `json:"hide_categories,omitempty"`
	FilterTypes    []string                         `json:"filter_types,omitempty"`
	Upgrade        *UserModelUpdateV1ProfileUpgrade `json:"upgrade,omitempty"`
	Age18Verified  *bool                            `json:"age18_verified,omitempty"`
}

UserModelUpdateV1Profile struct for UserModelUpdateV1Profile

func NewUserModelUpdateV1Profile ¶

func NewUserModelUpdateV1Profile() *UserModelUpdateV1Profile

NewUserModelUpdateV1Profile instantiates a new UserModelUpdateV1Profile object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserModelUpdateV1ProfileWithDefaults ¶

func NewUserModelUpdateV1ProfileWithDefaults() *UserModelUpdateV1Profile

NewUserModelUpdateV1ProfileWithDefaults instantiates a new UserModelUpdateV1Profile object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserModelUpdateV1Profile) GetAge18Verified ¶

func (o *UserModelUpdateV1Profile) GetAge18Verified() bool

GetAge18Verified returns the Age18Verified field value if set, zero value otherwise.

func (*UserModelUpdateV1Profile) GetAge18VerifiedOk ¶

func (o *UserModelUpdateV1Profile) GetAge18VerifiedOk() (*bool, bool)

GetAge18VerifiedOk returns a tuple with the Age18Verified field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1Profile) GetFilterTypes ¶

func (o *UserModelUpdateV1Profile) GetFilterTypes() []string

GetFilterTypes returns the FilterTypes field value if set, zero value otherwise.

func (*UserModelUpdateV1Profile) GetFilterTypesOk ¶

func (o *UserModelUpdateV1Profile) GetFilterTypesOk() ([]string, bool)

GetFilterTypesOk returns a tuple with the FilterTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1Profile) GetHideBirthday ¶

func (o *UserModelUpdateV1Profile) GetHideBirthday() bool

GetHideBirthday returns the HideBirthday field value if set, zero value otherwise.

func (*UserModelUpdateV1Profile) GetHideBirthdayOk ¶

func (o *UserModelUpdateV1Profile) GetHideBirthdayOk() (*bool, bool)

GetHideBirthdayOk returns a tuple with the HideBirthday field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1Profile) GetHideCategories ¶

func (o *UserModelUpdateV1Profile) GetHideCategories() bool

GetHideCategories returns the HideCategories field value if set, zero value otherwise.

func (*UserModelUpdateV1Profile) GetHideCategoriesOk ¶

func (o *UserModelUpdateV1Profile) GetHideCategoriesOk() (*bool, bool)

GetHideCategoriesOk returns a tuple with the HideCategories field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1Profile) GetInvisible ¶

func (o *UserModelUpdateV1Profile) GetInvisible() bool

GetInvisible returns the Invisible field value if set, zero value otherwise.

func (*UserModelUpdateV1Profile) GetInvisibleOk ¶

func (o *UserModelUpdateV1Profile) GetInvisibleOk() (*bool, bool)

GetInvisibleOk returns a tuple with the Invisible field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1Profile) GetPerPage ¶

func (o *UserModelUpdateV1Profile) GetPerPage() int64

GetPerPage returns the PerPage field value if set, zero value otherwise.

func (*UserModelUpdateV1Profile) GetPerPageOk ¶

func (o *UserModelUpdateV1Profile) GetPerPageOk() (*int64, bool)

GetPerPageOk returns a tuple with the PerPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1Profile) GetUpgrade ¶

GetUpgrade returns the Upgrade field value if set, zero value otherwise.

func (*UserModelUpdateV1Profile) GetUpgradeOk ¶

GetUpgradeOk returns a tuple with the Upgrade field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1Profile) HasAge18Verified ¶

func (o *UserModelUpdateV1Profile) HasAge18Verified() bool

HasAge18Verified returns a boolean if a field has been set.

func (*UserModelUpdateV1Profile) HasFilterTypes ¶

func (o *UserModelUpdateV1Profile) HasFilterTypes() bool

HasFilterTypes returns a boolean if a field has been set.

func (*UserModelUpdateV1Profile) HasHideBirthday ¶

func (o *UserModelUpdateV1Profile) HasHideBirthday() bool

HasHideBirthday returns a boolean if a field has been set.

func (*UserModelUpdateV1Profile) HasHideCategories ¶

func (o *UserModelUpdateV1Profile) HasHideCategories() bool

HasHideCategories returns a boolean if a field has been set.

func (*UserModelUpdateV1Profile) HasInvisible ¶

func (o *UserModelUpdateV1Profile) HasInvisible() bool

HasInvisible returns a boolean if a field has been set.

func (*UserModelUpdateV1Profile) HasPerPage ¶

func (o *UserModelUpdateV1Profile) HasPerPage() bool

HasPerPage returns a boolean if a field has been set.

func (*UserModelUpdateV1Profile) HasUpgrade ¶

func (o *UserModelUpdateV1Profile) HasUpgrade() bool

HasUpgrade returns a boolean if a field has been set.

func (UserModelUpdateV1Profile) MarshalJSON ¶

func (o UserModelUpdateV1Profile) MarshalJSON() ([]byte, error)

func (*UserModelUpdateV1Profile) SetAge18Verified ¶

func (o *UserModelUpdateV1Profile) SetAge18Verified(v bool)

SetAge18Verified gets a reference to the given bool and assigns it to the Age18Verified field.

func (*UserModelUpdateV1Profile) SetFilterTypes ¶

func (o *UserModelUpdateV1Profile) SetFilterTypes(v []string)

SetFilterTypes gets a reference to the given []string and assigns it to the FilterTypes field.

func (*UserModelUpdateV1Profile) SetHideBirthday ¶

func (o *UserModelUpdateV1Profile) SetHideBirthday(v bool)

SetHideBirthday gets a reference to the given bool and assigns it to the HideBirthday field.

func (*UserModelUpdateV1Profile) SetHideCategories ¶

func (o *UserModelUpdateV1Profile) SetHideCategories(v bool)

SetHideCategories gets a reference to the given bool and assigns it to the HideCategories field.

func (*UserModelUpdateV1Profile) SetInvisible ¶

func (o *UserModelUpdateV1Profile) SetInvisible(v bool)

SetInvisible gets a reference to the given bool and assigns it to the Invisible field.

func (*UserModelUpdateV1Profile) SetPerPage ¶

func (o *UserModelUpdateV1Profile) SetPerPage(v int64)

SetPerPage gets a reference to the given int64 and assigns it to the PerPage field.

func (*UserModelUpdateV1Profile) SetUpgrade ¶

SetUpgrade gets a reference to the given UserModelUpdateV1ProfileUpgrade and assigns it to the Upgrade field.

func (UserModelUpdateV1Profile) ToMap ¶

func (o UserModelUpdateV1Profile) ToMap() (map[string]interface{}, error)

type UserModelUpdateV1ProfileUpgrade ¶

type UserModelUpdateV1ProfileUpgrade struct {
	Requested *bool   `json:"requested,omitempty"`
	Reason    *string `json:"reason,omitempty"`
}

UserModelUpdateV1ProfileUpgrade struct for UserModelUpdateV1ProfileUpgrade

func NewUserModelUpdateV1ProfileUpgrade ¶

func NewUserModelUpdateV1ProfileUpgrade() *UserModelUpdateV1ProfileUpgrade

NewUserModelUpdateV1ProfileUpgrade instantiates a new UserModelUpdateV1ProfileUpgrade object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserModelUpdateV1ProfileUpgradeWithDefaults ¶

func NewUserModelUpdateV1ProfileUpgradeWithDefaults() *UserModelUpdateV1ProfileUpgrade

NewUserModelUpdateV1ProfileUpgradeWithDefaults instantiates a new UserModelUpdateV1ProfileUpgrade object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserModelUpdateV1ProfileUpgrade) GetReason ¶

func (o *UserModelUpdateV1ProfileUpgrade) GetReason() string

GetReason returns the Reason field value if set, zero value otherwise.

func (*UserModelUpdateV1ProfileUpgrade) GetReasonOk ¶

func (o *UserModelUpdateV1ProfileUpgrade) GetReasonOk() (*string, bool)

GetReasonOk returns a tuple with the Reason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1ProfileUpgrade) GetRequested ¶

func (o *UserModelUpdateV1ProfileUpgrade) GetRequested() bool

GetRequested returns the Requested field value if set, zero value otherwise.

func (*UserModelUpdateV1ProfileUpgrade) GetRequestedOk ¶

func (o *UserModelUpdateV1ProfileUpgrade) GetRequestedOk() (*bool, bool)

GetRequestedOk returns a tuple with the Requested field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelUpdateV1ProfileUpgrade) HasReason ¶

func (o *UserModelUpdateV1ProfileUpgrade) HasReason() bool

HasReason returns a boolean if a field has been set.

func (*UserModelUpdateV1ProfileUpgrade) HasRequested ¶

func (o *UserModelUpdateV1ProfileUpgrade) HasRequested() bool

HasRequested returns a boolean if a field has been set.

func (UserModelUpdateV1ProfileUpgrade) MarshalJSON ¶

func (o UserModelUpdateV1ProfileUpgrade) MarshalJSON() ([]byte, error)

func (*UserModelUpdateV1ProfileUpgrade) SetReason ¶

func (o *UserModelUpdateV1ProfileUpgrade) SetReason(v string)

SetReason gets a reference to the given string and assigns it to the Reason field.

func (*UserModelUpdateV1ProfileUpgrade) SetRequested ¶

func (o *UserModelUpdateV1ProfileUpgrade) SetRequested(v bool)

SetRequested gets a reference to the given bool and assigns it to the Requested field.

func (UserModelUpdateV1ProfileUpgrade) ToMap ¶

func (o UserModelUpdateV1ProfileUpgrade) ToMap() (map[string]interface{}, error)

type UserModelV1 ¶

type UserModelV1 struct {
	UserId         *int64              `json:"user_id,omitempty"`
	Username       *string             `json:"username,omitempty"`
	Url            *string             `json:"url,omitempty"`
	Email          *string             `json:"email,omitempty"`
	Avatar         *AvatarModelV1      `json:"avatar,omitempty"`
	TimeJoined     *TimeV1             `json:"time_joined,omitempty"`
	LastActiveTime *TimeV1             `json:"last_active_time,omitempty"`
	Gender         *string             `json:"gender,omitempty"`
	Birthday       *BirthdayModelV1    `json:"birthday,omitempty"`
	Age            *int64              `json:"age,omitempty"`
	Timezone       *int64              `json:"timezone,omitempty"`
	Signature      *string             `json:"signature,omitempty"`
	Location       *string             `json:"location,omitempty"`
	ForumTitle     *string             `json:"forum_title,omitempty"`
	FoldingAtHome  *bool               `json:"folding_at_home,omitempty"`
	Profile        *UserModelV1Profile `json:"profile,omitempty"`
	Stats          *UserModelV1Stats   `json:"stats,omitempty"`
	Admin          *UserModelV1Admin   `json:"admin,omitempty"`
	UserGroup      *string             `json:"user_group,omitempty"`
	UserGroupName  *string             `json:"user_group_name,omitempty"`
}

UserModelV1 struct for UserModelV1

func NewUserModelV1 ¶

func NewUserModelV1() *UserModelV1

NewUserModelV1 instantiates a new UserModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserModelV1WithDefaults ¶

func NewUserModelV1WithDefaults() *UserModelV1

NewUserModelV1WithDefaults instantiates a new UserModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserModelV1) GetAdmin ¶

func (o *UserModelV1) GetAdmin() UserModelV1Admin

GetAdmin returns the Admin field value if set, zero value otherwise.

func (*UserModelV1) GetAdminOk ¶

func (o *UserModelV1) GetAdminOk() (*UserModelV1Admin, bool)

GetAdminOk returns a tuple with the Admin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1) GetAge ¶

func (o *UserModelV1) GetAge() int64

GetAge returns the Age field value if set, zero value otherwise.

func (*UserModelV1) GetAgeOk ¶

func (o *UserModelV1) GetAgeOk() (*int64, bool)

GetAgeOk returns a tuple with the Age field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1) GetAvatar ¶

func (o *UserModelV1) GetAvatar() AvatarModelV1

GetAvatar returns the Avatar field value if set, zero value otherwise.

func (*UserModelV1) GetAvatarOk ¶

func (o *UserModelV1) GetAvatarOk() (*AvatarModelV1, bool)

GetAvatarOk returns a tuple with the Avatar field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1) GetBirthday ¶

func (o *UserModelV1) GetBirthday() BirthdayModelV1

GetBirthday returns the Birthday field value if set, zero value otherwise.

func (*UserModelV1) GetBirthdayOk ¶

func (o *UserModelV1) GetBirthdayOk() (*BirthdayModelV1, bool)

GetBirthdayOk returns a tuple with the Birthday field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1) GetEmail ¶

func (o *UserModelV1) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*UserModelV1) GetEmailOk ¶

func (o *UserModelV1) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1) GetFoldingAtHome ¶

func (o *UserModelV1) GetFoldingAtHome() bool

GetFoldingAtHome returns the FoldingAtHome field value if set, zero value otherwise.

func (*UserModelV1) GetFoldingAtHomeOk ¶

func (o *UserModelV1) GetFoldingAtHomeOk() (*bool, bool)

GetFoldingAtHomeOk returns a tuple with the FoldingAtHome field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1) GetForumTitle ¶

func (o *UserModelV1) GetForumTitle() string

GetForumTitle returns the ForumTitle field value if set, zero value otherwise.

func (*UserModelV1) GetForumTitleOk ¶

func (o *UserModelV1) GetForumTitleOk() (*string, bool)

GetForumTitleOk returns a tuple with the ForumTitle field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1) GetGender ¶

func (o *UserModelV1) GetGender() string

GetGender returns the Gender field value if set, zero value otherwise.

func (*UserModelV1) GetGenderOk ¶

func (o *UserModelV1) GetGenderOk() (*string, bool)

GetGenderOk returns a tuple with the Gender field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1) GetLastActiveTime ¶

func (o *UserModelV1) GetLastActiveTime() TimeV1

GetLastActiveTime returns the LastActiveTime field value if set, zero value otherwise.

func (*UserModelV1) GetLastActiveTimeOk ¶

func (o *UserModelV1) GetLastActiveTimeOk() (*TimeV1, bool)

GetLastActiveTimeOk returns a tuple with the LastActiveTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1) GetLocation ¶

func (o *UserModelV1) GetLocation() string

GetLocation returns the Location field value if set, zero value otherwise.

func (*UserModelV1) GetLocationOk ¶

func (o *UserModelV1) GetLocationOk() (*string, bool)

GetLocationOk returns a tuple with the Location field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1) GetProfile ¶

func (o *UserModelV1) GetProfile() UserModelV1Profile

GetProfile returns the Profile field value if set, zero value otherwise.

func (*UserModelV1) GetProfileOk ¶

func (o *UserModelV1) GetProfileOk() (*UserModelV1Profile, bool)

GetProfileOk returns a tuple with the Profile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1) GetSignature ¶

func (o *UserModelV1) GetSignature() string

GetSignature returns the Signature field value if set, zero value otherwise.

func (*UserModelV1) GetSignatureOk ¶

func (o *UserModelV1) GetSignatureOk() (*string, bool)

GetSignatureOk returns a tuple with the Signature field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1) GetStats ¶

func (o *UserModelV1) GetStats() UserModelV1Stats

GetStats returns the Stats field value if set, zero value otherwise.

func (*UserModelV1) GetStatsOk ¶

func (o *UserModelV1) GetStatsOk() (*UserModelV1Stats, bool)

GetStatsOk returns a tuple with the Stats field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1) GetTimeJoined ¶

func (o *UserModelV1) GetTimeJoined() TimeV1

GetTimeJoined returns the TimeJoined field value if set, zero value otherwise.

func (*UserModelV1) GetTimeJoinedOk ¶

func (o *UserModelV1) GetTimeJoinedOk() (*TimeV1, bool)

GetTimeJoinedOk returns a tuple with the TimeJoined field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1) GetTimezone ¶

func (o *UserModelV1) GetTimezone() int64

GetTimezone returns the Timezone field value if set, zero value otherwise.

func (*UserModelV1) GetTimezoneOk ¶

func (o *UserModelV1) GetTimezoneOk() (*int64, bool)

GetTimezoneOk returns a tuple with the Timezone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1) GetUrl ¶

func (o *UserModelV1) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*UserModelV1) GetUrlOk ¶

func (o *UserModelV1) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1) GetUserGroup ¶

func (o *UserModelV1) GetUserGroup() string

GetUserGroup returns the UserGroup field value if set, zero value otherwise.

func (*UserModelV1) GetUserGroupName ¶

func (o *UserModelV1) GetUserGroupName() string

GetUserGroupName returns the UserGroupName field value if set, zero value otherwise.

func (*UserModelV1) GetUserGroupNameOk ¶

func (o *UserModelV1) GetUserGroupNameOk() (*string, bool)

GetUserGroupNameOk returns a tuple with the UserGroupName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1) GetUserGroupOk ¶

func (o *UserModelV1) GetUserGroupOk() (*string, bool)

GetUserGroupOk returns a tuple with the UserGroup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1) GetUserId ¶

func (o *UserModelV1) GetUserId() int64

GetUserId returns the UserId field value if set, zero value otherwise.

func (*UserModelV1) GetUserIdOk ¶

func (o *UserModelV1) GetUserIdOk() (*int64, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1) GetUsername ¶

func (o *UserModelV1) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*UserModelV1) GetUsernameOk ¶

func (o *UserModelV1) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1) HasAdmin ¶

func (o *UserModelV1) HasAdmin() bool

HasAdmin returns a boolean if a field has been set.

func (*UserModelV1) HasAge ¶

func (o *UserModelV1) HasAge() bool

HasAge returns a boolean if a field has been set.

func (*UserModelV1) HasAvatar ¶

func (o *UserModelV1) HasAvatar() bool

HasAvatar returns a boolean if a field has been set.

func (*UserModelV1) HasBirthday ¶

func (o *UserModelV1) HasBirthday() bool

HasBirthday returns a boolean if a field has been set.

func (*UserModelV1) HasEmail ¶

func (o *UserModelV1) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*UserModelV1) HasFoldingAtHome ¶

func (o *UserModelV1) HasFoldingAtHome() bool

HasFoldingAtHome returns a boolean if a field has been set.

func (*UserModelV1) HasForumTitle ¶

func (o *UserModelV1) HasForumTitle() bool

HasForumTitle returns a boolean if a field has been set.

func (*UserModelV1) HasGender ¶

func (o *UserModelV1) HasGender() bool

HasGender returns a boolean if a field has been set.

func (*UserModelV1) HasLastActiveTime ¶

func (o *UserModelV1) HasLastActiveTime() bool

HasLastActiveTime returns a boolean if a field has been set.

func (*UserModelV1) HasLocation ¶

func (o *UserModelV1) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*UserModelV1) HasProfile ¶

func (o *UserModelV1) HasProfile() bool

HasProfile returns a boolean if a field has been set.

func (*UserModelV1) HasSignature ¶

func (o *UserModelV1) HasSignature() bool

HasSignature returns a boolean if a field has been set.

func (*UserModelV1) HasStats ¶

func (o *UserModelV1) HasStats() bool

HasStats returns a boolean if a field has been set.

func (*UserModelV1) HasTimeJoined ¶

func (o *UserModelV1) HasTimeJoined() bool

HasTimeJoined returns a boolean if a field has been set.

func (*UserModelV1) HasTimezone ¶

func (o *UserModelV1) HasTimezone() bool

HasTimezone returns a boolean if a field has been set.

func (*UserModelV1) HasUrl ¶

func (o *UserModelV1) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (*UserModelV1) HasUserGroup ¶

func (o *UserModelV1) HasUserGroup() bool

HasUserGroup returns a boolean if a field has been set.

func (*UserModelV1) HasUserGroupName ¶

func (o *UserModelV1) HasUserGroupName() bool

HasUserGroupName returns a boolean if a field has been set.

func (*UserModelV1) HasUserId ¶

func (o *UserModelV1) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (*UserModelV1) HasUsername ¶

func (o *UserModelV1) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (UserModelV1) MarshalJSON ¶

func (o UserModelV1) MarshalJSON() ([]byte, error)

func (*UserModelV1) SetAdmin ¶

func (o *UserModelV1) SetAdmin(v UserModelV1Admin)

SetAdmin gets a reference to the given UserModelV1Admin and assigns it to the Admin field.

func (*UserModelV1) SetAge ¶

func (o *UserModelV1) SetAge(v int64)

SetAge gets a reference to the given int64 and assigns it to the Age field.

func (*UserModelV1) SetAvatar ¶

func (o *UserModelV1) SetAvatar(v AvatarModelV1)

SetAvatar gets a reference to the given AvatarModelV1 and assigns it to the Avatar field.

func (*UserModelV1) SetBirthday ¶

func (o *UserModelV1) SetBirthday(v BirthdayModelV1)

SetBirthday gets a reference to the given BirthdayModelV1 and assigns it to the Birthday field.

func (*UserModelV1) SetEmail ¶

func (o *UserModelV1) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*UserModelV1) SetFoldingAtHome ¶

func (o *UserModelV1) SetFoldingAtHome(v bool)

SetFoldingAtHome gets a reference to the given bool and assigns it to the FoldingAtHome field.

func (*UserModelV1) SetForumTitle ¶

func (o *UserModelV1) SetForumTitle(v string)

SetForumTitle gets a reference to the given string and assigns it to the ForumTitle field.

func (*UserModelV1) SetGender ¶

func (o *UserModelV1) SetGender(v string)

SetGender gets a reference to the given string and assigns it to the Gender field.

func (*UserModelV1) SetLastActiveTime ¶

func (o *UserModelV1) SetLastActiveTime(v TimeV1)

SetLastActiveTime gets a reference to the given TimeV1 and assigns it to the LastActiveTime field.

func (*UserModelV1) SetLocation ¶

func (o *UserModelV1) SetLocation(v string)

SetLocation gets a reference to the given string and assigns it to the Location field.

func (*UserModelV1) SetProfile ¶

func (o *UserModelV1) SetProfile(v UserModelV1Profile)

SetProfile gets a reference to the given UserModelV1Profile and assigns it to the Profile field.

func (*UserModelV1) SetSignature ¶

func (o *UserModelV1) SetSignature(v string)

SetSignature gets a reference to the given string and assigns it to the Signature field.

func (*UserModelV1) SetStats ¶

func (o *UserModelV1) SetStats(v UserModelV1Stats)

SetStats gets a reference to the given UserModelV1Stats and assigns it to the Stats field.

func (*UserModelV1) SetTimeJoined ¶

func (o *UserModelV1) SetTimeJoined(v TimeV1)

SetTimeJoined gets a reference to the given TimeV1 and assigns it to the TimeJoined field.

func (*UserModelV1) SetTimezone ¶

func (o *UserModelV1) SetTimezone(v int64)

SetTimezone gets a reference to the given int64 and assigns it to the Timezone field.

func (*UserModelV1) SetUrl ¶

func (o *UserModelV1) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (*UserModelV1) SetUserGroup ¶

func (o *UserModelV1) SetUserGroup(v string)

SetUserGroup gets a reference to the given string and assigns it to the UserGroup field.

func (*UserModelV1) SetUserGroupName ¶

func (o *UserModelV1) SetUserGroupName(v string)

SetUserGroupName gets a reference to the given string and assigns it to the UserGroupName field.

func (*UserModelV1) SetUserId ¶

func (o *UserModelV1) SetUserId(v int64)

SetUserId gets a reference to the given int64 and assigns it to the UserId field.

func (*UserModelV1) SetUsername ¶

func (o *UserModelV1) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (UserModelV1) ToMap ¶

func (o UserModelV1) ToMap() (map[string]interface{}, error)

type UserModelV1Admin ¶

type UserModelV1Admin struct {
	IsAdmin            *bool                        `json:"is_admin,omitempty"`
	RegistrationIp     *string                      `json:"registration_ip,omitempty"`
	Permissions        *UserModelV1AdminPermissions `json:"permissions,omitempty"`
	LastSeriesUpdate   *TimeV1                      `json:"last_series_update,omitempty"`
	Approved           *bool                        `json:"approved,omitempty"`
	EmailApproved      *bool                        `json:"email_approved,omitempty"`
	ForumAdmin         *bool                        `json:"forum_admin,omitempty"`
	RegistrationReason *string                      `json:"registration_reason,omitempty"`
	Upgrade            *UserModelV1AdminUpgrade     `json:"upgrade,omitempty"`
	Banned             *bool                        `json:"banned,omitempty"`
}

UserModelV1Admin struct for UserModelV1Admin

func NewUserModelV1Admin ¶

func NewUserModelV1Admin() *UserModelV1Admin

NewUserModelV1Admin instantiates a new UserModelV1Admin object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserModelV1AdminWithDefaults ¶

func NewUserModelV1AdminWithDefaults() *UserModelV1Admin

NewUserModelV1AdminWithDefaults instantiates a new UserModelV1Admin object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserModelV1Admin) GetApproved ¶

func (o *UserModelV1Admin) GetApproved() bool

GetApproved returns the Approved field value if set, zero value otherwise.

func (*UserModelV1Admin) GetApprovedOk ¶

func (o *UserModelV1Admin) GetApprovedOk() (*bool, bool)

GetApprovedOk returns a tuple with the Approved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1Admin) GetBanned ¶

func (o *UserModelV1Admin) GetBanned() bool

GetBanned returns the Banned field value if set, zero value otherwise.

func (*UserModelV1Admin) GetBannedOk ¶

func (o *UserModelV1Admin) GetBannedOk() (*bool, bool)

GetBannedOk returns a tuple with the Banned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1Admin) GetEmailApproved ¶

func (o *UserModelV1Admin) GetEmailApproved() bool

GetEmailApproved returns the EmailApproved field value if set, zero value otherwise.

func (*UserModelV1Admin) GetEmailApprovedOk ¶

func (o *UserModelV1Admin) GetEmailApprovedOk() (*bool, bool)

GetEmailApprovedOk returns a tuple with the EmailApproved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1Admin) GetForumAdmin ¶

func (o *UserModelV1Admin) GetForumAdmin() bool

GetForumAdmin returns the ForumAdmin field value if set, zero value otherwise.

func (*UserModelV1Admin) GetForumAdminOk ¶

func (o *UserModelV1Admin) GetForumAdminOk() (*bool, bool)

GetForumAdminOk returns a tuple with the ForumAdmin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1Admin) GetIsAdmin ¶

func (o *UserModelV1Admin) GetIsAdmin() bool

GetIsAdmin returns the IsAdmin field value if set, zero value otherwise.

func (*UserModelV1Admin) GetIsAdminOk ¶

func (o *UserModelV1Admin) GetIsAdminOk() (*bool, bool)

GetIsAdminOk returns a tuple with the IsAdmin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1Admin) GetLastSeriesUpdate ¶

func (o *UserModelV1Admin) GetLastSeriesUpdate() TimeV1

GetLastSeriesUpdate returns the LastSeriesUpdate field value if set, zero value otherwise.

func (*UserModelV1Admin) GetLastSeriesUpdateOk ¶

func (o *UserModelV1Admin) GetLastSeriesUpdateOk() (*TimeV1, bool)

GetLastSeriesUpdateOk returns a tuple with the LastSeriesUpdate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1Admin) GetPermissions ¶

func (o *UserModelV1Admin) GetPermissions() UserModelV1AdminPermissions

GetPermissions returns the Permissions field value if set, zero value otherwise.

func (*UserModelV1Admin) GetPermissionsOk ¶

func (o *UserModelV1Admin) GetPermissionsOk() (*UserModelV1AdminPermissions, bool)

GetPermissionsOk returns a tuple with the Permissions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1Admin) GetRegistrationIp ¶

func (o *UserModelV1Admin) GetRegistrationIp() string

GetRegistrationIp returns the RegistrationIp field value if set, zero value otherwise.

func (*UserModelV1Admin) GetRegistrationIpOk ¶

func (o *UserModelV1Admin) GetRegistrationIpOk() (*string, bool)

GetRegistrationIpOk returns a tuple with the RegistrationIp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1Admin) GetRegistrationReason ¶

func (o *UserModelV1Admin) GetRegistrationReason() string

GetRegistrationReason returns the RegistrationReason field value if set, zero value otherwise.

func (*UserModelV1Admin) GetRegistrationReasonOk ¶

func (o *UserModelV1Admin) GetRegistrationReasonOk() (*string, bool)

GetRegistrationReasonOk returns a tuple with the RegistrationReason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1Admin) GetUpgrade ¶

func (o *UserModelV1Admin) GetUpgrade() UserModelV1AdminUpgrade

GetUpgrade returns the Upgrade field value if set, zero value otherwise.

func (*UserModelV1Admin) GetUpgradeOk ¶

func (o *UserModelV1Admin) GetUpgradeOk() (*UserModelV1AdminUpgrade, bool)

GetUpgradeOk returns a tuple with the Upgrade field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1Admin) HasApproved ¶

func (o *UserModelV1Admin) HasApproved() bool

HasApproved returns a boolean if a field has been set.

func (*UserModelV1Admin) HasBanned ¶

func (o *UserModelV1Admin) HasBanned() bool

HasBanned returns a boolean if a field has been set.

func (*UserModelV1Admin) HasEmailApproved ¶

func (o *UserModelV1Admin) HasEmailApproved() bool

HasEmailApproved returns a boolean if a field has been set.

func (*UserModelV1Admin) HasForumAdmin ¶

func (o *UserModelV1Admin) HasForumAdmin() bool

HasForumAdmin returns a boolean if a field has been set.

func (*UserModelV1Admin) HasIsAdmin ¶

func (o *UserModelV1Admin) HasIsAdmin() bool

HasIsAdmin returns a boolean if a field has been set.

func (*UserModelV1Admin) HasLastSeriesUpdate ¶

func (o *UserModelV1Admin) HasLastSeriesUpdate() bool

HasLastSeriesUpdate returns a boolean if a field has been set.

func (*UserModelV1Admin) HasPermissions ¶

func (o *UserModelV1Admin) HasPermissions() bool

HasPermissions returns a boolean if a field has been set.

func (*UserModelV1Admin) HasRegistrationIp ¶

func (o *UserModelV1Admin) HasRegistrationIp() bool

HasRegistrationIp returns a boolean if a field has been set.

func (*UserModelV1Admin) HasRegistrationReason ¶

func (o *UserModelV1Admin) HasRegistrationReason() bool

HasRegistrationReason returns a boolean if a field has been set.

func (*UserModelV1Admin) HasUpgrade ¶

func (o *UserModelV1Admin) HasUpgrade() bool

HasUpgrade returns a boolean if a field has been set.

func (UserModelV1Admin) MarshalJSON ¶

func (o UserModelV1Admin) MarshalJSON() ([]byte, error)

func (*UserModelV1Admin) SetApproved ¶

func (o *UserModelV1Admin) SetApproved(v bool)

SetApproved gets a reference to the given bool and assigns it to the Approved field.

func (*UserModelV1Admin) SetBanned ¶

func (o *UserModelV1Admin) SetBanned(v bool)

SetBanned gets a reference to the given bool and assigns it to the Banned field.

func (*UserModelV1Admin) SetEmailApproved ¶

func (o *UserModelV1Admin) SetEmailApproved(v bool)

SetEmailApproved gets a reference to the given bool and assigns it to the EmailApproved field.

func (*UserModelV1Admin) SetForumAdmin ¶

func (o *UserModelV1Admin) SetForumAdmin(v bool)

SetForumAdmin gets a reference to the given bool and assigns it to the ForumAdmin field.

func (*UserModelV1Admin) SetIsAdmin ¶

func (o *UserModelV1Admin) SetIsAdmin(v bool)

SetIsAdmin gets a reference to the given bool and assigns it to the IsAdmin field.

func (*UserModelV1Admin) SetLastSeriesUpdate ¶

func (o *UserModelV1Admin) SetLastSeriesUpdate(v TimeV1)

SetLastSeriesUpdate gets a reference to the given TimeV1 and assigns it to the LastSeriesUpdate field.

func (*UserModelV1Admin) SetPermissions ¶

func (o *UserModelV1Admin) SetPermissions(v UserModelV1AdminPermissions)

SetPermissions gets a reference to the given UserModelV1AdminPermissions and assigns it to the Permissions field.

func (*UserModelV1Admin) SetRegistrationIp ¶

func (o *UserModelV1Admin) SetRegistrationIp(v string)

SetRegistrationIp gets a reference to the given string and assigns it to the RegistrationIp field.

func (*UserModelV1Admin) SetRegistrationReason ¶

func (o *UserModelV1Admin) SetRegistrationReason(v string)

SetRegistrationReason gets a reference to the given string and assigns it to the RegistrationReason field.

func (*UserModelV1Admin) SetUpgrade ¶

func (o *UserModelV1Admin) SetUpgrade(v UserModelV1AdminUpgrade)

SetUpgrade gets a reference to the given UserModelV1AdminUpgrade and assigns it to the Upgrade field.

func (UserModelV1Admin) ToMap ¶

func (o UserModelV1Admin) ToMap() (map[string]interface{}, error)

type UserModelV1AdminPermissions ¶

type UserModelV1AdminPermissions struct {
	PAddReleases      *bool `json:"p_add_releases,omitempty"`
	PEditUsers        *bool `json:"p_edit_users,omitempty"`
	PEditGroups       *bool `json:"p_edit_groups,omitempty"`
	PEditPoll         *bool `json:"p_edit_poll,omitempty"`
	PEditSeries       *bool `json:"p_edit_series,omitempty"`
	PEditReviews      *bool `json:"p_edit_reviews,omitempty"`
	PEditNews         *bool `json:"p_edit_news,omitempty"`
	PEditAffiliates   *bool `json:"p_edit_affiliates,omitempty"`
	PEditAboutus      *bool `json:"p_edit_aboutus,omitempty"`
	PViewLog          *bool `json:"p_view_log,omitempty"`
	PEditConfig       *bool `json:"p_edit_config,omitempty"`
	PViewStats        *bool `json:"p_view_stats,omitempty"`
	PEditGenre        *bool `json:"p_edit_genre,omitempty"`
	PEditAuthors      *bool `json:"p_edit_authors,omitempty"`
	PEditPublishers   *bool `json:"p_edit_publishers,omitempty"`
	PEditPartialUsers *bool `json:"p_edit_partial_users,omitempty"`
}

UserModelV1AdminPermissions struct for UserModelV1AdminPermissions

func NewUserModelV1AdminPermissions ¶

func NewUserModelV1AdminPermissions() *UserModelV1AdminPermissions

NewUserModelV1AdminPermissions instantiates a new UserModelV1AdminPermissions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserModelV1AdminPermissionsWithDefaults ¶

func NewUserModelV1AdminPermissionsWithDefaults() *UserModelV1AdminPermissions

NewUserModelV1AdminPermissionsWithDefaults instantiates a new UserModelV1AdminPermissions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserModelV1AdminPermissions) GetPAddReleases ¶

func (o *UserModelV1AdminPermissions) GetPAddReleases() bool

GetPAddReleases returns the PAddReleases field value if set, zero value otherwise.

func (*UserModelV1AdminPermissions) GetPAddReleasesOk ¶

func (o *UserModelV1AdminPermissions) GetPAddReleasesOk() (*bool, bool)

GetPAddReleasesOk returns a tuple with the PAddReleases field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1AdminPermissions) GetPEditAboutus ¶

func (o *UserModelV1AdminPermissions) GetPEditAboutus() bool

GetPEditAboutus returns the PEditAboutus field value if set, zero value otherwise.

func (*UserModelV1AdminPermissions) GetPEditAboutusOk ¶

func (o *UserModelV1AdminPermissions) GetPEditAboutusOk() (*bool, bool)

GetPEditAboutusOk returns a tuple with the PEditAboutus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1AdminPermissions) GetPEditAffiliates ¶

func (o *UserModelV1AdminPermissions) GetPEditAffiliates() bool

GetPEditAffiliates returns the PEditAffiliates field value if set, zero value otherwise.

func (*UserModelV1AdminPermissions) GetPEditAffiliatesOk ¶

func (o *UserModelV1AdminPermissions) GetPEditAffiliatesOk() (*bool, bool)

GetPEditAffiliatesOk returns a tuple with the PEditAffiliates field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1AdminPermissions) GetPEditAuthors ¶

func (o *UserModelV1AdminPermissions) GetPEditAuthors() bool

GetPEditAuthors returns the PEditAuthors field value if set, zero value otherwise.

func (*UserModelV1AdminPermissions) GetPEditAuthorsOk ¶

func (o *UserModelV1AdminPermissions) GetPEditAuthorsOk() (*bool, bool)

GetPEditAuthorsOk returns a tuple with the PEditAuthors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1AdminPermissions) GetPEditConfig ¶

func (o *UserModelV1AdminPermissions) GetPEditConfig() bool

GetPEditConfig returns the PEditConfig field value if set, zero value otherwise.

func (*UserModelV1AdminPermissions) GetPEditConfigOk ¶

func (o *UserModelV1AdminPermissions) GetPEditConfigOk() (*bool, bool)

GetPEditConfigOk returns a tuple with the PEditConfig field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1AdminPermissions) GetPEditGenre ¶

func (o *UserModelV1AdminPermissions) GetPEditGenre() bool

GetPEditGenre returns the PEditGenre field value if set, zero value otherwise.

func (*UserModelV1AdminPermissions) GetPEditGenreOk ¶

func (o *UserModelV1AdminPermissions) GetPEditGenreOk() (*bool, bool)

GetPEditGenreOk returns a tuple with the PEditGenre field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1AdminPermissions) GetPEditGroups ¶

func (o *UserModelV1AdminPermissions) GetPEditGroups() bool

GetPEditGroups returns the PEditGroups field value if set, zero value otherwise.

func (*UserModelV1AdminPermissions) GetPEditGroupsOk ¶

func (o *UserModelV1AdminPermissions) GetPEditGroupsOk() (*bool, bool)

GetPEditGroupsOk returns a tuple with the PEditGroups field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1AdminPermissions) GetPEditNews ¶

func (o *UserModelV1AdminPermissions) GetPEditNews() bool

GetPEditNews returns the PEditNews field value if set, zero value otherwise.

func (*UserModelV1AdminPermissions) GetPEditNewsOk ¶

func (o *UserModelV1AdminPermissions) GetPEditNewsOk() (*bool, bool)

GetPEditNewsOk returns a tuple with the PEditNews field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1AdminPermissions) GetPEditPartialUsers ¶

func (o *UserModelV1AdminPermissions) GetPEditPartialUsers() bool

GetPEditPartialUsers returns the PEditPartialUsers field value if set, zero value otherwise.

func (*UserModelV1AdminPermissions) GetPEditPartialUsersOk ¶

func (o *UserModelV1AdminPermissions) GetPEditPartialUsersOk() (*bool, bool)

GetPEditPartialUsersOk returns a tuple with the PEditPartialUsers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1AdminPermissions) GetPEditPoll ¶

func (o *UserModelV1AdminPermissions) GetPEditPoll() bool

GetPEditPoll returns the PEditPoll field value if set, zero value otherwise.

func (*UserModelV1AdminPermissions) GetPEditPollOk ¶

func (o *UserModelV1AdminPermissions) GetPEditPollOk() (*bool, bool)

GetPEditPollOk returns a tuple with the PEditPoll field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1AdminPermissions) GetPEditPublishers ¶

func (o *UserModelV1AdminPermissions) GetPEditPublishers() bool

GetPEditPublishers returns the PEditPublishers field value if set, zero value otherwise.

func (*UserModelV1AdminPermissions) GetPEditPublishersOk ¶

func (o *UserModelV1AdminPermissions) GetPEditPublishersOk() (*bool, bool)

GetPEditPublishersOk returns a tuple with the PEditPublishers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1AdminPermissions) GetPEditReviews ¶

func (o *UserModelV1AdminPermissions) GetPEditReviews() bool

GetPEditReviews returns the PEditReviews field value if set, zero value otherwise.

func (*UserModelV1AdminPermissions) GetPEditReviewsOk ¶

func (o *UserModelV1AdminPermissions) GetPEditReviewsOk() (*bool, bool)

GetPEditReviewsOk returns a tuple with the PEditReviews field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1AdminPermissions) GetPEditSeries ¶

func (o *UserModelV1AdminPermissions) GetPEditSeries() bool

GetPEditSeries returns the PEditSeries field value if set, zero value otherwise.

func (*UserModelV1AdminPermissions) GetPEditSeriesOk ¶

func (o *UserModelV1AdminPermissions) GetPEditSeriesOk() (*bool, bool)

GetPEditSeriesOk returns a tuple with the PEditSeries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1AdminPermissions) GetPEditUsers ¶

func (o *UserModelV1AdminPermissions) GetPEditUsers() bool

GetPEditUsers returns the PEditUsers field value if set, zero value otherwise.

func (*UserModelV1AdminPermissions) GetPEditUsersOk ¶

func (o *UserModelV1AdminPermissions) GetPEditUsersOk() (*bool, bool)

GetPEditUsersOk returns a tuple with the PEditUsers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1AdminPermissions) GetPViewLog ¶

func (o *UserModelV1AdminPermissions) GetPViewLog() bool

GetPViewLog returns the PViewLog field value if set, zero value otherwise.

func (*UserModelV1AdminPermissions) GetPViewLogOk ¶

func (o *UserModelV1AdminPermissions) GetPViewLogOk() (*bool, bool)

GetPViewLogOk returns a tuple with the PViewLog field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1AdminPermissions) GetPViewStats ¶

func (o *UserModelV1AdminPermissions) GetPViewStats() bool

GetPViewStats returns the PViewStats field value if set, zero value otherwise.

func (*UserModelV1AdminPermissions) GetPViewStatsOk ¶

func (o *UserModelV1AdminPermissions) GetPViewStatsOk() (*bool, bool)

GetPViewStatsOk returns a tuple with the PViewStats field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1AdminPermissions) HasPAddReleases ¶

func (o *UserModelV1AdminPermissions) HasPAddReleases() bool

HasPAddReleases returns a boolean if a field has been set.

func (*UserModelV1AdminPermissions) HasPEditAboutus ¶

func (o *UserModelV1AdminPermissions) HasPEditAboutus() bool

HasPEditAboutus returns a boolean if a field has been set.

func (*UserModelV1AdminPermissions) HasPEditAffiliates ¶

func (o *UserModelV1AdminPermissions) HasPEditAffiliates() bool

HasPEditAffiliates returns a boolean if a field has been set.

func (*UserModelV1AdminPermissions) HasPEditAuthors ¶

func (o *UserModelV1AdminPermissions) HasPEditAuthors() bool

HasPEditAuthors returns a boolean if a field has been set.

func (*UserModelV1AdminPermissions) HasPEditConfig ¶

func (o *UserModelV1AdminPermissions) HasPEditConfig() bool

HasPEditConfig returns a boolean if a field has been set.

func (*UserModelV1AdminPermissions) HasPEditGenre ¶

func (o *UserModelV1AdminPermissions) HasPEditGenre() bool

HasPEditGenre returns a boolean if a field has been set.

func (*UserModelV1AdminPermissions) HasPEditGroups ¶

func (o *UserModelV1AdminPermissions) HasPEditGroups() bool

HasPEditGroups returns a boolean if a field has been set.

func (*UserModelV1AdminPermissions) HasPEditNews ¶

func (o *UserModelV1AdminPermissions) HasPEditNews() bool

HasPEditNews returns a boolean if a field has been set.

func (*UserModelV1AdminPermissions) HasPEditPartialUsers ¶

func (o *UserModelV1AdminPermissions) HasPEditPartialUsers() bool

HasPEditPartialUsers returns a boolean if a field has been set.

func (*UserModelV1AdminPermissions) HasPEditPoll ¶

func (o *UserModelV1AdminPermissions) HasPEditPoll() bool

HasPEditPoll returns a boolean if a field has been set.

func (*UserModelV1AdminPermissions) HasPEditPublishers ¶

func (o *UserModelV1AdminPermissions) HasPEditPublishers() bool

HasPEditPublishers returns a boolean if a field has been set.

func (*UserModelV1AdminPermissions) HasPEditReviews ¶

func (o *UserModelV1AdminPermissions) HasPEditReviews() bool

HasPEditReviews returns a boolean if a field has been set.

func (*UserModelV1AdminPermissions) HasPEditSeries ¶

func (o *UserModelV1AdminPermissions) HasPEditSeries() bool

HasPEditSeries returns a boolean if a field has been set.

func (*UserModelV1AdminPermissions) HasPEditUsers ¶

func (o *UserModelV1AdminPermissions) HasPEditUsers() bool

HasPEditUsers returns a boolean if a field has been set.

func (*UserModelV1AdminPermissions) HasPViewLog ¶

func (o *UserModelV1AdminPermissions) HasPViewLog() bool

HasPViewLog returns a boolean if a field has been set.

func (*UserModelV1AdminPermissions) HasPViewStats ¶

func (o *UserModelV1AdminPermissions) HasPViewStats() bool

HasPViewStats returns a boolean if a field has been set.

func (UserModelV1AdminPermissions) MarshalJSON ¶

func (o UserModelV1AdminPermissions) MarshalJSON() ([]byte, error)

func (*UserModelV1AdminPermissions) SetPAddReleases ¶

func (o *UserModelV1AdminPermissions) SetPAddReleases(v bool)

SetPAddReleases gets a reference to the given bool and assigns it to the PAddReleases field.

func (*UserModelV1AdminPermissions) SetPEditAboutus ¶

func (o *UserModelV1AdminPermissions) SetPEditAboutus(v bool)

SetPEditAboutus gets a reference to the given bool and assigns it to the PEditAboutus field.

func (*UserModelV1AdminPermissions) SetPEditAffiliates ¶

func (o *UserModelV1AdminPermissions) SetPEditAffiliates(v bool)

SetPEditAffiliates gets a reference to the given bool and assigns it to the PEditAffiliates field.

func (*UserModelV1AdminPermissions) SetPEditAuthors ¶

func (o *UserModelV1AdminPermissions) SetPEditAuthors(v bool)

SetPEditAuthors gets a reference to the given bool and assigns it to the PEditAuthors field.

func (*UserModelV1AdminPermissions) SetPEditConfig ¶

func (o *UserModelV1AdminPermissions) SetPEditConfig(v bool)

SetPEditConfig gets a reference to the given bool and assigns it to the PEditConfig field.

func (*UserModelV1AdminPermissions) SetPEditGenre ¶

func (o *UserModelV1AdminPermissions) SetPEditGenre(v bool)

SetPEditGenre gets a reference to the given bool and assigns it to the PEditGenre field.

func (*UserModelV1AdminPermissions) SetPEditGroups ¶

func (o *UserModelV1AdminPermissions) SetPEditGroups(v bool)

SetPEditGroups gets a reference to the given bool and assigns it to the PEditGroups field.

func (*UserModelV1AdminPermissions) SetPEditNews ¶

func (o *UserModelV1AdminPermissions) SetPEditNews(v bool)

SetPEditNews gets a reference to the given bool and assigns it to the PEditNews field.

func (*UserModelV1AdminPermissions) SetPEditPartialUsers ¶

func (o *UserModelV1AdminPermissions) SetPEditPartialUsers(v bool)

SetPEditPartialUsers gets a reference to the given bool and assigns it to the PEditPartialUsers field.

func (*UserModelV1AdminPermissions) SetPEditPoll ¶

func (o *UserModelV1AdminPermissions) SetPEditPoll(v bool)

SetPEditPoll gets a reference to the given bool and assigns it to the PEditPoll field.

func (*UserModelV1AdminPermissions) SetPEditPublishers ¶

func (o *UserModelV1AdminPermissions) SetPEditPublishers(v bool)

SetPEditPublishers gets a reference to the given bool and assigns it to the PEditPublishers field.

func (*UserModelV1AdminPermissions) SetPEditReviews ¶

func (o *UserModelV1AdminPermissions) SetPEditReviews(v bool)

SetPEditReviews gets a reference to the given bool and assigns it to the PEditReviews field.

func (*UserModelV1AdminPermissions) SetPEditSeries ¶

func (o *UserModelV1AdminPermissions) SetPEditSeries(v bool)

SetPEditSeries gets a reference to the given bool and assigns it to the PEditSeries field.

func (*UserModelV1AdminPermissions) SetPEditUsers ¶

func (o *UserModelV1AdminPermissions) SetPEditUsers(v bool)

SetPEditUsers gets a reference to the given bool and assigns it to the PEditUsers field.

func (*UserModelV1AdminPermissions) SetPViewLog ¶

func (o *UserModelV1AdminPermissions) SetPViewLog(v bool)

SetPViewLog gets a reference to the given bool and assigns it to the PViewLog field.

func (*UserModelV1AdminPermissions) SetPViewStats ¶

func (o *UserModelV1AdminPermissions) SetPViewStats(v bool)

SetPViewStats gets a reference to the given bool and assigns it to the PViewStats field.

func (UserModelV1AdminPermissions) ToMap ¶

func (o UserModelV1AdminPermissions) ToMap() (map[string]interface{}, error)

type UserModelV1AdminUpgrade ¶

type UserModelV1AdminUpgrade struct {
	Banned *bool `json:"banned,omitempty"`
}

UserModelV1AdminUpgrade struct for UserModelV1AdminUpgrade

func NewUserModelV1AdminUpgrade ¶

func NewUserModelV1AdminUpgrade() *UserModelV1AdminUpgrade

NewUserModelV1AdminUpgrade instantiates a new UserModelV1AdminUpgrade object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserModelV1AdminUpgradeWithDefaults ¶

func NewUserModelV1AdminUpgradeWithDefaults() *UserModelV1AdminUpgrade

NewUserModelV1AdminUpgradeWithDefaults instantiates a new UserModelV1AdminUpgrade object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserModelV1AdminUpgrade) GetBanned ¶

func (o *UserModelV1AdminUpgrade) GetBanned() bool

GetBanned returns the Banned field value if set, zero value otherwise.

func (*UserModelV1AdminUpgrade) GetBannedOk ¶

func (o *UserModelV1AdminUpgrade) GetBannedOk() (*bool, bool)

GetBannedOk returns a tuple with the Banned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1AdminUpgrade) HasBanned ¶

func (o *UserModelV1AdminUpgrade) HasBanned() bool

HasBanned returns a boolean if a field has been set.

func (UserModelV1AdminUpgrade) MarshalJSON ¶

func (o UserModelV1AdminUpgrade) MarshalJSON() ([]byte, error)

func (*UserModelV1AdminUpgrade) SetBanned ¶

func (o *UserModelV1AdminUpgrade) SetBanned(v bool)

SetBanned gets a reference to the given bool and assigns it to the Banned field.

func (UserModelV1AdminUpgrade) ToMap ¶

func (o UserModelV1AdminUpgrade) ToMap() (map[string]interface{}, error)

type UserModelV1Profile ¶

type UserModelV1Profile struct {
	PerPage        *int64                     `json:"per_page,omitempty"`
	Invisible      *bool                      `json:"invisible,omitempty"`
	HideBirthday   *bool                      `json:"hide_birthday,omitempty"`
	HideCategories *bool                      `json:"hide_categories,omitempty"`
	FilterTypes    []string                   `json:"filter_types,omitempty"`
	Upgrade        *UserModelV1ProfileUpgrade `json:"upgrade,omitempty"`
	Age18Verified  *bool                      `json:"age18_verified,omitempty"`
}

UserModelV1Profile struct for UserModelV1Profile

func NewUserModelV1Profile ¶

func NewUserModelV1Profile() *UserModelV1Profile

NewUserModelV1Profile instantiates a new UserModelV1Profile object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserModelV1ProfileWithDefaults ¶

func NewUserModelV1ProfileWithDefaults() *UserModelV1Profile

NewUserModelV1ProfileWithDefaults instantiates a new UserModelV1Profile object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserModelV1Profile) GetAge18Verified ¶

func (o *UserModelV1Profile) GetAge18Verified() bool

GetAge18Verified returns the Age18Verified field value if set, zero value otherwise.

func (*UserModelV1Profile) GetAge18VerifiedOk ¶

func (o *UserModelV1Profile) GetAge18VerifiedOk() (*bool, bool)

GetAge18VerifiedOk returns a tuple with the Age18Verified field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1Profile) GetFilterTypes ¶

func (o *UserModelV1Profile) GetFilterTypes() []string

GetFilterTypes returns the FilterTypes field value if set, zero value otherwise.

func (*UserModelV1Profile) GetFilterTypesOk ¶

func (o *UserModelV1Profile) GetFilterTypesOk() ([]string, bool)

GetFilterTypesOk returns a tuple with the FilterTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1Profile) GetHideBirthday ¶

func (o *UserModelV1Profile) GetHideBirthday() bool

GetHideBirthday returns the HideBirthday field value if set, zero value otherwise.

func (*UserModelV1Profile) GetHideBirthdayOk ¶

func (o *UserModelV1Profile) GetHideBirthdayOk() (*bool, bool)

GetHideBirthdayOk returns a tuple with the HideBirthday field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1Profile) GetHideCategories ¶

func (o *UserModelV1Profile) GetHideCategories() bool

GetHideCategories returns the HideCategories field value if set, zero value otherwise.

func (*UserModelV1Profile) GetHideCategoriesOk ¶

func (o *UserModelV1Profile) GetHideCategoriesOk() (*bool, bool)

GetHideCategoriesOk returns a tuple with the HideCategories field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1Profile) GetInvisible ¶

func (o *UserModelV1Profile) GetInvisible() bool

GetInvisible returns the Invisible field value if set, zero value otherwise.

func (*UserModelV1Profile) GetInvisibleOk ¶

func (o *UserModelV1Profile) GetInvisibleOk() (*bool, bool)

GetInvisibleOk returns a tuple with the Invisible field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1Profile) GetPerPage ¶

func (o *UserModelV1Profile) GetPerPage() int64

GetPerPage returns the PerPage field value if set, zero value otherwise.

func (*UserModelV1Profile) GetPerPageOk ¶

func (o *UserModelV1Profile) GetPerPageOk() (*int64, bool)

GetPerPageOk returns a tuple with the PerPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1Profile) GetUpgrade ¶

GetUpgrade returns the Upgrade field value if set, zero value otherwise.

func (*UserModelV1Profile) GetUpgradeOk ¶

func (o *UserModelV1Profile) GetUpgradeOk() (*UserModelV1ProfileUpgrade, bool)

GetUpgradeOk returns a tuple with the Upgrade field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1Profile) HasAge18Verified ¶

func (o *UserModelV1Profile) HasAge18Verified() bool

HasAge18Verified returns a boolean if a field has been set.

func (*UserModelV1Profile) HasFilterTypes ¶

func (o *UserModelV1Profile) HasFilterTypes() bool

HasFilterTypes returns a boolean if a field has been set.

func (*UserModelV1Profile) HasHideBirthday ¶

func (o *UserModelV1Profile) HasHideBirthday() bool

HasHideBirthday returns a boolean if a field has been set.

func (*UserModelV1Profile) HasHideCategories ¶

func (o *UserModelV1Profile) HasHideCategories() bool

HasHideCategories returns a boolean if a field has been set.

func (*UserModelV1Profile) HasInvisible ¶

func (o *UserModelV1Profile) HasInvisible() bool

HasInvisible returns a boolean if a field has been set.

func (*UserModelV1Profile) HasPerPage ¶

func (o *UserModelV1Profile) HasPerPage() bool

HasPerPage returns a boolean if a field has been set.

func (*UserModelV1Profile) HasUpgrade ¶

func (o *UserModelV1Profile) HasUpgrade() bool

HasUpgrade returns a boolean if a field has been set.

func (UserModelV1Profile) MarshalJSON ¶

func (o UserModelV1Profile) MarshalJSON() ([]byte, error)

func (*UserModelV1Profile) SetAge18Verified ¶

func (o *UserModelV1Profile) SetAge18Verified(v bool)

SetAge18Verified gets a reference to the given bool and assigns it to the Age18Verified field.

func (*UserModelV1Profile) SetFilterTypes ¶

func (o *UserModelV1Profile) SetFilterTypes(v []string)

SetFilterTypes gets a reference to the given []string and assigns it to the FilterTypes field.

func (*UserModelV1Profile) SetHideBirthday ¶

func (o *UserModelV1Profile) SetHideBirthday(v bool)

SetHideBirthday gets a reference to the given bool and assigns it to the HideBirthday field.

func (*UserModelV1Profile) SetHideCategories ¶

func (o *UserModelV1Profile) SetHideCategories(v bool)

SetHideCategories gets a reference to the given bool and assigns it to the HideCategories field.

func (*UserModelV1Profile) SetInvisible ¶

func (o *UserModelV1Profile) SetInvisible(v bool)

SetInvisible gets a reference to the given bool and assigns it to the Invisible field.

func (*UserModelV1Profile) SetPerPage ¶

func (o *UserModelV1Profile) SetPerPage(v int64)

SetPerPage gets a reference to the given int64 and assigns it to the PerPage field.

func (*UserModelV1Profile) SetUpgrade ¶

SetUpgrade gets a reference to the given UserModelV1ProfileUpgrade and assigns it to the Upgrade field.

func (UserModelV1Profile) ToMap ¶

func (o UserModelV1Profile) ToMap() (map[string]interface{}, error)

type UserModelV1ProfileUpgrade ¶

type UserModelV1ProfileUpgrade struct {
	Requested *bool   `json:"requested,omitempty"`
	Reason    *string `json:"reason,omitempty"`
}

UserModelV1ProfileUpgrade struct for UserModelV1ProfileUpgrade

func NewUserModelV1ProfileUpgrade ¶

func NewUserModelV1ProfileUpgrade() *UserModelV1ProfileUpgrade

NewUserModelV1ProfileUpgrade instantiates a new UserModelV1ProfileUpgrade object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserModelV1ProfileUpgradeWithDefaults ¶

func NewUserModelV1ProfileUpgradeWithDefaults() *UserModelV1ProfileUpgrade

NewUserModelV1ProfileUpgradeWithDefaults instantiates a new UserModelV1ProfileUpgrade object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserModelV1ProfileUpgrade) GetReason ¶

func (o *UserModelV1ProfileUpgrade) GetReason() string

GetReason returns the Reason field value if set, zero value otherwise.

func (*UserModelV1ProfileUpgrade) GetReasonOk ¶

func (o *UserModelV1ProfileUpgrade) GetReasonOk() (*string, bool)

GetReasonOk returns a tuple with the Reason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1ProfileUpgrade) GetRequested ¶

func (o *UserModelV1ProfileUpgrade) GetRequested() bool

GetRequested returns the Requested field value if set, zero value otherwise.

func (*UserModelV1ProfileUpgrade) GetRequestedOk ¶

func (o *UserModelV1ProfileUpgrade) GetRequestedOk() (*bool, bool)

GetRequestedOk returns a tuple with the Requested field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1ProfileUpgrade) HasReason ¶

func (o *UserModelV1ProfileUpgrade) HasReason() bool

HasReason returns a boolean if a field has been set.

func (*UserModelV1ProfileUpgrade) HasRequested ¶

func (o *UserModelV1ProfileUpgrade) HasRequested() bool

HasRequested returns a boolean if a field has been set.

func (UserModelV1ProfileUpgrade) MarshalJSON ¶

func (o UserModelV1ProfileUpgrade) MarshalJSON() ([]byte, error)

func (*UserModelV1ProfileUpgrade) SetReason ¶

func (o *UserModelV1ProfileUpgrade) SetReason(v string)

SetReason gets a reference to the given string and assigns it to the Reason field.

func (*UserModelV1ProfileUpgrade) SetRequested ¶

func (o *UserModelV1ProfileUpgrade) SetRequested(v bool)

SetRequested gets a reference to the given bool and assigns it to the Requested field.

func (UserModelV1ProfileUpgrade) ToMap ¶

func (o UserModelV1ProfileUpgrade) ToMap() (map[string]interface{}, error)

type UserModelV1Stats ¶

type UserModelV1Stats struct {
	ForumPosts      *int64                      `json:"forum_posts,omitempty"`
	AddedAuthors    *int64                      `json:"added_authors,omitempty"`
	AddedGroups     *int64                      `json:"added_groups,omitempty"`
	AddedPublishers *int64                      `json:"added_publishers,omitempty"`
	AddedReleases   *int64                      `json:"added_releases,omitempty"`
	AddedSeries     *int64                      `json:"added_series,omitempty"`
	SeriesEdits     *int64                      `json:"series_edits,omitempty"`
	AuthorEdits     *int64                      `json:"author_edits,omitempty"`
	PublisherEdits  *int64                      `json:"publisher_edits,omitempty"`
	AddedTags       *int64                      `json:"added_tags,omitempty"`
	Moderation      *UserModelV1StatsModeration `json:"moderation,omitempty"`
}

UserModelV1Stats struct for UserModelV1Stats

func NewUserModelV1Stats ¶

func NewUserModelV1Stats() *UserModelV1Stats

NewUserModelV1Stats instantiates a new UserModelV1Stats object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserModelV1StatsWithDefaults ¶

func NewUserModelV1StatsWithDefaults() *UserModelV1Stats

NewUserModelV1StatsWithDefaults instantiates a new UserModelV1Stats object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserModelV1Stats) GetAddedAuthors ¶

func (o *UserModelV1Stats) GetAddedAuthors() int64

GetAddedAuthors returns the AddedAuthors field value if set, zero value otherwise.

func (*UserModelV1Stats) GetAddedAuthorsOk ¶

func (o *UserModelV1Stats) GetAddedAuthorsOk() (*int64, bool)

GetAddedAuthorsOk returns a tuple with the AddedAuthors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1Stats) GetAddedGroups ¶

func (o *UserModelV1Stats) GetAddedGroups() int64

GetAddedGroups returns the AddedGroups field value if set, zero value otherwise.

func (*UserModelV1Stats) GetAddedGroupsOk ¶

func (o *UserModelV1Stats) GetAddedGroupsOk() (*int64, bool)

GetAddedGroupsOk returns a tuple with the AddedGroups field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1Stats) GetAddedPublishers ¶

func (o *UserModelV1Stats) GetAddedPublishers() int64

GetAddedPublishers returns the AddedPublishers field value if set, zero value otherwise.

func (*UserModelV1Stats) GetAddedPublishersOk ¶

func (o *UserModelV1Stats) GetAddedPublishersOk() (*int64, bool)

GetAddedPublishersOk returns a tuple with the AddedPublishers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1Stats) GetAddedReleases ¶

func (o *UserModelV1Stats) GetAddedReleases() int64

GetAddedReleases returns the AddedReleases field value if set, zero value otherwise.

func (*UserModelV1Stats) GetAddedReleasesOk ¶

func (o *UserModelV1Stats) GetAddedReleasesOk() (*int64, bool)

GetAddedReleasesOk returns a tuple with the AddedReleases field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1Stats) GetAddedSeries ¶

func (o *UserModelV1Stats) GetAddedSeries() int64

GetAddedSeries returns the AddedSeries field value if set, zero value otherwise.

func (*UserModelV1Stats) GetAddedSeriesOk ¶

func (o *UserModelV1Stats) GetAddedSeriesOk() (*int64, bool)

GetAddedSeriesOk returns a tuple with the AddedSeries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1Stats) GetAddedTags ¶

func (o *UserModelV1Stats) GetAddedTags() int64

GetAddedTags returns the AddedTags field value if set, zero value otherwise.

func (*UserModelV1Stats) GetAddedTagsOk ¶

func (o *UserModelV1Stats) GetAddedTagsOk() (*int64, bool)

GetAddedTagsOk returns a tuple with the AddedTags field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1Stats) GetAuthorEdits ¶

func (o *UserModelV1Stats) GetAuthorEdits() int64

GetAuthorEdits returns the AuthorEdits field value if set, zero value otherwise.

func (*UserModelV1Stats) GetAuthorEditsOk ¶

func (o *UserModelV1Stats) GetAuthorEditsOk() (*int64, bool)

GetAuthorEditsOk returns a tuple with the AuthorEdits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1Stats) GetForumPosts ¶

func (o *UserModelV1Stats) GetForumPosts() int64

GetForumPosts returns the ForumPosts field value if set, zero value otherwise.

func (*UserModelV1Stats) GetForumPostsOk ¶

func (o *UserModelV1Stats) GetForumPostsOk() (*int64, bool)

GetForumPostsOk returns a tuple with the ForumPosts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1Stats) GetModeration ¶

func (o *UserModelV1Stats) GetModeration() UserModelV1StatsModeration

GetModeration returns the Moderation field value if set, zero value otherwise.

func (*UserModelV1Stats) GetModerationOk ¶

func (o *UserModelV1Stats) GetModerationOk() (*UserModelV1StatsModeration, bool)

GetModerationOk returns a tuple with the Moderation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1Stats) GetPublisherEdits ¶

func (o *UserModelV1Stats) GetPublisherEdits() int64

GetPublisherEdits returns the PublisherEdits field value if set, zero value otherwise.

func (*UserModelV1Stats) GetPublisherEditsOk ¶

func (o *UserModelV1Stats) GetPublisherEditsOk() (*int64, bool)

GetPublisherEditsOk returns a tuple with the PublisherEdits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1Stats) GetSeriesEdits ¶

func (o *UserModelV1Stats) GetSeriesEdits() int64

GetSeriesEdits returns the SeriesEdits field value if set, zero value otherwise.

func (*UserModelV1Stats) GetSeriesEditsOk ¶

func (o *UserModelV1Stats) GetSeriesEditsOk() (*int64, bool)

GetSeriesEditsOk returns a tuple with the SeriesEdits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1Stats) HasAddedAuthors ¶

func (o *UserModelV1Stats) HasAddedAuthors() bool

HasAddedAuthors returns a boolean if a field has been set.

func (*UserModelV1Stats) HasAddedGroups ¶

func (o *UserModelV1Stats) HasAddedGroups() bool

HasAddedGroups returns a boolean if a field has been set.

func (*UserModelV1Stats) HasAddedPublishers ¶

func (o *UserModelV1Stats) HasAddedPublishers() bool

HasAddedPublishers returns a boolean if a field has been set.

func (*UserModelV1Stats) HasAddedReleases ¶

func (o *UserModelV1Stats) HasAddedReleases() bool

HasAddedReleases returns a boolean if a field has been set.

func (*UserModelV1Stats) HasAddedSeries ¶

func (o *UserModelV1Stats) HasAddedSeries() bool

HasAddedSeries returns a boolean if a field has been set.

func (*UserModelV1Stats) HasAddedTags ¶

func (o *UserModelV1Stats) HasAddedTags() bool

HasAddedTags returns a boolean if a field has been set.

func (*UserModelV1Stats) HasAuthorEdits ¶

func (o *UserModelV1Stats) HasAuthorEdits() bool

HasAuthorEdits returns a boolean if a field has been set.

func (*UserModelV1Stats) HasForumPosts ¶

func (o *UserModelV1Stats) HasForumPosts() bool

HasForumPosts returns a boolean if a field has been set.

func (*UserModelV1Stats) HasModeration ¶

func (o *UserModelV1Stats) HasModeration() bool

HasModeration returns a boolean if a field has been set.

func (*UserModelV1Stats) HasPublisherEdits ¶

func (o *UserModelV1Stats) HasPublisherEdits() bool

HasPublisherEdits returns a boolean if a field has been set.

func (*UserModelV1Stats) HasSeriesEdits ¶

func (o *UserModelV1Stats) HasSeriesEdits() bool

HasSeriesEdits returns a boolean if a field has been set.

func (UserModelV1Stats) MarshalJSON ¶

func (o UserModelV1Stats) MarshalJSON() ([]byte, error)

func (*UserModelV1Stats) SetAddedAuthors ¶

func (o *UserModelV1Stats) SetAddedAuthors(v int64)

SetAddedAuthors gets a reference to the given int64 and assigns it to the AddedAuthors field.

func (*UserModelV1Stats) SetAddedGroups ¶

func (o *UserModelV1Stats) SetAddedGroups(v int64)

SetAddedGroups gets a reference to the given int64 and assigns it to the AddedGroups field.

func (*UserModelV1Stats) SetAddedPublishers ¶

func (o *UserModelV1Stats) SetAddedPublishers(v int64)

SetAddedPublishers gets a reference to the given int64 and assigns it to the AddedPublishers field.

func (*UserModelV1Stats) SetAddedReleases ¶

func (o *UserModelV1Stats) SetAddedReleases(v int64)

SetAddedReleases gets a reference to the given int64 and assigns it to the AddedReleases field.

func (*UserModelV1Stats) SetAddedSeries ¶

func (o *UserModelV1Stats) SetAddedSeries(v int64)

SetAddedSeries gets a reference to the given int64 and assigns it to the AddedSeries field.

func (*UserModelV1Stats) SetAddedTags ¶

func (o *UserModelV1Stats) SetAddedTags(v int64)

SetAddedTags gets a reference to the given int64 and assigns it to the AddedTags field.

func (*UserModelV1Stats) SetAuthorEdits ¶

func (o *UserModelV1Stats) SetAuthorEdits(v int64)

SetAuthorEdits gets a reference to the given int64 and assigns it to the AuthorEdits field.

func (*UserModelV1Stats) SetForumPosts ¶

func (o *UserModelV1Stats) SetForumPosts(v int64)

SetForumPosts gets a reference to the given int64 and assigns it to the ForumPosts field.

func (*UserModelV1Stats) SetModeration ¶

func (o *UserModelV1Stats) SetModeration(v UserModelV1StatsModeration)

SetModeration gets a reference to the given UserModelV1StatsModeration and assigns it to the Moderation field.

func (*UserModelV1Stats) SetPublisherEdits ¶

func (o *UserModelV1Stats) SetPublisherEdits(v int64)

SetPublisherEdits gets a reference to the given int64 and assigns it to the PublisherEdits field.

func (*UserModelV1Stats) SetSeriesEdits ¶

func (o *UserModelV1Stats) SetSeriesEdits(v int64)

SetSeriesEdits gets a reference to the given int64 and assigns it to the SeriesEdits field.

func (UserModelV1Stats) ToMap ¶

func (o UserModelV1Stats) ToMap() (map[string]interface{}, error)

type UserModelV1StatsModeration ¶

type UserModelV1StatsModeration struct {
	Releases   *UserModelV1StatsModerationReleases   `json:"releases,omitempty"`
	Series     *UserModelV1StatsModerationSeries     `json:"series,omitempty"`
	Publishers *UserModelV1StatsModerationPublishers `json:"publishers,omitempty"`
	Groups     *UserModelV1StatsModerationGroups     `json:"groups,omitempty"`
	Authors    *UserModelV1StatsModerationAuthors    `json:"authors,omitempty"`
	LastAction *TimeV1                               `json:"last_action,omitempty"`
}

UserModelV1StatsModeration struct for UserModelV1StatsModeration

func NewUserModelV1StatsModeration ¶

func NewUserModelV1StatsModeration() *UserModelV1StatsModeration

NewUserModelV1StatsModeration instantiates a new UserModelV1StatsModeration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserModelV1StatsModerationWithDefaults ¶

func NewUserModelV1StatsModerationWithDefaults() *UserModelV1StatsModeration

NewUserModelV1StatsModerationWithDefaults instantiates a new UserModelV1StatsModeration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserModelV1StatsModeration) GetAuthors ¶

GetAuthors returns the Authors field value if set, zero value otherwise.

func (*UserModelV1StatsModeration) GetAuthorsOk ¶

GetAuthorsOk returns a tuple with the Authors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1StatsModeration) GetGroups ¶

GetGroups returns the Groups field value if set, zero value otherwise.

func (*UserModelV1StatsModeration) GetGroupsOk ¶

GetGroupsOk returns a tuple with the Groups field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1StatsModeration) GetLastAction ¶

func (o *UserModelV1StatsModeration) GetLastAction() TimeV1

GetLastAction returns the LastAction field value if set, zero value otherwise.

func (*UserModelV1StatsModeration) GetLastActionOk ¶

func (o *UserModelV1StatsModeration) GetLastActionOk() (*TimeV1, bool)

GetLastActionOk returns a tuple with the LastAction field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1StatsModeration) GetPublishers ¶

GetPublishers returns the Publishers field value if set, zero value otherwise.

func (*UserModelV1StatsModeration) GetPublishersOk ¶

GetPublishersOk returns a tuple with the Publishers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1StatsModeration) GetReleases ¶

GetReleases returns the Releases field value if set, zero value otherwise.

func (*UserModelV1StatsModeration) GetReleasesOk ¶

GetReleasesOk returns a tuple with the Releases field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1StatsModeration) GetSeries ¶

GetSeries returns the Series field value if set, zero value otherwise.

func (*UserModelV1StatsModeration) GetSeriesOk ¶

GetSeriesOk returns a tuple with the Series field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1StatsModeration) HasAuthors ¶

func (o *UserModelV1StatsModeration) HasAuthors() bool

HasAuthors returns a boolean if a field has been set.

func (*UserModelV1StatsModeration) HasGroups ¶

func (o *UserModelV1StatsModeration) HasGroups() bool

HasGroups returns a boolean if a field has been set.

func (*UserModelV1StatsModeration) HasLastAction ¶

func (o *UserModelV1StatsModeration) HasLastAction() bool

HasLastAction returns a boolean if a field has been set.

func (*UserModelV1StatsModeration) HasPublishers ¶

func (o *UserModelV1StatsModeration) HasPublishers() bool

HasPublishers returns a boolean if a field has been set.

func (*UserModelV1StatsModeration) HasReleases ¶

func (o *UserModelV1StatsModeration) HasReleases() bool

HasReleases returns a boolean if a field has been set.

func (*UserModelV1StatsModeration) HasSeries ¶

func (o *UserModelV1StatsModeration) HasSeries() bool

HasSeries returns a boolean if a field has been set.

func (UserModelV1StatsModeration) MarshalJSON ¶

func (o UserModelV1StatsModeration) MarshalJSON() ([]byte, error)

func (*UserModelV1StatsModeration) SetAuthors ¶

SetAuthors gets a reference to the given UserModelV1StatsModerationAuthors and assigns it to the Authors field.

func (*UserModelV1StatsModeration) SetGroups ¶

SetGroups gets a reference to the given UserModelV1StatsModerationGroups and assigns it to the Groups field.

func (*UserModelV1StatsModeration) SetLastAction ¶

func (o *UserModelV1StatsModeration) SetLastAction(v TimeV1)

SetLastAction gets a reference to the given TimeV1 and assigns it to the LastAction field.

func (*UserModelV1StatsModeration) SetPublishers ¶

SetPublishers gets a reference to the given UserModelV1StatsModerationPublishers and assigns it to the Publishers field.

func (*UserModelV1StatsModeration) SetReleases ¶

SetReleases gets a reference to the given UserModelV1StatsModerationReleases and assigns it to the Releases field.

func (*UserModelV1StatsModeration) SetSeries ¶

SetSeries gets a reference to the given UserModelV1StatsModerationSeries and assigns it to the Series field.

func (UserModelV1StatsModeration) ToMap ¶

func (o UserModelV1StatsModeration) ToMap() (map[string]interface{}, error)

type UserModelV1StatsModerationAuthors ¶

type UserModelV1StatsModerationAuthors struct {
	Approved *int64 `json:"approved,omitempty"`
	Rejected *int64 `json:"rejected,omitempty"`
	Deleted  *int64 `json:"deleted,omitempty"`
}

UserModelV1StatsModerationAuthors struct for UserModelV1StatsModerationAuthors

func NewUserModelV1StatsModerationAuthors ¶

func NewUserModelV1StatsModerationAuthors() *UserModelV1StatsModerationAuthors

NewUserModelV1StatsModerationAuthors instantiates a new UserModelV1StatsModerationAuthors object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserModelV1StatsModerationAuthorsWithDefaults ¶

func NewUserModelV1StatsModerationAuthorsWithDefaults() *UserModelV1StatsModerationAuthors

NewUserModelV1StatsModerationAuthorsWithDefaults instantiates a new UserModelV1StatsModerationAuthors object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserModelV1StatsModerationAuthors) GetApproved ¶

func (o *UserModelV1StatsModerationAuthors) GetApproved() int64

GetApproved returns the Approved field value if set, zero value otherwise.

func (*UserModelV1StatsModerationAuthors) GetApprovedOk ¶

func (o *UserModelV1StatsModerationAuthors) GetApprovedOk() (*int64, bool)

GetApprovedOk returns a tuple with the Approved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1StatsModerationAuthors) GetDeleted ¶

func (o *UserModelV1StatsModerationAuthors) GetDeleted() int64

GetDeleted returns the Deleted field value if set, zero value otherwise.

func (*UserModelV1StatsModerationAuthors) GetDeletedOk ¶

func (o *UserModelV1StatsModerationAuthors) GetDeletedOk() (*int64, bool)

GetDeletedOk returns a tuple with the Deleted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1StatsModerationAuthors) GetRejected ¶

func (o *UserModelV1StatsModerationAuthors) GetRejected() int64

GetRejected returns the Rejected field value if set, zero value otherwise.

func (*UserModelV1StatsModerationAuthors) GetRejectedOk ¶

func (o *UserModelV1StatsModerationAuthors) GetRejectedOk() (*int64, bool)

GetRejectedOk returns a tuple with the Rejected field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1StatsModerationAuthors) HasApproved ¶

func (o *UserModelV1StatsModerationAuthors) HasApproved() bool

HasApproved returns a boolean if a field has been set.

func (*UserModelV1StatsModerationAuthors) HasDeleted ¶

func (o *UserModelV1StatsModerationAuthors) HasDeleted() bool

HasDeleted returns a boolean if a field has been set.

func (*UserModelV1StatsModerationAuthors) HasRejected ¶

func (o *UserModelV1StatsModerationAuthors) HasRejected() bool

HasRejected returns a boolean if a field has been set.

func (UserModelV1StatsModerationAuthors) MarshalJSON ¶

func (o UserModelV1StatsModerationAuthors) MarshalJSON() ([]byte, error)

func (*UserModelV1StatsModerationAuthors) SetApproved ¶

func (o *UserModelV1StatsModerationAuthors) SetApproved(v int64)

SetApproved gets a reference to the given int64 and assigns it to the Approved field.

func (*UserModelV1StatsModerationAuthors) SetDeleted ¶

func (o *UserModelV1StatsModerationAuthors) SetDeleted(v int64)

SetDeleted gets a reference to the given int64 and assigns it to the Deleted field.

func (*UserModelV1StatsModerationAuthors) SetRejected ¶

func (o *UserModelV1StatsModerationAuthors) SetRejected(v int64)

SetRejected gets a reference to the given int64 and assigns it to the Rejected field.

func (UserModelV1StatsModerationAuthors) ToMap ¶

func (o UserModelV1StatsModerationAuthors) ToMap() (map[string]interface{}, error)

type UserModelV1StatsModerationGroups ¶

type UserModelV1StatsModerationGroups struct {
	Approved *int64 `json:"approved,omitempty"`
	Rejected *int64 `json:"rejected,omitempty"`
	Deleted  *int64 `json:"deleted,omitempty"`
}

UserModelV1StatsModerationGroups struct for UserModelV1StatsModerationGroups

func NewUserModelV1StatsModerationGroups ¶

func NewUserModelV1StatsModerationGroups() *UserModelV1StatsModerationGroups

NewUserModelV1StatsModerationGroups instantiates a new UserModelV1StatsModerationGroups object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserModelV1StatsModerationGroupsWithDefaults ¶

func NewUserModelV1StatsModerationGroupsWithDefaults() *UserModelV1StatsModerationGroups

NewUserModelV1StatsModerationGroupsWithDefaults instantiates a new UserModelV1StatsModerationGroups object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserModelV1StatsModerationGroups) GetApproved ¶

func (o *UserModelV1StatsModerationGroups) GetApproved() int64

GetApproved returns the Approved field value if set, zero value otherwise.

func (*UserModelV1StatsModerationGroups) GetApprovedOk ¶

func (o *UserModelV1StatsModerationGroups) GetApprovedOk() (*int64, bool)

GetApprovedOk returns a tuple with the Approved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1StatsModerationGroups) GetDeleted ¶

func (o *UserModelV1StatsModerationGroups) GetDeleted() int64

GetDeleted returns the Deleted field value if set, zero value otherwise.

func (*UserModelV1StatsModerationGroups) GetDeletedOk ¶

func (o *UserModelV1StatsModerationGroups) GetDeletedOk() (*int64, bool)

GetDeletedOk returns a tuple with the Deleted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1StatsModerationGroups) GetRejected ¶

func (o *UserModelV1StatsModerationGroups) GetRejected() int64

GetRejected returns the Rejected field value if set, zero value otherwise.

func (*UserModelV1StatsModerationGroups) GetRejectedOk ¶

func (o *UserModelV1StatsModerationGroups) GetRejectedOk() (*int64, bool)

GetRejectedOk returns a tuple with the Rejected field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1StatsModerationGroups) HasApproved ¶

func (o *UserModelV1StatsModerationGroups) HasApproved() bool

HasApproved returns a boolean if a field has been set.

func (*UserModelV1StatsModerationGroups) HasDeleted ¶

func (o *UserModelV1StatsModerationGroups) HasDeleted() bool

HasDeleted returns a boolean if a field has been set.

func (*UserModelV1StatsModerationGroups) HasRejected ¶

func (o *UserModelV1StatsModerationGroups) HasRejected() bool

HasRejected returns a boolean if a field has been set.

func (UserModelV1StatsModerationGroups) MarshalJSON ¶

func (o UserModelV1StatsModerationGroups) MarshalJSON() ([]byte, error)

func (*UserModelV1StatsModerationGroups) SetApproved ¶

func (o *UserModelV1StatsModerationGroups) SetApproved(v int64)

SetApproved gets a reference to the given int64 and assigns it to the Approved field.

func (*UserModelV1StatsModerationGroups) SetDeleted ¶

func (o *UserModelV1StatsModerationGroups) SetDeleted(v int64)

SetDeleted gets a reference to the given int64 and assigns it to the Deleted field.

func (*UserModelV1StatsModerationGroups) SetRejected ¶

func (o *UserModelV1StatsModerationGroups) SetRejected(v int64)

SetRejected gets a reference to the given int64 and assigns it to the Rejected field.

func (UserModelV1StatsModerationGroups) ToMap ¶

func (o UserModelV1StatsModerationGroups) ToMap() (map[string]interface{}, error)

type UserModelV1StatsModerationPublishers ¶

type UserModelV1StatsModerationPublishers struct {
	Approved *int64 `json:"approved,omitempty"`
	Rejected *int64 `json:"rejected,omitempty"`
	Deleted  *int64 `json:"deleted,omitempty"`
}

UserModelV1StatsModerationPublishers struct for UserModelV1StatsModerationPublishers

func NewUserModelV1StatsModerationPublishers ¶

func NewUserModelV1StatsModerationPublishers() *UserModelV1StatsModerationPublishers

NewUserModelV1StatsModerationPublishers instantiates a new UserModelV1StatsModerationPublishers object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserModelV1StatsModerationPublishersWithDefaults ¶

func NewUserModelV1StatsModerationPublishersWithDefaults() *UserModelV1StatsModerationPublishers

NewUserModelV1StatsModerationPublishersWithDefaults instantiates a new UserModelV1StatsModerationPublishers object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserModelV1StatsModerationPublishers) GetApproved ¶

GetApproved returns the Approved field value if set, zero value otherwise.

func (*UserModelV1StatsModerationPublishers) GetApprovedOk ¶

func (o *UserModelV1StatsModerationPublishers) GetApprovedOk() (*int64, bool)

GetApprovedOk returns a tuple with the Approved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1StatsModerationPublishers) GetDeleted ¶

GetDeleted returns the Deleted field value if set, zero value otherwise.

func (*UserModelV1StatsModerationPublishers) GetDeletedOk ¶

func (o *UserModelV1StatsModerationPublishers) GetDeletedOk() (*int64, bool)

GetDeletedOk returns a tuple with the Deleted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1StatsModerationPublishers) GetRejected ¶

GetRejected returns the Rejected field value if set, zero value otherwise.

func (*UserModelV1StatsModerationPublishers) GetRejectedOk ¶

func (o *UserModelV1StatsModerationPublishers) GetRejectedOk() (*int64, bool)

GetRejectedOk returns a tuple with the Rejected field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1StatsModerationPublishers) HasApproved ¶

func (o *UserModelV1StatsModerationPublishers) HasApproved() bool

HasApproved returns a boolean if a field has been set.

func (*UserModelV1StatsModerationPublishers) HasDeleted ¶

HasDeleted returns a boolean if a field has been set.

func (*UserModelV1StatsModerationPublishers) HasRejected ¶

func (o *UserModelV1StatsModerationPublishers) HasRejected() bool

HasRejected returns a boolean if a field has been set.

func (UserModelV1StatsModerationPublishers) MarshalJSON ¶

func (o UserModelV1StatsModerationPublishers) MarshalJSON() ([]byte, error)

func (*UserModelV1StatsModerationPublishers) SetApproved ¶

func (o *UserModelV1StatsModerationPublishers) SetApproved(v int64)

SetApproved gets a reference to the given int64 and assigns it to the Approved field.

func (*UserModelV1StatsModerationPublishers) SetDeleted ¶

SetDeleted gets a reference to the given int64 and assigns it to the Deleted field.

func (*UserModelV1StatsModerationPublishers) SetRejected ¶

func (o *UserModelV1StatsModerationPublishers) SetRejected(v int64)

SetRejected gets a reference to the given int64 and assigns it to the Rejected field.

func (UserModelV1StatsModerationPublishers) ToMap ¶

func (o UserModelV1StatsModerationPublishers) ToMap() (map[string]interface{}, error)

type UserModelV1StatsModerationReleases ¶

type UserModelV1StatsModerationReleases struct {
	Approved *int64 `json:"approved,omitempty"`
	Rejected *int64 `json:"rejected,omitempty"`
	Deleted  *int64 `json:"deleted,omitempty"`
}

UserModelV1StatsModerationReleases struct for UserModelV1StatsModerationReleases

func NewUserModelV1StatsModerationReleases ¶

func NewUserModelV1StatsModerationReleases() *UserModelV1StatsModerationReleases

NewUserModelV1StatsModerationReleases instantiates a new UserModelV1StatsModerationReleases object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserModelV1StatsModerationReleasesWithDefaults ¶

func NewUserModelV1StatsModerationReleasesWithDefaults() *UserModelV1StatsModerationReleases

NewUserModelV1StatsModerationReleasesWithDefaults instantiates a new UserModelV1StatsModerationReleases object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserModelV1StatsModerationReleases) GetApproved ¶

func (o *UserModelV1StatsModerationReleases) GetApproved() int64

GetApproved returns the Approved field value if set, zero value otherwise.

func (*UserModelV1StatsModerationReleases) GetApprovedOk ¶

func (o *UserModelV1StatsModerationReleases) GetApprovedOk() (*int64, bool)

GetApprovedOk returns a tuple with the Approved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1StatsModerationReleases) GetDeleted ¶

func (o *UserModelV1StatsModerationReleases) GetDeleted() int64

GetDeleted returns the Deleted field value if set, zero value otherwise.

func (*UserModelV1StatsModerationReleases) GetDeletedOk ¶

func (o *UserModelV1StatsModerationReleases) GetDeletedOk() (*int64, bool)

GetDeletedOk returns a tuple with the Deleted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1StatsModerationReleases) GetRejected ¶

func (o *UserModelV1StatsModerationReleases) GetRejected() int64

GetRejected returns the Rejected field value if set, zero value otherwise.

func (*UserModelV1StatsModerationReleases) GetRejectedOk ¶

func (o *UserModelV1StatsModerationReleases) GetRejectedOk() (*int64, bool)

GetRejectedOk returns a tuple with the Rejected field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1StatsModerationReleases) HasApproved ¶

func (o *UserModelV1StatsModerationReleases) HasApproved() bool

HasApproved returns a boolean if a field has been set.

func (*UserModelV1StatsModerationReleases) HasDeleted ¶

func (o *UserModelV1StatsModerationReleases) HasDeleted() bool

HasDeleted returns a boolean if a field has been set.

func (*UserModelV1StatsModerationReleases) HasRejected ¶

func (o *UserModelV1StatsModerationReleases) HasRejected() bool

HasRejected returns a boolean if a field has been set.

func (UserModelV1StatsModerationReleases) MarshalJSON ¶

func (o UserModelV1StatsModerationReleases) MarshalJSON() ([]byte, error)

func (*UserModelV1StatsModerationReleases) SetApproved ¶

func (o *UserModelV1StatsModerationReleases) SetApproved(v int64)

SetApproved gets a reference to the given int64 and assigns it to the Approved field.

func (*UserModelV1StatsModerationReleases) SetDeleted ¶

func (o *UserModelV1StatsModerationReleases) SetDeleted(v int64)

SetDeleted gets a reference to the given int64 and assigns it to the Deleted field.

func (*UserModelV1StatsModerationReleases) SetRejected ¶

func (o *UserModelV1StatsModerationReleases) SetRejected(v int64)

SetRejected gets a reference to the given int64 and assigns it to the Rejected field.

func (UserModelV1StatsModerationReleases) ToMap ¶

func (o UserModelV1StatsModerationReleases) ToMap() (map[string]interface{}, error)

type UserModelV1StatsModerationSeries ¶

type UserModelV1StatsModerationSeries struct {
	Approved *int64 `json:"approved,omitempty"`
	Rejected *int64 `json:"rejected,omitempty"`
	Deleted  *int64 `json:"deleted,omitempty"`
}

UserModelV1StatsModerationSeries struct for UserModelV1StatsModerationSeries

func NewUserModelV1StatsModerationSeries ¶

func NewUserModelV1StatsModerationSeries() *UserModelV1StatsModerationSeries

NewUserModelV1StatsModerationSeries instantiates a new UserModelV1StatsModerationSeries object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserModelV1StatsModerationSeriesWithDefaults ¶

func NewUserModelV1StatsModerationSeriesWithDefaults() *UserModelV1StatsModerationSeries

NewUserModelV1StatsModerationSeriesWithDefaults instantiates a new UserModelV1StatsModerationSeries object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserModelV1StatsModerationSeries) GetApproved ¶

func (o *UserModelV1StatsModerationSeries) GetApproved() int64

GetApproved returns the Approved field value if set, zero value otherwise.

func (*UserModelV1StatsModerationSeries) GetApprovedOk ¶

func (o *UserModelV1StatsModerationSeries) GetApprovedOk() (*int64, bool)

GetApprovedOk returns a tuple with the Approved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1StatsModerationSeries) GetDeleted ¶

func (o *UserModelV1StatsModerationSeries) GetDeleted() int64

GetDeleted returns the Deleted field value if set, zero value otherwise.

func (*UserModelV1StatsModerationSeries) GetDeletedOk ¶

func (o *UserModelV1StatsModerationSeries) GetDeletedOk() (*int64, bool)

GetDeletedOk returns a tuple with the Deleted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1StatsModerationSeries) GetRejected ¶

func (o *UserModelV1StatsModerationSeries) GetRejected() int64

GetRejected returns the Rejected field value if set, zero value otherwise.

func (*UserModelV1StatsModerationSeries) GetRejectedOk ¶

func (o *UserModelV1StatsModerationSeries) GetRejectedOk() (*int64, bool)

GetRejectedOk returns a tuple with the Rejected field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserModelV1StatsModerationSeries) HasApproved ¶

func (o *UserModelV1StatsModerationSeries) HasApproved() bool

HasApproved returns a boolean if a field has been set.

func (*UserModelV1StatsModerationSeries) HasDeleted ¶

func (o *UserModelV1StatsModerationSeries) HasDeleted() bool

HasDeleted returns a boolean if a field has been set.

func (*UserModelV1StatsModerationSeries) HasRejected ¶

func (o *UserModelV1StatsModerationSeries) HasRejected() bool

HasRejected returns a boolean if a field has been set.

func (UserModelV1StatsModerationSeries) MarshalJSON ¶

func (o UserModelV1StatsModerationSeries) MarshalJSON() ([]byte, error)

func (*UserModelV1StatsModerationSeries) SetApproved ¶

func (o *UserModelV1StatsModerationSeries) SetApproved(v int64)

SetApproved gets a reference to the given int64 and assigns it to the Approved field.

func (*UserModelV1StatsModerationSeries) SetDeleted ¶

func (o *UserModelV1StatsModerationSeries) SetDeleted(v int64)

SetDeleted gets a reference to the given int64 and assigns it to the Deleted field.

func (*UserModelV1StatsModerationSeries) SetRejected ¶

func (o *UserModelV1StatsModerationSeries) SetRejected(v int64)

SetRejected gets a reference to the given int64 and assigns it to the Rejected field.

func (UserModelV1StatsModerationSeries) ToMap ¶

func (o UserModelV1StatsModerationSeries) ToMap() (map[string]interface{}, error)

type UserSearchRequestV1 ¶

type UserSearchRequestV1 struct {
	Search  *string `json:"search,omitempty"`
	Page    *int64  `json:"page,omitempty"`
	Perpage *int64  `json:"perpage,omitempty"`
	Letter  *string `json:"letter,omitempty"`
	Orderby *string `json:"orderby,omitempty"`
	Asc     *string `json:"asc,omitempty"`
}

UserSearchRequestV1 struct for UserSearchRequestV1

func NewUserSearchRequestV1 ¶

func NewUserSearchRequestV1() *UserSearchRequestV1

NewUserSearchRequestV1 instantiates a new UserSearchRequestV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserSearchRequestV1WithDefaults ¶

func NewUserSearchRequestV1WithDefaults() *UserSearchRequestV1

NewUserSearchRequestV1WithDefaults instantiates a new UserSearchRequestV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserSearchRequestV1) GetAsc ¶

func (o *UserSearchRequestV1) GetAsc() string

GetAsc returns the Asc field value if set, zero value otherwise.

func (*UserSearchRequestV1) GetAscOk ¶

func (o *UserSearchRequestV1) GetAscOk() (*string, bool)

GetAscOk returns a tuple with the Asc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserSearchRequestV1) GetLetter ¶

func (o *UserSearchRequestV1) GetLetter() string

GetLetter returns the Letter field value if set, zero value otherwise.

func (*UserSearchRequestV1) GetLetterOk ¶

func (o *UserSearchRequestV1) GetLetterOk() (*string, bool)

GetLetterOk returns a tuple with the Letter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserSearchRequestV1) GetOrderby ¶

func (o *UserSearchRequestV1) GetOrderby() string

GetOrderby returns the Orderby field value if set, zero value otherwise.

func (*UserSearchRequestV1) GetOrderbyOk ¶

func (o *UserSearchRequestV1) GetOrderbyOk() (*string, bool)

GetOrderbyOk returns a tuple with the Orderby field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserSearchRequestV1) GetPage ¶

func (o *UserSearchRequestV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*UserSearchRequestV1) GetPageOk ¶

func (o *UserSearchRequestV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserSearchRequestV1) GetPerpage ¶

func (o *UserSearchRequestV1) GetPerpage() int64

GetPerpage returns the Perpage field value if set, zero value otherwise.

func (*UserSearchRequestV1) GetPerpageOk ¶

func (o *UserSearchRequestV1) GetPerpageOk() (*int64, bool)

GetPerpageOk returns a tuple with the Perpage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserSearchRequestV1) GetSearch ¶

func (o *UserSearchRequestV1) GetSearch() string

GetSearch returns the Search field value if set, zero value otherwise.

func (*UserSearchRequestV1) GetSearchOk ¶

func (o *UserSearchRequestV1) GetSearchOk() (*string, bool)

GetSearchOk returns a tuple with the Search field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserSearchRequestV1) HasAsc ¶

func (o *UserSearchRequestV1) HasAsc() bool

HasAsc returns a boolean if a field has been set.

func (*UserSearchRequestV1) HasLetter ¶

func (o *UserSearchRequestV1) HasLetter() bool

HasLetter returns a boolean if a field has been set.

func (*UserSearchRequestV1) HasOrderby ¶

func (o *UserSearchRequestV1) HasOrderby() bool

HasOrderby returns a boolean if a field has been set.

func (*UserSearchRequestV1) HasPage ¶

func (o *UserSearchRequestV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*UserSearchRequestV1) HasPerpage ¶

func (o *UserSearchRequestV1) HasPerpage() bool

HasPerpage returns a boolean if a field has been set.

func (*UserSearchRequestV1) HasSearch ¶

func (o *UserSearchRequestV1) HasSearch() bool

HasSearch returns a boolean if a field has been set.

func (UserSearchRequestV1) MarshalJSON ¶

func (o UserSearchRequestV1) MarshalJSON() ([]byte, error)

func (*UserSearchRequestV1) SetAsc ¶

func (o *UserSearchRequestV1) SetAsc(v string)

SetAsc gets a reference to the given string and assigns it to the Asc field.

func (*UserSearchRequestV1) SetLetter ¶

func (o *UserSearchRequestV1) SetLetter(v string)

SetLetter gets a reference to the given string and assigns it to the Letter field.

func (*UserSearchRequestV1) SetOrderby ¶

func (o *UserSearchRequestV1) SetOrderby(v string)

SetOrderby gets a reference to the given string and assigns it to the Orderby field.

func (*UserSearchRequestV1) SetPage ¶

func (o *UserSearchRequestV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*UserSearchRequestV1) SetPerpage ¶

func (o *UserSearchRequestV1) SetPerpage(v int64)

SetPerpage gets a reference to the given int64 and assigns it to the Perpage field.

func (*UserSearchRequestV1) SetSearch ¶

func (o *UserSearchRequestV1) SetSearch(v string)

SetSearch gets a reference to the given string and assigns it to the Search field.

func (UserSearchRequestV1) ToMap ¶

func (o UserSearchRequestV1) ToMap() (map[string]interface{}, error)

type UserSearchResponseV1 ¶

type UserSearchResponseV1 struct {
	TotalHits *int64                        `json:"total_hits,omitempty"`
	Page      *int64                        `json:"page,omitempty"`
	PerPage   *int64                        `json:"per_page,omitempty"`
	Results   []UserSearchResponseV1Results `json:"results,omitempty"`
}

UserSearchResponseV1 struct for UserSearchResponseV1

func NewUserSearchResponseV1 ¶

func NewUserSearchResponseV1() *UserSearchResponseV1

NewUserSearchResponseV1 instantiates a new UserSearchResponseV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserSearchResponseV1WithDefaults ¶

func NewUserSearchResponseV1WithDefaults() *UserSearchResponseV1

NewUserSearchResponseV1WithDefaults instantiates a new UserSearchResponseV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserSearchResponseV1) GetPage ¶

func (o *UserSearchResponseV1) GetPage() int64

GetPage returns the Page field value if set, zero value otherwise.

func (*UserSearchResponseV1) GetPageOk ¶

func (o *UserSearchResponseV1) GetPageOk() (*int64, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserSearchResponseV1) GetPerPage ¶

func (o *UserSearchResponseV1) GetPerPage() int64

GetPerPage returns the PerPage field value if set, zero value otherwise.

func (*UserSearchResponseV1) GetPerPageOk ¶

func (o *UserSearchResponseV1) GetPerPageOk() (*int64, bool)

GetPerPageOk returns a tuple with the PerPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserSearchResponseV1) GetResults ¶

GetResults returns the Results field value if set, zero value otherwise.

func (*UserSearchResponseV1) GetResultsOk ¶

func (o *UserSearchResponseV1) GetResultsOk() ([]UserSearchResponseV1Results, bool)

GetResultsOk returns a tuple with the Results field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserSearchResponseV1) GetTotalHits ¶

func (o *UserSearchResponseV1) GetTotalHits() int64

GetTotalHits returns the TotalHits field value if set, zero value otherwise.

func (*UserSearchResponseV1) GetTotalHitsOk ¶

func (o *UserSearchResponseV1) GetTotalHitsOk() (*int64, bool)

GetTotalHitsOk returns a tuple with the TotalHits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserSearchResponseV1) HasPage ¶

func (o *UserSearchResponseV1) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*UserSearchResponseV1) HasPerPage ¶

func (o *UserSearchResponseV1) HasPerPage() bool

HasPerPage returns a boolean if a field has been set.

func (*UserSearchResponseV1) HasResults ¶

func (o *UserSearchResponseV1) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*UserSearchResponseV1) HasTotalHits ¶

func (o *UserSearchResponseV1) HasTotalHits() bool

HasTotalHits returns a boolean if a field has been set.

func (UserSearchResponseV1) MarshalJSON ¶

func (o UserSearchResponseV1) MarshalJSON() ([]byte, error)

func (*UserSearchResponseV1) SetPage ¶

func (o *UserSearchResponseV1) SetPage(v int64)

SetPage gets a reference to the given int64 and assigns it to the Page field.

func (*UserSearchResponseV1) SetPerPage ¶

func (o *UserSearchResponseV1) SetPerPage(v int64)

SetPerPage gets a reference to the given int64 and assigns it to the PerPage field.

func (*UserSearchResponseV1) SetResults ¶

SetResults gets a reference to the given []UserSearchResponseV1Results and assigns it to the Results field.

func (*UserSearchResponseV1) SetTotalHits ¶

func (o *UserSearchResponseV1) SetTotalHits(v int64)

SetTotalHits gets a reference to the given int64 and assigns it to the TotalHits field.

func (UserSearchResponseV1) ToMap ¶

func (o UserSearchResponseV1) ToMap() (map[string]interface{}, error)

type UserSearchResponseV1Results ¶

type UserSearchResponseV1Results struct {
	Record *UserModelSearchV1 `json:"record,omitempty"`
}

UserSearchResponseV1Results struct for UserSearchResponseV1Results

func NewUserSearchResponseV1Results ¶

func NewUserSearchResponseV1Results() *UserSearchResponseV1Results

NewUserSearchResponseV1Results instantiates a new UserSearchResponseV1Results object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserSearchResponseV1ResultsWithDefaults ¶

func NewUserSearchResponseV1ResultsWithDefaults() *UserSearchResponseV1Results

NewUserSearchResponseV1ResultsWithDefaults instantiates a new UserSearchResponseV1Results object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserSearchResponseV1Results) GetRecord ¶

GetRecord returns the Record field value if set, zero value otherwise.

func (*UserSearchResponseV1Results) GetRecordOk ¶

func (o *UserSearchResponseV1Results) GetRecordOk() (*UserModelSearchV1, bool)

GetRecordOk returns a tuple with the Record field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserSearchResponseV1Results) HasRecord ¶

func (o *UserSearchResponseV1Results) HasRecord() bool

HasRecord returns a boolean if a field has been set.

func (UserSearchResponseV1Results) MarshalJSON ¶

func (o UserSearchResponseV1Results) MarshalJSON() ([]byte, error)

func (*UserSearchResponseV1Results) SetRecord ¶

SetRecord gets a reference to the given UserModelSearchV1 and assigns it to the Record field.

func (UserSearchResponseV1Results) ToMap ¶

func (o UserSearchResponseV1Results) ToMap() (map[string]interface{}, error)

type UserSubscribedTopicModelV1 ¶

type UserSubscribedTopicModelV1 struct {
	TopicId             *int64                   `json:"topic_id,omitempty"`
	Topic               *ForumTopicModelSearchV1 `json:"topic,omitempty"`
	TimeSubscribedSince *TimeV1                  `json:"time_subscribed_since,omitempty"`
}

UserSubscribedTopicModelV1 struct for UserSubscribedTopicModelV1

func NewUserSubscribedTopicModelV1 ¶

func NewUserSubscribedTopicModelV1() *UserSubscribedTopicModelV1

NewUserSubscribedTopicModelV1 instantiates a new UserSubscribedTopicModelV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserSubscribedTopicModelV1WithDefaults ¶

func NewUserSubscribedTopicModelV1WithDefaults() *UserSubscribedTopicModelV1

NewUserSubscribedTopicModelV1WithDefaults instantiates a new UserSubscribedTopicModelV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserSubscribedTopicModelV1) GetTimeSubscribedSince ¶

func (o *UserSubscribedTopicModelV1) GetTimeSubscribedSince() TimeV1

GetTimeSubscribedSince returns the TimeSubscribedSince field value if set, zero value otherwise.

func (*UserSubscribedTopicModelV1) GetTimeSubscribedSinceOk ¶

func (o *UserSubscribedTopicModelV1) GetTimeSubscribedSinceOk() (*TimeV1, bool)

GetTimeSubscribedSinceOk returns a tuple with the TimeSubscribedSince field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserSubscribedTopicModelV1) GetTopic ¶

GetTopic returns the Topic field value if set, zero value otherwise.

func (*UserSubscribedTopicModelV1) GetTopicId ¶

func (o *UserSubscribedTopicModelV1) GetTopicId() int64

GetTopicId returns the TopicId field value if set, zero value otherwise.

func (*UserSubscribedTopicModelV1) GetTopicIdOk ¶

func (o *UserSubscribedTopicModelV1) GetTopicIdOk() (*int64, bool)

GetTopicIdOk returns a tuple with the TopicId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserSubscribedTopicModelV1) GetTopicOk ¶

GetTopicOk returns a tuple with the Topic field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserSubscribedTopicModelV1) HasTimeSubscribedSince ¶

func (o *UserSubscribedTopicModelV1) HasTimeSubscribedSince() bool

HasTimeSubscribedSince returns a boolean if a field has been set.

func (*UserSubscribedTopicModelV1) HasTopic ¶

func (o *UserSubscribedTopicModelV1) HasTopic() bool

HasTopic returns a boolean if a field has been set.

func (*UserSubscribedTopicModelV1) HasTopicId ¶

func (o *UserSubscribedTopicModelV1) HasTopicId() bool

HasTopicId returns a boolean if a field has been set.

func (UserSubscribedTopicModelV1) MarshalJSON ¶

func (o UserSubscribedTopicModelV1) MarshalJSON() ([]byte, error)

func (*UserSubscribedTopicModelV1) SetTimeSubscribedSince ¶

func (o *UserSubscribedTopicModelV1) SetTimeSubscribedSince(v TimeV1)

SetTimeSubscribedSince gets a reference to the given TimeV1 and assigns it to the TimeSubscribedSince field.

func (*UserSubscribedTopicModelV1) SetTopic ¶

SetTopic gets a reference to the given ForumTopicModelSearchV1 and assigns it to the Topic field.

func (*UserSubscribedTopicModelV1) SetTopicId ¶

func (o *UserSubscribedTopicModelV1) SetTopicId(v int64)

SetTopicId gets a reference to the given int64 and assigns it to the TopicId field.

func (UserSubscribedTopicModelV1) ToMap ¶

func (o UserSubscribedTopicModelV1) ToMap() (map[string]interface{}, error)

Source Files ¶

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL