Versions in this module Expand all Collapse all v1 v1.3.4 Nov 19, 2023 v1.3.3 Nov 19, 2023 v1.3.2 Nov 11, 2023 v1.3.1 Nov 11, 2023 v1.3.0 Nov 11, 2023 v1.2.0 Nov 3, 2023 v1.1.1 Nov 1, 2023 v1.0.1 Oct 30, 2023 v1.0.0 Oct 30, 2023 Changes in this version + const Api_keyScopes + func NewCreateArticleRequest(server string, body CreateArticleJSONRequestBody) (*http.Request, error) + func NewCreateArticleRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewDeleteApiPagesIdRequest(server string, id int32) (*http.Request, error) + func NewGetApiDisplayAdsIdRequest(server string, id int32) (*http.Request, error) + func NewGetApiDisplayAdsRequest(server string) (*http.Request, error) + func NewGetApiPagesIdRequest(server string, id int32) (*http.Request, error) + func NewGetApiPagesRequest(server string) (*http.Request, error) + func NewGetArticleByIdRequest(server string, id int) (*http.Request, error) + func NewGetArticleByPathRequest(server string, username string, slug string) (*http.Request, error) + func NewGetArticlesRequest(server string, params *GetArticlesParams) (*http.Request, error) + func NewGetCommentByIdRequest(server string, id int) (*http.Request, error) + func NewGetCommentsByArticleIdRequest(server string, params *GetCommentsByArticleIdParams) (*http.Request, error) + func NewGetFollowedTagsRequest(server string) (*http.Request, error) + func NewGetFollowersRequest(server string, params *GetFollowersParams) (*http.Request, error) + func NewGetLatestArticlesRequest(server string, params *GetLatestArticlesParams) (*http.Request, error) + func NewGetOrgArticlesRequest(server string, username string, params *GetOrgArticlesParams) (*http.Request, error) + func NewGetOrgUsersRequest(server string, username string, params *GetOrgUsersParams) (*http.Request, error) + func NewGetOrganizationRequest(server string, username string) (*http.Request, error) + func NewGetPodcastEpisodesRequest(server string, params *GetPodcastEpisodesParams) (*http.Request, error) + func NewGetProfileImageRequest(server string, username string) (*http.Request, error) + func NewGetReadinglistRequest(server string, params *GetReadinglistParams) (*http.Request, error) + func NewGetTagsRequest(server string, params *GetTagsParams) (*http.Request, error) + func NewGetUserAllArticlesRequest(server string, params *GetUserAllArticlesParams) (*http.Request, error) + func NewGetUserArticlesRequest(server string, params *GetUserArticlesParams) (*http.Request, error) + func NewGetUserMeRequest(server string) (*http.Request, error) + func NewGetUserPublishedArticlesRequest(server string, params *GetUserPublishedArticlesParams) (*http.Request, error) + func NewGetUserRequest(server string, id string) (*http.Request, error) + func NewGetUserUnpublishedArticlesRequest(server string, params *GetUserUnpublishedArticlesParams) (*http.Request, error) + func NewPostAdminUsersCreateRequest(server string, body PostAdminUsersCreateJSONRequestBody) (*http.Request, error) + func NewPostAdminUsersCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewPostApiDisplayAdsRequest(server string, body PostApiDisplayAdsJSONRequestBody) (*http.Request, error) + func NewPostApiDisplayAdsRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewPostApiPagesRequest(server string, body PostApiPagesJSONRequestBody) (*http.Request, error) + func NewPostApiPagesRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewPostApiReactionsRequest(server string, params *PostApiReactionsParams) (*http.Request, error) + func NewPostApiReactionsToggleRequest(server string, params *PostApiReactionsToggleParams) (*http.Request, error) + func NewPutApiDisplayAdsIdRequest(server string, id int32, body PutApiDisplayAdsIdJSONRequestBody) (*http.Request, error) + func NewPutApiDisplayAdsIdRequestWithBody(server string, id int32, contentType string, body io.Reader) (*http.Request, error) + func NewPutApiDisplayAdsIdUnpublishRequest(server string, id int32) (*http.Request, error) + func NewPutApiPagesIdRequest(server string, id int32, body PutApiPagesIdJSONRequestBody) (*http.Request, error) + func NewPutApiPagesIdRequestWithBody(server string, id int32, contentType string, body io.Reader) (*http.Request, error) + func NewSuspendUserRequest(server string, id int32) (*http.Request, error) + func NewUnpublishArticleRequest(server string, id int32, params *UnpublishArticleParams) (*http.Request, error) + func NewUnpublishUserRequest(server string, id int32) (*http.Request, error) + func NewUpdateArticleRequest(server string, id int32, body UpdateArticleJSONRequestBody) (*http.Request, error) + func NewUpdateArticleRequestWithBody(server string, id int32, contentType string, body io.Reader) (*http.Request, error) + func NewVideosRequest(server string, params *VideosParams) (*http.Request, error) + type Article struct + Article ... + type ArticleFlareTag struct + BgColorHex *string + Name *string + TextColorHex *string + type ArticleIndex struct + CanonicalUrl string + CoverImage *string + CreatedAt time.Time + CrosspostedAt *time.Time + Description string + EditedAt *time.Time + FlareTag *ArticleFlareTag + Id int32 + LastCommentAt time.Time + Organization *SharedOrganization + Path string + PositiveReactionsCount int32 + PublicReactionsCount int32 + PublishedAt time.Time + PublishedTimestamp time.Time + ReadablePublishDate string + ReadingTimeMinutes int32 + Slug string + SocialImage string + TagList []string + Tags string + Title string + TypeOf string + Url string + User SharedUser + type Client struct + Client HttpRequestDoer + RequestEditors []RequestEditorFn + Server string + func NewClient(server string, opts ...ClientOption) (*Client, error) + func (c *Client) CreateArticle(ctx context.Context, body CreateArticleJSONRequestBody, ...) (*http.Response, error) + func (c *Client) CreateArticleWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) DeleteApiPagesId(ctx context.Context, id int32, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) GetApiDisplayAds(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) GetApiDisplayAdsId(ctx context.Context, id int32, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) GetApiPages(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) GetApiPagesId(ctx context.Context, id int32, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) GetArticleById(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) GetArticleByPath(ctx context.Context, username string, slug string, ...) (*http.Response, error) + func (c *Client) GetArticles(ctx context.Context, params *GetArticlesParams, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) GetCommentById(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) GetCommentsByArticleId(ctx context.Context, params *GetCommentsByArticleIdParams, ...) (*http.Response, error) + func (c *Client) GetFollowedTags(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) GetFollowers(ctx context.Context, params *GetFollowersParams, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) GetLatestArticles(ctx context.Context, params *GetLatestArticlesParams, ...) (*http.Response, error) + func (c *Client) GetOrgArticles(ctx context.Context, username string, params *GetOrgArticlesParams, ...) (*http.Response, error) + func (c *Client) GetOrgUsers(ctx context.Context, username string, params *GetOrgUsersParams, ...) (*http.Response, error) + func (c *Client) GetOrganization(ctx context.Context, username string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) GetPodcastEpisodes(ctx context.Context, params *GetPodcastEpisodesParams, ...) (*http.Response, error) + func (c *Client) GetProfileImage(ctx context.Context, username string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) GetReadinglist(ctx context.Context, params *GetReadinglistParams, ...) (*http.Response, error) + func (c *Client) GetTags(ctx context.Context, params *GetTagsParams, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) GetUser(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) GetUserAllArticles(ctx context.Context, params *GetUserAllArticlesParams, ...) (*http.Response, error) + func (c *Client) GetUserArticles(ctx context.Context, params *GetUserArticlesParams, ...) (*http.Response, error) + func (c *Client) GetUserMe(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) GetUserPublishedArticles(ctx context.Context, params *GetUserPublishedArticlesParams, ...) (*http.Response, error) + func (c *Client) GetUserUnpublishedArticles(ctx context.Context, params *GetUserUnpublishedArticlesParams, ...) (*http.Response, error) + func (c *Client) PostAdminUsersCreate(ctx context.Context, body PostAdminUsersCreateJSONRequestBody, ...) (*http.Response, error) + func (c *Client) PostAdminUsersCreateWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) PostApiDisplayAds(ctx context.Context, body PostApiDisplayAdsJSONRequestBody, ...) (*http.Response, error) + func (c *Client) PostApiDisplayAdsWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) PostApiPages(ctx context.Context, body PostApiPagesJSONRequestBody, ...) (*http.Response, error) + func (c *Client) PostApiPagesWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) PostApiReactions(ctx context.Context, params *PostApiReactionsParams, ...) (*http.Response, error) + func (c *Client) PostApiReactionsToggle(ctx context.Context, params *PostApiReactionsToggleParams, ...) (*http.Response, error) + func (c *Client) PutApiDisplayAdsId(ctx context.Context, id int32, body PutApiDisplayAdsIdJSONRequestBody, ...) (*http.Response, error) + func (c *Client) PutApiDisplayAdsIdUnpublish(ctx context.Context, id int32, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) PutApiDisplayAdsIdWithBody(ctx context.Context, id int32, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) PutApiPagesId(ctx context.Context, id int32, body PutApiPagesIdJSONRequestBody, ...) (*http.Response, error) + func (c *Client) PutApiPagesIdWithBody(ctx context.Context, id int32, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) SuspendUser(ctx context.Context, id int32, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) UnpublishArticle(ctx context.Context, id int32, params *UnpublishArticleParams, ...) (*http.Response, error) + func (c *Client) UnpublishUser(ctx context.Context, id int32, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) UpdateArticle(ctx context.Context, id int32, body UpdateArticleJSONRequestBody, ...) (*http.Response, error) + func (c *Client) UpdateArticleWithBody(ctx context.Context, id int32, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) Videos(ctx context.Context, params *VideosParams, reqEditors ...RequestEditorFn) (*http.Response, error) + type ClientInterface interface + CreateArticle func(ctx context.Context, body CreateArticleJSONRequestBody, ...) (*http.Response, error) + CreateArticleWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + DeleteApiPagesId func(ctx context.Context, id int32, reqEditors ...RequestEditorFn) (*http.Response, error) + GetApiDisplayAds func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + GetApiDisplayAdsId func(ctx context.Context, id int32, reqEditors ...RequestEditorFn) (*http.Response, error) + GetApiPages func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + GetApiPagesId func(ctx context.Context, id int32, reqEditors ...RequestEditorFn) (*http.Response, error) + GetArticleById func(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error) + GetArticleByPath func(ctx context.Context, username string, slug string, ...) (*http.Response, error) + GetArticles func(ctx context.Context, params *GetArticlesParams, reqEditors ...RequestEditorFn) (*http.Response, error) + GetCommentById func(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error) + GetCommentsByArticleId func(ctx context.Context, params *GetCommentsByArticleIdParams, ...) (*http.Response, error) + GetFollowedTags func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + GetFollowers func(ctx context.Context, params *GetFollowersParams, reqEditors ...RequestEditorFn) (*http.Response, error) + GetLatestArticles func(ctx context.Context, params *GetLatestArticlesParams, ...) (*http.Response, error) + GetOrgArticles func(ctx context.Context, username string, params *GetOrgArticlesParams, ...) (*http.Response, error) + GetOrgUsers func(ctx context.Context, username string, params *GetOrgUsersParams, ...) (*http.Response, error) + GetOrganization func(ctx context.Context, username string, reqEditors ...RequestEditorFn) (*http.Response, error) + GetPodcastEpisodes func(ctx context.Context, params *GetPodcastEpisodesParams, ...) (*http.Response, error) + GetProfileImage func(ctx context.Context, username string, reqEditors ...RequestEditorFn) (*http.Response, error) + GetReadinglist func(ctx context.Context, params *GetReadinglistParams, ...) (*http.Response, error) + GetTags func(ctx context.Context, params *GetTagsParams, reqEditors ...RequestEditorFn) (*http.Response, error) + GetUser func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + GetUserAllArticles func(ctx context.Context, params *GetUserAllArticlesParams, ...) (*http.Response, error) + GetUserArticles func(ctx context.Context, params *GetUserArticlesParams, ...) (*http.Response, error) + GetUserMe func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + GetUserPublishedArticles func(ctx context.Context, params *GetUserPublishedArticlesParams, ...) (*http.Response, error) + GetUserUnpublishedArticles func(ctx context.Context, params *GetUserUnpublishedArticlesParams, ...) (*http.Response, error) + PostAdminUsersCreate func(ctx context.Context, body PostAdminUsersCreateJSONRequestBody, ...) (*http.Response, error) + PostAdminUsersCreateWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + PostApiDisplayAds func(ctx context.Context, body PostApiDisplayAdsJSONRequestBody, ...) (*http.Response, error) + PostApiDisplayAdsWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + PostApiPages func(ctx context.Context, body PostApiPagesJSONRequestBody, ...) (*http.Response, error) + PostApiPagesWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + PostApiReactions func(ctx context.Context, params *PostApiReactionsParams, ...) (*http.Response, error) + PostApiReactionsToggle func(ctx context.Context, params *PostApiReactionsToggleParams, ...) (*http.Response, error) + PutApiDisplayAdsId func(ctx context.Context, id int32, body PutApiDisplayAdsIdJSONRequestBody, ...) (*http.Response, error) + PutApiDisplayAdsIdUnpublish func(ctx context.Context, id int32, reqEditors ...RequestEditorFn) (*http.Response, error) + PutApiDisplayAdsIdWithBody func(ctx context.Context, id int32, contentType string, body io.Reader, ...) (*http.Response, error) + PutApiPagesId func(ctx context.Context, id int32, body PutApiPagesIdJSONRequestBody, ...) (*http.Response, error) + PutApiPagesIdWithBody func(ctx context.Context, id int32, contentType string, body io.Reader, ...) (*http.Response, error) + SuspendUser func(ctx context.Context, id int32, reqEditors ...RequestEditorFn) (*http.Response, error) + UnpublishArticle func(ctx context.Context, id int32, params *UnpublishArticleParams, ...) (*http.Response, error) + UnpublishUser func(ctx context.Context, id int32, reqEditors ...RequestEditorFn) (*http.Response, error) + UpdateArticle func(ctx context.Context, id int32, body UpdateArticleJSONRequestBody, ...) (*http.Response, error) + UpdateArticleWithBody func(ctx context.Context, id int32, contentType string, body io.Reader, ...) (*http.Response, error) + Videos func(ctx context.Context, params *VideosParams, reqEditors ...RequestEditorFn) (*http.Response, error) + type ClientOption func(*Client) error + func WithBaseURL(baseURL string) ClientOption + func WithHTTPClient(doer HttpRequestDoer) ClientOption + func WithRequestEditorFn(fn RequestEditorFn) ClientOption + type ClientWithResponses struct + func NewClientWithResponses(server string, opts ...ClientOption) (*ClientWithResponses, error) + func (c *ClientWithResponses) CreateArticleWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*CreateArticleResponse, error) + func (c *ClientWithResponses) CreateArticleWithResponse(ctx context.Context, body CreateArticleJSONRequestBody, ...) (*CreateArticleResponse, error) + func (c *ClientWithResponses) DeleteApiPagesIdWithResponse(ctx context.Context, id int32, reqEditors ...RequestEditorFn) (*DeleteApiPagesIdResponse, error) + func (c *ClientWithResponses) GetApiDisplayAdsIdWithResponse(ctx context.Context, id int32, reqEditors ...RequestEditorFn) (*GetApiDisplayAdsIdResponse, error) + func (c *ClientWithResponses) GetApiDisplayAdsWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*GetApiDisplayAdsResponse, error) + func (c *ClientWithResponses) GetApiPagesIdWithResponse(ctx context.Context, id int32, reqEditors ...RequestEditorFn) (*GetApiPagesIdResponse, error) + func (c *ClientWithResponses) GetApiPagesWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*GetApiPagesResponse, error) + func (c *ClientWithResponses) GetArticleByIdWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*GetArticleByIdResponse, error) + func (c *ClientWithResponses) GetArticleByPathWithResponse(ctx context.Context, username string, slug string, ...) (*GetArticleByPathResponse, error) + func (c *ClientWithResponses) GetArticlesWithResponse(ctx context.Context, params *GetArticlesParams, reqEditors ...RequestEditorFn) (*GetArticlesResponse, error) + func (c *ClientWithResponses) GetCommentByIdWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*GetCommentByIdResponse, error) + func (c *ClientWithResponses) GetCommentsByArticleIdWithResponse(ctx context.Context, params *GetCommentsByArticleIdParams, ...) (*GetCommentsByArticleIdResponse, error) + func (c *ClientWithResponses) GetFollowedTagsWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*GetFollowedTagsResponse, error) + func (c *ClientWithResponses) GetFollowersWithResponse(ctx context.Context, params *GetFollowersParams, reqEditors ...RequestEditorFn) (*GetFollowersResponse, error) + func (c *ClientWithResponses) GetLatestArticlesWithResponse(ctx context.Context, params *GetLatestArticlesParams, ...) (*GetLatestArticlesResponse, error) + func (c *ClientWithResponses) GetOrgArticlesWithResponse(ctx context.Context, username string, params *GetOrgArticlesParams, ...) (*GetOrgArticlesResponse, error) + func (c *ClientWithResponses) GetOrgUsersWithResponse(ctx context.Context, username string, params *GetOrgUsersParams, ...) (*GetOrgUsersResponse, error) + func (c *ClientWithResponses) GetOrganizationWithResponse(ctx context.Context, username string, reqEditors ...RequestEditorFn) (*GetOrganizationResponse, error) + func (c *ClientWithResponses) GetPodcastEpisodesWithResponse(ctx context.Context, params *GetPodcastEpisodesParams, ...) (*GetPodcastEpisodesResponse, error) + func (c *ClientWithResponses) GetProfileImageWithResponse(ctx context.Context, username string, reqEditors ...RequestEditorFn) (*GetProfileImageResponse, error) + func (c *ClientWithResponses) GetReadinglistWithResponse(ctx context.Context, params *GetReadinglistParams, ...) (*GetReadinglistResponse, error) + func (c *ClientWithResponses) GetTagsWithResponse(ctx context.Context, params *GetTagsParams, reqEditors ...RequestEditorFn) (*GetTagsResponse, error) + func (c *ClientWithResponses) GetUserAllArticlesWithResponse(ctx context.Context, params *GetUserAllArticlesParams, ...) (*GetUserAllArticlesResponse, error) + func (c *ClientWithResponses) GetUserArticlesWithResponse(ctx context.Context, params *GetUserArticlesParams, ...) (*GetUserArticlesResponse, error) + func (c *ClientWithResponses) GetUserMeWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*GetUserMeResponse, error) + func (c *ClientWithResponses) GetUserPublishedArticlesWithResponse(ctx context.Context, params *GetUserPublishedArticlesParams, ...) (*GetUserPublishedArticlesResponse, error) + func (c *ClientWithResponses) GetUserUnpublishedArticlesWithResponse(ctx context.Context, params *GetUserUnpublishedArticlesParams, ...) (*GetUserUnpublishedArticlesResponse, error) + func (c *ClientWithResponses) GetUserWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*GetUserResponse, error) + func (c *ClientWithResponses) PostAdminUsersCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*PostAdminUsersCreateResponse, error) + func (c *ClientWithResponses) PostAdminUsersCreateWithResponse(ctx context.Context, body PostAdminUsersCreateJSONRequestBody, ...) (*PostAdminUsersCreateResponse, error) + func (c *ClientWithResponses) PostApiDisplayAdsWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*PostApiDisplayAdsResponse, error) + func (c *ClientWithResponses) PostApiDisplayAdsWithResponse(ctx context.Context, body PostApiDisplayAdsJSONRequestBody, ...) (*PostApiDisplayAdsResponse, error) + func (c *ClientWithResponses) PostApiPagesWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*PostApiPagesResponse, error) + func (c *ClientWithResponses) PostApiPagesWithResponse(ctx context.Context, body PostApiPagesJSONRequestBody, ...) (*PostApiPagesResponse, error) + func (c *ClientWithResponses) PostApiReactionsToggleWithResponse(ctx context.Context, params *PostApiReactionsToggleParams, ...) (*PostApiReactionsToggleResponse, error) + func (c *ClientWithResponses) PostApiReactionsWithResponse(ctx context.Context, params *PostApiReactionsParams, ...) (*PostApiReactionsResponse, error) + func (c *ClientWithResponses) PutApiDisplayAdsIdUnpublishWithResponse(ctx context.Context, id int32, reqEditors ...RequestEditorFn) (*PutApiDisplayAdsIdUnpublishResponse, error) + func (c *ClientWithResponses) PutApiDisplayAdsIdWithBodyWithResponse(ctx context.Context, id int32, contentType string, body io.Reader, ...) (*PutApiDisplayAdsIdResponse, error) + func (c *ClientWithResponses) PutApiDisplayAdsIdWithResponse(ctx context.Context, id int32, body PutApiDisplayAdsIdJSONRequestBody, ...) (*PutApiDisplayAdsIdResponse, error) + func (c *ClientWithResponses) PutApiPagesIdWithBodyWithResponse(ctx context.Context, id int32, contentType string, body io.Reader, ...) (*PutApiPagesIdResponse, error) + func (c *ClientWithResponses) PutApiPagesIdWithResponse(ctx context.Context, id int32, body PutApiPagesIdJSONRequestBody, ...) (*PutApiPagesIdResponse, error) + func (c *ClientWithResponses) SuspendUserWithResponse(ctx context.Context, id int32, reqEditors ...RequestEditorFn) (*SuspendUserResponse, error) + func (c *ClientWithResponses) UnpublishArticleWithResponse(ctx context.Context, id int32, params *UnpublishArticleParams, ...) (*UnpublishArticleResponse, error) + func (c *ClientWithResponses) UnpublishUserWithResponse(ctx context.Context, id int32, reqEditors ...RequestEditorFn) (*UnpublishUserResponse, error) + func (c *ClientWithResponses) UpdateArticleWithBodyWithResponse(ctx context.Context, id int32, contentType string, body io.Reader, ...) (*UpdateArticleResponse, error) + func (c *ClientWithResponses) UpdateArticleWithResponse(ctx context.Context, id int32, body UpdateArticleJSONRequestBody, ...) (*UpdateArticleResponse, error) + func (c *ClientWithResponses) VideosWithResponse(ctx context.Context, params *VideosParams, reqEditors ...RequestEditorFn) (*VideosResponse, error) + type ClientWithResponsesInterface interface + CreateArticleWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*CreateArticleResponse, error) + CreateArticleWithResponse func(ctx context.Context, body CreateArticleJSONRequestBody, ...) (*CreateArticleResponse, error) + DeleteApiPagesIdWithResponse func(ctx context.Context, id int32, reqEditors ...RequestEditorFn) (*DeleteApiPagesIdResponse, error) + GetApiDisplayAdsIdWithResponse func(ctx context.Context, id int32, reqEditors ...RequestEditorFn) (*GetApiDisplayAdsIdResponse, error) + GetApiDisplayAdsWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*GetApiDisplayAdsResponse, error) + GetApiPagesIdWithResponse func(ctx context.Context, id int32, reqEditors ...RequestEditorFn) (*GetApiPagesIdResponse, error) + GetApiPagesWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*GetApiPagesResponse, error) + GetArticleByIdWithResponse func(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*GetArticleByIdResponse, error) + GetArticleByPathWithResponse func(ctx context.Context, username string, slug string, ...) (*GetArticleByPathResponse, error) + GetArticlesWithResponse func(ctx context.Context, params *GetArticlesParams, reqEditors ...RequestEditorFn) (*GetArticlesResponse, error) + GetCommentByIdWithResponse func(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*GetCommentByIdResponse, error) + GetCommentsByArticleIdWithResponse func(ctx context.Context, params *GetCommentsByArticleIdParams, ...) (*GetCommentsByArticleIdResponse, error) + GetFollowedTagsWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*GetFollowedTagsResponse, error) + GetFollowersWithResponse func(ctx context.Context, params *GetFollowersParams, reqEditors ...RequestEditorFn) (*GetFollowersResponse, error) + GetLatestArticlesWithResponse func(ctx context.Context, params *GetLatestArticlesParams, ...) (*GetLatestArticlesResponse, error) + GetOrgArticlesWithResponse func(ctx context.Context, username string, params *GetOrgArticlesParams, ...) (*GetOrgArticlesResponse, error) + GetOrgUsersWithResponse func(ctx context.Context, username string, params *GetOrgUsersParams, ...) (*GetOrgUsersResponse, error) + GetOrganizationWithResponse func(ctx context.Context, username string, reqEditors ...RequestEditorFn) (*GetOrganizationResponse, error) + GetPodcastEpisodesWithResponse func(ctx context.Context, params *GetPodcastEpisodesParams, ...) (*GetPodcastEpisodesResponse, error) + GetProfileImageWithResponse func(ctx context.Context, username string, reqEditors ...RequestEditorFn) (*GetProfileImageResponse, error) + GetReadinglistWithResponse func(ctx context.Context, params *GetReadinglistParams, ...) (*GetReadinglistResponse, error) + GetTagsWithResponse func(ctx context.Context, params *GetTagsParams, reqEditors ...RequestEditorFn) (*GetTagsResponse, error) + GetUserAllArticlesWithResponse func(ctx context.Context, params *GetUserAllArticlesParams, ...) (*GetUserAllArticlesResponse, error) + GetUserArticlesWithResponse func(ctx context.Context, params *GetUserArticlesParams, ...) (*GetUserArticlesResponse, error) + GetUserMeWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*GetUserMeResponse, error) + GetUserPublishedArticlesWithResponse func(ctx context.Context, params *GetUserPublishedArticlesParams, ...) (*GetUserPublishedArticlesResponse, error) + GetUserUnpublishedArticlesWithResponse func(ctx context.Context, params *GetUserUnpublishedArticlesParams, ...) (*GetUserUnpublishedArticlesResponse, error) + GetUserWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*GetUserResponse, error) + PostAdminUsersCreateWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*PostAdminUsersCreateResponse, error) + PostAdminUsersCreateWithResponse func(ctx context.Context, body PostAdminUsersCreateJSONRequestBody, ...) (*PostAdminUsersCreateResponse, error) + PostApiDisplayAdsWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*PostApiDisplayAdsResponse, error) + PostApiDisplayAdsWithResponse func(ctx context.Context, body PostApiDisplayAdsJSONRequestBody, ...) (*PostApiDisplayAdsResponse, error) + PostApiPagesWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*PostApiPagesResponse, error) + PostApiPagesWithResponse func(ctx context.Context, body PostApiPagesJSONRequestBody, ...) (*PostApiPagesResponse, error) + PostApiReactionsToggleWithResponse func(ctx context.Context, params *PostApiReactionsToggleParams, ...) (*PostApiReactionsToggleResponse, error) + PostApiReactionsWithResponse func(ctx context.Context, params *PostApiReactionsParams, ...) (*PostApiReactionsResponse, error) + PutApiDisplayAdsIdUnpublishWithResponse func(ctx context.Context, id int32, reqEditors ...RequestEditorFn) (*PutApiDisplayAdsIdUnpublishResponse, error) + PutApiDisplayAdsIdWithBodyWithResponse func(ctx context.Context, id int32, contentType string, body io.Reader, ...) (*PutApiDisplayAdsIdResponse, error) + PutApiDisplayAdsIdWithResponse func(ctx context.Context, id int32, body PutApiDisplayAdsIdJSONRequestBody, ...) (*PutApiDisplayAdsIdResponse, error) + PutApiPagesIdWithBodyWithResponse func(ctx context.Context, id int32, contentType string, body io.Reader, ...) (*PutApiPagesIdResponse, error) + PutApiPagesIdWithResponse func(ctx context.Context, id int32, body PutApiPagesIdJSONRequestBody, ...) (*PutApiPagesIdResponse, error) + SuspendUserWithResponse func(ctx context.Context, id int32, reqEditors ...RequestEditorFn) (*SuspendUserResponse, error) + UnpublishArticleWithResponse func(ctx context.Context, id int32, params *UnpublishArticleParams, ...) (*UnpublishArticleResponse, error) + UnpublishUserWithResponse func(ctx context.Context, id int32, reqEditors ...RequestEditorFn) (*UnpublishUserResponse, error) + UpdateArticleWithBodyWithResponse func(ctx context.Context, id int32, contentType string, body io.Reader, ...) (*UpdateArticleResponse, error) + UpdateArticleWithResponse func(ctx context.Context, id int32, body UpdateArticleJSONRequestBody, ...) (*UpdateArticleResponse, error) + VideosWithResponse func(ctx context.Context, params *VideosParams, reqEditors ...RequestEditorFn) (*VideosResponse, error) + type Comment struct + CreatedAt *time.Time + IdCode *string + ImageUrl *string + TypeOf *string + type CreateArticleJSONRequestBody = Article + type CreateArticleResponse struct + Body []byte + HTTPResponse *http.Response + func ParseCreateArticleResponse(rsp *http.Response) (*CreateArticleResponse, error) + func (r CreateArticleResponse) Status() string + func (r CreateArticleResponse) StatusCode() int + type DeleteApiPagesIdResponse struct + Body []byte + HTTPResponse *http.Response + JSON200 *Page + func ParseDeleteApiPagesIdResponse(rsp *http.Response) (*DeleteApiPagesIdResponse, error) + func (r DeleteApiPagesIdResponse) Status() string + func (r DeleteApiPagesIdResponse) StatusCode() int + type DisplayAd struct + Approved *bool + ArticleExcludeIds *string + AudienceSegmentType *DisplayAdAudienceSegmentType + BodyMarkdown string + CreatorId *int + DisplayTo *DisplayAdDisplayTo + Id *int + Name string + OrganizationId *int + PlacementArea DisplayAdPlacementArea + Published *bool + TagList *string + TypeOf *DisplayAdTypeOf + type DisplayAdAudienceSegmentType string + const DarkTheme + const Experience1 + const Experience2 + const Experience3 + const Experience4 + const Experience5 + const LightTheme + const NoExperience + const NoPostsYet + const Posted + const Testing + const Trusted + type DisplayAdDisplayTo string + const DisplayAdDisplayToAll + const DisplayAdDisplayToLoggedIn + const DisplayAdDisplayToLoggedOut + type DisplayAdPlacementArea string + const FeedFirst + const FeedSecond + const FeedThird + const PostComments + const PostSidebar + const SidebarLeft + const SidebarLeft2 + const SidebarRight + type DisplayAdTypeOf string + const Community + const External + const InHouse + type FollowedTag struct + Id int64 + Name string + Points float32 + type GetApiDisplayAdsIdResponse struct + Body []byte + HTTPResponse *http.Response + func ParseGetApiDisplayAdsIdResponse(rsp *http.Response) (*GetApiDisplayAdsIdResponse, error) + func (r GetApiDisplayAdsIdResponse) Status() string + func (r GetApiDisplayAdsIdResponse) StatusCode() int + type GetApiDisplayAdsResponse struct + Body []byte + HTTPResponse *http.Response + JSON200 *[]DisplayAd + func ParseGetApiDisplayAdsResponse(rsp *http.Response) (*GetApiDisplayAdsResponse, error) + func (r GetApiDisplayAdsResponse) Status() string + func (r GetApiDisplayAdsResponse) StatusCode() int + type GetApiPagesIdResponse struct + Body []byte + HTTPResponse *http.Response + JSON200 *Page + func ParseGetApiPagesIdResponse(rsp *http.Response) (*GetApiPagesIdResponse, error) + func (r GetApiPagesIdResponse) Status() string + func (r GetApiPagesIdResponse) StatusCode() int + type GetApiPagesResponse struct + Body []byte + HTTPResponse *http.Response + JSON200 *[]Page + func ParseGetApiPagesResponse(rsp *http.Response) (*GetApiPagesResponse, error) + func (r GetApiPagesResponse) Status() string + func (r GetApiPagesResponse) StatusCode() int + type GetArticleByIdResponse struct + Body []byte + HTTPResponse *http.Response + JSON200 *map[string]interface{} + func ParseGetArticleByIdResponse(rsp *http.Response) (*GetArticleByIdResponse, error) + func (r GetArticleByIdResponse) Status() string + func (r GetArticleByIdResponse) StatusCode() int + type GetArticleByPathResponse struct + Body []byte + HTTPResponse *http.Response + JSON200 *map[string]interface{} + func ParseGetArticleByPathResponse(rsp *http.Response) (*GetArticleByPathResponse, error) + func (r GetArticleByPathResponse) Status() string + func (r GetArticleByPathResponse) StatusCode() int + type GetArticlesParams struct + CollectionId *int32 + Page *PageParam + PerPage *PerPageParam30to1000 + State *GetArticlesParamsState + Tag *string + Tags *string + TagsExclude *string + Top *int32 + Username *string + type GetArticlesParamsState string + const GetArticlesParamsStateAll + const GetArticlesParamsStateFresh + const GetArticlesParamsStateRising + type GetArticlesResponse struct + Body []byte + HTTPResponse *http.Response + JSON200 *[]ArticleIndex + func ParseGetArticlesResponse(rsp *http.Response) (*GetArticlesResponse, error) + func (r GetArticlesResponse) Status() string + func (r GetArticlesResponse) StatusCode() int + type GetCommentByIdResponse struct + Body []byte + HTTPResponse *http.Response + func ParseGetCommentByIdResponse(rsp *http.Response) (*GetCommentByIdResponse, error) + func (r GetCommentByIdResponse) Status() string + func (r GetCommentByIdResponse) StatusCode() int + type GetCommentsByArticleIdParams struct + AId *string + PId *string + type GetCommentsByArticleIdResponse struct + Body []byte + HTTPResponse *http.Response + JSON200 *[]Comment + func ParseGetCommentsByArticleIdResponse(rsp *http.Response) (*GetCommentsByArticleIdResponse, error) + func (r GetCommentsByArticleIdResponse) Status() string + func (r GetCommentsByArticleIdResponse) StatusCode() int + type GetFollowedTagsResponse struct + Body []byte + HTTPResponse *http.Response + JSON200 *[]FollowedTag + func ParseGetFollowedTagsResponse(rsp *http.Response) (*GetFollowedTagsResponse, error) + func (r GetFollowedTagsResponse) Status() string + func (r GetFollowedTagsResponse) StatusCode() int + type GetFollowersParams struct + Page *PageParam + PerPage *PerPageParam30to1000 + Sort *string + type GetFollowersResponse struct + Body []byte + HTTPResponse *http.Response + JSON200 ... + func ParseGetFollowersResponse(rsp *http.Response) (*GetFollowersResponse, error) + func (r GetFollowersResponse) Status() string + func (r GetFollowersResponse) StatusCode() int + type GetLatestArticlesParams struct + Page *PageParam + PerPage *PerPageParam30to1000 + type GetLatestArticlesResponse struct + Body []byte + HTTPResponse *http.Response + JSON200 *[]ArticleIndex + func ParseGetLatestArticlesResponse(rsp *http.Response) (*GetLatestArticlesResponse, error) + func (r GetLatestArticlesResponse) Status() string + func (r GetLatestArticlesResponse) StatusCode() int + type GetOrgArticlesParams struct + Page *PageParam + PerPage *PerPageParam30to1000 + type GetOrgArticlesResponse struct + Body []byte + HTTPResponse *http.Response + JSON200 *[]ArticleIndex + func ParseGetOrgArticlesResponse(rsp *http.Response) (*GetOrgArticlesResponse, error) + func (r GetOrgArticlesResponse) Status() string + func (r GetOrgArticlesResponse) StatusCode() int + type GetOrgUsersParams struct + Page *PageParam + PerPage *PerPageParam30to1000 + type GetOrgUsersResponse struct + Body []byte + HTTPResponse *http.Response + JSON200 *[]User + func ParseGetOrgUsersResponse(rsp *http.Response) (*GetOrgUsersResponse, error) + func (r GetOrgUsersResponse) Status() string + func (r GetOrgUsersResponse) StatusCode() int + type GetOrganizationResponse struct + Body []byte + HTTPResponse *http.Response + JSON200 *map[string]interface{} + func ParseGetOrganizationResponse(rsp *http.Response) (*GetOrganizationResponse, error) + func (r GetOrganizationResponse) Status() string + func (r GetOrganizationResponse) StatusCode() int + type GetPodcastEpisodesParams struct + Page *PageParam + PerPage *PerPageParam30to1000 + Username *string + type GetPodcastEpisodesResponse struct + Body []byte + HTTPResponse *http.Response + JSON200 *[]PodcastEpisodeIndex + func ParseGetPodcastEpisodesResponse(rsp *http.Response) (*GetPodcastEpisodesResponse, error) + func (r GetPodcastEpisodesResponse) Status() string + func (r GetPodcastEpisodesResponse) StatusCode() int + type GetProfileImageResponse struct + Body []byte + HTTPResponse *http.Response + JSON200 *map[string]interface{} + func ParseGetProfileImageResponse(rsp *http.Response) (*GetProfileImageResponse, error) + func (r GetProfileImageResponse) Status() string + func (r GetProfileImageResponse) StatusCode() int + type GetReadinglistParams struct + Page *PageParam + PerPage *PerPageParam30to1000 + type GetReadinglistResponse struct + Body []byte + HTTPResponse *http.Response + JSON200 *[]ArticleIndex + func ParseGetReadinglistResponse(rsp *http.Response) (*GetReadinglistResponse, error) + func (r GetReadinglistResponse) Status() string + func (r GetReadinglistResponse) StatusCode() int + type GetTagsParams struct + Page *PageParam + PerPage *PerPageParam10to1000 + type GetTagsResponse struct + Body []byte + HTTPResponse *http.Response + JSON200 *[]Tag + func ParseGetTagsResponse(rsp *http.Response) (*GetTagsResponse, error) + func (r GetTagsResponse) Status() string + func (r GetTagsResponse) StatusCode() int + type GetUserAllArticlesParams struct + Page *PageParam + PerPage *PerPageParam30to1000 + type GetUserAllArticlesResponse struct + Body []byte + HTTPResponse *http.Response + JSON200 *[]ArticleIndex + func ParseGetUserAllArticlesResponse(rsp *http.Response) (*GetUserAllArticlesResponse, error) + func (r GetUserAllArticlesResponse) Status() string + func (r GetUserAllArticlesResponse) StatusCode() int + type GetUserArticlesParams struct + Page *PageParam + PerPage *PerPageParam30to1000 + type GetUserArticlesResponse struct + Body []byte + HTTPResponse *http.Response + JSON200 *[]ArticleIndex + func ParseGetUserArticlesResponse(rsp *http.Response) (*GetUserArticlesResponse, error) + func (r GetUserArticlesResponse) Status() string + func (r GetUserArticlesResponse) StatusCode() int + type GetUserMeResponse struct + Body []byte + HTTPResponse *http.Response + JSON200 *map[string]interface{} + func ParseGetUserMeResponse(rsp *http.Response) (*GetUserMeResponse, error) + func (r GetUserMeResponse) Status() string + func (r GetUserMeResponse) StatusCode() int + type GetUserPublishedArticlesParams struct + Page *PageParam + PerPage *PerPageParam30to1000 + type GetUserPublishedArticlesResponse struct + Body []byte + HTTPResponse *http.Response + JSON200 *[]ArticleIndex + func ParseGetUserPublishedArticlesResponse(rsp *http.Response) (*GetUserPublishedArticlesResponse, error) + func (r GetUserPublishedArticlesResponse) Status() string + func (r GetUserPublishedArticlesResponse) StatusCode() int + type GetUserResponse struct + Body []byte + HTTPResponse *http.Response + JSON200 *map[string]interface{} + func ParseGetUserResponse(rsp *http.Response) (*GetUserResponse, error) + func (r GetUserResponse) Status() string + func (r GetUserResponse) StatusCode() int + type GetUserUnpublishedArticlesParams struct + Page *PageParam + PerPage *PerPageParam30to1000 + type GetUserUnpublishedArticlesResponse struct + Body []byte + HTTPResponse *http.Response + JSON200 *[]ArticleIndex + func ParseGetUserUnpublishedArticlesResponse(rsp *http.Response) (*GetUserUnpublishedArticlesResponse, error) + func (r GetUserUnpublishedArticlesResponse) Status() string + func (r GetUserUnpublishedArticlesResponse) StatusCode() int + type HttpRequestDoer interface + Do func(req *http.Request) (*http.Response, error) + type Organization struct + GithubUsername *string + JoinedAt *string + Location *string + Name *string + Story *string + Summary *string + TagLine *string + TechStack *string + TwitterUsername *string + TypeOf *string + Url *string + Username *string + type Page struct + BodyJson *string + BodyMarkdown *string + Description string + IsTopLevelPath *bool + Slug string + SocialImage *map[string]interface{} + Template PageTemplate + Title string + type PageParam = int32 + type PageTemplate string + const PageTemplateContained + const PageTemplateFullWithinLayout + const PageTemplateJson + const PageTemplateNavBarIncluded + type PerPageParam10to1000 = int32 + type PerPageParam24to1000 = int32 + type PerPageParam30to1000 = int32 + type PodcastEpisodeIndex struct + ClassName string + Id int32 + ImageUrl string + Path string + Podcast SharedPodcast + Title string + TypeOf string + type PostAdminUsersCreateJSONRequestBody = UserInviteParam + type PostAdminUsersCreateResponse struct + Body []byte + HTTPResponse *http.Response + func ParsePostAdminUsersCreateResponse(rsp *http.Response) (*PostAdminUsersCreateResponse, error) + func (r PostAdminUsersCreateResponse) Status() string + func (r PostAdminUsersCreateResponse) StatusCode() int + type PostApiDisplayAdsJSONBody = map[string]interface + type PostApiDisplayAdsJSONRequestBody = PostApiDisplayAdsJSONBody + type PostApiDisplayAdsResponse struct + Body []byte + HTTPResponse *http.Response + JSON200 *map[string]interface{} + func ParsePostApiDisplayAdsResponse(rsp *http.Response) (*PostApiDisplayAdsResponse, error) + func (r PostApiDisplayAdsResponse) Status() string + func (r PostApiDisplayAdsResponse) StatusCode() int + type PostApiPagesJSONBody struct + BodyJson *string + BodyMarkdown *string + Description *string + IsTopLevelPath *bool + Slug *string + Template *PostApiPagesJSONBodyTemplate + Title *string + type PostApiPagesJSONBodyTemplate string + const PostApiPagesJSONBodyTemplateContained + const PostApiPagesJSONBodyTemplateFullWithinLayout + const PostApiPagesJSONBodyTemplateJson + const PostApiPagesJSONBodyTemplateNavBarIncluded + type PostApiPagesJSONRequestBody PostApiPagesJSONBody + type PostApiPagesResponse struct + Body []byte + HTTPResponse *http.Response + func ParsePostApiPagesResponse(rsp *http.Response) (*PostApiPagesResponse, error) + func (r PostApiPagesResponse) Status() string + func (r PostApiPagesResponse) StatusCode() int + type PostApiReactionsParams struct + Category PostApiReactionsParamsCategory + ReactableId int32 + ReactableType PostApiReactionsParamsReactableType + type PostApiReactionsParamsCategory string + const PostApiReactionsParamsCategoryExplodingHead + const PostApiReactionsParamsCategoryFire + const PostApiReactionsParamsCategoryLike + const PostApiReactionsParamsCategoryRaisedHands + const PostApiReactionsParamsCategoryUnicorn + type PostApiReactionsParamsReactableType string + const PostApiReactionsParamsReactableTypeArticle + const PostApiReactionsParamsReactableTypeComment + const PostApiReactionsParamsReactableTypeUser + type PostApiReactionsResponse struct + Body []byte + HTTPResponse *http.Response + func ParsePostApiReactionsResponse(rsp *http.Response) (*PostApiReactionsResponse, error) + func (r PostApiReactionsResponse) Status() string + func (r PostApiReactionsResponse) StatusCode() int + type PostApiReactionsToggleParams struct + Category PostApiReactionsToggleParamsCategory + ReactableId int32 + ReactableType PostApiReactionsToggleParamsReactableType + type PostApiReactionsToggleParamsCategory string + const PostApiReactionsToggleParamsCategoryExplodingHead + const PostApiReactionsToggleParamsCategoryFire + const PostApiReactionsToggleParamsCategoryLike + const PostApiReactionsToggleParamsCategoryRaisedHands + const PostApiReactionsToggleParamsCategoryUnicorn + type PostApiReactionsToggleParamsReactableType string + const PostApiReactionsToggleParamsReactableTypeArticle + const PostApiReactionsToggleParamsReactableTypeComment + const PostApiReactionsToggleParamsReactableTypeUser + type PostApiReactionsToggleResponse struct + Body []byte + HTTPResponse *http.Response + func ParsePostApiReactionsToggleResponse(rsp *http.Response) (*PostApiReactionsToggleResponse, error) + func (r PostApiReactionsToggleResponse) Status() string + func (r PostApiReactionsToggleResponse) StatusCode() int + type ProfileImage struct + ImageOf *string + ProfileImage *string + ProfileImage90 *string + TypeOf *string + type PutApiDisplayAdsIdJSONBody = map[string]interface + type PutApiDisplayAdsIdJSONRequestBody = PutApiDisplayAdsIdJSONBody + type PutApiDisplayAdsIdResponse struct + Body []byte + HTTPResponse *http.Response + JSON200 *map[string]interface{} + func ParsePutApiDisplayAdsIdResponse(rsp *http.Response) (*PutApiDisplayAdsIdResponse, error) + func (r PutApiDisplayAdsIdResponse) Status() string + func (r PutApiDisplayAdsIdResponse) StatusCode() int + type PutApiDisplayAdsIdUnpublishResponse struct + Body []byte + HTTPResponse *http.Response + func ParsePutApiDisplayAdsIdUnpublishResponse(rsp *http.Response) (*PutApiDisplayAdsIdUnpublishResponse, error) + func (r PutApiDisplayAdsIdUnpublishResponse) Status() string + func (r PutApiDisplayAdsIdUnpublishResponse) StatusCode() int + type PutApiPagesIdJSONRequestBody = Page + type PutApiPagesIdResponse struct + Body []byte + HTTPResponse *http.Response + JSON200 *Page + func ParsePutApiPagesIdResponse(rsp *http.Response) (*PutApiPagesIdResponse, error) + func (r PutApiPagesIdResponse) Status() string + func (r PutApiPagesIdResponse) StatusCode() int + type RequestEditorFn func(ctx context.Context, req *http.Request) error + type SharedOrganization struct + Name *string + ProfileImage *string + ProfileImage90 *string + Slug *string + Username *string + type SharedPodcast struct + ImageUrl *string + Slug *string + Title *string + type SharedUser struct + GithubUsername *string + Name *string + ProfileImage *string + ProfileImage90 *string + TwitterUsername *string + Username *string + WebsiteUrl *string + type SuspendUserResponse struct + Body []byte + HTTPResponse *http.Response + func ParseSuspendUserResponse(rsp *http.Response) (*SuspendUserResponse, error) + func (r SuspendUserResponse) Status() string + func (r SuspendUserResponse) StatusCode() int + type Tag struct + BgColorHex *string + Id *int64 + Name *string + TextColorHex *string + type UnpublishArticleParams struct + Note *string + type UnpublishArticleResponse struct + Body []byte + HTTPResponse *http.Response + func ParseUnpublishArticleResponse(rsp *http.Response) (*UnpublishArticleResponse, error) + func (r UnpublishArticleResponse) Status() string + func (r UnpublishArticleResponse) StatusCode() int + type UnpublishUserResponse struct + Body []byte + HTTPResponse *http.Response + func ParseUnpublishUserResponse(rsp *http.Response) (*UnpublishUserResponse, error) + func (r UnpublishUserResponse) Status() string + func (r UnpublishUserResponse) StatusCode() int + type UpdateArticleJSONRequestBody = Article + type UpdateArticleResponse struct + Body []byte + HTTPResponse *http.Response + func ParseUpdateArticleResponse(rsp *http.Response) (*UpdateArticleResponse, error) + func (r UpdateArticleResponse) Status() string + func (r UpdateArticleResponse) StatusCode() int + type User struct + GithubUsername *string + Id *int64 + JoinedAt *string + Location *string + Name *string + ProfileImage *string + Summary *string + TwitterUsername *string + TypeOf *string + Username *string + WebsiteUrl *string + type UserInviteParam struct + Email *string + Name *string + type VideoArticle struct + CloudinaryVideoUrl *string + Id *int64 + Path *string + Title *string + TypeOf *string + User ... + UserId *int64 + VideoDurationInMinutes *string + VideoSourceUrl *string + type VideosParams struct + Page *PageParam + PerPage *PerPageParam24to1000 + type VideosResponse struct + Body []byte + HTTPResponse *http.Response + JSON200 *[]VideoArticle + func ParseVideosResponse(rsp *http.Response) (*VideosResponse, error) + func (r VideosResponse) Status() string + func (r VideosResponse) StatusCode() int