openapi

package module
v0.0.16 Latest Latest
Warning

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

Go to latest
Published: Nov 4, 2024 License: AGPL-3.0 Imports: 21 Imported by: 0

README ¶

Go API client for openapi

Twitter OpenAPI(Swagger) specification

Overview

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

  • API version: 0.0.1
  • Package version: 1.0.0
  • Generator version: 7.9.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/Jel1ySpot/twitter-openapi-go-generated"

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 openapi.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 openapi.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 openapi.ContextOperationServerIndices and openapi.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://x.com/i/api

Class Method HTTP request Description
DefaultAPI GetProfileSpotlightsQuery Get /graphql/{pathQueryId}/ProfileSpotlightsQuery
DefaultAPI GetTweetResultByRestId Get /graphql/{pathQueryId}/TweetResultByRestId
OtherAPI Other Get /other
PostAPI PostCreateBookmark Post /graphql/{pathQueryId}/CreateBookmark
PostAPI PostCreateRetweet Post /graphql/{pathQueryId}/CreateRetweet
PostAPI PostCreateTweet Post /graphql/{pathQueryId}/CreateTweet
PostAPI PostDeleteBookmark Post /graphql/{pathQueryId}/DeleteBookmark
PostAPI PostDeleteRetweet Post /graphql/{pathQueryId}/DeleteRetweet
PostAPI PostDeleteTweet Post /graphql/{pathQueryId}/DeleteTweet
PostAPI PostFavoriteTweet Post /graphql/{pathQueryId}/FavoriteTweet
PostAPI PostUnfavoriteTweet Post /graphql/{pathQueryId}/UnfavoriteTweet
TweetAPI GetBookmarks Get /graphql/{pathQueryId}/Bookmarks
TweetAPI GetHomeLatestTimeline Get /graphql/{pathQueryId}/HomeLatestTimeline
TweetAPI GetHomeTimeline Get /graphql/{pathQueryId}/HomeTimeline
TweetAPI GetLikes Get /graphql/{pathQueryId}/Likes
TweetAPI GetListLatestTweetsTimeline Get /graphql/{pathQueryId}/ListLatestTweetsTimeline
TweetAPI GetSearchTimeline Get /graphql/{pathQueryId}/SearchTimeline
TweetAPI GetTweetDetail Get /graphql/{pathQueryId}/TweetDetail
TweetAPI GetUserHighlightsTweets Get /graphql/{pathQueryId}/UserHighlightsTweets
TweetAPI GetUserMedia Get /graphql/{pathQueryId}/UserMedia
TweetAPI GetUserTweets Get /graphql/{pathQueryId}/UserTweets
TweetAPI GetUserTweetsAndReplies Get /graphql/{pathQueryId}/UserTweetsAndReplies
UserAPI GetUserByRestId Get /graphql/{pathQueryId}/UserByRestId
UserAPI GetUserByScreenName Get /graphql/{pathQueryId}/UserByScreenName
UserListAPI GetFavoriters Get /graphql/{pathQueryId}/Favoriters
UserListAPI GetFollowers Get /graphql/{pathQueryId}/Followers
UserListAPI GetFollowersYouKnow Get /graphql/{pathQueryId}/FollowersYouKnow
UserListAPI GetFollowing Get /graphql/{pathQueryId}/Following
UserListAPI GetRetweeters Get /graphql/{pathQueryId}/Retweeters
UsersAPI GetUsersByRestIds Get /graphql/{pathQueryId}/UsersByRestIds
V11GetAPI GetFriendsFollowingList Get /1.1/friends/following/list.json
V11GetAPI GetSearchTypeahead Get /1.1/search/typeahead.json
V11PostAPI PostCreateFriendships Post /1.1/friendships/create.json
V11PostAPI PostDestroyFriendships Post /1.1/friendships/destroy.json
V20GetAPI GetSearchAdaptive Get /2/search/adaptive.json

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

Accept
  • Type: API key
  • API key parameter name: Accept
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: Accept and passed in as the auth context for each request.

Example

auth := context.WithValue(
		context.Background(),
		openapi.ContextAPIKeys,
		map[string]openapi.APIKey{
			"Accept": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)
AcceptEncoding
  • Type: API key
  • API key parameter name: Accept-Encoding
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: AcceptEncoding and passed in as the auth context for each request.

Example

auth := context.WithValue(
		context.Background(),
		openapi.ContextAPIKeys,
		map[string]openapi.APIKey{
			"AcceptEncoding": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)
AcceptLanguage
  • Type: API key
  • API key parameter name: Accept-Language
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: AcceptLanguage and passed in as the auth context for each request.

Example

auth := context.WithValue(
		context.Background(),
		openapi.ContextAPIKeys,
		map[string]openapi.APIKey{
			"AcceptLanguage": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)
ActiveUser
  • Type: API key
  • API key parameter name: x-twitter-active-user
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: ActiveUser and passed in as the auth context for each request.

Example

auth := context.WithValue(
		context.Background(),
		openapi.ContextAPIKeys,
		map[string]openapi.APIKey{
			"ActiveUser": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)
AuthType
  • Type: API key
  • API key parameter name: x-twitter-auth-type
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: AuthType and passed in as the auth context for each request.

Example

auth := context.WithValue(
		context.Background(),
		openapi.ContextAPIKeys,
		map[string]openapi.APIKey{
			"AuthType": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)
BearerAuth
  • Type: HTTP Bearer token authentication

Example

auth := context.WithValue(context.Background(), openapi.ContextAccessToken, "BEARER_TOKEN_STRING")
r, err := client.Service.Operation(auth, args)
ClientLanguage
  • Type: API key
  • API key parameter name: x-twitter-client-language
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: ClientLanguage and passed in as the auth context for each request.

Example

auth := context.WithValue(
		context.Background(),
		openapi.ContextAPIKeys,
		map[string]openapi.APIKey{
			"ClientLanguage": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)
ClientTransactionId
  • Type: API key
  • API key parameter name: x-client-transaction-id
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: ClientTransactionId and passed in as the auth context for each request.

Example

auth := context.WithValue(
		context.Background(),
		openapi.ContextAPIKeys,
		map[string]openapi.APIKey{
			"ClientTransactionId": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)
ClientUuid
  • Type: API key
  • API key parameter name: x-client-uuid
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: ClientUuid and passed in as the auth context for each request.

Example

auth := context.WithValue(
		context.Background(),
		openapi.ContextAPIKeys,
		map[string]openapi.APIKey{
			"ClientUuid": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)
CookieAuthToken
  • Type: API key
  • API key parameter name: auth_token
  • Location:

Note, each API key must be added to a map of map[string]APIKey where the key is: CookieAuthToken and passed in as the auth context for each request.

Example

auth := context.WithValue(
		context.Background(),
		openapi.ContextAPIKeys,
		map[string]openapi.APIKey{
			"CookieAuthToken": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)
CookieCt0
  • Type: API key
  • API key parameter name: ct0
  • Location:

Note, each API key must be added to a map of map[string]APIKey where the key is: CookieCt0 and passed in as the auth context for each request.

Example

auth := context.WithValue(
		context.Background(),
		openapi.ContextAPIKeys,
		map[string]openapi.APIKey{
			"CookieCt0": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)
CookieGt0
  • Type: API key
  • API key parameter name: gt0
  • Location:

Note, each API key must be added to a map of map[string]APIKey where the key is: CookieGt0 and passed in as the auth context for each request.

Example

auth := context.WithValue(
		context.Background(),
		openapi.ContextAPIKeys,
		map[string]openapi.APIKey{
			"CookieGt0": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)
CsrfToken
  • Type: API key
  • API key parameter name: x-csrf-token
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: CsrfToken and passed in as the auth context for each request.

Example

auth := context.WithValue(
		context.Background(),
		openapi.ContextAPIKeys,
		map[string]openapi.APIKey{
			"CsrfToken": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)
GuestToken
  • Type: API key
  • API key parameter name: x-guest-token
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: GuestToken and passed in as the auth context for each request.

Example

auth := context.WithValue(
		context.Background(),
		openapi.ContextAPIKeys,
		map[string]openapi.APIKey{
			"GuestToken": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)
Referer
  • Type: API key
  • API key parameter name: Referer
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: Referer and passed in as the auth context for each request.

Example

auth := context.WithValue(
		context.Background(),
		openapi.ContextAPIKeys,
		map[string]openapi.APIKey{
			"Referer": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)
SecChUa
  • Type: API key
  • API key parameter name: Sec-Ch-Ua
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: SecChUa and passed in as the auth context for each request.

Example

auth := context.WithValue(
		context.Background(),
		openapi.ContextAPIKeys,
		map[string]openapi.APIKey{
			"SecChUa": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)
SecChUaMobile
  • Type: API key
  • API key parameter name: Sec-Ch-Ua-Mobile
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: SecChUaMobile and passed in as the auth context for each request.

Example

auth := context.WithValue(
		context.Background(),
		openapi.ContextAPIKeys,
		map[string]openapi.APIKey{
			"SecChUaMobile": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)
SecChUaPlatform
  • Type: API key
  • API key parameter name: Sec-Ch-Ua-Platform
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: SecChUaPlatform and passed in as the auth context for each request.

Example

auth := context.WithValue(
		context.Background(),
		openapi.ContextAPIKeys,
		map[string]openapi.APIKey{
			"SecChUaPlatform": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)
SecFetchDest
  • Type: API key
  • API key parameter name: Sec-Fetch-Dest
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: SecFetchDest and passed in as the auth context for each request.

Example

auth := context.WithValue(
		context.Background(),
		openapi.ContextAPIKeys,
		map[string]openapi.APIKey{
			"SecFetchDest": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)
SecFetchMode
  • Type: API key
  • API key parameter name: Sec-Fetch-Mode
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: SecFetchMode and passed in as the auth context for each request.

Example

auth := context.WithValue(
		context.Background(),
		openapi.ContextAPIKeys,
		map[string]openapi.APIKey{
			"SecFetchMode": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)
SecFetchSite
  • Type: API key
  • API key parameter name: Sec-Fetch-Site
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: SecFetchSite and passed in as the auth context for each request.

Example

auth := context.WithValue(
		context.Background(),
		openapi.ContextAPIKeys,
		map[string]openapi.APIKey{
			"SecFetchSite": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)
UserAgent
  • Type: API key
  • API key parameter name: user-agent
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: UserAgent and passed in as the auth context for each request.

Example

auth := context.WithValue(
		context.Background(),
		openapi.ContextAPIKeys,
		map[string]openapi.APIKey{
			"UserAgent": {Key: "API_KEY_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

[email protected]

Documentation ¶

Index ¶

Constants ¶

This section is empty.

Variables ¶

View Source
var (
	JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`)
	XmlCheck  = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`)
)
View Source
var (
	// ContextAccessToken takes a string oauth2 access token as authentication for the request.
	ContextAccessToken = contextKey("accesstoken")

	// ContextAPIKeys takes a string apikey as authentication for the request
	ContextAPIKeys = contextKey("apiKeys")

	// 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")
)
View Source
var AllowedContentEntryTypeEnumValues = []ContentEntryType{
	"TimelineTimelineItem",
	"TimelineTimelineCursor",
	"TimelineTimelineModule",
}

All allowed values of ContentEntryType enum

View Source
var AllowedContentItemTypeEnumValues = []ContentItemType{
	"TimelineTweet",
	"TimelineTimelineCursor",
	"TimelineUser",
	"TimelinePrompt",
	"TimelineMessagePrompt",
	"TimelineCommunity",
}

All allowed values of ContentItemType enum

View Source
var AllowedCursorTypeEnumValues = []CursorType{
	"Top",
	"Bottom",
	"ShowMore",
	"ShowMoreThreads",
	"Gap",
	"ShowMoreThreadsPrompt",
}

All allowed values of CursorType enum

View Source
var AllowedDisplayTypeEnumValues = []DisplayType{
	"Vertical",
	"VerticalConversation",
	"VerticalGrid",
	"Carousel",
}

All allowed values of DisplayType enum

View Source
var AllowedInstructionTypeEnumValues = []InstructionType{
	"TimelineAddEntries",
	"TimelineAddToModule",
	"TimelineClearCache",
	"TimelinePinEntry",
	"TimelineReplaceEntry",
	"TimelineShowAlert",
	"TimelineTerminateTimeline",
	"TimelineShowCover",
}

All allowed values of InstructionType enum

View Source
var AllowedSocialContextUnionTypeEnumValues = []SocialContextUnionType{
	"TimelineGeneralContext",
	"TimelineTopicContext",
}

All allowed values of SocialContextUnionType enum

View Source
var AllowedTypeNameEnumValues = []TypeName{
	"TimelineTweet",
	"TimelineTimelineItem",
	"TimelineUser",
	"TimelineTimelineCursor",
	"TweetWithVisibilityResults",
	"ContextualTweetInterstitial",
	"TimelineTimelineModule",
	"TweetTombstone",
	"TimelinePrompt",
	"TimelineMessagePrompt",
	"TimelineCommunity",
	"TweetUnavailable",
	"Tweet",
	"User",
	"UserUnavailable",
	"Community",
	"CommunityDeleteActionUnavailable",
	"CommunityJoinAction",
	"CommunityLeaveActionUnavailable",
	"CommunityTweetPinActionUnavailable",
	"CommunityTweetUnpinActionUnavailable",
	"CommunityInvitesUnavailable",
	"CommunityJoinRequestsUnavailable",
	"ApiImage",
}

All allowed values of TypeName enum

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 {
	DefaultAPI *DefaultAPIService

	OtherAPI *OtherAPIService

	PostAPI *PostAPIService

	TweetAPI *TweetAPIService

	UserAPI *UserAPIService

	UserListAPI *UserListAPIService

	UsersAPI *UsersAPIService

	V11GetAPI *V11GetAPIService

	V11PostAPI *V11PostAPIService

	V20GetAPI *V20GetAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the Twitter OpenAPI API v0.0.1 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 AdditionalMediaInfo ¶

type AdditionalMediaInfo struct {
	CallToActions *AdditionalMediaInfoCallToActions `json:"call_to_actions,omitempty"`
	Description   *string                           `json:"description,omitempty"`
	Embeddable    *bool                             `json:"embeddable,omitempty"`
	Monetizable   bool                              `json:"monetizable"`
	SourceUser    *UserResultCore                   `json:"source_user,omitempty"`
	Title         *string                           `json:"title,omitempty"`
}

AdditionalMediaInfo struct for AdditionalMediaInfo

func NewAdditionalMediaInfo ¶

func NewAdditionalMediaInfo(monetizable bool) *AdditionalMediaInfo

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

func NewAdditionalMediaInfoWithDefaults ¶

func NewAdditionalMediaInfoWithDefaults() *AdditionalMediaInfo

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

func (*AdditionalMediaInfo) GetCallToActions ¶

GetCallToActions returns the CallToActions field value if set, zero value otherwise.

func (*AdditionalMediaInfo) GetCallToActionsOk ¶

func (o *AdditionalMediaInfo) GetCallToActionsOk() (*AdditionalMediaInfoCallToActions, bool)

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

func (*AdditionalMediaInfo) GetDescription ¶

func (o *AdditionalMediaInfo) GetDescription() string

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

func (*AdditionalMediaInfo) GetDescriptionOk ¶

func (o *AdditionalMediaInfo) 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 (*AdditionalMediaInfo) GetEmbeddable ¶

func (o *AdditionalMediaInfo) GetEmbeddable() bool

GetEmbeddable returns the Embeddable field value if set, zero value otherwise.

func (*AdditionalMediaInfo) GetEmbeddableOk ¶

func (o *AdditionalMediaInfo) GetEmbeddableOk() (*bool, bool)

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

func (*AdditionalMediaInfo) GetMonetizable ¶

func (o *AdditionalMediaInfo) GetMonetizable() bool

GetMonetizable returns the Monetizable field value

func (*AdditionalMediaInfo) GetMonetizableOk ¶

func (o *AdditionalMediaInfo) GetMonetizableOk() (*bool, bool)

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

func (*AdditionalMediaInfo) GetSourceUser ¶

func (o *AdditionalMediaInfo) GetSourceUser() UserResultCore

GetSourceUser returns the SourceUser field value if set, zero value otherwise.

func (*AdditionalMediaInfo) GetSourceUserOk ¶

func (o *AdditionalMediaInfo) GetSourceUserOk() (*UserResultCore, bool)

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

func (*AdditionalMediaInfo) GetTitle ¶

func (o *AdditionalMediaInfo) GetTitle() string

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

func (*AdditionalMediaInfo) GetTitleOk ¶

func (o *AdditionalMediaInfo) 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 (*AdditionalMediaInfo) HasCallToActions ¶

func (o *AdditionalMediaInfo) HasCallToActions() bool

HasCallToActions returns a boolean if a field has been set.

func (*AdditionalMediaInfo) HasDescription ¶

func (o *AdditionalMediaInfo) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*AdditionalMediaInfo) HasEmbeddable ¶

func (o *AdditionalMediaInfo) HasEmbeddable() bool

HasEmbeddable returns a boolean if a field has been set.

func (*AdditionalMediaInfo) HasSourceUser ¶

func (o *AdditionalMediaInfo) HasSourceUser() bool

HasSourceUser returns a boolean if a field has been set.

func (*AdditionalMediaInfo) HasTitle ¶

func (o *AdditionalMediaInfo) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (AdditionalMediaInfo) MarshalJSON ¶

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

func (*AdditionalMediaInfo) SetCallToActions ¶

SetCallToActions gets a reference to the given AdditionalMediaInfoCallToActions and assigns it to the CallToActions field.

func (*AdditionalMediaInfo) SetDescription ¶

func (o *AdditionalMediaInfo) SetDescription(v string)

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

func (*AdditionalMediaInfo) SetEmbeddable ¶

func (o *AdditionalMediaInfo) SetEmbeddable(v bool)

SetEmbeddable gets a reference to the given bool and assigns it to the Embeddable field.

func (*AdditionalMediaInfo) SetMonetizable ¶

func (o *AdditionalMediaInfo) SetMonetizable(v bool)

SetMonetizable sets field value

func (*AdditionalMediaInfo) SetSourceUser ¶

func (o *AdditionalMediaInfo) SetSourceUser(v UserResultCore)

SetSourceUser gets a reference to the given UserResultCore and assigns it to the SourceUser field.

func (*AdditionalMediaInfo) SetTitle ¶

func (o *AdditionalMediaInfo) SetTitle(v string)

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

func (AdditionalMediaInfo) ToMap ¶

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

func (*AdditionalMediaInfo) UnmarshalJSON ¶

func (o *AdditionalMediaInfo) UnmarshalJSON(data []byte) (err error)

type AdditionalMediaInfoCallToActions ¶

type AdditionalMediaInfoCallToActions struct {
	VisitSite *AdditionalMediaInfoCallToActionsUrl `json:"visit_site,omitempty"`
	WatchNow  *AdditionalMediaInfoCallToActionsUrl `json:"watch_now,omitempty"`
}

AdditionalMediaInfoCallToActions struct for AdditionalMediaInfoCallToActions

func NewAdditionalMediaInfoCallToActions ¶

func NewAdditionalMediaInfoCallToActions() *AdditionalMediaInfoCallToActions

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

func NewAdditionalMediaInfoCallToActionsWithDefaults ¶

func NewAdditionalMediaInfoCallToActionsWithDefaults() *AdditionalMediaInfoCallToActions

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

func (*AdditionalMediaInfoCallToActions) GetVisitSite ¶

GetVisitSite returns the VisitSite field value if set, zero value otherwise.

func (*AdditionalMediaInfoCallToActions) GetVisitSiteOk ¶

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

func (*AdditionalMediaInfoCallToActions) GetWatchNow ¶

GetWatchNow returns the WatchNow field value if set, zero value otherwise.

func (*AdditionalMediaInfoCallToActions) GetWatchNowOk ¶

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

func (*AdditionalMediaInfoCallToActions) HasVisitSite ¶

func (o *AdditionalMediaInfoCallToActions) HasVisitSite() bool

HasVisitSite returns a boolean if a field has been set.

func (*AdditionalMediaInfoCallToActions) HasWatchNow ¶

func (o *AdditionalMediaInfoCallToActions) HasWatchNow() bool

HasWatchNow returns a boolean if a field has been set.

func (AdditionalMediaInfoCallToActions) MarshalJSON ¶

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

func (*AdditionalMediaInfoCallToActions) SetVisitSite ¶

SetVisitSite gets a reference to the given AdditionalMediaInfoCallToActionsUrl and assigns it to the VisitSite field.

func (*AdditionalMediaInfoCallToActions) SetWatchNow ¶

SetWatchNow gets a reference to the given AdditionalMediaInfoCallToActionsUrl and assigns it to the WatchNow field.

func (AdditionalMediaInfoCallToActions) ToMap ¶

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

type AdditionalMediaInfoCallToActionsUrl ¶

type AdditionalMediaInfoCallToActionsUrl struct {
	Url string `json:"url"`
}

AdditionalMediaInfoCallToActionsUrl struct for AdditionalMediaInfoCallToActionsUrl

func NewAdditionalMediaInfoCallToActionsUrl ¶

func NewAdditionalMediaInfoCallToActionsUrl(url string) *AdditionalMediaInfoCallToActionsUrl

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

func NewAdditionalMediaInfoCallToActionsUrlWithDefaults ¶

func NewAdditionalMediaInfoCallToActionsUrlWithDefaults() *AdditionalMediaInfoCallToActionsUrl

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

func (*AdditionalMediaInfoCallToActionsUrl) GetUrl ¶

GetUrl returns the Url field value

func (*AdditionalMediaInfoCallToActionsUrl) GetUrlOk ¶

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

func (AdditionalMediaInfoCallToActionsUrl) MarshalJSON ¶

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

func (*AdditionalMediaInfoCallToActionsUrl) SetUrl ¶

SetUrl sets field value

func (AdditionalMediaInfoCallToActionsUrl) ToMap ¶

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

func (*AdditionalMediaInfoCallToActionsUrl) UnmarshalJSON ¶

func (o *AdditionalMediaInfoCallToActionsUrl) UnmarshalJSON(data []byte) (err error)

type AllowDownloadStatus ¶

type AllowDownloadStatus struct {
	AllowDownload *bool `json:"allow_download,omitempty"`
}

AllowDownloadStatus struct for AllowDownloadStatus

func NewAllowDownloadStatus ¶

func NewAllowDownloadStatus() *AllowDownloadStatus

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

func NewAllowDownloadStatusWithDefaults ¶

func NewAllowDownloadStatusWithDefaults() *AllowDownloadStatus

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

func (*AllowDownloadStatus) GetAllowDownload ¶

func (o *AllowDownloadStatus) GetAllowDownload() bool

GetAllowDownload returns the AllowDownload field value if set, zero value otherwise.

func (*AllowDownloadStatus) GetAllowDownloadOk ¶

func (o *AllowDownloadStatus) GetAllowDownloadOk() (*bool, bool)

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

func (*AllowDownloadStatus) HasAllowDownload ¶

func (o *AllowDownloadStatus) HasAllowDownload() bool

HasAllowDownload returns a boolean if a field has been set.

func (AllowDownloadStatus) MarshalJSON ¶

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

func (*AllowDownloadStatus) SetAllowDownload ¶

func (o *AllowDownloadStatus) SetAllowDownload(v bool)

SetAllowDownload gets a reference to the given bool and assigns it to the AllowDownload field.

func (AllowDownloadStatus) ToMap ¶

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

type ApiGetBookmarksRequest ¶

type ApiGetBookmarksRequest struct {
	ApiService *TweetAPIService
	// contains filtered or unexported fields
}

func (ApiGetBookmarksRequest) Execute ¶

func (ApiGetBookmarksRequest) Features ¶

func (r ApiGetBookmarksRequest) Features(features map[string]interface{}) ApiGetBookmarksRequest

func (ApiGetBookmarksRequest) Variables ¶

func (r ApiGetBookmarksRequest) Variables(variables map[string]interface{}) ApiGetBookmarksRequest

type ApiGetFavoritersRequest ¶

type ApiGetFavoritersRequest struct {
	ApiService *UserListAPIService
	// contains filtered or unexported fields
}

func (ApiGetFavoritersRequest) Execute ¶

func (ApiGetFavoritersRequest) Features ¶

func (r ApiGetFavoritersRequest) Features(features map[string]interface{}) ApiGetFavoritersRequest

func (ApiGetFavoritersRequest) Variables ¶

func (r ApiGetFavoritersRequest) Variables(variables map[string]interface{}) ApiGetFavoritersRequest

type ApiGetFollowersRequest ¶

type ApiGetFollowersRequest struct {
	ApiService *UserListAPIService
	// contains filtered or unexported fields
}

func (ApiGetFollowersRequest) Execute ¶

func (ApiGetFollowersRequest) Features ¶

func (r ApiGetFollowersRequest) Features(features map[string]interface{}) ApiGetFollowersRequest

func (ApiGetFollowersRequest) Variables ¶

func (r ApiGetFollowersRequest) Variables(variables map[string]interface{}) ApiGetFollowersRequest

type ApiGetFollowersYouKnowRequest ¶

type ApiGetFollowersYouKnowRequest struct {
	ApiService *UserListAPIService
	// contains filtered or unexported fields
}

func (ApiGetFollowersYouKnowRequest) Execute ¶

func (ApiGetFollowersYouKnowRequest) Features ¶

func (r ApiGetFollowersYouKnowRequest) Features(features map[string]interface{}) ApiGetFollowersYouKnowRequest

func (ApiGetFollowersYouKnowRequest) Variables ¶

func (r ApiGetFollowersYouKnowRequest) Variables(variables map[string]interface{}) ApiGetFollowersYouKnowRequest

type ApiGetFollowingRequest ¶

type ApiGetFollowingRequest struct {
	ApiService *UserListAPIService
	// contains filtered or unexported fields
}

func (ApiGetFollowingRequest) Execute ¶

func (ApiGetFollowingRequest) Features ¶

func (r ApiGetFollowingRequest) Features(features map[string]interface{}) ApiGetFollowingRequest

func (ApiGetFollowingRequest) Variables ¶

func (r ApiGetFollowingRequest) Variables(variables map[string]interface{}) ApiGetFollowingRequest

type ApiGetFriendsFollowingListRequest ¶

type ApiGetFriendsFollowingListRequest struct {
	ApiService *V11GetAPIService
	// contains filtered or unexported fields
}

func (ApiGetFriendsFollowingListRequest) Count ¶

func (ApiGetFriendsFollowingListRequest) Cursor ¶

func (ApiGetFriendsFollowingListRequest) Execute ¶

func (ApiGetFriendsFollowingListRequest) IncludeBlockedBy ¶

func (r ApiGetFriendsFollowingListRequest) IncludeBlockedBy(includeBlockedBy int32) ApiGetFriendsFollowingListRequest

func (ApiGetFriendsFollowingListRequest) IncludeBlocking ¶

func (ApiGetFriendsFollowingListRequest) IncludeCanDm ¶

func (ApiGetFriendsFollowingListRequest) IncludeCanMediaTag ¶

func (r ApiGetFriendsFollowingListRequest) IncludeCanMediaTag(includeCanMediaTag int32) ApiGetFriendsFollowingListRequest

func (ApiGetFriendsFollowingListRequest) IncludeExtHasNftAvatar ¶

func (r ApiGetFriendsFollowingListRequest) IncludeExtHasNftAvatar(includeExtHasNftAvatar int32) ApiGetFriendsFollowingListRequest

func (ApiGetFriendsFollowingListRequest) IncludeExtIsBlueVerified ¶

func (r ApiGetFriendsFollowingListRequest) IncludeExtIsBlueVerified(includeExtIsBlueVerified int32) ApiGetFriendsFollowingListRequest

func (ApiGetFriendsFollowingListRequest) IncludeExtProfileImageShape ¶

func (r ApiGetFriendsFollowingListRequest) IncludeExtProfileImageShape(includeExtProfileImageShape int32) ApiGetFriendsFollowingListRequest

func (ApiGetFriendsFollowingListRequest) IncludeExtVerifiedType ¶

func (r ApiGetFriendsFollowingListRequest) IncludeExtVerifiedType(includeExtVerifiedType int32) ApiGetFriendsFollowingListRequest

func (ApiGetFriendsFollowingListRequest) IncludeFollowedBy ¶

func (r ApiGetFriendsFollowingListRequest) IncludeFollowedBy(includeFollowedBy int32) ApiGetFriendsFollowingListRequest

func (ApiGetFriendsFollowingListRequest) IncludeMuteEdge ¶

func (ApiGetFriendsFollowingListRequest) IncludeProfileInterstitialType ¶

func (r ApiGetFriendsFollowingListRequest) IncludeProfileInterstitialType(includeProfileInterstitialType int32) ApiGetFriendsFollowingListRequest

func (ApiGetFriendsFollowingListRequest) IncludeWantRetweets ¶

func (r ApiGetFriendsFollowingListRequest) IncludeWantRetweets(includeWantRetweets int32) ApiGetFriendsFollowingListRequest

func (ApiGetFriendsFollowingListRequest) SkipStatus ¶

func (ApiGetFriendsFollowingListRequest) UserId ¶

func (ApiGetFriendsFollowingListRequest) WithTotalCount ¶

type ApiGetHomeLatestTimelineRequest ¶

type ApiGetHomeLatestTimelineRequest struct {
	ApiService *TweetAPIService
	// contains filtered or unexported fields
}

func (ApiGetHomeLatestTimelineRequest) Execute ¶

func (ApiGetHomeLatestTimelineRequest) Features ¶

func (r ApiGetHomeLatestTimelineRequest) Features(features map[string]interface{}) ApiGetHomeLatestTimelineRequest

func (ApiGetHomeLatestTimelineRequest) Variables ¶

func (r ApiGetHomeLatestTimelineRequest) Variables(variables map[string]interface{}) ApiGetHomeLatestTimelineRequest

type ApiGetHomeTimelineRequest ¶

type ApiGetHomeTimelineRequest struct {
	ApiService *TweetAPIService
	// contains filtered or unexported fields
}

func (ApiGetHomeTimelineRequest) Execute ¶

func (ApiGetHomeTimelineRequest) Features ¶

func (r ApiGetHomeTimelineRequest) Features(features map[string]interface{}) ApiGetHomeTimelineRequest

func (ApiGetHomeTimelineRequest) Variables ¶

func (r ApiGetHomeTimelineRequest) Variables(variables map[string]interface{}) ApiGetHomeTimelineRequest

type ApiGetLikesRequest ¶

type ApiGetLikesRequest struct {
	ApiService *TweetAPIService
	// contains filtered or unexported fields
}

func (ApiGetLikesRequest) Execute ¶

func (ApiGetLikesRequest) Features ¶

func (r ApiGetLikesRequest) Features(features map[string]interface{}) ApiGetLikesRequest

func (ApiGetLikesRequest) FieldToggles ¶

func (r ApiGetLikesRequest) FieldToggles(fieldToggles map[string]interface{}) ApiGetLikesRequest

func (ApiGetLikesRequest) Variables ¶

func (r ApiGetLikesRequest) Variables(variables map[string]interface{}) ApiGetLikesRequest

type ApiGetListLatestTweetsTimelineRequest ¶

type ApiGetListLatestTweetsTimelineRequest struct {
	ApiService *TweetAPIService
	// contains filtered or unexported fields
}

func (ApiGetListLatestTweetsTimelineRequest) Execute ¶

func (ApiGetListLatestTweetsTimelineRequest) Features ¶

func (ApiGetListLatestTweetsTimelineRequest) Variables ¶

type ApiGetProfileSpotlightsQueryRequest ¶

type ApiGetProfileSpotlightsQueryRequest struct {
	ApiService *DefaultAPIService
	// contains filtered or unexported fields
}

func (ApiGetProfileSpotlightsQueryRequest) Execute ¶

func (ApiGetProfileSpotlightsQueryRequest) Features ¶

func (ApiGetProfileSpotlightsQueryRequest) Variables ¶

type ApiGetRetweetersRequest ¶

type ApiGetRetweetersRequest struct {
	ApiService *UserListAPIService
	// contains filtered or unexported fields
}

func (ApiGetRetweetersRequest) Execute ¶

func (ApiGetRetweetersRequest) Features ¶

func (r ApiGetRetweetersRequest) Features(features map[string]interface{}) ApiGetRetweetersRequest

func (ApiGetRetweetersRequest) Variables ¶

func (r ApiGetRetweetersRequest) Variables(variables map[string]interface{}) ApiGetRetweetersRequest

type ApiGetSearchAdaptiveRequest ¶

type ApiGetSearchAdaptiveRequest struct {
	ApiService *V20GetAPIService
	// contains filtered or unexported fields
}

func (ApiGetSearchAdaptiveRequest) CardsPlatform ¶

func (r ApiGetSearchAdaptiveRequest) CardsPlatform(cardsPlatform string) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) Count ¶

func (ApiGetSearchAdaptiveRequest) Execute ¶

func (ApiGetSearchAdaptiveRequest) Ext ¶

func (ApiGetSearchAdaptiveRequest) IncludeBlockedBy ¶

func (r ApiGetSearchAdaptiveRequest) IncludeBlockedBy(includeBlockedBy int32) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) IncludeBlocking ¶

func (r ApiGetSearchAdaptiveRequest) IncludeBlocking(includeBlocking int32) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) IncludeCanDm ¶

func (r ApiGetSearchAdaptiveRequest) IncludeCanDm(includeCanDm int32) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) IncludeCanMediaTag ¶

func (r ApiGetSearchAdaptiveRequest) IncludeCanMediaTag(includeCanMediaTag int32) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) IncludeCards ¶

func (r ApiGetSearchAdaptiveRequest) IncludeCards(includeCards int32) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) IncludeEntities ¶

func (r ApiGetSearchAdaptiveRequest) IncludeEntities(includeEntities bool) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) IncludeExtAltText ¶

func (r ApiGetSearchAdaptiveRequest) IncludeExtAltText(includeExtAltText bool) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) IncludeExtEditControl ¶

func (r ApiGetSearchAdaptiveRequest) IncludeExtEditControl(includeExtEditControl bool) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) IncludeExtHasNftAvatar ¶

func (r ApiGetSearchAdaptiveRequest) IncludeExtHasNftAvatar(includeExtHasNftAvatar int32) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) IncludeExtIsBlueVerified ¶

func (r ApiGetSearchAdaptiveRequest) IncludeExtIsBlueVerified(includeExtIsBlueVerified int32) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) IncludeExtLimitedActionResults ¶

func (r ApiGetSearchAdaptiveRequest) IncludeExtLimitedActionResults(includeExtLimitedActionResults bool) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) IncludeExtMediaAvailability ¶

func (r ApiGetSearchAdaptiveRequest) IncludeExtMediaAvailability(includeExtMediaAvailability bool) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) IncludeExtMediaColor ¶

func (r ApiGetSearchAdaptiveRequest) IncludeExtMediaColor(includeExtMediaColor bool) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) IncludeExtProfileImageShape ¶

func (r ApiGetSearchAdaptiveRequest) IncludeExtProfileImageShape(includeExtProfileImageShape int32) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) IncludeExtSensitiveMediaWarning ¶

func (r ApiGetSearchAdaptiveRequest) IncludeExtSensitiveMediaWarning(includeExtSensitiveMediaWarning bool) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) IncludeExtTrustedFriendsMetadata ¶

func (r ApiGetSearchAdaptiveRequest) IncludeExtTrustedFriendsMetadata(includeExtTrustedFriendsMetadata bool) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) IncludeExtVerifiedType ¶

func (r ApiGetSearchAdaptiveRequest) IncludeExtVerifiedType(includeExtVerifiedType int32) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) IncludeExtViews ¶

func (r ApiGetSearchAdaptiveRequest) IncludeExtViews(includeExtViews bool) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) IncludeFollowedBy ¶

func (r ApiGetSearchAdaptiveRequest) IncludeFollowedBy(includeFollowedBy int32) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) IncludeMuteEdge ¶

func (r ApiGetSearchAdaptiveRequest) IncludeMuteEdge(includeMuteEdge int32) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) IncludeProfileInterstitialType ¶

func (r ApiGetSearchAdaptiveRequest) IncludeProfileInterstitialType(includeProfileInterstitialType int32) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) IncludeQuoteCount ¶

func (r ApiGetSearchAdaptiveRequest) IncludeQuoteCount(includeQuoteCount bool) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) IncludeReplyCount ¶

func (r ApiGetSearchAdaptiveRequest) IncludeReplyCount(includeReplyCount int32) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) IncludeUserEntities ¶

func (r ApiGetSearchAdaptiveRequest) IncludeUserEntities(includeUserEntities bool) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) IncludeWantRetweets ¶

func (r ApiGetSearchAdaptiveRequest) IncludeWantRetweets(includeWantRetweets int32) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) Pc ¶

func (ApiGetSearchAdaptiveRequest) Q ¶

func (ApiGetSearchAdaptiveRequest) QuerySource ¶

func (ApiGetSearchAdaptiveRequest) RequestContext ¶

func (r ApiGetSearchAdaptiveRequest) RequestContext(requestContext string) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) SendErrorCodes ¶

func (r ApiGetSearchAdaptiveRequest) SendErrorCodes(sendErrorCodes bool) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) SimpleQuotedTweet ¶

func (r ApiGetSearchAdaptiveRequest) SimpleQuotedTweet(simpleQuotedTweet bool) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) SkipStatus ¶

func (ApiGetSearchAdaptiveRequest) SpellingCorrections ¶

func (r ApiGetSearchAdaptiveRequest) SpellingCorrections(spellingCorrections int32) ApiGetSearchAdaptiveRequest

func (ApiGetSearchAdaptiveRequest) TweetMode ¶

type ApiGetSearchTimelineRequest ¶

type ApiGetSearchTimelineRequest struct {
	ApiService *TweetAPIService
	// contains filtered or unexported fields
}

func (ApiGetSearchTimelineRequest) Execute ¶

func (ApiGetSearchTimelineRequest) Features ¶

func (r ApiGetSearchTimelineRequest) Features(features map[string]interface{}) ApiGetSearchTimelineRequest

func (ApiGetSearchTimelineRequest) Variables ¶

func (r ApiGetSearchTimelineRequest) Variables(variables map[string]interface{}) ApiGetSearchTimelineRequest

type ApiGetSearchTypeaheadRequest ¶

type ApiGetSearchTypeaheadRequest struct {
	ApiService *V11GetAPIService
	// contains filtered or unexported fields
}

func (ApiGetSearchTypeaheadRequest) Execute ¶

func (ApiGetSearchTypeaheadRequest) IncludeExtIsBlueVerified ¶

func (r ApiGetSearchTypeaheadRequest) IncludeExtIsBlueVerified(includeExtIsBlueVerified int32) ApiGetSearchTypeaheadRequest

func (ApiGetSearchTypeaheadRequest) IncludeExtProfileImageShape ¶

func (r ApiGetSearchTypeaheadRequest) IncludeExtProfileImageShape(includeExtProfileImageShape int32) ApiGetSearchTypeaheadRequest

func (ApiGetSearchTypeaheadRequest) IncludeExtVerifiedType ¶

func (r ApiGetSearchTypeaheadRequest) IncludeExtVerifiedType(includeExtVerifiedType int32) ApiGetSearchTypeaheadRequest

func (ApiGetSearchTypeaheadRequest) Q ¶

func (ApiGetSearchTypeaheadRequest) ResultType ¶

func (ApiGetSearchTypeaheadRequest) Src ¶

type ApiGetTweetDetailRequest ¶

type ApiGetTweetDetailRequest struct {
	ApiService *TweetAPIService
	// contains filtered or unexported fields
}

func (ApiGetTweetDetailRequest) Execute ¶

func (ApiGetTweetDetailRequest) Features ¶

func (r ApiGetTweetDetailRequest) Features(features map[string]interface{}) ApiGetTweetDetailRequest

func (ApiGetTweetDetailRequest) FieldToggles ¶

func (r ApiGetTweetDetailRequest) FieldToggles(fieldToggles map[string]interface{}) ApiGetTweetDetailRequest

func (ApiGetTweetDetailRequest) Variables ¶

func (r ApiGetTweetDetailRequest) Variables(variables map[string]interface{}) ApiGetTweetDetailRequest

type ApiGetTweetResultByRestIdRequest ¶

type ApiGetTweetResultByRestIdRequest struct {
	ApiService *DefaultAPIService
	// contains filtered or unexported fields
}

func (ApiGetTweetResultByRestIdRequest) Execute ¶

func (ApiGetTweetResultByRestIdRequest) Features ¶

func (r ApiGetTweetResultByRestIdRequest) Features(features map[string]interface{}) ApiGetTweetResultByRestIdRequest

func (ApiGetTweetResultByRestIdRequest) FieldToggles ¶

func (r ApiGetTweetResultByRestIdRequest) FieldToggles(fieldToggles map[string]interface{}) ApiGetTweetResultByRestIdRequest

func (ApiGetTweetResultByRestIdRequest) Variables ¶

func (r ApiGetTweetResultByRestIdRequest) Variables(variables map[string]interface{}) ApiGetTweetResultByRestIdRequest

type ApiGetUserByRestIdRequest ¶

type ApiGetUserByRestIdRequest struct {
	ApiService *UserAPIService
	// contains filtered or unexported fields
}

func (ApiGetUserByRestIdRequest) Execute ¶

func (ApiGetUserByRestIdRequest) Features ¶

func (r ApiGetUserByRestIdRequest) Features(features map[string]interface{}) ApiGetUserByRestIdRequest

func (ApiGetUserByRestIdRequest) Variables ¶

func (r ApiGetUserByRestIdRequest) Variables(variables map[string]interface{}) ApiGetUserByRestIdRequest

type ApiGetUserByScreenNameRequest ¶

type ApiGetUserByScreenNameRequest struct {
	ApiService *UserAPIService
	// contains filtered or unexported fields
}

func (ApiGetUserByScreenNameRequest) Execute ¶

func (ApiGetUserByScreenNameRequest) Features ¶

func (r ApiGetUserByScreenNameRequest) Features(features map[string]interface{}) ApiGetUserByScreenNameRequest

func (ApiGetUserByScreenNameRequest) FieldToggles ¶

func (r ApiGetUserByScreenNameRequest) FieldToggles(fieldToggles map[string]interface{}) ApiGetUserByScreenNameRequest

func (ApiGetUserByScreenNameRequest) Variables ¶

func (r ApiGetUserByScreenNameRequest) Variables(variables map[string]interface{}) ApiGetUserByScreenNameRequest

type ApiGetUserHighlightsTweetsRequest ¶

type ApiGetUserHighlightsTweetsRequest struct {
	ApiService *TweetAPIService
	// contains filtered or unexported fields
}

func (ApiGetUserHighlightsTweetsRequest) Execute ¶

func (ApiGetUserHighlightsTweetsRequest) Features ¶

func (r ApiGetUserHighlightsTweetsRequest) Features(features map[string]interface{}) ApiGetUserHighlightsTweetsRequest

func (ApiGetUserHighlightsTweetsRequest) Variables ¶

func (r ApiGetUserHighlightsTweetsRequest) Variables(variables map[string]interface{}) ApiGetUserHighlightsTweetsRequest

type ApiGetUserMediaRequest ¶

type ApiGetUserMediaRequest struct {
	ApiService *TweetAPIService
	// contains filtered or unexported fields
}

func (ApiGetUserMediaRequest) Execute ¶

func (ApiGetUserMediaRequest) Features ¶

func (r ApiGetUserMediaRequest) Features(features map[string]interface{}) ApiGetUserMediaRequest

func (ApiGetUserMediaRequest) FieldToggles ¶

func (r ApiGetUserMediaRequest) FieldToggles(fieldToggles map[string]interface{}) ApiGetUserMediaRequest

func (ApiGetUserMediaRequest) Variables ¶

func (r ApiGetUserMediaRequest) Variables(variables map[string]interface{}) ApiGetUserMediaRequest

type ApiGetUserTweetsAndRepliesRequest ¶

type ApiGetUserTweetsAndRepliesRequest struct {
	ApiService *TweetAPIService
	// contains filtered or unexported fields
}

func (ApiGetUserTweetsAndRepliesRequest) Execute ¶

func (ApiGetUserTweetsAndRepliesRequest) Features ¶

func (r ApiGetUserTweetsAndRepliesRequest) Features(features map[string]interface{}) ApiGetUserTweetsAndRepliesRequest

func (ApiGetUserTweetsAndRepliesRequest) FieldToggles ¶

func (r ApiGetUserTweetsAndRepliesRequest) FieldToggles(fieldToggles map[string]interface{}) ApiGetUserTweetsAndRepliesRequest

func (ApiGetUserTweetsAndRepliesRequest) Variables ¶

func (r ApiGetUserTweetsAndRepliesRequest) Variables(variables map[string]interface{}) ApiGetUserTweetsAndRepliesRequest

type ApiGetUserTweetsRequest ¶

type ApiGetUserTweetsRequest struct {
	ApiService *TweetAPIService
	// contains filtered or unexported fields
}

func (ApiGetUserTweetsRequest) Execute ¶

func (ApiGetUserTweetsRequest) Features ¶

func (r ApiGetUserTweetsRequest) Features(features map[string]interface{}) ApiGetUserTweetsRequest

func (ApiGetUserTweetsRequest) FieldToggles ¶

func (r ApiGetUserTweetsRequest) FieldToggles(fieldToggles map[string]interface{}) ApiGetUserTweetsRequest

func (ApiGetUserTweetsRequest) Variables ¶

func (r ApiGetUserTweetsRequest) Variables(variables map[string]interface{}) ApiGetUserTweetsRequest

type ApiGetUsersByRestIdsRequest ¶

type ApiGetUsersByRestIdsRequest struct {
	ApiService *UsersAPIService
	// contains filtered or unexported fields
}

func (ApiGetUsersByRestIdsRequest) Execute ¶

func (ApiGetUsersByRestIdsRequest) Features ¶

func (r ApiGetUsersByRestIdsRequest) Features(features map[string]interface{}) ApiGetUsersByRestIdsRequest

func (ApiGetUsersByRestIdsRequest) Variables ¶

func (r ApiGetUsersByRestIdsRequest) Variables(variables map[string]interface{}) ApiGetUsersByRestIdsRequest

type ApiOtherRequest ¶

type ApiOtherRequest struct {
	ApiService *OtherAPIService
	// contains filtered or unexported fields
}

func (ApiOtherRequest) Execute ¶

func (r ApiOtherRequest) Execute() (*OtherResponse, *http.Response, error)

type ApiPostCreateBookmarkRequest ¶

type ApiPostCreateBookmarkRequest struct {
	ApiService *PostAPIService
	// contains filtered or unexported fields
}

func (ApiPostCreateBookmarkRequest) Execute ¶

func (ApiPostCreateBookmarkRequest) PostCreateBookmarkRequest ¶

func (r ApiPostCreateBookmarkRequest) PostCreateBookmarkRequest(postCreateBookmarkRequest PostCreateBookmarkRequest) ApiPostCreateBookmarkRequest

body

type ApiPostCreateFriendshipsRequest ¶

type ApiPostCreateFriendshipsRequest struct {
	ApiService *V11PostAPIService
	// contains filtered or unexported fields
}

func (ApiPostCreateFriendshipsRequest) Execute ¶

func (ApiPostCreateFriendshipsRequest) IncludeBlockedBy ¶

func (r ApiPostCreateFriendshipsRequest) IncludeBlockedBy(includeBlockedBy int32) ApiPostCreateFriendshipsRequest

func (ApiPostCreateFriendshipsRequest) IncludeBlocking ¶

func (r ApiPostCreateFriendshipsRequest) IncludeBlocking(includeBlocking int32) ApiPostCreateFriendshipsRequest

func (ApiPostCreateFriendshipsRequest) IncludeCanDm ¶

func (ApiPostCreateFriendshipsRequest) IncludeCanMediaTag ¶

func (r ApiPostCreateFriendshipsRequest) IncludeCanMediaTag(includeCanMediaTag int32) ApiPostCreateFriendshipsRequest

func (ApiPostCreateFriendshipsRequest) IncludeExtHasNftAvatar ¶

func (r ApiPostCreateFriendshipsRequest) IncludeExtHasNftAvatar(includeExtHasNftAvatar int32) ApiPostCreateFriendshipsRequest

func (ApiPostCreateFriendshipsRequest) IncludeExtIsBlueVerified ¶

func (r ApiPostCreateFriendshipsRequest) IncludeExtIsBlueVerified(includeExtIsBlueVerified int32) ApiPostCreateFriendshipsRequest

func (ApiPostCreateFriendshipsRequest) IncludeExtProfileImageShape ¶

func (r ApiPostCreateFriendshipsRequest) IncludeExtProfileImageShape(includeExtProfileImageShape int32) ApiPostCreateFriendshipsRequest

func (ApiPostCreateFriendshipsRequest) IncludeExtVerifiedType ¶

func (r ApiPostCreateFriendshipsRequest) IncludeExtVerifiedType(includeExtVerifiedType int32) ApiPostCreateFriendshipsRequest

func (ApiPostCreateFriendshipsRequest) IncludeFollowedBy ¶

func (r ApiPostCreateFriendshipsRequest) IncludeFollowedBy(includeFollowedBy int32) ApiPostCreateFriendshipsRequest

func (ApiPostCreateFriendshipsRequest) IncludeMuteEdge ¶

func (r ApiPostCreateFriendshipsRequest) IncludeMuteEdge(includeMuteEdge int32) ApiPostCreateFriendshipsRequest

func (ApiPostCreateFriendshipsRequest) IncludeProfileInterstitialType ¶

func (r ApiPostCreateFriendshipsRequest) IncludeProfileInterstitialType(includeProfileInterstitialType int32) ApiPostCreateFriendshipsRequest

func (ApiPostCreateFriendshipsRequest) IncludeWantRetweets ¶

func (r ApiPostCreateFriendshipsRequest) IncludeWantRetweets(includeWantRetweets int32) ApiPostCreateFriendshipsRequest

func (ApiPostCreateFriendshipsRequest) SkipStatus ¶

func (ApiPostCreateFriendshipsRequest) UserId ¶

type ApiPostCreateRetweetRequest ¶

type ApiPostCreateRetweetRequest struct {
	ApiService *PostAPIService
	// contains filtered or unexported fields
}

func (ApiPostCreateRetweetRequest) Execute ¶

func (ApiPostCreateRetweetRequest) PostCreateRetweetRequest ¶

func (r ApiPostCreateRetweetRequest) PostCreateRetweetRequest(postCreateRetweetRequest PostCreateRetweetRequest) ApiPostCreateRetweetRequest

body

type ApiPostCreateTweetRequest ¶

type ApiPostCreateTweetRequest struct {
	ApiService *PostAPIService
	// contains filtered or unexported fields
}

func (ApiPostCreateTweetRequest) Execute ¶

func (ApiPostCreateTweetRequest) PostCreateTweetRequest ¶

func (r ApiPostCreateTweetRequest) PostCreateTweetRequest(postCreateTweetRequest PostCreateTweetRequest) ApiPostCreateTweetRequest

body

type ApiPostDeleteBookmarkRequest ¶

type ApiPostDeleteBookmarkRequest struct {
	ApiService *PostAPIService
	// contains filtered or unexported fields
}

func (ApiPostDeleteBookmarkRequest) Execute ¶

func (ApiPostDeleteBookmarkRequest) PostDeleteBookmarkRequest ¶

func (r ApiPostDeleteBookmarkRequest) PostDeleteBookmarkRequest(postDeleteBookmarkRequest PostDeleteBookmarkRequest) ApiPostDeleteBookmarkRequest

body

type ApiPostDeleteRetweetRequest ¶

type ApiPostDeleteRetweetRequest struct {
	ApiService *PostAPIService
	// contains filtered or unexported fields
}

func (ApiPostDeleteRetweetRequest) Execute ¶

func (ApiPostDeleteRetweetRequest) PostDeleteRetweetRequest ¶

func (r ApiPostDeleteRetweetRequest) PostDeleteRetweetRequest(postDeleteRetweetRequest PostDeleteRetweetRequest) ApiPostDeleteRetweetRequest

body

type ApiPostDeleteTweetRequest ¶

type ApiPostDeleteTweetRequest struct {
	ApiService *PostAPIService
	// contains filtered or unexported fields
}

func (ApiPostDeleteTweetRequest) Execute ¶

func (ApiPostDeleteTweetRequest) PostDeleteTweetRequest ¶

func (r ApiPostDeleteTweetRequest) PostDeleteTweetRequest(postDeleteTweetRequest PostDeleteTweetRequest) ApiPostDeleteTweetRequest

body

type ApiPostDestroyFriendshipsRequest ¶

type ApiPostDestroyFriendshipsRequest struct {
	ApiService *V11PostAPIService
	// contains filtered or unexported fields
}

func (ApiPostDestroyFriendshipsRequest) Execute ¶

func (ApiPostDestroyFriendshipsRequest) IncludeBlockedBy ¶

func (r ApiPostDestroyFriendshipsRequest) IncludeBlockedBy(includeBlockedBy int32) ApiPostDestroyFriendshipsRequest

func (ApiPostDestroyFriendshipsRequest) IncludeBlocking ¶

func (r ApiPostDestroyFriendshipsRequest) IncludeBlocking(includeBlocking int32) ApiPostDestroyFriendshipsRequest

func (ApiPostDestroyFriendshipsRequest) IncludeCanDm ¶

func (ApiPostDestroyFriendshipsRequest) IncludeCanMediaTag ¶

func (r ApiPostDestroyFriendshipsRequest) IncludeCanMediaTag(includeCanMediaTag int32) ApiPostDestroyFriendshipsRequest

func (ApiPostDestroyFriendshipsRequest) IncludeExtHasNftAvatar ¶

func (r ApiPostDestroyFriendshipsRequest) IncludeExtHasNftAvatar(includeExtHasNftAvatar int32) ApiPostDestroyFriendshipsRequest

func (ApiPostDestroyFriendshipsRequest) IncludeExtIsBlueVerified ¶

func (r ApiPostDestroyFriendshipsRequest) IncludeExtIsBlueVerified(includeExtIsBlueVerified int32) ApiPostDestroyFriendshipsRequest

func (ApiPostDestroyFriendshipsRequest) IncludeExtProfileImageShape ¶

func (r ApiPostDestroyFriendshipsRequest) IncludeExtProfileImageShape(includeExtProfileImageShape int32) ApiPostDestroyFriendshipsRequest

func (ApiPostDestroyFriendshipsRequest) IncludeExtVerifiedType ¶

func (r ApiPostDestroyFriendshipsRequest) IncludeExtVerifiedType(includeExtVerifiedType int32) ApiPostDestroyFriendshipsRequest

func (ApiPostDestroyFriendshipsRequest) IncludeFollowedBy ¶

func (r ApiPostDestroyFriendshipsRequest) IncludeFollowedBy(includeFollowedBy int32) ApiPostDestroyFriendshipsRequest

func (ApiPostDestroyFriendshipsRequest) IncludeMuteEdge ¶

func (r ApiPostDestroyFriendshipsRequest) IncludeMuteEdge(includeMuteEdge int32) ApiPostDestroyFriendshipsRequest

func (ApiPostDestroyFriendshipsRequest) IncludeProfileInterstitialType ¶

func (r ApiPostDestroyFriendshipsRequest) IncludeProfileInterstitialType(includeProfileInterstitialType int32) ApiPostDestroyFriendshipsRequest

func (ApiPostDestroyFriendshipsRequest) IncludeWantRetweets ¶

func (r ApiPostDestroyFriendshipsRequest) IncludeWantRetweets(includeWantRetweets int32) ApiPostDestroyFriendshipsRequest

func (ApiPostDestroyFriendshipsRequest) SkipStatus ¶

func (ApiPostDestroyFriendshipsRequest) UserId ¶

type ApiPostFavoriteTweetRequest ¶

type ApiPostFavoriteTweetRequest struct {
	ApiService *PostAPIService
	// contains filtered or unexported fields
}

func (ApiPostFavoriteTweetRequest) Execute ¶

func (ApiPostFavoriteTweetRequest) PostFavoriteTweetRequest ¶

func (r ApiPostFavoriteTweetRequest) PostFavoriteTweetRequest(postFavoriteTweetRequest PostFavoriteTweetRequest) ApiPostFavoriteTweetRequest

body

type ApiPostUnfavoriteTweetRequest ¶

type ApiPostUnfavoriteTweetRequest struct {
	ApiService *PostAPIService
	// contains filtered or unexported fields
}

func (ApiPostUnfavoriteTweetRequest) Execute ¶

func (ApiPostUnfavoriteTweetRequest) PostUnfavoriteTweetRequest ¶

func (r ApiPostUnfavoriteTweetRequest) PostUnfavoriteTweetRequest(postUnfavoriteTweetRequest PostUnfavoriteTweetRequest) ApiPostUnfavoriteTweetRequest

body

type Article ¶

type Article struct {
	ArticleResults ArticleResults `json:"article_results"`
}

Article struct for Article

func NewArticle ¶

func NewArticle(articleResults ArticleResults) *Article

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

func NewArticleWithDefaults ¶

func NewArticleWithDefaults() *Article

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

func (*Article) GetArticleResults ¶

func (o *Article) GetArticleResults() ArticleResults

GetArticleResults returns the ArticleResults field value

func (*Article) GetArticleResultsOk ¶

func (o *Article) GetArticleResultsOk() (*ArticleResults, bool)

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

func (Article) MarshalJSON ¶

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

func (*Article) SetArticleResults ¶

func (o *Article) SetArticleResults(v ArticleResults)

SetArticleResults sets field value

func (Article) ToMap ¶

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

func (*Article) UnmarshalJSON ¶

func (o *Article) UnmarshalJSON(data []byte) (err error)

type ArticleCoverMedia ¶

type ArticleCoverMedia struct {
	Id        string                `json:"id"`
	MediaId   string                `json:"media_id" validate:"regexp=^[0-9]+$"`
	MediaInfo ArticleCoverMediaInfo `json:"media_info"`
	MediaKey  string                `json:"media_key"`
}

ArticleCoverMedia struct for ArticleCoverMedia

func NewArticleCoverMedia ¶

func NewArticleCoverMedia(id string, mediaId string, mediaInfo ArticleCoverMediaInfo, mediaKey string) *ArticleCoverMedia

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

func NewArticleCoverMediaWithDefaults ¶

func NewArticleCoverMediaWithDefaults() *ArticleCoverMedia

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

func (*ArticleCoverMedia) GetId ¶

func (o *ArticleCoverMedia) GetId() string

GetId returns the Id field value

func (*ArticleCoverMedia) GetIdOk ¶

func (o *ArticleCoverMedia) GetIdOk() (*string, bool)

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

func (*ArticleCoverMedia) GetMediaId ¶

func (o *ArticleCoverMedia) GetMediaId() string

GetMediaId returns the MediaId field value

func (*ArticleCoverMedia) GetMediaIdOk ¶

func (o *ArticleCoverMedia) GetMediaIdOk() (*string, bool)

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

func (*ArticleCoverMedia) GetMediaInfo ¶

func (o *ArticleCoverMedia) GetMediaInfo() ArticleCoverMediaInfo

GetMediaInfo returns the MediaInfo field value

func (*ArticleCoverMedia) GetMediaInfoOk ¶

func (o *ArticleCoverMedia) GetMediaInfoOk() (*ArticleCoverMediaInfo, bool)

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

func (*ArticleCoverMedia) GetMediaKey ¶

func (o *ArticleCoverMedia) GetMediaKey() string

GetMediaKey returns the MediaKey field value

func (*ArticleCoverMedia) GetMediaKeyOk ¶

func (o *ArticleCoverMedia) GetMediaKeyOk() (*string, bool)

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

func (ArticleCoverMedia) MarshalJSON ¶

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

func (*ArticleCoverMedia) SetId ¶

func (o *ArticleCoverMedia) SetId(v string)

SetId sets field value

func (*ArticleCoverMedia) SetMediaId ¶

func (o *ArticleCoverMedia) SetMediaId(v string)

SetMediaId sets field value

func (*ArticleCoverMedia) SetMediaInfo ¶

func (o *ArticleCoverMedia) SetMediaInfo(v ArticleCoverMediaInfo)

SetMediaInfo sets field value

func (*ArticleCoverMedia) SetMediaKey ¶

func (o *ArticleCoverMedia) SetMediaKey(v string)

SetMediaKey sets field value

func (ArticleCoverMedia) ToMap ¶

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

func (*ArticleCoverMedia) UnmarshalJSON ¶

func (o *ArticleCoverMedia) UnmarshalJSON(data []byte) (err error)

type ArticleCoverMediaColorInfo ¶

type ArticleCoverMediaColorInfo struct {
	Palette []ArticleCoverMediaColorInfoPalette `json:"palette"`
}

ArticleCoverMediaColorInfo struct for ArticleCoverMediaColorInfo

func NewArticleCoverMediaColorInfo ¶

func NewArticleCoverMediaColorInfo(palette []ArticleCoverMediaColorInfoPalette) *ArticleCoverMediaColorInfo

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

func NewArticleCoverMediaColorInfoWithDefaults ¶

func NewArticleCoverMediaColorInfoWithDefaults() *ArticleCoverMediaColorInfo

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

func (*ArticleCoverMediaColorInfo) GetPalette ¶

GetPalette returns the Palette field value

func (*ArticleCoverMediaColorInfo) GetPaletteOk ¶

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

func (ArticleCoverMediaColorInfo) MarshalJSON ¶

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

func (*ArticleCoverMediaColorInfo) SetPalette ¶

SetPalette sets field value

func (ArticleCoverMediaColorInfo) ToMap ¶

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

func (*ArticleCoverMediaColorInfo) UnmarshalJSON ¶

func (o *ArticleCoverMediaColorInfo) UnmarshalJSON(data []byte) (err error)

type ArticleCoverMediaColorInfoPalette ¶

type ArticleCoverMediaColorInfoPalette struct {
	Percentage float32                              `json:"percentage"`
	Rgb        ArticleCoverMediaColorInfoPaletteRGB `json:"rgb"`
}

ArticleCoverMediaColorInfoPalette struct for ArticleCoverMediaColorInfoPalette

func NewArticleCoverMediaColorInfoPalette ¶

func NewArticleCoverMediaColorInfoPalette(percentage float32, rgb ArticleCoverMediaColorInfoPaletteRGB) *ArticleCoverMediaColorInfoPalette

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

func NewArticleCoverMediaColorInfoPaletteWithDefaults ¶

func NewArticleCoverMediaColorInfoPaletteWithDefaults() *ArticleCoverMediaColorInfoPalette

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

func (*ArticleCoverMediaColorInfoPalette) GetPercentage ¶

func (o *ArticleCoverMediaColorInfoPalette) GetPercentage() float32

GetPercentage returns the Percentage field value

func (*ArticleCoverMediaColorInfoPalette) GetPercentageOk ¶

func (o *ArticleCoverMediaColorInfoPalette) GetPercentageOk() (*float32, bool)

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

func (*ArticleCoverMediaColorInfoPalette) GetRgb ¶

GetRgb returns the Rgb field value

func (*ArticleCoverMediaColorInfoPalette) GetRgbOk ¶

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

func (ArticleCoverMediaColorInfoPalette) MarshalJSON ¶

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

func (*ArticleCoverMediaColorInfoPalette) SetPercentage ¶

func (o *ArticleCoverMediaColorInfoPalette) SetPercentage(v float32)

SetPercentage sets field value

func (*ArticleCoverMediaColorInfoPalette) SetRgb ¶

SetRgb sets field value

func (ArticleCoverMediaColorInfoPalette) ToMap ¶

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

func (*ArticleCoverMediaColorInfoPalette) UnmarshalJSON ¶

func (o *ArticleCoverMediaColorInfoPalette) UnmarshalJSON(data []byte) (err error)

type ArticleCoverMediaColorInfoPaletteRGB ¶

type ArticleCoverMediaColorInfoPaletteRGB struct {
	Blue  int32 `json:"blue"`
	Green int32 `json:"green"`
	Red   int32 `json:"red"`
}

ArticleCoverMediaColorInfoPaletteRGB struct for ArticleCoverMediaColorInfoPaletteRGB

func NewArticleCoverMediaColorInfoPaletteRGB ¶

func NewArticleCoverMediaColorInfoPaletteRGB(blue int32, green int32, red int32) *ArticleCoverMediaColorInfoPaletteRGB

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

func NewArticleCoverMediaColorInfoPaletteRGBWithDefaults ¶

func NewArticleCoverMediaColorInfoPaletteRGBWithDefaults() *ArticleCoverMediaColorInfoPaletteRGB

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

func (*ArticleCoverMediaColorInfoPaletteRGB) GetBlue ¶

GetBlue returns the Blue field value

func (*ArticleCoverMediaColorInfoPaletteRGB) GetBlueOk ¶

func (o *ArticleCoverMediaColorInfoPaletteRGB) GetBlueOk() (*int32, bool)

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

func (*ArticleCoverMediaColorInfoPaletteRGB) GetGreen ¶

GetGreen returns the Green field value

func (*ArticleCoverMediaColorInfoPaletteRGB) GetGreenOk ¶

func (o *ArticleCoverMediaColorInfoPaletteRGB) GetGreenOk() (*int32, bool)

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

func (*ArticleCoverMediaColorInfoPaletteRGB) GetRed ¶

GetRed returns the Red field value

func (*ArticleCoverMediaColorInfoPaletteRGB) GetRedOk ¶

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

func (ArticleCoverMediaColorInfoPaletteRGB) MarshalJSON ¶

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

func (*ArticleCoverMediaColorInfoPaletteRGB) SetBlue ¶

SetBlue sets field value

func (*ArticleCoverMediaColorInfoPaletteRGB) SetGreen ¶

SetGreen sets field value

func (*ArticleCoverMediaColorInfoPaletteRGB) SetRed ¶

SetRed sets field value

func (ArticleCoverMediaColorInfoPaletteRGB) ToMap ¶

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

func (*ArticleCoverMediaColorInfoPaletteRGB) UnmarshalJSON ¶

func (o *ArticleCoverMediaColorInfoPaletteRGB) UnmarshalJSON(data []byte) (err error)

type ArticleCoverMediaInfo ¶

type ArticleCoverMediaInfo struct {
	Typename          *TypeName                  `json:"__typename,omitempty"`
	ColorInfo         ArticleCoverMediaColorInfo `json:"color_info"`
	OriginalImgHeight int32                      `json:"original_img_height"`
	OriginalImgUrl    string                     `json:"original_img_url"`
	OriginalImgWidth  int32                      `json:"original_img_width"`
}

ArticleCoverMediaInfo struct for ArticleCoverMediaInfo

func NewArticleCoverMediaInfo ¶

func NewArticleCoverMediaInfo(colorInfo ArticleCoverMediaColorInfo, originalImgHeight int32, originalImgUrl string, originalImgWidth int32) *ArticleCoverMediaInfo

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

func NewArticleCoverMediaInfoWithDefaults ¶

func NewArticleCoverMediaInfoWithDefaults() *ArticleCoverMediaInfo

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

func (*ArticleCoverMediaInfo) GetColorInfo ¶

GetColorInfo returns the ColorInfo field value

func (*ArticleCoverMediaInfo) GetColorInfoOk ¶

func (o *ArticleCoverMediaInfo) GetColorInfoOk() (*ArticleCoverMediaColorInfo, bool)

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

func (*ArticleCoverMediaInfo) GetOriginalImgHeight ¶

func (o *ArticleCoverMediaInfo) GetOriginalImgHeight() int32

GetOriginalImgHeight returns the OriginalImgHeight field value

func (*ArticleCoverMediaInfo) GetOriginalImgHeightOk ¶

func (o *ArticleCoverMediaInfo) GetOriginalImgHeightOk() (*int32, bool)

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

func (*ArticleCoverMediaInfo) GetOriginalImgUrl ¶

func (o *ArticleCoverMediaInfo) GetOriginalImgUrl() string

GetOriginalImgUrl returns the OriginalImgUrl field value

func (*ArticleCoverMediaInfo) GetOriginalImgUrlOk ¶

func (o *ArticleCoverMediaInfo) GetOriginalImgUrlOk() (*string, bool)

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

func (*ArticleCoverMediaInfo) GetOriginalImgWidth ¶

func (o *ArticleCoverMediaInfo) GetOriginalImgWidth() int32

GetOriginalImgWidth returns the OriginalImgWidth field value

func (*ArticleCoverMediaInfo) GetOriginalImgWidthOk ¶

func (o *ArticleCoverMediaInfo) GetOriginalImgWidthOk() (*int32, bool)

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

func (*ArticleCoverMediaInfo) GetTypename ¶

func (o *ArticleCoverMediaInfo) GetTypename() TypeName

GetTypename returns the Typename field value if set, zero value otherwise.

func (*ArticleCoverMediaInfo) GetTypenameOk ¶

func (o *ArticleCoverMediaInfo) GetTypenameOk() (*TypeName, bool)

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

func (*ArticleCoverMediaInfo) HasTypename ¶

func (o *ArticleCoverMediaInfo) HasTypename() bool

HasTypename returns a boolean if a field has been set.

func (ArticleCoverMediaInfo) MarshalJSON ¶

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

func (*ArticleCoverMediaInfo) SetColorInfo ¶

SetColorInfo sets field value

func (*ArticleCoverMediaInfo) SetOriginalImgHeight ¶

func (o *ArticleCoverMediaInfo) SetOriginalImgHeight(v int32)

SetOriginalImgHeight sets field value

func (*ArticleCoverMediaInfo) SetOriginalImgUrl ¶

func (o *ArticleCoverMediaInfo) SetOriginalImgUrl(v string)

SetOriginalImgUrl sets field value

func (*ArticleCoverMediaInfo) SetOriginalImgWidth ¶

func (o *ArticleCoverMediaInfo) SetOriginalImgWidth(v int32)

SetOriginalImgWidth sets field value

func (*ArticleCoverMediaInfo) SetTypename ¶

func (o *ArticleCoverMediaInfo) SetTypename(v TypeName)

SetTypename gets a reference to the given TypeName and assigns it to the Typename field.

func (ArticleCoverMediaInfo) ToMap ¶

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

func (*ArticleCoverMediaInfo) UnmarshalJSON ¶

func (o *ArticleCoverMediaInfo) UnmarshalJSON(data []byte) (err error)

type ArticleLifecycleState ¶

type ArticleLifecycleState struct {
	ModifiedAtSecs int32 `json:"modified_at_secs"`
}

ArticleLifecycleState struct for ArticleLifecycleState

func NewArticleLifecycleState ¶

func NewArticleLifecycleState(modifiedAtSecs int32) *ArticleLifecycleState

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

func NewArticleLifecycleStateWithDefaults ¶

func NewArticleLifecycleStateWithDefaults() *ArticleLifecycleState

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

func (*ArticleLifecycleState) GetModifiedAtSecs ¶

func (o *ArticleLifecycleState) GetModifiedAtSecs() int32

GetModifiedAtSecs returns the ModifiedAtSecs field value

func (*ArticleLifecycleState) GetModifiedAtSecsOk ¶

func (o *ArticleLifecycleState) GetModifiedAtSecsOk() (*int32, bool)

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

func (ArticleLifecycleState) MarshalJSON ¶

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

func (*ArticleLifecycleState) SetModifiedAtSecs ¶

func (o *ArticleLifecycleState) SetModifiedAtSecs(v int32)

SetModifiedAtSecs sets field value

func (ArticleLifecycleState) ToMap ¶

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

func (*ArticleLifecycleState) UnmarshalJSON ¶

func (o *ArticleLifecycleState) UnmarshalJSON(data []byte) (err error)

type ArticleMetadata ¶

type ArticleMetadata struct {
	FirstPublishedAtSecs int32 `json:"first_published_at_secs"`
}

ArticleMetadata struct for ArticleMetadata

func NewArticleMetadata ¶

func NewArticleMetadata(firstPublishedAtSecs int32) *ArticleMetadata

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

func NewArticleMetadataWithDefaults ¶

func NewArticleMetadataWithDefaults() *ArticleMetadata

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

func (*ArticleMetadata) GetFirstPublishedAtSecs ¶

func (o *ArticleMetadata) GetFirstPublishedAtSecs() int32

GetFirstPublishedAtSecs returns the FirstPublishedAtSecs field value

func (*ArticleMetadata) GetFirstPublishedAtSecsOk ¶

func (o *ArticleMetadata) GetFirstPublishedAtSecsOk() (*int32, bool)

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

func (ArticleMetadata) MarshalJSON ¶

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

func (*ArticleMetadata) SetFirstPublishedAtSecs ¶

func (o *ArticleMetadata) SetFirstPublishedAtSecs(v int32)

SetFirstPublishedAtSecs sets field value

func (ArticleMetadata) ToMap ¶

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

func (*ArticleMetadata) UnmarshalJSON ¶

func (o *ArticleMetadata) UnmarshalJSON(data []byte) (err error)

type ArticleResult ¶

type ArticleResult struct {
	CoverMedia     ArticleCoverMedia      `json:"cover_media"`
	Id             string                 `json:"id"`
	LifecycleState *ArticleLifecycleState `json:"lifecycle_state,omitempty"`
	Metadata       ArticleMetadata        `json:"metadata"`
	PreviewText    string                 `json:"preview_text"`
	RestId         string                 `json:"rest_id" validate:"regexp=^[0-9]+$"`
	Title          string                 `json:"title"`
}

ArticleResult struct for ArticleResult

func NewArticleResult ¶

func NewArticleResult(coverMedia ArticleCoverMedia, id string, metadata ArticleMetadata, previewText string, restId string, title string) *ArticleResult

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

func NewArticleResultWithDefaults ¶

func NewArticleResultWithDefaults() *ArticleResult

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

func (*ArticleResult) GetCoverMedia ¶

func (o *ArticleResult) GetCoverMedia() ArticleCoverMedia

GetCoverMedia returns the CoverMedia field value

func (*ArticleResult) GetCoverMediaOk ¶

func (o *ArticleResult) GetCoverMediaOk() (*ArticleCoverMedia, bool)

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

func (*ArticleResult) GetId ¶

func (o *ArticleResult) GetId() string

GetId returns the Id field value

func (*ArticleResult) GetIdOk ¶

func (o *ArticleResult) GetIdOk() (*string, bool)

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

func (*ArticleResult) GetLifecycleState ¶

func (o *ArticleResult) GetLifecycleState() ArticleLifecycleState

GetLifecycleState returns the LifecycleState field value if set, zero value otherwise.

func (*ArticleResult) GetLifecycleStateOk ¶

func (o *ArticleResult) GetLifecycleStateOk() (*ArticleLifecycleState, bool)

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

func (*ArticleResult) GetMetadata ¶

func (o *ArticleResult) GetMetadata() ArticleMetadata

GetMetadata returns the Metadata field value

func (*ArticleResult) GetMetadataOk ¶

func (o *ArticleResult) GetMetadataOk() (*ArticleMetadata, bool)

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

func (*ArticleResult) GetPreviewText ¶

func (o *ArticleResult) GetPreviewText() string

GetPreviewText returns the PreviewText field value

func (*ArticleResult) GetPreviewTextOk ¶

func (o *ArticleResult) GetPreviewTextOk() (*string, bool)

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

func (*ArticleResult) GetRestId ¶

func (o *ArticleResult) GetRestId() string

GetRestId returns the RestId field value

func (*ArticleResult) GetRestIdOk ¶

func (o *ArticleResult) GetRestIdOk() (*string, bool)

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

func (*ArticleResult) GetTitle ¶

func (o *ArticleResult) GetTitle() string

GetTitle returns the Title field value

func (*ArticleResult) GetTitleOk ¶

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

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

func (*ArticleResult) HasLifecycleState ¶

func (o *ArticleResult) HasLifecycleState() bool

HasLifecycleState returns a boolean if a field has been set.

func (ArticleResult) MarshalJSON ¶

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

func (*ArticleResult) SetCoverMedia ¶

func (o *ArticleResult) SetCoverMedia(v ArticleCoverMedia)

SetCoverMedia sets field value

func (*ArticleResult) SetId ¶

func (o *ArticleResult) SetId(v string)

SetId sets field value

func (*ArticleResult) SetLifecycleState ¶

func (o *ArticleResult) SetLifecycleState(v ArticleLifecycleState)

SetLifecycleState gets a reference to the given ArticleLifecycleState and assigns it to the LifecycleState field.

func (*ArticleResult) SetMetadata ¶

func (o *ArticleResult) SetMetadata(v ArticleMetadata)

SetMetadata sets field value

func (*ArticleResult) SetPreviewText ¶

func (o *ArticleResult) SetPreviewText(v string)

SetPreviewText sets field value

func (*ArticleResult) SetRestId ¶

func (o *ArticleResult) SetRestId(v string)

SetRestId sets field value

func (*ArticleResult) SetTitle ¶

func (o *ArticleResult) SetTitle(v string)

SetTitle sets field value

func (ArticleResult) ToMap ¶

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

func (*ArticleResult) UnmarshalJSON ¶

func (o *ArticleResult) UnmarshalJSON(data []byte) (err error)

type ArticleResults ¶

type ArticleResults struct {
	Result ArticleResult `json:"result"`
}

ArticleResults struct for ArticleResults

func NewArticleResults ¶

func NewArticleResults(result ArticleResult) *ArticleResults

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

func NewArticleResultsWithDefaults ¶

func NewArticleResultsWithDefaults() *ArticleResults

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

func (*ArticleResults) GetResult ¶

func (o *ArticleResults) GetResult() ArticleResult

GetResult returns the Result field value

func (*ArticleResults) GetResultOk ¶

func (o *ArticleResults) GetResultOk() (*ArticleResult, bool)

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

func (ArticleResults) MarshalJSON ¶

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

func (*ArticleResults) SetResult ¶

func (o *ArticleResults) SetResult(v ArticleResult)

SetResult sets field value

func (ArticleResults) ToMap ¶

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

func (*ArticleResults) UnmarshalJSON ¶

func (o *ArticleResults) UnmarshalJSON(data []byte) (err error)

type AuthorCommunityRelationship ¶

type AuthorCommunityRelationship struct {
	CommunityResults Community    `json:"community_results"`
	Role             *string      `json:"role,omitempty"`
	UserResults      *UserResults `json:"user_results,omitempty"`
}

AuthorCommunityRelationship struct for AuthorCommunityRelationship

func NewAuthorCommunityRelationship ¶

func NewAuthorCommunityRelationship(communityResults Community) *AuthorCommunityRelationship

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

func NewAuthorCommunityRelationshipWithDefaults ¶

func NewAuthorCommunityRelationshipWithDefaults() *AuthorCommunityRelationship

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

func (*AuthorCommunityRelationship) GetCommunityResults ¶

func (o *AuthorCommunityRelationship) GetCommunityResults() Community

GetCommunityResults returns the CommunityResults field value

func (*AuthorCommunityRelationship) GetCommunityResultsOk ¶

func (o *AuthorCommunityRelationship) GetCommunityResultsOk() (*Community, bool)

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

func (*AuthorCommunityRelationship) GetRole ¶

func (o *AuthorCommunityRelationship) GetRole() string

GetRole returns the Role field value if set, zero value otherwise.

func (*AuthorCommunityRelationship) GetRoleOk ¶

func (o *AuthorCommunityRelationship) GetRoleOk() (*string, bool)

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

func (*AuthorCommunityRelationship) GetUserResults ¶

func (o *AuthorCommunityRelationship) GetUserResults() UserResults

GetUserResults returns the UserResults field value if set, zero value otherwise.

func (*AuthorCommunityRelationship) GetUserResultsOk ¶

func (o *AuthorCommunityRelationship) GetUserResultsOk() (*UserResults, bool)

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

func (*AuthorCommunityRelationship) HasRole ¶

func (o *AuthorCommunityRelationship) HasRole() bool

HasRole returns a boolean if a field has been set.

func (*AuthorCommunityRelationship) HasUserResults ¶

func (o *AuthorCommunityRelationship) HasUserResults() bool

HasUserResults returns a boolean if a field has been set.

func (AuthorCommunityRelationship) MarshalJSON ¶

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

func (*AuthorCommunityRelationship) SetCommunityResults ¶

func (o *AuthorCommunityRelationship) SetCommunityResults(v Community)

SetCommunityResults sets field value

func (*AuthorCommunityRelationship) SetRole ¶

func (o *AuthorCommunityRelationship) SetRole(v string)

SetRole gets a reference to the given string and assigns it to the Role field.

func (*AuthorCommunityRelationship) SetUserResults ¶

func (o *AuthorCommunityRelationship) SetUserResults(v UserResults)

SetUserResults gets a reference to the given UserResults and assigns it to the UserResults field.

func (AuthorCommunityRelationship) ToMap ¶

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

func (*AuthorCommunityRelationship) UnmarshalJSON ¶

func (o *AuthorCommunityRelationship) UnmarshalJSON(data []byte) (err 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 BirdwatchEntity ¶

type BirdwatchEntity struct {
	FromIndex int32              `json:"fromIndex"`
	Ref       BirdwatchEntityRef `json:"ref"`
	ToIndex   int32              `json:"toIndex"`
}

BirdwatchEntity struct for BirdwatchEntity

func NewBirdwatchEntity ¶

func NewBirdwatchEntity(fromIndex int32, ref BirdwatchEntityRef, toIndex int32) *BirdwatchEntity

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

func NewBirdwatchEntityWithDefaults ¶

func NewBirdwatchEntityWithDefaults() *BirdwatchEntity

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

func (*BirdwatchEntity) GetFromIndex ¶

func (o *BirdwatchEntity) GetFromIndex() int32

GetFromIndex returns the FromIndex field value

func (*BirdwatchEntity) GetFromIndexOk ¶

func (o *BirdwatchEntity) GetFromIndexOk() (*int32, bool)

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

func (*BirdwatchEntity) GetRef ¶

func (o *BirdwatchEntity) GetRef() BirdwatchEntityRef

GetRef returns the Ref field value

func (*BirdwatchEntity) GetRefOk ¶

func (o *BirdwatchEntity) GetRefOk() (*BirdwatchEntityRef, bool)

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

func (*BirdwatchEntity) GetToIndex ¶

func (o *BirdwatchEntity) GetToIndex() int32

GetToIndex returns the ToIndex field value

func (*BirdwatchEntity) GetToIndexOk ¶

func (o *BirdwatchEntity) GetToIndexOk() (*int32, bool)

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

func (BirdwatchEntity) MarshalJSON ¶

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

func (*BirdwatchEntity) SetFromIndex ¶

func (o *BirdwatchEntity) SetFromIndex(v int32)

SetFromIndex sets field value

func (*BirdwatchEntity) SetRef ¶

func (o *BirdwatchEntity) SetRef(v BirdwatchEntityRef)

SetRef sets field value

func (*BirdwatchEntity) SetToIndex ¶

func (o *BirdwatchEntity) SetToIndex(v int32)

SetToIndex sets field value

func (BirdwatchEntity) ToMap ¶

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

func (*BirdwatchEntity) UnmarshalJSON ¶

func (o *BirdwatchEntity) UnmarshalJSON(data []byte) (err error)

type BirdwatchEntityRef ¶

type BirdwatchEntityRef struct {
	Text    *string `json:"text,omitempty"`
	Type    string  `json:"type"`
	Url     *string `json:"url,omitempty"`
	UrlType *string `json:"urlType,omitempty"`
}

BirdwatchEntityRef struct for BirdwatchEntityRef

func NewBirdwatchEntityRef ¶

func NewBirdwatchEntityRef(type_ string) *BirdwatchEntityRef

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

func NewBirdwatchEntityRefWithDefaults ¶

func NewBirdwatchEntityRefWithDefaults() *BirdwatchEntityRef

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

func (*BirdwatchEntityRef) GetText ¶

func (o *BirdwatchEntityRef) GetText() string

GetText returns the Text field value if set, zero value otherwise.

func (*BirdwatchEntityRef) GetTextOk ¶

func (o *BirdwatchEntityRef) GetTextOk() (*string, bool)

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

func (*BirdwatchEntityRef) GetType ¶

func (o *BirdwatchEntityRef) GetType() string

GetType returns the Type field value

func (*BirdwatchEntityRef) GetTypeOk ¶

func (o *BirdwatchEntityRef) GetTypeOk() (*string, bool)

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

func (*BirdwatchEntityRef) GetUrl ¶

func (o *BirdwatchEntityRef) GetUrl() string

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

func (*BirdwatchEntityRef) GetUrlOk ¶

func (o *BirdwatchEntityRef) 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 (*BirdwatchEntityRef) GetUrlType ¶

func (o *BirdwatchEntityRef) GetUrlType() string

GetUrlType returns the UrlType field value if set, zero value otherwise.

func (*BirdwatchEntityRef) GetUrlTypeOk ¶

func (o *BirdwatchEntityRef) GetUrlTypeOk() (*string, bool)

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

func (*BirdwatchEntityRef) HasText ¶

func (o *BirdwatchEntityRef) HasText() bool

HasText returns a boolean if a field has been set.

func (*BirdwatchEntityRef) HasUrl ¶

func (o *BirdwatchEntityRef) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (*BirdwatchEntityRef) HasUrlType ¶

func (o *BirdwatchEntityRef) HasUrlType() bool

HasUrlType returns a boolean if a field has been set.

func (BirdwatchEntityRef) MarshalJSON ¶

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

func (*BirdwatchEntityRef) SetText ¶

func (o *BirdwatchEntityRef) SetText(v string)

SetText gets a reference to the given string and assigns it to the Text field.

func (*BirdwatchEntityRef) SetType ¶

func (o *BirdwatchEntityRef) SetType(v string)

SetType sets field value

func (*BirdwatchEntityRef) SetUrl ¶

func (o *BirdwatchEntityRef) SetUrl(v string)

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

func (*BirdwatchEntityRef) SetUrlType ¶

func (o *BirdwatchEntityRef) SetUrlType(v string)

SetUrlType gets a reference to the given string and assigns it to the UrlType field.

func (BirdwatchEntityRef) ToMap ¶

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

func (*BirdwatchEntityRef) UnmarshalJSON ¶

func (o *BirdwatchEntityRef) UnmarshalJSON(data []byte) (err error)

type BirdwatchPivot ¶

type BirdwatchPivot struct {
	CallToAction   *BirdwatchPivotCallToAction `json:"callToAction,omitempty"`
	DestinationUrl string                      `json:"destinationUrl"`
	Footer         BirdwatchPivotFooter        `json:"footer"`
	IconType       string                      `json:"iconType"`
	Note           BirdwatchPivotNote          `json:"note"`
	Shorttitle     string                      `json:"shorttitle"`
	Subtitle       BirdwatchPivotSubtitle      `json:"subtitle"`
	Title          string                      `json:"title"`
	VisualStyle    *string                     `json:"visualStyle,omitempty"`
}

BirdwatchPivot struct for BirdwatchPivot

func NewBirdwatchPivot ¶

func NewBirdwatchPivot(destinationUrl string, footer BirdwatchPivotFooter, iconType string, note BirdwatchPivotNote, shorttitle string, subtitle BirdwatchPivotSubtitle, title string) *BirdwatchPivot

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

func NewBirdwatchPivotWithDefaults ¶

func NewBirdwatchPivotWithDefaults() *BirdwatchPivot

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

func (*BirdwatchPivot) GetCallToAction ¶

func (o *BirdwatchPivot) GetCallToAction() BirdwatchPivotCallToAction

GetCallToAction returns the CallToAction field value if set, zero value otherwise.

func (*BirdwatchPivot) GetCallToActionOk ¶

func (o *BirdwatchPivot) GetCallToActionOk() (*BirdwatchPivotCallToAction, bool)

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

func (*BirdwatchPivot) GetDestinationUrl ¶

func (o *BirdwatchPivot) GetDestinationUrl() string

GetDestinationUrl returns the DestinationUrl field value

func (*BirdwatchPivot) GetDestinationUrlOk ¶

func (o *BirdwatchPivot) GetDestinationUrlOk() (*string, bool)

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

func (*BirdwatchPivot) GetFooter ¶

func (o *BirdwatchPivot) GetFooter() BirdwatchPivotFooter

GetFooter returns the Footer field value

func (*BirdwatchPivot) GetFooterOk ¶

func (o *BirdwatchPivot) GetFooterOk() (*BirdwatchPivotFooter, bool)

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

func (*BirdwatchPivot) GetIconType ¶

func (o *BirdwatchPivot) GetIconType() string

GetIconType returns the IconType field value

func (*BirdwatchPivot) GetIconTypeOk ¶

func (o *BirdwatchPivot) GetIconTypeOk() (*string, bool)

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

func (*BirdwatchPivot) GetNote ¶

func (o *BirdwatchPivot) GetNote() BirdwatchPivotNote

GetNote returns the Note field value

func (*BirdwatchPivot) GetNoteOk ¶

func (o *BirdwatchPivot) GetNoteOk() (*BirdwatchPivotNote, bool)

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

func (*BirdwatchPivot) GetShorttitle ¶

func (o *BirdwatchPivot) GetShorttitle() string

GetShorttitle returns the Shorttitle field value

func (*BirdwatchPivot) GetShorttitleOk ¶

func (o *BirdwatchPivot) GetShorttitleOk() (*string, bool)

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

func (*BirdwatchPivot) GetSubtitle ¶

func (o *BirdwatchPivot) GetSubtitle() BirdwatchPivotSubtitle

GetSubtitle returns the Subtitle field value

func (*BirdwatchPivot) GetSubtitleOk ¶

func (o *BirdwatchPivot) GetSubtitleOk() (*BirdwatchPivotSubtitle, bool)

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

func (*BirdwatchPivot) GetTitle ¶

func (o *BirdwatchPivot) GetTitle() string

GetTitle returns the Title field value

func (*BirdwatchPivot) GetTitleOk ¶

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

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

func (*BirdwatchPivot) GetVisualStyle ¶

func (o *BirdwatchPivot) GetVisualStyle() string

GetVisualStyle returns the VisualStyle field value if set, zero value otherwise.

func (*BirdwatchPivot) GetVisualStyleOk ¶

func (o *BirdwatchPivot) GetVisualStyleOk() (*string, bool)

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

func (*BirdwatchPivot) HasCallToAction ¶

func (o *BirdwatchPivot) HasCallToAction() bool

HasCallToAction returns a boolean if a field has been set.

func (*BirdwatchPivot) HasVisualStyle ¶

func (o *BirdwatchPivot) HasVisualStyle() bool

HasVisualStyle returns a boolean if a field has been set.

func (BirdwatchPivot) MarshalJSON ¶

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

func (*BirdwatchPivot) SetCallToAction ¶

func (o *BirdwatchPivot) SetCallToAction(v BirdwatchPivotCallToAction)

SetCallToAction gets a reference to the given BirdwatchPivotCallToAction and assigns it to the CallToAction field.

func (*BirdwatchPivot) SetDestinationUrl ¶

func (o *BirdwatchPivot) SetDestinationUrl(v string)

SetDestinationUrl sets field value

func (*BirdwatchPivot) SetFooter ¶

func (o *BirdwatchPivot) SetFooter(v BirdwatchPivotFooter)

SetFooter sets field value

func (*BirdwatchPivot) SetIconType ¶

func (o *BirdwatchPivot) SetIconType(v string)

SetIconType sets field value

func (*BirdwatchPivot) SetNote ¶

func (o *BirdwatchPivot) SetNote(v BirdwatchPivotNote)

SetNote sets field value

func (*BirdwatchPivot) SetShorttitle ¶

func (o *BirdwatchPivot) SetShorttitle(v string)

SetShorttitle sets field value

func (*BirdwatchPivot) SetSubtitle ¶

func (o *BirdwatchPivot) SetSubtitle(v BirdwatchPivotSubtitle)

SetSubtitle sets field value

func (*BirdwatchPivot) SetTitle ¶

func (o *BirdwatchPivot) SetTitle(v string)

SetTitle sets field value

func (*BirdwatchPivot) SetVisualStyle ¶

func (o *BirdwatchPivot) SetVisualStyle(v string)

SetVisualStyle gets a reference to the given string and assigns it to the VisualStyle field.

func (BirdwatchPivot) ToMap ¶

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

func (*BirdwatchPivot) UnmarshalJSON ¶

func (o *BirdwatchPivot) UnmarshalJSON(data []byte) (err error)

type BirdwatchPivotCallToAction ¶

type BirdwatchPivotCallToAction struct {
	DestinationUrl string `json:"destinationUrl"`
	Prompt         string `json:"prompt"`
	Title          string `json:"title"`
}

BirdwatchPivotCallToAction struct for BirdwatchPivotCallToAction

func NewBirdwatchPivotCallToAction ¶

func NewBirdwatchPivotCallToAction(destinationUrl string, prompt string, title string) *BirdwatchPivotCallToAction

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

func NewBirdwatchPivotCallToActionWithDefaults ¶

func NewBirdwatchPivotCallToActionWithDefaults() *BirdwatchPivotCallToAction

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

func (*BirdwatchPivotCallToAction) GetDestinationUrl ¶

func (o *BirdwatchPivotCallToAction) GetDestinationUrl() string

GetDestinationUrl returns the DestinationUrl field value

func (*BirdwatchPivotCallToAction) GetDestinationUrlOk ¶

func (o *BirdwatchPivotCallToAction) GetDestinationUrlOk() (*string, bool)

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

func (*BirdwatchPivotCallToAction) GetPrompt ¶

func (o *BirdwatchPivotCallToAction) GetPrompt() string

GetPrompt returns the Prompt field value

func (*BirdwatchPivotCallToAction) GetPromptOk ¶

func (o *BirdwatchPivotCallToAction) GetPromptOk() (*string, bool)

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

func (*BirdwatchPivotCallToAction) GetTitle ¶

func (o *BirdwatchPivotCallToAction) GetTitle() string

GetTitle returns the Title field value

func (*BirdwatchPivotCallToAction) GetTitleOk ¶

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

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

func (BirdwatchPivotCallToAction) MarshalJSON ¶

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

func (*BirdwatchPivotCallToAction) SetDestinationUrl ¶

func (o *BirdwatchPivotCallToAction) SetDestinationUrl(v string)

SetDestinationUrl sets field value

func (*BirdwatchPivotCallToAction) SetPrompt ¶

func (o *BirdwatchPivotCallToAction) SetPrompt(v string)

SetPrompt sets field value

func (*BirdwatchPivotCallToAction) SetTitle ¶

func (o *BirdwatchPivotCallToAction) SetTitle(v string)

SetTitle sets field value

func (BirdwatchPivotCallToAction) ToMap ¶

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

func (*BirdwatchPivotCallToAction) UnmarshalJSON ¶

func (o *BirdwatchPivotCallToAction) UnmarshalJSON(data []byte) (err error)

type BirdwatchPivotFooter ¶

type BirdwatchPivotFooter struct {
	Entities []BirdwatchEntity `json:"entities"`
	Text     string            `json:"text"`
}

BirdwatchPivotFooter struct for BirdwatchPivotFooter

func NewBirdwatchPivotFooter ¶

func NewBirdwatchPivotFooter(entities []BirdwatchEntity, text string) *BirdwatchPivotFooter

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

func NewBirdwatchPivotFooterWithDefaults ¶

func NewBirdwatchPivotFooterWithDefaults() *BirdwatchPivotFooter

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

func (*BirdwatchPivotFooter) GetEntities ¶

func (o *BirdwatchPivotFooter) GetEntities() []BirdwatchEntity

GetEntities returns the Entities field value

func (*BirdwatchPivotFooter) GetEntitiesOk ¶

func (o *BirdwatchPivotFooter) GetEntitiesOk() ([]BirdwatchEntity, bool)

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

func (*BirdwatchPivotFooter) GetText ¶

func (o *BirdwatchPivotFooter) GetText() string

GetText returns the Text field value

func (*BirdwatchPivotFooter) GetTextOk ¶

func (o *BirdwatchPivotFooter) GetTextOk() (*string, bool)

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

func (BirdwatchPivotFooter) MarshalJSON ¶

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

func (*BirdwatchPivotFooter) SetEntities ¶

func (o *BirdwatchPivotFooter) SetEntities(v []BirdwatchEntity)

SetEntities sets field value

func (*BirdwatchPivotFooter) SetText ¶

func (o *BirdwatchPivotFooter) SetText(v string)

SetText sets field value

func (BirdwatchPivotFooter) ToMap ¶

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

func (*BirdwatchPivotFooter) UnmarshalJSON ¶

func (o *BirdwatchPivotFooter) UnmarshalJSON(data []byte) (err error)

type BirdwatchPivotNote ¶

type BirdwatchPivotNote struct {
	RestId string `json:"rest_id" validate:"regexp=^[0-9]+$"`
}

BirdwatchPivotNote struct for BirdwatchPivotNote

func NewBirdwatchPivotNote ¶

func NewBirdwatchPivotNote(restId string) *BirdwatchPivotNote

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

func NewBirdwatchPivotNoteWithDefaults ¶

func NewBirdwatchPivotNoteWithDefaults() *BirdwatchPivotNote

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

func (*BirdwatchPivotNote) GetRestId ¶

func (o *BirdwatchPivotNote) GetRestId() string

GetRestId returns the RestId field value

func (*BirdwatchPivotNote) GetRestIdOk ¶

func (o *BirdwatchPivotNote) GetRestIdOk() (*string, bool)

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

func (BirdwatchPivotNote) MarshalJSON ¶

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

func (*BirdwatchPivotNote) SetRestId ¶

func (o *BirdwatchPivotNote) SetRestId(v string)

SetRestId sets field value

func (BirdwatchPivotNote) ToMap ¶

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

func (*BirdwatchPivotNote) UnmarshalJSON ¶

func (o *BirdwatchPivotNote) UnmarshalJSON(data []byte) (err error)

type BirdwatchPivotSubtitle ¶

type BirdwatchPivotSubtitle struct {
	Entities []BirdwatchEntity `json:"entities"`
	Text     string            `json:"text"`
}

BirdwatchPivotSubtitle struct for BirdwatchPivotSubtitle

func NewBirdwatchPivotSubtitle ¶

func NewBirdwatchPivotSubtitle(entities []BirdwatchEntity, text string) *BirdwatchPivotSubtitle

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

func NewBirdwatchPivotSubtitleWithDefaults ¶

func NewBirdwatchPivotSubtitleWithDefaults() *BirdwatchPivotSubtitle

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

func (*BirdwatchPivotSubtitle) GetEntities ¶

func (o *BirdwatchPivotSubtitle) GetEntities() []BirdwatchEntity

GetEntities returns the Entities field value

func (*BirdwatchPivotSubtitle) GetEntitiesOk ¶

func (o *BirdwatchPivotSubtitle) GetEntitiesOk() ([]BirdwatchEntity, bool)

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

func (*BirdwatchPivotSubtitle) GetText ¶

func (o *BirdwatchPivotSubtitle) GetText() string

GetText returns the Text field value

func (*BirdwatchPivotSubtitle) GetTextOk ¶

func (o *BirdwatchPivotSubtitle) GetTextOk() (*string, bool)

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

func (BirdwatchPivotSubtitle) MarshalJSON ¶

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

func (*BirdwatchPivotSubtitle) SetEntities ¶

func (o *BirdwatchPivotSubtitle) SetEntities(v []BirdwatchEntity)

SetEntities sets field value

func (*BirdwatchPivotSubtitle) SetText ¶

func (o *BirdwatchPivotSubtitle) SetText(v string)

SetText sets field value

func (BirdwatchPivotSubtitle) ToMap ¶

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

func (*BirdwatchPivotSubtitle) UnmarshalJSON ¶

func (o *BirdwatchPivotSubtitle) UnmarshalJSON(data []byte) (err error)

type BookmarksResponse ¶

type BookmarksResponse struct {
	Data BookmarksResponseData `json:"data"`
}

BookmarksResponse struct for BookmarksResponse

func NewBookmarksResponse ¶

func NewBookmarksResponse(data BookmarksResponseData) *BookmarksResponse

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

func NewBookmarksResponseWithDefaults ¶

func NewBookmarksResponseWithDefaults() *BookmarksResponse

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

func (*BookmarksResponse) GetData ¶

GetData returns the Data field value

func (*BookmarksResponse) GetDataOk ¶

func (o *BookmarksResponse) GetDataOk() (*BookmarksResponseData, bool)

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

func (BookmarksResponse) MarshalJSON ¶

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

func (*BookmarksResponse) SetData ¶

SetData sets field value

func (BookmarksResponse) ToMap ¶

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

func (*BookmarksResponse) UnmarshalJSON ¶

func (o *BookmarksResponse) UnmarshalJSON(data []byte) (err error)

type BookmarksResponseData ¶

type BookmarksResponseData struct {
	BookmarkTimelineV2 BookmarksTimeline `json:"bookmark_timeline_v2"`
}

BookmarksResponseData struct for BookmarksResponseData

func NewBookmarksResponseData ¶

func NewBookmarksResponseData(bookmarkTimelineV2 BookmarksTimeline) *BookmarksResponseData

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

func NewBookmarksResponseDataWithDefaults ¶

func NewBookmarksResponseDataWithDefaults() *BookmarksResponseData

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

func (*BookmarksResponseData) GetBookmarkTimelineV2 ¶

func (o *BookmarksResponseData) GetBookmarkTimelineV2() BookmarksTimeline

GetBookmarkTimelineV2 returns the BookmarkTimelineV2 field value

func (*BookmarksResponseData) GetBookmarkTimelineV2Ok ¶

func (o *BookmarksResponseData) GetBookmarkTimelineV2Ok() (*BookmarksTimeline, bool)

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

func (BookmarksResponseData) MarshalJSON ¶

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

func (*BookmarksResponseData) SetBookmarkTimelineV2 ¶

func (o *BookmarksResponseData) SetBookmarkTimelineV2(v BookmarksTimeline)

SetBookmarkTimelineV2 sets field value

func (BookmarksResponseData) ToMap ¶

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

func (*BookmarksResponseData) UnmarshalJSON ¶

func (o *BookmarksResponseData) UnmarshalJSON(data []byte) (err error)

type BookmarksTimeline ¶

type BookmarksTimeline struct {
	Timeline Timeline `json:"timeline"`
}

BookmarksTimeline struct for BookmarksTimeline

func NewBookmarksTimeline ¶

func NewBookmarksTimeline(timeline Timeline) *BookmarksTimeline

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

func NewBookmarksTimelineWithDefaults ¶

func NewBookmarksTimelineWithDefaults() *BookmarksTimeline

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

func (*BookmarksTimeline) GetTimeline ¶

func (o *BookmarksTimeline) GetTimeline() Timeline

GetTimeline returns the Timeline field value

func (*BookmarksTimeline) GetTimelineOk ¶

func (o *BookmarksTimeline) GetTimelineOk() (*Timeline, bool)

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

func (BookmarksTimeline) MarshalJSON ¶

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

func (*BookmarksTimeline) SetTimeline ¶

func (o *BookmarksTimeline) SetTimeline(v Timeline)

SetTimeline sets field value

func (BookmarksTimeline) ToMap ¶

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

func (*BookmarksTimeline) UnmarshalJSON ¶

func (o *BookmarksTimeline) UnmarshalJSON(data []byte) (err error)

type Callback ¶

type Callback struct {
	Endpoint string `json:"endpoint"`
}

Callback struct for Callback

func NewCallback ¶

func NewCallback(endpoint string) *Callback

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

func NewCallbackWithDefaults ¶

func NewCallbackWithDefaults() *Callback

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

func (*Callback) GetEndpoint ¶

func (o *Callback) GetEndpoint() string

GetEndpoint returns the Endpoint field value

func (*Callback) GetEndpointOk ¶

func (o *Callback) GetEndpointOk() (*string, bool)

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

func (Callback) MarshalJSON ¶

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

func (*Callback) SetEndpoint ¶

func (o *Callback) SetEndpoint(v string)

SetEndpoint sets field value

func (Callback) ToMap ¶

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

func (*Callback) UnmarshalJSON ¶

func (o *Callback) UnmarshalJSON(data []byte) (err error)

type ClientEventInfo ¶

type ClientEventInfo struct {
	Component *string                `json:"component,omitempty"`
	Details   map[string]interface{} `json:"details,omitempty"`
	Element   *string                `json:"element,omitempty"`
}

ClientEventInfo struct for ClientEventInfo

func NewClientEventInfo ¶

func NewClientEventInfo() *ClientEventInfo

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

func NewClientEventInfoWithDefaults ¶

func NewClientEventInfoWithDefaults() *ClientEventInfo

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

func (*ClientEventInfo) GetComponent ¶

func (o *ClientEventInfo) GetComponent() string

GetComponent returns the Component field value if set, zero value otherwise.

func (*ClientEventInfo) GetComponentOk ¶

func (o *ClientEventInfo) GetComponentOk() (*string, bool)

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

func (*ClientEventInfo) GetDetails ¶

func (o *ClientEventInfo) GetDetails() map[string]interface{}

GetDetails returns the Details field value if set, zero value otherwise.

func (*ClientEventInfo) GetDetailsOk ¶

func (o *ClientEventInfo) GetDetailsOk() (map[string]interface{}, bool)

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

func (*ClientEventInfo) GetElement ¶

func (o *ClientEventInfo) GetElement() string

GetElement returns the Element field value if set, zero value otherwise.

func (*ClientEventInfo) GetElementOk ¶

func (o *ClientEventInfo) GetElementOk() (*string, bool)

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

func (*ClientEventInfo) HasComponent ¶

func (o *ClientEventInfo) HasComponent() bool

HasComponent returns a boolean if a field has been set.

func (*ClientEventInfo) HasDetails ¶

func (o *ClientEventInfo) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*ClientEventInfo) HasElement ¶

func (o *ClientEventInfo) HasElement() bool

HasElement returns a boolean if a field has been set.

func (ClientEventInfo) MarshalJSON ¶

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

func (*ClientEventInfo) SetComponent ¶

func (o *ClientEventInfo) SetComponent(v string)

SetComponent gets a reference to the given string and assigns it to the Component field.

func (*ClientEventInfo) SetDetails ¶

func (o *ClientEventInfo) SetDetails(v map[string]interface{})

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

func (*ClientEventInfo) SetElement ¶

func (o *ClientEventInfo) SetElement(v string)

SetElement gets a reference to the given string and assigns it to the Element field.

func (ClientEventInfo) ToMap ¶

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

type CommunitiesActions ¶

type CommunitiesActions struct {
	Create bool `json:"create"`
}

CommunitiesActions struct for CommunitiesActions

func NewCommunitiesActions ¶

func NewCommunitiesActions(create bool) *CommunitiesActions

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

func NewCommunitiesActionsWithDefaults ¶

func NewCommunitiesActionsWithDefaults() *CommunitiesActions

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

func (*CommunitiesActions) GetCreate ¶

func (o *CommunitiesActions) GetCreate() bool

GetCreate returns the Create field value

func (*CommunitiesActions) GetCreateOk ¶

func (o *CommunitiesActions) GetCreateOk() (*bool, bool)

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

func (CommunitiesActions) MarshalJSON ¶

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

func (*CommunitiesActions) SetCreate ¶

func (o *CommunitiesActions) SetCreate(v bool)

SetCreate sets field value

func (CommunitiesActions) ToMap ¶

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

func (*CommunitiesActions) UnmarshalJSON ¶

func (o *CommunitiesActions) UnmarshalJSON(data []byte) (err error)

type Community ¶

type Community struct {
	Result CommunityData `json:"result"`
}

Community struct for Community

func NewCommunity ¶

func NewCommunity(result CommunityData) *Community

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

func NewCommunityWithDefaults ¶

func NewCommunityWithDefaults() *Community

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

func (*Community) GetResult ¶

func (o *Community) GetResult() CommunityData

GetResult returns the Result field value

func (*Community) GetResultOk ¶

func (o *Community) GetResultOk() (*CommunityData, bool)

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

func (Community) MarshalJSON ¶

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

func (*Community) SetResult ¶

func (o *Community) SetResult(v CommunityData)

SetResult sets field value

func (Community) ToMap ¶

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

func (*Community) UnmarshalJSON ¶

func (o *Community) UnmarshalJSON(data []byte) (err error)

type CommunityActions ¶

type CommunityActions struct {
	DeleteActionResult *CommunityDeleteActionResult `json:"delete_action_result,omitempty"`
	JoinActionResult   *CommunityJoinActionResult   `json:"join_action_result,omitempty"`
	LeaveActionResult  *CommunityLeaveActionResult  `json:"leave_action_result,omitempty"`
	PinActionResult    *CommunityPinActionResult    `json:"pin_action_result,omitempty"`
	UnpinActionResult  *CommunityUnpinActionResult  `json:"unpin_action_result,omitempty"`
}

CommunityActions struct for CommunityActions

func NewCommunityActions ¶

func NewCommunityActions() *CommunityActions

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

func NewCommunityActionsWithDefaults ¶

func NewCommunityActionsWithDefaults() *CommunityActions

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

func (*CommunityActions) GetDeleteActionResult ¶

func (o *CommunityActions) GetDeleteActionResult() CommunityDeleteActionResult

GetDeleteActionResult returns the DeleteActionResult field value if set, zero value otherwise.

func (*CommunityActions) GetDeleteActionResultOk ¶

func (o *CommunityActions) GetDeleteActionResultOk() (*CommunityDeleteActionResult, bool)

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

func (*CommunityActions) GetJoinActionResult ¶

func (o *CommunityActions) GetJoinActionResult() CommunityJoinActionResult

GetJoinActionResult returns the JoinActionResult field value if set, zero value otherwise.

func (*CommunityActions) GetJoinActionResultOk ¶

func (o *CommunityActions) GetJoinActionResultOk() (*CommunityJoinActionResult, bool)

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

func (*CommunityActions) GetLeaveActionResult ¶

func (o *CommunityActions) GetLeaveActionResult() CommunityLeaveActionResult

GetLeaveActionResult returns the LeaveActionResult field value if set, zero value otherwise.

func (*CommunityActions) GetLeaveActionResultOk ¶

func (o *CommunityActions) GetLeaveActionResultOk() (*CommunityLeaveActionResult, bool)

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

func (*CommunityActions) GetPinActionResult ¶

func (o *CommunityActions) GetPinActionResult() CommunityPinActionResult

GetPinActionResult returns the PinActionResult field value if set, zero value otherwise.

func (*CommunityActions) GetPinActionResultOk ¶

func (o *CommunityActions) GetPinActionResultOk() (*CommunityPinActionResult, bool)

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

func (*CommunityActions) GetUnpinActionResult ¶

func (o *CommunityActions) GetUnpinActionResult() CommunityUnpinActionResult

GetUnpinActionResult returns the UnpinActionResult field value if set, zero value otherwise.

func (*CommunityActions) GetUnpinActionResultOk ¶

func (o *CommunityActions) GetUnpinActionResultOk() (*CommunityUnpinActionResult, bool)

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

func (*CommunityActions) HasDeleteActionResult ¶

func (o *CommunityActions) HasDeleteActionResult() bool

HasDeleteActionResult returns a boolean if a field has been set.

func (*CommunityActions) HasJoinActionResult ¶

func (o *CommunityActions) HasJoinActionResult() bool

HasJoinActionResult returns a boolean if a field has been set.

func (*CommunityActions) HasLeaveActionResult ¶

func (o *CommunityActions) HasLeaveActionResult() bool

HasLeaveActionResult returns a boolean if a field has been set.

func (*CommunityActions) HasPinActionResult ¶

func (o *CommunityActions) HasPinActionResult() bool

HasPinActionResult returns a boolean if a field has been set.

func (*CommunityActions) HasUnpinActionResult ¶

func (o *CommunityActions) HasUnpinActionResult() bool

HasUnpinActionResult returns a boolean if a field has been set.

func (CommunityActions) MarshalJSON ¶

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

func (*CommunityActions) SetDeleteActionResult ¶

func (o *CommunityActions) SetDeleteActionResult(v CommunityDeleteActionResult)

SetDeleteActionResult gets a reference to the given CommunityDeleteActionResult and assigns it to the DeleteActionResult field.

func (*CommunityActions) SetJoinActionResult ¶

func (o *CommunityActions) SetJoinActionResult(v CommunityJoinActionResult)

SetJoinActionResult gets a reference to the given CommunityJoinActionResult and assigns it to the JoinActionResult field.

func (*CommunityActions) SetLeaveActionResult ¶

func (o *CommunityActions) SetLeaveActionResult(v CommunityLeaveActionResult)

SetLeaveActionResult gets a reference to the given CommunityLeaveActionResult and assigns it to the LeaveActionResult field.

func (*CommunityActions) SetPinActionResult ¶

func (o *CommunityActions) SetPinActionResult(v CommunityPinActionResult)

SetPinActionResult gets a reference to the given CommunityPinActionResult and assigns it to the PinActionResult field.

func (*CommunityActions) SetUnpinActionResult ¶

func (o *CommunityActions) SetUnpinActionResult(v CommunityUnpinActionResult)

SetUnpinActionResult gets a reference to the given CommunityUnpinActionResult and assigns it to the UnpinActionResult field.

func (CommunityActions) ToMap ¶

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

type CommunityData ¶

type CommunityData struct {
	Typename               TypeName                     `json:"__typename"`
	Actions                CommunityActions             `json:"actions"`
	AdminResults           UserResults                  `json:"admin_results"`
	CreatedAt              *int32                       `json:"created_at,omitempty"`
	CreatorResults         UserResults                  `json:"creator_results"`
	CustomBannerMedia      map[string]interface{}       `json:"custom_banner_media,omitempty"`
	DefaultBannerMedia     map[string]interface{}       `json:"default_banner_media,omitempty"`
	Description            string                       `json:"description"`
	IdStr                  string                       `json:"id_str" validate:"regexp=^[0-9]+$"`
	InvitesPolicy          string                       `json:"invites_policy"`
	InvitesResult          CommunityInvitesResult       `json:"invites_result"`
	IsPinned               bool                         `json:"is_pinned"`
	JoinPolicy             string                       `json:"join_policy"`
	JoinRequestsResult     *CommunityJoinRequestsResult `json:"join_requests_result,omitempty"`
	MemberCount            int32                        `json:"member_count"`
	MembersFacepileResults []UserResults                `json:"members_facepile_results"`
	ModeratorCount         int32                        `json:"moderator_count"`
	Name                   string                       `json:"name"`
	PrimaryCommunityTopic  *PrimaryCommunityTopic       `json:"primary_community_topic,omitempty"`
	Question               *string                      `json:"question,omitempty"`
	Role                   string                       `json:"role"`
	Rules                  []CommunityRule              `json:"rules"`
	SearchTags             []string                     `json:"search_tags"`
	ShowOnlyUsersToDisplay []string                     `json:"show_only_users_to_display,omitempty"`
	Urls                   *CommunityUrls               `json:"urls,omitempty"`
	ViewerRelationship     map[string]interface{}       `json:"viewer_relationship,omitempty"`
}

CommunityData struct for CommunityData

func NewCommunityData ¶

func NewCommunityData(typename TypeName, actions CommunityActions, adminResults UserResults, creatorResults UserResults, description string, idStr string, invitesPolicy string, invitesResult CommunityInvitesResult, isPinned bool, joinPolicy string, memberCount int32, membersFacepileResults []UserResults, moderatorCount int32, name string, role string, rules []CommunityRule, searchTags []string) *CommunityData

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

func NewCommunityDataWithDefaults ¶

func NewCommunityDataWithDefaults() *CommunityData

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

func (*CommunityData) GetActions ¶

func (o *CommunityData) GetActions() CommunityActions

GetActions returns the Actions field value

func (*CommunityData) GetActionsOk ¶

func (o *CommunityData) GetActionsOk() (*CommunityActions, bool)

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

func (*CommunityData) GetAdminResults ¶

func (o *CommunityData) GetAdminResults() UserResults

GetAdminResults returns the AdminResults field value

func (*CommunityData) GetAdminResultsOk ¶

func (o *CommunityData) GetAdminResultsOk() (*UserResults, bool)

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

func (*CommunityData) GetCreatedAt ¶

func (o *CommunityData) GetCreatedAt() int32

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*CommunityData) GetCreatedAtOk ¶

func (o *CommunityData) GetCreatedAtOk() (*int32, bool)

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

func (*CommunityData) GetCreatorResults ¶

func (o *CommunityData) GetCreatorResults() UserResults

GetCreatorResults returns the CreatorResults field value

func (*CommunityData) GetCreatorResultsOk ¶

func (o *CommunityData) GetCreatorResultsOk() (*UserResults, bool)

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

func (*CommunityData) GetCustomBannerMedia ¶

func (o *CommunityData) GetCustomBannerMedia() map[string]interface{}

GetCustomBannerMedia returns the CustomBannerMedia field value if set, zero value otherwise.

func (*CommunityData) GetCustomBannerMediaOk ¶

func (o *CommunityData) GetCustomBannerMediaOk() (map[string]interface{}, bool)

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

func (*CommunityData) GetDefaultBannerMedia ¶

func (o *CommunityData) GetDefaultBannerMedia() map[string]interface{}

GetDefaultBannerMedia returns the DefaultBannerMedia field value if set, zero value otherwise.

func (*CommunityData) GetDefaultBannerMediaOk ¶

func (o *CommunityData) GetDefaultBannerMediaOk() (map[string]interface{}, bool)

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

func (*CommunityData) GetDescription ¶

func (o *CommunityData) GetDescription() string

GetDescription returns the Description field value

func (*CommunityData) GetDescriptionOk ¶

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

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

func (*CommunityData) GetIdStr ¶

func (o *CommunityData) GetIdStr() string

GetIdStr returns the IdStr field value

func (*CommunityData) GetIdStrOk ¶

func (o *CommunityData) GetIdStrOk() (*string, bool)

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

func (*CommunityData) GetInvitesPolicy ¶

func (o *CommunityData) GetInvitesPolicy() string

GetInvitesPolicy returns the InvitesPolicy field value

func (*CommunityData) GetInvitesPolicyOk ¶

func (o *CommunityData) GetInvitesPolicyOk() (*string, bool)

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

func (*CommunityData) GetInvitesResult ¶

func (o *CommunityData) GetInvitesResult() CommunityInvitesResult

GetInvitesResult returns the InvitesResult field value

func (*CommunityData) GetInvitesResultOk ¶

func (o *CommunityData) GetInvitesResultOk() (*CommunityInvitesResult, bool)

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

func (*CommunityData) GetIsPinned ¶

func (o *CommunityData) GetIsPinned() bool

GetIsPinned returns the IsPinned field value

func (*CommunityData) GetIsPinnedOk ¶

func (o *CommunityData) GetIsPinnedOk() (*bool, bool)

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

func (*CommunityData) GetJoinPolicy ¶

func (o *CommunityData) GetJoinPolicy() string

GetJoinPolicy returns the JoinPolicy field value

func (*CommunityData) GetJoinPolicyOk ¶

func (o *CommunityData) GetJoinPolicyOk() (*string, bool)

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

func (*CommunityData) GetJoinRequestsResult ¶

func (o *CommunityData) GetJoinRequestsResult() CommunityJoinRequestsResult

GetJoinRequestsResult returns the JoinRequestsResult field value if set, zero value otherwise.

func (*CommunityData) GetJoinRequestsResultOk ¶

func (o *CommunityData) GetJoinRequestsResultOk() (*CommunityJoinRequestsResult, bool)

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

func (*CommunityData) GetMemberCount ¶

func (o *CommunityData) GetMemberCount() int32

GetMemberCount returns the MemberCount field value

func (*CommunityData) GetMemberCountOk ¶

func (o *CommunityData) GetMemberCountOk() (*int32, bool)

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

func (*CommunityData) GetMembersFacepileResults ¶

func (o *CommunityData) GetMembersFacepileResults() []UserResults

GetMembersFacepileResults returns the MembersFacepileResults field value

func (*CommunityData) GetMembersFacepileResultsOk ¶

func (o *CommunityData) GetMembersFacepileResultsOk() ([]UserResults, bool)

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

func (*CommunityData) GetModeratorCount ¶

func (o *CommunityData) GetModeratorCount() int32

GetModeratorCount returns the ModeratorCount field value

func (*CommunityData) GetModeratorCountOk ¶

func (o *CommunityData) GetModeratorCountOk() (*int32, bool)

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

func (*CommunityData) GetName ¶

func (o *CommunityData) GetName() string

GetName returns the Name field value

func (*CommunityData) GetNameOk ¶

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

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

func (*CommunityData) GetPrimaryCommunityTopic ¶

func (o *CommunityData) GetPrimaryCommunityTopic() PrimaryCommunityTopic

GetPrimaryCommunityTopic returns the PrimaryCommunityTopic field value if set, zero value otherwise.

func (*CommunityData) GetPrimaryCommunityTopicOk ¶

func (o *CommunityData) GetPrimaryCommunityTopicOk() (*PrimaryCommunityTopic, bool)

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

func (*CommunityData) GetQuestion ¶

func (o *CommunityData) GetQuestion() string

GetQuestion returns the Question field value if set, zero value otherwise.

func (*CommunityData) GetQuestionOk ¶

func (o *CommunityData) 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 (*CommunityData) GetRole ¶

func (o *CommunityData) GetRole() string

GetRole returns the Role field value

func (*CommunityData) GetRoleOk ¶

func (o *CommunityData) GetRoleOk() (*string, bool)

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

func (*CommunityData) GetRules ¶

func (o *CommunityData) GetRules() []CommunityRule

GetRules returns the Rules field value

func (*CommunityData) GetRulesOk ¶

func (o *CommunityData) GetRulesOk() ([]CommunityRule, bool)

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

func (*CommunityData) GetSearchTags ¶

func (o *CommunityData) GetSearchTags() []string

GetSearchTags returns the SearchTags field value

func (*CommunityData) GetSearchTagsOk ¶

func (o *CommunityData) GetSearchTagsOk() ([]string, bool)

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

func (*CommunityData) GetShowOnlyUsersToDisplay ¶

func (o *CommunityData) GetShowOnlyUsersToDisplay() []string

GetShowOnlyUsersToDisplay returns the ShowOnlyUsersToDisplay field value if set, zero value otherwise.

func (*CommunityData) GetShowOnlyUsersToDisplayOk ¶

func (o *CommunityData) GetShowOnlyUsersToDisplayOk() ([]string, bool)

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

func (*CommunityData) GetTypename ¶

func (o *CommunityData) GetTypename() TypeName

GetTypename returns the Typename field value

func (*CommunityData) GetTypenameOk ¶

func (o *CommunityData) GetTypenameOk() (*TypeName, bool)

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

func (*CommunityData) GetUrls ¶

func (o *CommunityData) GetUrls() CommunityUrls

GetUrls returns the Urls field value if set, zero value otherwise.

func (*CommunityData) GetUrlsOk ¶

func (o *CommunityData) GetUrlsOk() (*CommunityUrls, bool)

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

func (*CommunityData) GetViewerRelationship ¶

func (o *CommunityData) GetViewerRelationship() map[string]interface{}

GetViewerRelationship returns the ViewerRelationship field value if set, zero value otherwise.

func (*CommunityData) GetViewerRelationshipOk ¶

func (o *CommunityData) GetViewerRelationshipOk() (map[string]interface{}, bool)

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

func (*CommunityData) HasCreatedAt ¶

func (o *CommunityData) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*CommunityData) HasCustomBannerMedia ¶

func (o *CommunityData) HasCustomBannerMedia() bool

HasCustomBannerMedia returns a boolean if a field has been set.

func (*CommunityData) HasDefaultBannerMedia ¶

func (o *CommunityData) HasDefaultBannerMedia() bool

HasDefaultBannerMedia returns a boolean if a field has been set.

func (*CommunityData) HasJoinRequestsResult ¶

func (o *CommunityData) HasJoinRequestsResult() bool

HasJoinRequestsResult returns a boolean if a field has been set.

func (*CommunityData) HasPrimaryCommunityTopic ¶

func (o *CommunityData) HasPrimaryCommunityTopic() bool

HasPrimaryCommunityTopic returns a boolean if a field has been set.

func (*CommunityData) HasQuestion ¶

func (o *CommunityData) HasQuestion() bool

HasQuestion returns a boolean if a field has been set.

func (*CommunityData) HasShowOnlyUsersToDisplay ¶

func (o *CommunityData) HasShowOnlyUsersToDisplay() bool

HasShowOnlyUsersToDisplay returns a boolean if a field has been set.

func (*CommunityData) HasUrls ¶

func (o *CommunityData) HasUrls() bool

HasUrls returns a boolean if a field has been set.

func (*CommunityData) HasViewerRelationship ¶

func (o *CommunityData) HasViewerRelationship() bool

HasViewerRelationship returns a boolean if a field has been set.

func (CommunityData) MarshalJSON ¶

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

func (*CommunityData) SetActions ¶

func (o *CommunityData) SetActions(v CommunityActions)

SetActions sets field value

func (*CommunityData) SetAdminResults ¶

func (o *CommunityData) SetAdminResults(v UserResults)

SetAdminResults sets field value

func (*CommunityData) SetCreatedAt ¶

func (o *CommunityData) SetCreatedAt(v int32)

SetCreatedAt gets a reference to the given int32 and assigns it to the CreatedAt field.

func (*CommunityData) SetCreatorResults ¶

func (o *CommunityData) SetCreatorResults(v UserResults)

SetCreatorResults sets field value

func (*CommunityData) SetCustomBannerMedia ¶

func (o *CommunityData) SetCustomBannerMedia(v map[string]interface{})

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

func (*CommunityData) SetDefaultBannerMedia ¶

func (o *CommunityData) SetDefaultBannerMedia(v map[string]interface{})

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

func (*CommunityData) SetDescription ¶

func (o *CommunityData) SetDescription(v string)

SetDescription sets field value

func (*CommunityData) SetIdStr ¶

func (o *CommunityData) SetIdStr(v string)

SetIdStr sets field value

func (*CommunityData) SetInvitesPolicy ¶

func (o *CommunityData) SetInvitesPolicy(v string)

SetInvitesPolicy sets field value

func (*CommunityData) SetInvitesResult ¶

func (o *CommunityData) SetInvitesResult(v CommunityInvitesResult)

SetInvitesResult sets field value

func (*CommunityData) SetIsPinned ¶

func (o *CommunityData) SetIsPinned(v bool)

SetIsPinned sets field value

func (*CommunityData) SetJoinPolicy ¶

func (o *CommunityData) SetJoinPolicy(v string)

SetJoinPolicy sets field value

func (*CommunityData) SetJoinRequestsResult ¶

func (o *CommunityData) SetJoinRequestsResult(v CommunityJoinRequestsResult)

SetJoinRequestsResult gets a reference to the given CommunityJoinRequestsResult and assigns it to the JoinRequestsResult field.

func (*CommunityData) SetMemberCount ¶

func (o *CommunityData) SetMemberCount(v int32)

SetMemberCount sets field value

func (*CommunityData) SetMembersFacepileResults ¶

func (o *CommunityData) SetMembersFacepileResults(v []UserResults)

SetMembersFacepileResults sets field value

func (*CommunityData) SetModeratorCount ¶

func (o *CommunityData) SetModeratorCount(v int32)

SetModeratorCount sets field value

func (*CommunityData) SetName ¶

func (o *CommunityData) SetName(v string)

SetName sets field value

func (*CommunityData) SetPrimaryCommunityTopic ¶

func (o *CommunityData) SetPrimaryCommunityTopic(v PrimaryCommunityTopic)

SetPrimaryCommunityTopic gets a reference to the given PrimaryCommunityTopic and assigns it to the PrimaryCommunityTopic field.

func (*CommunityData) SetQuestion ¶

func (o *CommunityData) SetQuestion(v string)

SetQuestion gets a reference to the given string and assigns it to the Question field.

func (*CommunityData) SetRole ¶

func (o *CommunityData) SetRole(v string)

SetRole sets field value

func (*CommunityData) SetRules ¶

func (o *CommunityData) SetRules(v []CommunityRule)

SetRules sets field value

func (*CommunityData) SetSearchTags ¶

func (o *CommunityData) SetSearchTags(v []string)

SetSearchTags sets field value

func (*CommunityData) SetShowOnlyUsersToDisplay ¶

func (o *CommunityData) SetShowOnlyUsersToDisplay(v []string)

SetShowOnlyUsersToDisplay gets a reference to the given []string and assigns it to the ShowOnlyUsersToDisplay field.

func (*CommunityData) SetTypename ¶

func (o *CommunityData) SetTypename(v TypeName)

SetTypename sets field value

func (*CommunityData) SetUrls ¶

func (o *CommunityData) SetUrls(v CommunityUrls)

SetUrls gets a reference to the given CommunityUrls and assigns it to the Urls field.

func (*CommunityData) SetViewerRelationship ¶

func (o *CommunityData) SetViewerRelationship(v map[string]interface{})

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

func (CommunityData) ToMap ¶

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

func (*CommunityData) UnmarshalJSON ¶

func (o *CommunityData) UnmarshalJSON(data []byte) (err error)

type CommunityDeleteActionResult ¶

type CommunityDeleteActionResult struct {
	Typename TypeName `json:"__typename"`
	Reason   string   `json:"reason"`
}

CommunityDeleteActionResult struct for CommunityDeleteActionResult

func NewCommunityDeleteActionResult ¶

func NewCommunityDeleteActionResult(typename TypeName, reason string) *CommunityDeleteActionResult

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

func NewCommunityDeleteActionResultWithDefaults ¶

func NewCommunityDeleteActionResultWithDefaults() *CommunityDeleteActionResult

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

func (*CommunityDeleteActionResult) GetReason ¶

func (o *CommunityDeleteActionResult) GetReason() string

GetReason returns the Reason field value

func (*CommunityDeleteActionResult) GetReasonOk ¶

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

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

func (*CommunityDeleteActionResult) GetTypename ¶

func (o *CommunityDeleteActionResult) GetTypename() TypeName

GetTypename returns the Typename field value

func (*CommunityDeleteActionResult) GetTypenameOk ¶

func (o *CommunityDeleteActionResult) GetTypenameOk() (*TypeName, bool)

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

func (CommunityDeleteActionResult) MarshalJSON ¶

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

func (*CommunityDeleteActionResult) SetReason ¶

func (o *CommunityDeleteActionResult) SetReason(v string)

SetReason sets field value

func (*CommunityDeleteActionResult) SetTypename ¶

func (o *CommunityDeleteActionResult) SetTypename(v TypeName)

SetTypename sets field value

func (CommunityDeleteActionResult) ToMap ¶

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

func (*CommunityDeleteActionResult) UnmarshalJSON ¶

func (o *CommunityDeleteActionResult) UnmarshalJSON(data []byte) (err error)

type CommunityInvitesResult ¶

type CommunityInvitesResult struct {
	Typename TypeName `json:"__typename"`
	Message  string   `json:"message"`
	Reason   string   `json:"reason"`
}

CommunityInvitesResult struct for CommunityInvitesResult

func NewCommunityInvitesResult ¶

func NewCommunityInvitesResult(typename TypeName, message string, reason string) *CommunityInvitesResult

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

func NewCommunityInvitesResultWithDefaults ¶

func NewCommunityInvitesResultWithDefaults() *CommunityInvitesResult

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

func (*CommunityInvitesResult) GetMessage ¶

func (o *CommunityInvitesResult) GetMessage() string

GetMessage returns the Message field value

func (*CommunityInvitesResult) GetMessageOk ¶

func (o *CommunityInvitesResult) GetMessageOk() (*string, bool)

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

func (*CommunityInvitesResult) GetReason ¶

func (o *CommunityInvitesResult) GetReason() string

GetReason returns the Reason field value

func (*CommunityInvitesResult) GetReasonOk ¶

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

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

func (*CommunityInvitesResult) GetTypename ¶

func (o *CommunityInvitesResult) GetTypename() TypeName

GetTypename returns the Typename field value

func (*CommunityInvitesResult) GetTypenameOk ¶

func (o *CommunityInvitesResult) GetTypenameOk() (*TypeName, bool)

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

func (CommunityInvitesResult) MarshalJSON ¶

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

func (*CommunityInvitesResult) SetMessage ¶

func (o *CommunityInvitesResult) SetMessage(v string)

SetMessage sets field value

func (*CommunityInvitesResult) SetReason ¶

func (o *CommunityInvitesResult) SetReason(v string)

SetReason sets field value

func (*CommunityInvitesResult) SetTypename ¶

func (o *CommunityInvitesResult) SetTypename(v TypeName)

SetTypename sets field value

func (CommunityInvitesResult) ToMap ¶

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

func (*CommunityInvitesResult) UnmarshalJSON ¶

func (o *CommunityInvitesResult) UnmarshalJSON(data []byte) (err error)

type CommunityJoinActionResult ¶

type CommunityJoinActionResult struct {
	Typename TypeName `json:"__typename"`
}

CommunityJoinActionResult struct for CommunityJoinActionResult

func NewCommunityJoinActionResult ¶

func NewCommunityJoinActionResult(typename TypeName) *CommunityJoinActionResult

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

func NewCommunityJoinActionResultWithDefaults ¶

func NewCommunityJoinActionResultWithDefaults() *CommunityJoinActionResult

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

func (*CommunityJoinActionResult) GetTypename ¶

func (o *CommunityJoinActionResult) GetTypename() TypeName

GetTypename returns the Typename field value

func (*CommunityJoinActionResult) GetTypenameOk ¶

func (o *CommunityJoinActionResult) GetTypenameOk() (*TypeName, bool)

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

func (CommunityJoinActionResult) MarshalJSON ¶

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

func (*CommunityJoinActionResult) SetTypename ¶

func (o *CommunityJoinActionResult) SetTypename(v TypeName)

SetTypename sets field value

func (CommunityJoinActionResult) ToMap ¶

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

func (*CommunityJoinActionResult) UnmarshalJSON ¶

func (o *CommunityJoinActionResult) UnmarshalJSON(data []byte) (err error)

type CommunityJoinRequestsResult ¶

type CommunityJoinRequestsResult struct {
	Typename TypeName `json:"__typename"`
}

CommunityJoinRequestsResult struct for CommunityJoinRequestsResult

func NewCommunityJoinRequestsResult ¶

func NewCommunityJoinRequestsResult(typename TypeName) *CommunityJoinRequestsResult

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

func NewCommunityJoinRequestsResultWithDefaults ¶

func NewCommunityJoinRequestsResultWithDefaults() *CommunityJoinRequestsResult

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

func (*CommunityJoinRequestsResult) GetTypename ¶

func (o *CommunityJoinRequestsResult) GetTypename() TypeName

GetTypename returns the Typename field value

func (*CommunityJoinRequestsResult) GetTypenameOk ¶

func (o *CommunityJoinRequestsResult) GetTypenameOk() (*TypeName, bool)

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

func (CommunityJoinRequestsResult) MarshalJSON ¶

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

func (*CommunityJoinRequestsResult) SetTypename ¶

func (o *CommunityJoinRequestsResult) SetTypename(v TypeName)

SetTypename sets field value

func (CommunityJoinRequestsResult) ToMap ¶

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

func (*CommunityJoinRequestsResult) UnmarshalJSON ¶

func (o *CommunityJoinRequestsResult) UnmarshalJSON(data []byte) (err error)

type CommunityLeaveActionResult ¶

type CommunityLeaveActionResult struct {
	Typename TypeName `json:"__typename"`
	Message  string   `json:"message"`
	Reason   string   `json:"reason"`
}

CommunityLeaveActionResult struct for CommunityLeaveActionResult

func NewCommunityLeaveActionResult ¶

func NewCommunityLeaveActionResult(typename TypeName, message string, reason string) *CommunityLeaveActionResult

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

func NewCommunityLeaveActionResultWithDefaults ¶

func NewCommunityLeaveActionResultWithDefaults() *CommunityLeaveActionResult

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

func (*CommunityLeaveActionResult) GetMessage ¶

func (o *CommunityLeaveActionResult) GetMessage() string

GetMessage returns the Message field value

func (*CommunityLeaveActionResult) GetMessageOk ¶

func (o *CommunityLeaveActionResult) GetMessageOk() (*string, bool)

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

func (*CommunityLeaveActionResult) GetReason ¶

func (o *CommunityLeaveActionResult) GetReason() string

GetReason returns the Reason field value

func (*CommunityLeaveActionResult) GetReasonOk ¶

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

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

func (*CommunityLeaveActionResult) GetTypename ¶

func (o *CommunityLeaveActionResult) GetTypename() TypeName

GetTypename returns the Typename field value

func (*CommunityLeaveActionResult) GetTypenameOk ¶

func (o *CommunityLeaveActionResult) GetTypenameOk() (*TypeName, bool)

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

func (CommunityLeaveActionResult) MarshalJSON ¶

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

func (*CommunityLeaveActionResult) SetMessage ¶

func (o *CommunityLeaveActionResult) SetMessage(v string)

SetMessage sets field value

func (*CommunityLeaveActionResult) SetReason ¶

func (o *CommunityLeaveActionResult) SetReason(v string)

SetReason sets field value

func (*CommunityLeaveActionResult) SetTypename ¶

func (o *CommunityLeaveActionResult) SetTypename(v TypeName)

SetTypename sets field value

func (CommunityLeaveActionResult) ToMap ¶

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

func (*CommunityLeaveActionResult) UnmarshalJSON ¶

func (o *CommunityLeaveActionResult) UnmarshalJSON(data []byte) (err error)

type CommunityPinActionResult ¶

type CommunityPinActionResult struct {
	Typename TypeName `json:"__typename"`
}

CommunityPinActionResult struct for CommunityPinActionResult

func NewCommunityPinActionResult ¶

func NewCommunityPinActionResult(typename TypeName) *CommunityPinActionResult

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

func NewCommunityPinActionResultWithDefaults ¶

func NewCommunityPinActionResultWithDefaults() *CommunityPinActionResult

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

func (*CommunityPinActionResult) GetTypename ¶

func (o *CommunityPinActionResult) GetTypename() TypeName

GetTypename returns the Typename field value

func (*CommunityPinActionResult) GetTypenameOk ¶

func (o *CommunityPinActionResult) GetTypenameOk() (*TypeName, bool)

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

func (CommunityPinActionResult) MarshalJSON ¶

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

func (*CommunityPinActionResult) SetTypename ¶

func (o *CommunityPinActionResult) SetTypename(v TypeName)

SetTypename sets field value

func (CommunityPinActionResult) ToMap ¶

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

func (*CommunityPinActionResult) UnmarshalJSON ¶

func (o *CommunityPinActionResult) UnmarshalJSON(data []byte) (err error)

type CommunityRelationship ¶

type CommunityRelationship struct {
	Actions         CommunityActions       `json:"actions"`
	Id              string                 `json:"id"`
	ModerationState map[string]interface{} `json:"moderation_state"`
	RestId          string                 `json:"rest_id" validate:"regexp=^[0-9]+$"`
}

CommunityRelationship struct for CommunityRelationship

func NewCommunityRelationship ¶

func NewCommunityRelationship(actions CommunityActions, id string, moderationState map[string]interface{}, restId string) *CommunityRelationship

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

func NewCommunityRelationshipWithDefaults ¶

func NewCommunityRelationshipWithDefaults() *CommunityRelationship

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

func (*CommunityRelationship) GetActions ¶

func (o *CommunityRelationship) GetActions() CommunityActions

GetActions returns the Actions field value

func (*CommunityRelationship) GetActionsOk ¶

func (o *CommunityRelationship) GetActionsOk() (*CommunityActions, bool)

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

func (*CommunityRelationship) GetId ¶

func (o *CommunityRelationship) GetId() string

GetId returns the Id field value

func (*CommunityRelationship) GetIdOk ¶

func (o *CommunityRelationship) GetIdOk() (*string, bool)

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

func (*CommunityRelationship) GetModerationState ¶

func (o *CommunityRelationship) GetModerationState() map[string]interface{}

GetModerationState returns the ModerationState field value

func (*CommunityRelationship) GetModerationStateOk ¶

func (o *CommunityRelationship) GetModerationStateOk() (map[string]interface{}, bool)

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

func (*CommunityRelationship) GetRestId ¶

func (o *CommunityRelationship) GetRestId() string

GetRestId returns the RestId field value

func (*CommunityRelationship) GetRestIdOk ¶

func (o *CommunityRelationship) GetRestIdOk() (*string, bool)

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

func (CommunityRelationship) MarshalJSON ¶

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

func (*CommunityRelationship) SetActions ¶

func (o *CommunityRelationship) SetActions(v CommunityActions)

SetActions sets field value

func (*CommunityRelationship) SetId ¶

func (o *CommunityRelationship) SetId(v string)

SetId sets field value

func (*CommunityRelationship) SetModerationState ¶

func (o *CommunityRelationship) SetModerationState(v map[string]interface{})

SetModerationState sets field value

func (*CommunityRelationship) SetRestId ¶

func (o *CommunityRelationship) SetRestId(v string)

SetRestId sets field value

func (CommunityRelationship) ToMap ¶

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

func (*CommunityRelationship) UnmarshalJSON ¶

func (o *CommunityRelationship) UnmarshalJSON(data []byte) (err error)

type CommunityRule ¶

type CommunityRule struct {
	Description *string `json:"description,omitempty"`
	Name        string  `json:"name"`
	RestId      string  `json:"rest_id" validate:"regexp=^[0-9]+$"`
}

CommunityRule struct for CommunityRule

func NewCommunityRule ¶

func NewCommunityRule(name string, restId string) *CommunityRule

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

func NewCommunityRuleWithDefaults ¶

func NewCommunityRuleWithDefaults() *CommunityRule

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

func (*CommunityRule) GetDescription ¶

func (o *CommunityRule) GetDescription() string

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

func (*CommunityRule) GetDescriptionOk ¶

func (o *CommunityRule) 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 (*CommunityRule) GetName ¶

func (o *CommunityRule) GetName() string

GetName returns the Name field value

func (*CommunityRule) GetNameOk ¶

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

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

func (*CommunityRule) GetRestId ¶

func (o *CommunityRule) GetRestId() string

GetRestId returns the RestId field value

func (*CommunityRule) GetRestIdOk ¶

func (o *CommunityRule) GetRestIdOk() (*string, bool)

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

func (*CommunityRule) HasDescription ¶

func (o *CommunityRule) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (CommunityRule) MarshalJSON ¶

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

func (*CommunityRule) SetDescription ¶

func (o *CommunityRule) SetDescription(v string)

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

func (*CommunityRule) SetName ¶

func (o *CommunityRule) SetName(v string)

SetName sets field value

func (*CommunityRule) SetRestId ¶

func (o *CommunityRule) SetRestId(v string)

SetRestId sets field value

func (CommunityRule) ToMap ¶

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

func (*CommunityRule) UnmarshalJSON ¶

func (o *CommunityRule) UnmarshalJSON(data []byte) (err error)

type CommunityUnpinActionResult ¶

type CommunityUnpinActionResult struct {
	Typename TypeName `json:"__typename"`
}

CommunityUnpinActionResult struct for CommunityUnpinActionResult

func NewCommunityUnpinActionResult ¶

func NewCommunityUnpinActionResult(typename TypeName) *CommunityUnpinActionResult

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

func NewCommunityUnpinActionResultWithDefaults ¶

func NewCommunityUnpinActionResultWithDefaults() *CommunityUnpinActionResult

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

func (*CommunityUnpinActionResult) GetTypename ¶

func (o *CommunityUnpinActionResult) GetTypename() TypeName

GetTypename returns the Typename field value

func (*CommunityUnpinActionResult) GetTypenameOk ¶

func (o *CommunityUnpinActionResult) GetTypenameOk() (*TypeName, bool)

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

func (CommunityUnpinActionResult) MarshalJSON ¶

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

func (*CommunityUnpinActionResult) SetTypename ¶

func (o *CommunityUnpinActionResult) SetTypename(v TypeName)

SetTypename sets field value

func (CommunityUnpinActionResult) ToMap ¶

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

func (*CommunityUnpinActionResult) UnmarshalJSON ¶

func (o *CommunityUnpinActionResult) UnmarshalJSON(data []byte) (err error)

type CommunityUrls ¶

type CommunityUrls struct {
	Permalink CommunityUrlsPermalink `json:"permalink"`
}

CommunityUrls struct for CommunityUrls

func NewCommunityUrls ¶

func NewCommunityUrls(permalink CommunityUrlsPermalink) *CommunityUrls

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

func NewCommunityUrlsWithDefaults ¶

func NewCommunityUrlsWithDefaults() *CommunityUrls

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

func (o *CommunityUrls) GetPermalink() CommunityUrlsPermalink

GetPermalink returns the Permalink field value

func (*CommunityUrls) GetPermalinkOk ¶

func (o *CommunityUrls) GetPermalinkOk() (*CommunityUrlsPermalink, bool)

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

func (CommunityUrls) MarshalJSON ¶

func (o CommunityUrls) MarshalJSON() ([]byte, error)
func (o *CommunityUrls) SetPermalink(v CommunityUrlsPermalink)

SetPermalink sets field value

func (CommunityUrls) ToMap ¶

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

func (*CommunityUrls) UnmarshalJSON ¶

func (o *CommunityUrls) UnmarshalJSON(data []byte) (err error)
type CommunityUrlsPermalink struct {
	Url string `json:"url"`
}

CommunityUrlsPermalink struct for CommunityUrlsPermalink

func NewCommunityUrlsPermalink(url string) *CommunityUrlsPermalink

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

func NewCommunityUrlsPermalinkWithDefaults ¶

func NewCommunityUrlsPermalinkWithDefaults() *CommunityUrlsPermalink

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

func (*CommunityUrlsPermalink) GetUrl ¶

func (o *CommunityUrlsPermalink) GetUrl() string

GetUrl returns the Url field value

func (*CommunityUrlsPermalink) GetUrlOk ¶

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

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

func (CommunityUrlsPermalink) MarshalJSON ¶

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

func (*CommunityUrlsPermalink) SetUrl ¶

func (o *CommunityUrlsPermalink) SetUrl(v string)

SetUrl sets field value

func (CommunityUrlsPermalink) ToMap ¶

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

func (*CommunityUrlsPermalink) UnmarshalJSON ¶

func (o *CommunityUrlsPermalink) UnmarshalJSON(data []byte) (err 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 ContentEntryType ¶

type ContentEntryType string

ContentEntryType the model 'ContentEntryType'

func NewContentEntryTypeFromValue ¶

func NewContentEntryTypeFromValue(v string) (*ContentEntryType, error)

NewContentEntryTypeFromValue returns a pointer to a valid ContentEntryType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ContentEntryType) IsValid ¶

func (v ContentEntryType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ContentEntryType) Ptr ¶

Ptr returns reference to ContentEntryType value

func (*ContentEntryType) UnmarshalJSON ¶

func (v *ContentEntryType) UnmarshalJSON(src []byte) error

type ContentItemType ¶

type ContentItemType string

ContentItemType the model 'ContentItemType'

func NewContentItemTypeFromValue ¶

func NewContentItemTypeFromValue(v string) (*ContentItemType, error)

NewContentItemTypeFromValue returns a pointer to a valid ContentItemType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ContentItemType) IsValid ¶

func (v ContentItemType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ContentItemType) Ptr ¶

Ptr returns reference to ContentItemType value

func (*ContentItemType) UnmarshalJSON ¶

func (v *ContentItemType) UnmarshalJSON(src []byte) error

type ContentUnion ¶

type ContentUnion struct {
	TimelineTimelineCursor *TimelineTimelineCursor
	TimelineTimelineItem   *TimelineTimelineItem
	TimelineTimelineModule *TimelineTimelineModule
}

ContentUnion - struct for ContentUnion

func TimelineTimelineCursorAsContentUnion ¶

func TimelineTimelineCursorAsContentUnion(v *TimelineTimelineCursor) ContentUnion

TimelineTimelineCursorAsContentUnion is a convenience function that returns TimelineTimelineCursor wrapped in ContentUnion

func TimelineTimelineItemAsContentUnion ¶

func TimelineTimelineItemAsContentUnion(v *TimelineTimelineItem) ContentUnion

TimelineTimelineItemAsContentUnion is a convenience function that returns TimelineTimelineItem wrapped in ContentUnion

func TimelineTimelineModuleAsContentUnion ¶

func TimelineTimelineModuleAsContentUnion(v *TimelineTimelineModule) ContentUnion

TimelineTimelineModuleAsContentUnion is a convenience function that returns TimelineTimelineModule wrapped in ContentUnion

func (*ContentUnion) GetActualInstance ¶

func (obj *ContentUnion) GetActualInstance() interface{}

Get the actual instance

func (ContentUnion) MarshalJSON ¶

func (src ContentUnion) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ContentUnion) UnmarshalJSON ¶

func (dst *ContentUnion) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type ConversationControl ¶

type ConversationControl struct {
	Mode string `json:"mode"`
}

ConversationControl struct for ConversationControl

func NewConversationControl ¶

func NewConversationControl(mode string) *ConversationControl

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

func NewConversationControlWithDefaults ¶

func NewConversationControlWithDefaults() *ConversationControl

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

func (*ConversationControl) GetMode ¶

func (o *ConversationControl) GetMode() string

GetMode returns the Mode field value

func (*ConversationControl) GetModeOk ¶

func (o *ConversationControl) GetModeOk() (*string, bool)

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

func (ConversationControl) MarshalJSON ¶

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

func (*ConversationControl) SetMode ¶

func (o *ConversationControl) SetMode(v string)

SetMode sets field value

func (ConversationControl) ToMap ¶

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

func (*ConversationControl) UnmarshalJSON ¶

func (o *ConversationControl) UnmarshalJSON(data []byte) (err error)

type CoverCta ¶

type CoverCta struct {
	Text            *string               `json:"Text,omitempty"`
	ButtonStyle     *string               `json:"buttonStyle,omitempty"`
	Callbacks       []Callback            `json:"callbacks"`
	ClientEventInfo CtaClientEventInfo    `json:"clientEventInfo"`
	CtaBehavior     TimelineCoverBehavior `json:"ctaBehavior"`
}

CoverCta struct for CoverCta

func NewCoverCta ¶

func NewCoverCta(callbacks []Callback, clientEventInfo CtaClientEventInfo, ctaBehavior TimelineCoverBehavior) *CoverCta

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

func NewCoverCtaWithDefaults ¶

func NewCoverCtaWithDefaults() *CoverCta

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

func (*CoverCta) GetButtonStyle ¶

func (o *CoverCta) GetButtonStyle() string

GetButtonStyle returns the ButtonStyle field value if set, zero value otherwise.

func (*CoverCta) GetButtonStyleOk ¶

func (o *CoverCta) GetButtonStyleOk() (*string, bool)

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

func (*CoverCta) GetCallbacks ¶

func (o *CoverCta) GetCallbacks() []Callback

GetCallbacks returns the Callbacks field value

func (*CoverCta) GetCallbacksOk ¶

func (o *CoverCta) GetCallbacksOk() ([]Callback, bool)

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

func (*CoverCta) GetClientEventInfo ¶

func (o *CoverCta) GetClientEventInfo() CtaClientEventInfo

GetClientEventInfo returns the ClientEventInfo field value

func (*CoverCta) GetClientEventInfoOk ¶

func (o *CoverCta) GetClientEventInfoOk() (*CtaClientEventInfo, bool)

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

func (*CoverCta) GetCtaBehavior ¶

func (o *CoverCta) GetCtaBehavior() TimelineCoverBehavior

GetCtaBehavior returns the CtaBehavior field value

func (*CoverCta) GetCtaBehaviorOk ¶

func (o *CoverCta) GetCtaBehaviorOk() (*TimelineCoverBehavior, bool)

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

func (*CoverCta) GetText ¶

func (o *CoverCta) GetText() string

GetText returns the Text field value if set, zero value otherwise.

func (*CoverCta) GetTextOk ¶

func (o *CoverCta) GetTextOk() (*string, bool)

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

func (*CoverCta) HasButtonStyle ¶

func (o *CoverCta) HasButtonStyle() bool

HasButtonStyle returns a boolean if a field has been set.

func (*CoverCta) HasText ¶

func (o *CoverCta) HasText() bool

HasText returns a boolean if a field has been set.

func (CoverCta) MarshalJSON ¶

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

func (*CoverCta) SetButtonStyle ¶

func (o *CoverCta) SetButtonStyle(v string)

SetButtonStyle gets a reference to the given string and assigns it to the ButtonStyle field.

func (*CoverCta) SetCallbacks ¶

func (o *CoverCta) SetCallbacks(v []Callback)

SetCallbacks sets field value

func (*CoverCta) SetClientEventInfo ¶

func (o *CoverCta) SetClientEventInfo(v CtaClientEventInfo)

SetClientEventInfo sets field value

func (*CoverCta) SetCtaBehavior ¶

func (o *CoverCta) SetCtaBehavior(v TimelineCoverBehavior)

SetCtaBehavior sets field value

func (*CoverCta) SetText ¶

func (o *CoverCta) SetText(v string)

SetText gets a reference to the given string and assigns it to the Text field.

func (CoverCta) ToMap ¶

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

func (*CoverCta) UnmarshalJSON ¶

func (o *CoverCta) UnmarshalJSON(data []byte) (err error)

type CreateBookmarkResponse ¶

type CreateBookmarkResponse struct {
	Data CreateBookmarkResponseData `json:"data"`
}

CreateBookmarkResponse struct for CreateBookmarkResponse

func NewCreateBookmarkResponse ¶

func NewCreateBookmarkResponse(data CreateBookmarkResponseData) *CreateBookmarkResponse

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

func NewCreateBookmarkResponseWithDefaults ¶

func NewCreateBookmarkResponseWithDefaults() *CreateBookmarkResponse

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

func (*CreateBookmarkResponse) GetData ¶

GetData returns the Data field value

func (*CreateBookmarkResponse) GetDataOk ¶

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

func (CreateBookmarkResponse) MarshalJSON ¶

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

func (*CreateBookmarkResponse) SetData ¶

SetData sets field value

func (CreateBookmarkResponse) ToMap ¶

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

func (*CreateBookmarkResponse) UnmarshalJSON ¶

func (o *CreateBookmarkResponse) UnmarshalJSON(data []byte) (err error)

type CreateBookmarkResponseData ¶

type CreateBookmarkResponseData struct {
	TweetBookmarkPut string `json:"tweet_bookmark_put"`
}

CreateBookmarkResponseData struct for CreateBookmarkResponseData

func NewCreateBookmarkResponseData ¶

func NewCreateBookmarkResponseData(tweetBookmarkPut string) *CreateBookmarkResponseData

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

func NewCreateBookmarkResponseDataWithDefaults ¶

func NewCreateBookmarkResponseDataWithDefaults() *CreateBookmarkResponseData

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

func (*CreateBookmarkResponseData) GetTweetBookmarkPut ¶

func (o *CreateBookmarkResponseData) GetTweetBookmarkPut() string

GetTweetBookmarkPut returns the TweetBookmarkPut field value

func (*CreateBookmarkResponseData) GetTweetBookmarkPutOk ¶

func (o *CreateBookmarkResponseData) GetTweetBookmarkPutOk() (*string, bool)

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

func (CreateBookmarkResponseData) MarshalJSON ¶

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

func (*CreateBookmarkResponseData) SetTweetBookmarkPut ¶

func (o *CreateBookmarkResponseData) SetTweetBookmarkPut(v string)

SetTweetBookmarkPut sets field value

func (CreateBookmarkResponseData) ToMap ¶

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

func (*CreateBookmarkResponseData) UnmarshalJSON ¶

func (o *CreateBookmarkResponseData) UnmarshalJSON(data []byte) (err error)

type CreateRetweet ¶

type CreateRetweet struct {
	Result Retweet `json:"result"`
}

CreateRetweet struct for CreateRetweet

func NewCreateRetweet ¶

func NewCreateRetweet(result Retweet) *CreateRetweet

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

func NewCreateRetweetWithDefaults ¶

func NewCreateRetweetWithDefaults() *CreateRetweet

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

func (*CreateRetweet) GetResult ¶

func (o *CreateRetweet) GetResult() Retweet

GetResult returns the Result field value

func (*CreateRetweet) GetResultOk ¶

func (o *CreateRetweet) GetResultOk() (*Retweet, bool)

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

func (CreateRetweet) MarshalJSON ¶

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

func (*CreateRetweet) SetResult ¶

func (o *CreateRetweet) SetResult(v Retweet)

SetResult sets field value

func (CreateRetweet) ToMap ¶

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

func (*CreateRetweet) UnmarshalJSON ¶

func (o *CreateRetweet) UnmarshalJSON(data []byte) (err error)

type CreateRetweetResponse ¶

type CreateRetweetResponse struct {
	Data CreateRetweetResponseData `json:"data"`
}

CreateRetweetResponse struct for CreateRetweetResponse

func NewCreateRetweetResponse ¶

func NewCreateRetweetResponse(data CreateRetweetResponseData) *CreateRetweetResponse

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

func NewCreateRetweetResponseWithDefaults ¶

func NewCreateRetweetResponseWithDefaults() *CreateRetweetResponse

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

func (*CreateRetweetResponse) GetData ¶

GetData returns the Data field value

func (*CreateRetweetResponse) GetDataOk ¶

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

func (CreateRetweetResponse) MarshalJSON ¶

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

func (*CreateRetweetResponse) SetData ¶

SetData sets field value

func (CreateRetweetResponse) ToMap ¶

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

func (*CreateRetweetResponse) UnmarshalJSON ¶

func (o *CreateRetweetResponse) UnmarshalJSON(data []byte) (err error)

type CreateRetweetResponseData ¶

type CreateRetweetResponseData struct {
	CreateRetweet CreateRetweetResponseResult `json:"create_retweet"`
}

CreateRetweetResponseData struct for CreateRetweetResponseData

func NewCreateRetweetResponseData ¶

func NewCreateRetweetResponseData(createRetweet CreateRetweetResponseResult) *CreateRetweetResponseData

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

func NewCreateRetweetResponseDataWithDefaults ¶

func NewCreateRetweetResponseDataWithDefaults() *CreateRetweetResponseData

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

func (*CreateRetweetResponseData) GetCreateRetweet ¶

GetCreateRetweet returns the CreateRetweet field value

func (*CreateRetweetResponseData) GetCreateRetweetOk ¶

func (o *CreateRetweetResponseData) GetCreateRetweetOk() (*CreateRetweetResponseResult, bool)

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

func (CreateRetweetResponseData) MarshalJSON ¶

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

func (*CreateRetweetResponseData) SetCreateRetweet ¶

SetCreateRetweet sets field value

func (CreateRetweetResponseData) ToMap ¶

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

func (*CreateRetweetResponseData) UnmarshalJSON ¶

func (o *CreateRetweetResponseData) UnmarshalJSON(data []byte) (err error)

type CreateRetweetResponseResult ¶

type CreateRetweetResponseResult struct {
	RetweetResults CreateRetweet `json:"retweet_results"`
}

CreateRetweetResponseResult struct for CreateRetweetResponseResult

func NewCreateRetweetResponseResult ¶

func NewCreateRetweetResponseResult(retweetResults CreateRetweet) *CreateRetweetResponseResult

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

func NewCreateRetweetResponseResultWithDefaults ¶

func NewCreateRetweetResponseResultWithDefaults() *CreateRetweetResponseResult

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

func (*CreateRetweetResponseResult) GetRetweetResults ¶

func (o *CreateRetweetResponseResult) GetRetweetResults() CreateRetweet

GetRetweetResults returns the RetweetResults field value

func (*CreateRetweetResponseResult) GetRetweetResultsOk ¶

func (o *CreateRetweetResponseResult) GetRetweetResultsOk() (*CreateRetweet, bool)

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

func (CreateRetweetResponseResult) MarshalJSON ¶

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

func (*CreateRetweetResponseResult) SetRetweetResults ¶

func (o *CreateRetweetResponseResult) SetRetweetResults(v CreateRetweet)

SetRetweetResults sets field value

func (CreateRetweetResponseResult) ToMap ¶

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

func (*CreateRetweetResponseResult) UnmarshalJSON ¶

func (o *CreateRetweetResponseResult) UnmarshalJSON(data []byte) (err error)

type CreateTweet ¶

type CreateTweet struct {
	Result Tweet `json:"result"`
}

CreateTweet struct for CreateTweet

func NewCreateTweet ¶

func NewCreateTweet(result Tweet) *CreateTweet

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

func NewCreateTweetWithDefaults ¶

func NewCreateTweetWithDefaults() *CreateTweet

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

func (*CreateTweet) GetResult ¶

func (o *CreateTweet) GetResult() Tweet

GetResult returns the Result field value

func (*CreateTweet) GetResultOk ¶

func (o *CreateTweet) GetResultOk() (*Tweet, bool)

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

func (CreateTweet) MarshalJSON ¶

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

func (*CreateTweet) SetResult ¶

func (o *CreateTweet) SetResult(v Tweet)

SetResult sets field value

func (CreateTweet) ToMap ¶

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

func (*CreateTweet) UnmarshalJSON ¶

func (o *CreateTweet) UnmarshalJSON(data []byte) (err error)

type CreateTweetResponse ¶

type CreateTweetResponse struct {
	Data CreateTweetResponseData `json:"data"`
}

CreateTweetResponse struct for CreateTweetResponse

func NewCreateTweetResponse ¶

func NewCreateTweetResponse(data CreateTweetResponseData) *CreateTweetResponse

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

func NewCreateTweetResponseWithDefaults ¶

func NewCreateTweetResponseWithDefaults() *CreateTweetResponse

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

func (*CreateTweetResponse) GetData ¶

GetData returns the Data field value

func (*CreateTweetResponse) GetDataOk ¶

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

func (CreateTweetResponse) MarshalJSON ¶

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

func (*CreateTweetResponse) SetData ¶

SetData sets field value

func (CreateTweetResponse) ToMap ¶

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

func (*CreateTweetResponse) UnmarshalJSON ¶

func (o *CreateTweetResponse) UnmarshalJSON(data []byte) (err error)

type CreateTweetResponseData ¶

type CreateTweetResponseData struct {
	CreateTweet CreateTweetResponseResult `json:"create_tweet"`
}

CreateTweetResponseData struct for CreateTweetResponseData

func NewCreateTweetResponseData ¶

func NewCreateTweetResponseData(createTweet CreateTweetResponseResult) *CreateTweetResponseData

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

func NewCreateTweetResponseDataWithDefaults ¶

func NewCreateTweetResponseDataWithDefaults() *CreateTweetResponseData

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

func (*CreateTweetResponseData) GetCreateTweet ¶

GetCreateTweet returns the CreateTweet field value

func (*CreateTweetResponseData) GetCreateTweetOk ¶

func (o *CreateTweetResponseData) GetCreateTweetOk() (*CreateTweetResponseResult, bool)

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

func (CreateTweetResponseData) MarshalJSON ¶

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

func (*CreateTweetResponseData) SetCreateTweet ¶

SetCreateTweet sets field value

func (CreateTweetResponseData) ToMap ¶

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

func (*CreateTweetResponseData) UnmarshalJSON ¶

func (o *CreateTweetResponseData) UnmarshalJSON(data []byte) (err error)

type CreateTweetResponseResult ¶

type CreateTweetResponseResult struct {
	TweetResults CreateTweet `json:"tweet_results"`
}

CreateTweetResponseResult struct for CreateTweetResponseResult

func NewCreateTweetResponseResult ¶

func NewCreateTweetResponseResult(tweetResults CreateTweet) *CreateTweetResponseResult

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

func NewCreateTweetResponseResultWithDefaults ¶

func NewCreateTweetResponseResultWithDefaults() *CreateTweetResponseResult

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

func (*CreateTweetResponseResult) GetTweetResults ¶

func (o *CreateTweetResponseResult) GetTweetResults() CreateTweet

GetTweetResults returns the TweetResults field value

func (*CreateTweetResponseResult) GetTweetResultsOk ¶

func (o *CreateTweetResponseResult) GetTweetResultsOk() (*CreateTweet, bool)

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

func (CreateTweetResponseResult) MarshalJSON ¶

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

func (*CreateTweetResponseResult) SetTweetResults ¶

func (o *CreateTweetResponseResult) SetTweetResults(v CreateTweet)

SetTweetResults sets field value

func (CreateTweetResponseResult) ToMap ¶

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

func (*CreateTweetResponseResult) UnmarshalJSON ¶

func (o *CreateTweetResponseResult) UnmarshalJSON(data []byte) (err error)

type CtaClientEventInfo ¶

type CtaClientEventInfo struct {
	Action string `json:"action"`
}

CtaClientEventInfo struct for CtaClientEventInfo

func NewCtaClientEventInfo ¶

func NewCtaClientEventInfo(action string) *CtaClientEventInfo

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

func NewCtaClientEventInfoWithDefaults ¶

func NewCtaClientEventInfoWithDefaults() *CtaClientEventInfo

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

func (*CtaClientEventInfo) GetAction ¶

func (o *CtaClientEventInfo) GetAction() string

GetAction returns the Action field value

func (*CtaClientEventInfo) GetActionOk ¶

func (o *CtaClientEventInfo) GetActionOk() (*string, bool)

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

func (CtaClientEventInfo) MarshalJSON ¶

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

func (*CtaClientEventInfo) SetAction ¶

func (o *CtaClientEventInfo) SetAction(v string)

SetAction sets field value

func (CtaClientEventInfo) ToMap ¶

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

func (*CtaClientEventInfo) UnmarshalJSON ¶

func (o *CtaClientEventInfo) UnmarshalJSON(data []byte) (err error)

type CursorType ¶

type CursorType string

CursorType the model 'CursorType'

const (
	TOP                      CursorType = "Top"
	BOTTOM                   CursorType = "Bottom"
	SHOW_MORE                CursorType = "ShowMore"
	SHOW_MORE_THREADS        CursorType = "ShowMoreThreads"
	GAP                      CursorType = "Gap"
	SHOW_MORE_THREADS_PROMPT CursorType = "ShowMoreThreadsPrompt"
)

List of CursorType

func NewCursorTypeFromValue ¶

func NewCursorTypeFromValue(v string) (*CursorType, error)

NewCursorTypeFromValue returns a pointer to a valid CursorType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (CursorType) IsValid ¶

func (v CursorType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (CursorType) Ptr ¶

func (v CursorType) Ptr() *CursorType

Ptr returns reference to CursorType value

func (*CursorType) UnmarshalJSON ¶

func (v *CursorType) UnmarshalJSON(src []byte) error

type DefaultAPIService ¶

type DefaultAPIService service

DefaultAPIService DefaultAPI service

func (*DefaultAPIService) GetProfileSpotlightsQuery ¶

func (a *DefaultAPIService) GetProfileSpotlightsQuery(ctx context.Context, pathQueryId string) ApiGetProfileSpotlightsQueryRequest

GetProfileSpotlightsQuery Method for GetProfileSpotlightsQuery

get user by screen name

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

func (*DefaultAPIService) GetProfileSpotlightsQueryExecute ¶

Execute executes the request

@return GetProfileSpotlightsQuery200Response

func (*DefaultAPIService) GetTweetResultByRestId ¶

func (a *DefaultAPIService) GetTweetResultByRestId(ctx context.Context, pathQueryId string) ApiGetTweetResultByRestIdRequest

GetTweetResultByRestId Method for GetTweetResultByRestId

get TweetResultByRestId

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

func (*DefaultAPIService) GetTweetResultByRestIdExecute ¶

Execute executes the request

@return GetTweetResultByRestId200Response

type DeleteBookmarkResponse ¶

type DeleteBookmarkResponse struct {
	Data DeleteBookmarkResponseData `json:"data"`
}

DeleteBookmarkResponse struct for DeleteBookmarkResponse

func NewDeleteBookmarkResponse ¶

func NewDeleteBookmarkResponse(data DeleteBookmarkResponseData) *DeleteBookmarkResponse

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

func NewDeleteBookmarkResponseWithDefaults ¶

func NewDeleteBookmarkResponseWithDefaults() *DeleteBookmarkResponse

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

func (*DeleteBookmarkResponse) GetData ¶

GetData returns the Data field value

func (*DeleteBookmarkResponse) GetDataOk ¶

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

func (DeleteBookmarkResponse) MarshalJSON ¶

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

func (*DeleteBookmarkResponse) SetData ¶

SetData sets field value

func (DeleteBookmarkResponse) ToMap ¶

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

func (*DeleteBookmarkResponse) UnmarshalJSON ¶

func (o *DeleteBookmarkResponse) UnmarshalJSON(data []byte) (err error)

type DeleteBookmarkResponseData ¶

type DeleteBookmarkResponseData struct {
	TweetBookmarkDelete string `json:"tweet_bookmark_delete"`
}

DeleteBookmarkResponseData struct for DeleteBookmarkResponseData

func NewDeleteBookmarkResponseData ¶

func NewDeleteBookmarkResponseData(tweetBookmarkDelete string) *DeleteBookmarkResponseData

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

func NewDeleteBookmarkResponseDataWithDefaults ¶

func NewDeleteBookmarkResponseDataWithDefaults() *DeleteBookmarkResponseData

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

func (*DeleteBookmarkResponseData) GetTweetBookmarkDelete ¶

func (o *DeleteBookmarkResponseData) GetTweetBookmarkDelete() string

GetTweetBookmarkDelete returns the TweetBookmarkDelete field value

func (*DeleteBookmarkResponseData) GetTweetBookmarkDeleteOk ¶

func (o *DeleteBookmarkResponseData) GetTweetBookmarkDeleteOk() (*string, bool)

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

func (DeleteBookmarkResponseData) MarshalJSON ¶

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

func (*DeleteBookmarkResponseData) SetTweetBookmarkDelete ¶

func (o *DeleteBookmarkResponseData) SetTweetBookmarkDelete(v string)

SetTweetBookmarkDelete sets field value

func (DeleteBookmarkResponseData) ToMap ¶

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

func (*DeleteBookmarkResponseData) UnmarshalJSON ¶

func (o *DeleteBookmarkResponseData) UnmarshalJSON(data []byte) (err error)

type DeleteRetweet ¶

type DeleteRetweet struct {
	Result []Retweet `json:"result"`
}

DeleteRetweet struct for DeleteRetweet

func NewDeleteRetweet ¶

func NewDeleteRetweet(result []Retweet) *DeleteRetweet

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

func NewDeleteRetweetWithDefaults ¶

func NewDeleteRetweetWithDefaults() *DeleteRetweet

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

func (*DeleteRetweet) GetResult ¶

func (o *DeleteRetweet) GetResult() []Retweet

GetResult returns the Result field value

func (*DeleteRetweet) GetResultOk ¶

func (o *DeleteRetweet) GetResultOk() ([]Retweet, bool)

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

func (DeleteRetweet) MarshalJSON ¶

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

func (*DeleteRetweet) SetResult ¶

func (o *DeleteRetweet) SetResult(v []Retweet)

SetResult sets field value

func (DeleteRetweet) ToMap ¶

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

func (*DeleteRetweet) UnmarshalJSON ¶

func (o *DeleteRetweet) UnmarshalJSON(data []byte) (err error)

type DeleteRetweetResponse ¶

type DeleteRetweetResponse struct {
	Data DeleteRetweetResponseData `json:"data"`
}

DeleteRetweetResponse struct for DeleteRetweetResponse

func NewDeleteRetweetResponse ¶

func NewDeleteRetweetResponse(data DeleteRetweetResponseData) *DeleteRetweetResponse

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

func NewDeleteRetweetResponseWithDefaults ¶

func NewDeleteRetweetResponseWithDefaults() *DeleteRetweetResponse

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

func (*DeleteRetweetResponse) GetData ¶

GetData returns the Data field value

func (*DeleteRetweetResponse) GetDataOk ¶

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

func (DeleteRetweetResponse) MarshalJSON ¶

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

func (*DeleteRetweetResponse) SetData ¶

SetData sets field value

func (DeleteRetweetResponse) ToMap ¶

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

func (*DeleteRetweetResponse) UnmarshalJSON ¶

func (o *DeleteRetweetResponse) UnmarshalJSON(data []byte) (err error)

type DeleteRetweetResponseData ¶

type DeleteRetweetResponseData struct {
	CreateRetweet *CreateRetweetResponseResult `json:"create_retweet,omitempty"`
}

DeleteRetweetResponseData struct for DeleteRetweetResponseData

func NewDeleteRetweetResponseData ¶

func NewDeleteRetweetResponseData() *DeleteRetweetResponseData

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

func NewDeleteRetweetResponseDataWithDefaults ¶

func NewDeleteRetweetResponseDataWithDefaults() *DeleteRetweetResponseData

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

func (*DeleteRetweetResponseData) GetCreateRetweet ¶

GetCreateRetweet returns the CreateRetweet field value if set, zero value otherwise.

func (*DeleteRetweetResponseData) GetCreateRetweetOk ¶

func (o *DeleteRetweetResponseData) GetCreateRetweetOk() (*CreateRetweetResponseResult, bool)

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

func (*DeleteRetweetResponseData) HasCreateRetweet ¶

func (o *DeleteRetweetResponseData) HasCreateRetweet() bool

HasCreateRetweet returns a boolean if a field has been set.

func (DeleteRetweetResponseData) MarshalJSON ¶

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

func (*DeleteRetweetResponseData) SetCreateRetweet ¶

SetCreateRetweet gets a reference to the given CreateRetweetResponseResult and assigns it to the CreateRetweet field.

func (DeleteRetweetResponseData) ToMap ¶

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

type DeleteRetweetResponseResult ¶

type DeleteRetweetResponseResult struct {
	RetweetResults *DeleteRetweet `json:"retweet_results,omitempty"`
}

DeleteRetweetResponseResult struct for DeleteRetweetResponseResult

func NewDeleteRetweetResponseResult ¶

func NewDeleteRetweetResponseResult() *DeleteRetweetResponseResult

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

func NewDeleteRetweetResponseResultWithDefaults ¶

func NewDeleteRetweetResponseResultWithDefaults() *DeleteRetweetResponseResult

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

func (*DeleteRetweetResponseResult) GetRetweetResults ¶

func (o *DeleteRetweetResponseResult) GetRetweetResults() DeleteRetweet

GetRetweetResults returns the RetweetResults field value if set, zero value otherwise.

func (*DeleteRetweetResponseResult) GetRetweetResultsOk ¶

func (o *DeleteRetweetResponseResult) GetRetweetResultsOk() (*DeleteRetweet, bool)

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

func (*DeleteRetweetResponseResult) HasRetweetResults ¶

func (o *DeleteRetweetResponseResult) HasRetweetResults() bool

HasRetweetResults returns a boolean if a field has been set.

func (DeleteRetweetResponseResult) MarshalJSON ¶

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

func (*DeleteRetweetResponseResult) SetRetweetResults ¶

func (o *DeleteRetweetResponseResult) SetRetweetResults(v DeleteRetweet)

SetRetweetResults gets a reference to the given DeleteRetweet and assigns it to the RetweetResults field.

func (DeleteRetweetResponseResult) ToMap ¶

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

type DeleteTweetResponse ¶

type DeleteTweetResponse struct {
	Data DeleteTweetResponseData `json:"data"`
}

DeleteTweetResponse struct for DeleteTweetResponse

func NewDeleteTweetResponse ¶

func NewDeleteTweetResponse(data DeleteTweetResponseData) *DeleteTweetResponse

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

func NewDeleteTweetResponseWithDefaults ¶

func NewDeleteTweetResponseWithDefaults() *DeleteTweetResponse

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

func (*DeleteTweetResponse) GetData ¶

GetData returns the Data field value

func (*DeleteTweetResponse) GetDataOk ¶

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

func (DeleteTweetResponse) MarshalJSON ¶

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

func (*DeleteTweetResponse) SetData ¶

SetData sets field value

func (DeleteTweetResponse) ToMap ¶

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

func (*DeleteTweetResponse) UnmarshalJSON ¶

func (o *DeleteTweetResponse) UnmarshalJSON(data []byte) (err error)

type DeleteTweetResponseData ¶

type DeleteTweetResponseData struct {
	DeleteRetweet *DeleteTweetResponseResult `json:"delete_retweet,omitempty"`
}

DeleteTweetResponseData struct for DeleteTweetResponseData

func NewDeleteTweetResponseData ¶

func NewDeleteTweetResponseData() *DeleteTweetResponseData

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

func NewDeleteTweetResponseDataWithDefaults ¶

func NewDeleteTweetResponseDataWithDefaults() *DeleteTweetResponseData

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

func (*DeleteTweetResponseData) GetDeleteRetweet ¶

func (o *DeleteTweetResponseData) GetDeleteRetweet() DeleteTweetResponseResult

GetDeleteRetweet returns the DeleteRetweet field value if set, zero value otherwise.

func (*DeleteTweetResponseData) GetDeleteRetweetOk ¶

func (o *DeleteTweetResponseData) GetDeleteRetweetOk() (*DeleteTweetResponseResult, bool)

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

func (*DeleteTweetResponseData) HasDeleteRetweet ¶

func (o *DeleteTweetResponseData) HasDeleteRetweet() bool

HasDeleteRetweet returns a boolean if a field has been set.

func (DeleteTweetResponseData) MarshalJSON ¶

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

func (*DeleteTweetResponseData) SetDeleteRetweet ¶

func (o *DeleteTweetResponseData) SetDeleteRetweet(v DeleteTweetResponseResult)

SetDeleteRetweet gets a reference to the given DeleteTweetResponseResult and assigns it to the DeleteRetweet field.

func (DeleteTweetResponseData) ToMap ¶

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

type DeleteTweetResponseResult ¶

type DeleteTweetResponseResult struct {
	TweetResults map[string]interface{} `json:"tweet_results"`
}

DeleteTweetResponseResult struct for DeleteTweetResponseResult

func NewDeleteTweetResponseResult ¶

func NewDeleteTweetResponseResult(tweetResults map[string]interface{}) *DeleteTweetResponseResult

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

func NewDeleteTweetResponseResultWithDefaults ¶

func NewDeleteTweetResponseResultWithDefaults() *DeleteTweetResponseResult

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

func (*DeleteTweetResponseResult) GetTweetResults ¶

func (o *DeleteTweetResponseResult) GetTweetResults() map[string]interface{}

GetTweetResults returns the TweetResults field value

func (*DeleteTweetResponseResult) GetTweetResultsOk ¶

func (o *DeleteTweetResponseResult) GetTweetResultsOk() (map[string]interface{}, bool)

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

func (DeleteTweetResponseResult) MarshalJSON ¶

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

func (*DeleteTweetResponseResult) SetTweetResults ¶

func (o *DeleteTweetResponseResult) SetTweetResults(v map[string]interface{})

SetTweetResults sets field value

func (DeleteTweetResponseResult) ToMap ¶

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

func (*DeleteTweetResponseResult) UnmarshalJSON ¶

func (o *DeleteTweetResponseResult) UnmarshalJSON(data []byte) (err error)

type DisplayTreatment ¶

type DisplayTreatment struct {
	ActionText string  `json:"actionText"`
	LabelText  *string `json:"labelText,omitempty"`
}

DisplayTreatment struct for DisplayTreatment

func NewDisplayTreatment ¶

func NewDisplayTreatment(actionText string) *DisplayTreatment

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

func NewDisplayTreatmentWithDefaults ¶

func NewDisplayTreatmentWithDefaults() *DisplayTreatment

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

func (*DisplayTreatment) GetActionText ¶

func (o *DisplayTreatment) GetActionText() string

GetActionText returns the ActionText field value

func (*DisplayTreatment) GetActionTextOk ¶

func (o *DisplayTreatment) GetActionTextOk() (*string, bool)

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

func (*DisplayTreatment) GetLabelText ¶

func (o *DisplayTreatment) GetLabelText() string

GetLabelText returns the LabelText field value if set, zero value otherwise.

func (*DisplayTreatment) GetLabelTextOk ¶

func (o *DisplayTreatment) GetLabelTextOk() (*string, bool)

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

func (*DisplayTreatment) HasLabelText ¶

func (o *DisplayTreatment) HasLabelText() bool

HasLabelText returns a boolean if a field has been set.

func (DisplayTreatment) MarshalJSON ¶

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

func (*DisplayTreatment) SetActionText ¶

func (o *DisplayTreatment) SetActionText(v string)

SetActionText sets field value

func (*DisplayTreatment) SetLabelText ¶

func (o *DisplayTreatment) SetLabelText(v string)

SetLabelText gets a reference to the given string and assigns it to the LabelText field.

func (DisplayTreatment) ToMap ¶

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

func (*DisplayTreatment) UnmarshalJSON ¶

func (o *DisplayTreatment) UnmarshalJSON(data []byte) (err error)

type DisplayType ¶

type DisplayType string

DisplayType the model 'DisplayType'

const (
	VERTICAL              DisplayType = "Vertical"
	VERTICAL_CONVERSATION DisplayType = "VerticalConversation"
	VERTICAL_GRID         DisplayType = "VerticalGrid"
	CAROUSEL              DisplayType = "Carousel"
)

List of DisplayType

func NewDisplayTypeFromValue ¶

func NewDisplayTypeFromValue(v string) (*DisplayType, error)

NewDisplayTypeFromValue returns a pointer to a valid DisplayType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (DisplayType) IsValid ¶

func (v DisplayType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (DisplayType) Ptr ¶

func (v DisplayType) Ptr() *DisplayType

Ptr returns reference to DisplayType value

func (*DisplayType) UnmarshalJSON ¶

func (v *DisplayType) UnmarshalJSON(src []byte) error

type Entities ¶

type Entities struct {
	Hashtags     []map[string]interface{} `json:"hashtags"`
	Media        []Media                  `json:"media,omitempty"`
	Symbols      []map[string]interface{} `json:"symbols"`
	Timestamps   []Timestamp              `json:"timestamps,omitempty"`
	Urls         []Url                    `json:"urls"`
	UserMentions []map[string]interface{} `json:"user_mentions"`
}

Entities struct for Entities

func NewEntities ¶

func NewEntities(hashtags []map[string]interface{}, symbols []map[string]interface{}, urls []Url, userMentions []map[string]interface{}) *Entities

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

func NewEntitiesWithDefaults ¶

func NewEntitiesWithDefaults() *Entities

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

func (*Entities) GetHashtags ¶

func (o *Entities) GetHashtags() []map[string]interface{}

GetHashtags returns the Hashtags field value

func (*Entities) GetHashtagsOk ¶

func (o *Entities) GetHashtagsOk() ([]map[string]interface{}, bool)

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

func (*Entities) GetMedia ¶

func (o *Entities) GetMedia() []Media

GetMedia returns the Media field value if set, zero value otherwise.

func (*Entities) GetMediaOk ¶

func (o *Entities) GetMediaOk() ([]Media, bool)

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

func (*Entities) GetSymbols ¶

func (o *Entities) GetSymbols() []map[string]interface{}

GetSymbols returns the Symbols field value

func (*Entities) GetSymbolsOk ¶

func (o *Entities) GetSymbolsOk() ([]map[string]interface{}, bool)

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

func (*Entities) GetTimestamps ¶

func (o *Entities) GetTimestamps() []Timestamp

GetTimestamps returns the Timestamps field value if set, zero value otherwise.

func (*Entities) GetTimestampsOk ¶

func (o *Entities) GetTimestampsOk() ([]Timestamp, bool)

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

func (*Entities) GetUrls ¶

func (o *Entities) GetUrls() []Url

GetUrls returns the Urls field value

func (*Entities) GetUrlsOk ¶

func (o *Entities) GetUrlsOk() ([]Url, bool)

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

func (*Entities) GetUserMentions ¶

func (o *Entities) GetUserMentions() []map[string]interface{}

GetUserMentions returns the UserMentions field value

func (*Entities) GetUserMentionsOk ¶

func (o *Entities) GetUserMentionsOk() ([]map[string]interface{}, bool)

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

func (*Entities) HasMedia ¶

func (o *Entities) HasMedia() bool

HasMedia returns a boolean if a field has been set.

func (*Entities) HasTimestamps ¶

func (o *Entities) HasTimestamps() bool

HasTimestamps returns a boolean if a field has been set.

func (Entities) MarshalJSON ¶

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

func (*Entities) SetHashtags ¶

func (o *Entities) SetHashtags(v []map[string]interface{})

SetHashtags sets field value

func (*Entities) SetMedia ¶

func (o *Entities) SetMedia(v []Media)

SetMedia gets a reference to the given []Media and assigns it to the Media field.

func (*Entities) SetSymbols ¶

func (o *Entities) SetSymbols(v []map[string]interface{})

SetSymbols sets field value

func (*Entities) SetTimestamps ¶

func (o *Entities) SetTimestamps(v []Timestamp)

SetTimestamps gets a reference to the given []Timestamp and assigns it to the Timestamps field.

func (*Entities) SetUrls ¶

func (o *Entities) SetUrls(v []Url)

SetUrls sets field value

func (*Entities) SetUserMentions ¶

func (o *Entities) SetUserMentions(v []map[string]interface{})

SetUserMentions sets field value

func (Entities) ToMap ¶

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

func (*Entities) UnmarshalJSON ¶

func (o *Entities) UnmarshalJSON(data []byte) (err error)

type Error ¶

type Error struct {
	Code       int32           `json:"code"`
	Extensions ErrorExtensions `json:"extensions"`
	Kind       string          `json:"kind"`
	Locations  []Location      `json:"locations"`
	Message    string          `json:"message"`
	Name       string          `json:"name"`
	Path       []string        `json:"path"`
	RetryAfter *int32          `json:"retry_after,omitempty"`
	Source     string          `json:"source"`
	Tracing    Tracing         `json:"tracing"`
}

Error struct for Error

func NewError ¶

func NewError(code int32, extensions ErrorExtensions, kind string, locations []Location, message string, name string, path []string, source string, tracing Tracing) *Error

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

func NewErrorWithDefaults ¶

func NewErrorWithDefaults() *Error

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

func (*Error) GetCode ¶

func (o *Error) GetCode() int32

GetCode returns the Code field value

func (*Error) GetCodeOk ¶

func (o *Error) GetCodeOk() (*int32, bool)

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

func (*Error) GetExtensions ¶

func (o *Error) GetExtensions() ErrorExtensions

GetExtensions returns the Extensions field value

func (*Error) GetExtensionsOk ¶

func (o *Error) GetExtensionsOk() (*ErrorExtensions, bool)

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

func (*Error) GetKind ¶

func (o *Error) GetKind() string

GetKind returns the Kind field value

func (*Error) GetKindOk ¶

func (o *Error) GetKindOk() (*string, bool)

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

func (*Error) GetLocations ¶

func (o *Error) GetLocations() []Location

GetLocations returns the Locations field value

func (*Error) GetLocationsOk ¶

func (o *Error) GetLocationsOk() ([]Location, bool)

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

func (*Error) GetMessage ¶

func (o *Error) GetMessage() string

GetMessage returns the Message field value

func (*Error) GetMessageOk ¶

func (o *Error) GetMessageOk() (*string, bool)

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

func (*Error) GetName ¶

func (o *Error) GetName() string

GetName returns the Name field value

func (*Error) GetNameOk ¶

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

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

func (*Error) GetPath ¶

func (o *Error) GetPath() []string

GetPath returns the Path field value

func (*Error) GetPathOk ¶

func (o *Error) GetPathOk() ([]string, bool)

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

func (*Error) GetRetryAfter ¶

func (o *Error) GetRetryAfter() int32

GetRetryAfter returns the RetryAfter field value if set, zero value otherwise.

func (*Error) GetRetryAfterOk ¶

func (o *Error) GetRetryAfterOk() (*int32, bool)

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

func (*Error) GetSource ¶

func (o *Error) GetSource() string

GetSource returns the Source field value

func (*Error) GetSourceOk ¶

func (o *Error) GetSourceOk() (*string, bool)

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

func (*Error) GetTracing ¶

func (o *Error) GetTracing() Tracing

GetTracing returns the Tracing field value

func (*Error) GetTracingOk ¶

func (o *Error) GetTracingOk() (*Tracing, bool)

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

func (*Error) HasRetryAfter ¶

func (o *Error) HasRetryAfter() bool

HasRetryAfter returns a boolean if a field has been set.

func (Error) MarshalJSON ¶

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

func (*Error) SetCode ¶

func (o *Error) SetCode(v int32)

SetCode sets field value

func (*Error) SetExtensions ¶

func (o *Error) SetExtensions(v ErrorExtensions)

SetExtensions sets field value

func (*Error) SetKind ¶

func (o *Error) SetKind(v string)

SetKind sets field value

func (*Error) SetLocations ¶

func (o *Error) SetLocations(v []Location)

SetLocations sets field value

func (*Error) SetMessage ¶

func (o *Error) SetMessage(v string)

SetMessage sets field value

func (*Error) SetName ¶

func (o *Error) SetName(v string)

SetName sets field value

func (*Error) SetPath ¶

func (o *Error) SetPath(v []string)

SetPath sets field value

func (*Error) SetRetryAfter ¶

func (o *Error) SetRetryAfter(v int32)

SetRetryAfter gets a reference to the given int32 and assigns it to the RetryAfter field.

func (*Error) SetSource ¶

func (o *Error) SetSource(v string)

SetSource sets field value

func (*Error) SetTracing ¶

func (o *Error) SetTracing(v Tracing)

SetTracing sets field value

func (Error) ToMap ¶

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

func (*Error) UnmarshalJSON ¶

func (o *Error) UnmarshalJSON(data []byte) (err error)

type ErrorExtensions ¶

type ErrorExtensions struct {
	Code       int32   `json:"code"`
	Kind       string  `json:"kind"`
	Name       string  `json:"name"`
	RetryAfter *int32  `json:"retry_after,omitempty"`
	Source     string  `json:"source"`
	Tracing    Tracing `json:"tracing"`
}

ErrorExtensions struct for ErrorExtensions

func NewErrorExtensions ¶

func NewErrorExtensions(code int32, kind string, name string, source string, tracing Tracing) *ErrorExtensions

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

func NewErrorExtensionsWithDefaults ¶

func NewErrorExtensionsWithDefaults() *ErrorExtensions

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

func (*ErrorExtensions) GetCode ¶

func (o *ErrorExtensions) GetCode() int32

GetCode returns the Code field value

func (*ErrorExtensions) GetCodeOk ¶

func (o *ErrorExtensions) GetCodeOk() (*int32, bool)

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

func (*ErrorExtensions) GetKind ¶

func (o *ErrorExtensions) GetKind() string

GetKind returns the Kind field value

func (*ErrorExtensions) GetKindOk ¶

func (o *ErrorExtensions) GetKindOk() (*string, bool)

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

func (*ErrorExtensions) GetName ¶

func (o *ErrorExtensions) GetName() string

GetName returns the Name field value

func (*ErrorExtensions) GetNameOk ¶

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

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

func (*ErrorExtensions) GetRetryAfter ¶

func (o *ErrorExtensions) GetRetryAfter() int32

GetRetryAfter returns the RetryAfter field value if set, zero value otherwise.

func (*ErrorExtensions) GetRetryAfterOk ¶

func (o *ErrorExtensions) GetRetryAfterOk() (*int32, bool)

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

func (*ErrorExtensions) GetSource ¶

func (o *ErrorExtensions) GetSource() string

GetSource returns the Source field value

func (*ErrorExtensions) GetSourceOk ¶

func (o *ErrorExtensions) GetSourceOk() (*string, bool)

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

func (*ErrorExtensions) GetTracing ¶

func (o *ErrorExtensions) GetTracing() Tracing

GetTracing returns the Tracing field value

func (*ErrorExtensions) GetTracingOk ¶

func (o *ErrorExtensions) GetTracingOk() (*Tracing, bool)

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

func (*ErrorExtensions) HasRetryAfter ¶

func (o *ErrorExtensions) HasRetryAfter() bool

HasRetryAfter returns a boolean if a field has been set.

func (ErrorExtensions) MarshalJSON ¶

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

func (*ErrorExtensions) SetCode ¶

func (o *ErrorExtensions) SetCode(v int32)

SetCode sets field value

func (*ErrorExtensions) SetKind ¶

func (o *ErrorExtensions) SetKind(v string)

SetKind sets field value

func (*ErrorExtensions) SetName ¶

func (o *ErrorExtensions) SetName(v string)

SetName sets field value

func (*ErrorExtensions) SetRetryAfter ¶

func (o *ErrorExtensions) SetRetryAfter(v int32)

SetRetryAfter gets a reference to the given int32 and assigns it to the RetryAfter field.

func (*ErrorExtensions) SetSource ¶

func (o *ErrorExtensions) SetSource(v string)

SetSource sets field value

func (*ErrorExtensions) SetTracing ¶

func (o *ErrorExtensions) SetTracing(v Tracing)

SetTracing sets field value

func (ErrorExtensions) ToMap ¶

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

func (*ErrorExtensions) UnmarshalJSON ¶

func (o *ErrorExtensions) UnmarshalJSON(data []byte) (err error)

type Errors ¶

type Errors struct {
	Data   *ErrorsData `json:"data,omitempty"`
	Errors []Error     `json:"errors"`
}

Errors struct for Errors

func NewErrors ¶

func NewErrors(errors []Error) *Errors

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

func NewErrorsWithDefaults ¶

func NewErrorsWithDefaults() *Errors

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

func (*Errors) GetData ¶

func (o *Errors) GetData() ErrorsData

GetData returns the Data field value if set, zero value otherwise.

func (*Errors) GetDataOk ¶

func (o *Errors) GetDataOk() (*ErrorsData, bool)

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

func (*Errors) GetErrors ¶

func (o *Errors) GetErrors() []Error

GetErrors returns the Errors field value

func (*Errors) GetErrorsOk ¶

func (o *Errors) GetErrorsOk() ([]Error, bool)

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

func (*Errors) HasData ¶

func (o *Errors) HasData() bool

HasData returns a boolean if a field has been set.

func (Errors) MarshalJSON ¶

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

func (*Errors) SetData ¶

func (o *Errors) SetData(v ErrorsData)

SetData gets a reference to the given ErrorsData and assigns it to the Data field.

func (*Errors) SetErrors ¶

func (o *Errors) SetErrors(v []Error)

SetErrors sets field value

func (Errors) ToMap ¶

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

func (*Errors) UnmarshalJSON ¶

func (o *Errors) UnmarshalJSON(data []byte) (err error)

type ErrorsData ¶

type ErrorsData struct {
	User *string `json:"user,omitempty" validate:"regexp=dummy"`
}

ErrorsData struct for ErrorsData

func NewErrorsData ¶

func NewErrorsData() *ErrorsData

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

func NewErrorsDataWithDefaults ¶

func NewErrorsDataWithDefaults() *ErrorsData

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

func (*ErrorsData) GetUser ¶

func (o *ErrorsData) GetUser() string

GetUser returns the User field value if set, zero value otherwise.

func (*ErrorsData) GetUserOk ¶

func (o *ErrorsData) GetUserOk() (*string, 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 (*ErrorsData) HasUser ¶

func (o *ErrorsData) HasUser() bool

HasUser returns a boolean if a field has been set.

func (ErrorsData) MarshalJSON ¶

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

func (*ErrorsData) SetUser ¶

func (o *ErrorsData) SetUser(v string)

SetUser gets a reference to the given string and assigns it to the User field.

func (ErrorsData) ToMap ¶

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

type ExtMediaAvailability ¶

type ExtMediaAvailability struct {
	Reason *string `json:"reason,omitempty"`
	Status *string `json:"status,omitempty"`
}

ExtMediaAvailability struct for ExtMediaAvailability

func NewExtMediaAvailability ¶

func NewExtMediaAvailability() *ExtMediaAvailability

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

func NewExtMediaAvailabilityWithDefaults ¶

func NewExtMediaAvailabilityWithDefaults() *ExtMediaAvailability

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

func (*ExtMediaAvailability) GetReason ¶

func (o *ExtMediaAvailability) GetReason() string

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

func (*ExtMediaAvailability) GetReasonOk ¶

func (o *ExtMediaAvailability) 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 (*ExtMediaAvailability) GetStatus ¶

func (o *ExtMediaAvailability) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*ExtMediaAvailability) GetStatusOk ¶

func (o *ExtMediaAvailability) 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 (*ExtMediaAvailability) HasReason ¶

func (o *ExtMediaAvailability) HasReason() bool

HasReason returns a boolean if a field has been set.

func (*ExtMediaAvailability) HasStatus ¶

func (o *ExtMediaAvailability) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ExtMediaAvailability) MarshalJSON ¶

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

func (*ExtMediaAvailability) SetReason ¶

func (o *ExtMediaAvailability) SetReason(v string)

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

func (*ExtMediaAvailability) SetStatus ¶

func (o *ExtMediaAvailability) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (ExtMediaAvailability) ToMap ¶

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

type ExtendedEntities ¶

type ExtendedEntities struct {
	Media []MediaExtended `json:"media"`
}

ExtendedEntities struct for ExtendedEntities

func NewExtendedEntities ¶

func NewExtendedEntities(media []MediaExtended) *ExtendedEntities

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

func NewExtendedEntitiesWithDefaults ¶

func NewExtendedEntitiesWithDefaults() *ExtendedEntities

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

func (*ExtendedEntities) GetMedia ¶

func (o *ExtendedEntities) GetMedia() []MediaExtended

GetMedia returns the Media field value

func (*ExtendedEntities) GetMediaOk ¶

func (o *ExtendedEntities) GetMediaOk() ([]MediaExtended, bool)

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

func (ExtendedEntities) MarshalJSON ¶

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

func (*ExtendedEntities) SetMedia ¶

func (o *ExtendedEntities) SetMedia(v []MediaExtended)

SetMedia sets field value

func (ExtendedEntities) ToMap ¶

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

func (*ExtendedEntities) UnmarshalJSON ¶

func (o *ExtendedEntities) UnmarshalJSON(data []byte) (err error)

type FavoriteTweet ¶

type FavoriteTweet struct {
	FavoriteTweet string `json:"favorite_tweet"`
}

FavoriteTweet struct for FavoriteTweet

func NewFavoriteTweet ¶

func NewFavoriteTweet(favoriteTweet string) *FavoriteTweet

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

func NewFavoriteTweetWithDefaults ¶

func NewFavoriteTweetWithDefaults() *FavoriteTweet

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

func (*FavoriteTweet) GetFavoriteTweet ¶

func (o *FavoriteTweet) GetFavoriteTweet() string

GetFavoriteTweet returns the FavoriteTweet field value

func (*FavoriteTweet) GetFavoriteTweetOk ¶

func (o *FavoriteTweet) GetFavoriteTweetOk() (*string, bool)

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

func (FavoriteTweet) MarshalJSON ¶

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

func (*FavoriteTweet) SetFavoriteTweet ¶

func (o *FavoriteTweet) SetFavoriteTweet(v string)

SetFavoriteTweet sets field value

func (FavoriteTweet) ToMap ¶

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

func (*FavoriteTweet) UnmarshalJSON ¶

func (o *FavoriteTweet) UnmarshalJSON(data []byte) (err error)

type FavoriteTweetResponseData ¶

type FavoriteTweetResponseData struct {
	Data FavoriteTweet `json:"data"`
}

FavoriteTweetResponseData struct for FavoriteTweetResponseData

func NewFavoriteTweetResponseData ¶

func NewFavoriteTweetResponseData(data FavoriteTweet) *FavoriteTweetResponseData

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

func NewFavoriteTweetResponseDataWithDefaults ¶

func NewFavoriteTweetResponseDataWithDefaults() *FavoriteTweetResponseData

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

func (*FavoriteTweetResponseData) GetData ¶

GetData returns the Data field value

func (*FavoriteTweetResponseData) GetDataOk ¶

func (o *FavoriteTweetResponseData) GetDataOk() (*FavoriteTweet, bool)

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

func (FavoriteTweetResponseData) MarshalJSON ¶

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

func (*FavoriteTweetResponseData) SetData ¶

SetData sets field value

func (FavoriteTweetResponseData) ToMap ¶

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

func (*FavoriteTweetResponseData) UnmarshalJSON ¶

func (o *FavoriteTweetResponseData) UnmarshalJSON(data []byte) (err error)

type FeedbackInfo ¶

type FeedbackInfo struct {
	FeedbackKeys []string `json:"feedbackKeys,omitempty"`
}

FeedbackInfo struct for FeedbackInfo

func NewFeedbackInfo ¶

func NewFeedbackInfo() *FeedbackInfo

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

func NewFeedbackInfoWithDefaults ¶

func NewFeedbackInfoWithDefaults() *FeedbackInfo

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

func (*FeedbackInfo) GetFeedbackKeys ¶

func (o *FeedbackInfo) GetFeedbackKeys() []string

GetFeedbackKeys returns the FeedbackKeys field value if set, zero value otherwise.

func (*FeedbackInfo) GetFeedbackKeysOk ¶

func (o *FeedbackInfo) GetFeedbackKeysOk() ([]string, bool)

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

func (*FeedbackInfo) HasFeedbackKeys ¶

func (o *FeedbackInfo) HasFeedbackKeys() bool

HasFeedbackKeys returns a boolean if a field has been set.

func (FeedbackInfo) MarshalJSON ¶

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

func (*FeedbackInfo) SetFeedbackKeys ¶

func (o *FeedbackInfo) SetFeedbackKeys(v []string)

SetFeedbackKeys gets a reference to the given []string and assigns it to the FeedbackKeys field.

func (FeedbackInfo) ToMap ¶

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

type FollowResponse ¶

type FollowResponse struct {
	Data FollowResponseData `json:"data"`
}

FollowResponse struct for FollowResponse

func NewFollowResponse ¶

func NewFollowResponse(data FollowResponseData) *FollowResponse

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

func NewFollowResponseWithDefaults ¶

func NewFollowResponseWithDefaults() *FollowResponse

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

func (*FollowResponse) GetData ¶

func (o *FollowResponse) GetData() FollowResponseData

GetData returns the Data field value

func (*FollowResponse) GetDataOk ¶

func (o *FollowResponse) GetDataOk() (*FollowResponseData, bool)

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

func (FollowResponse) MarshalJSON ¶

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

func (*FollowResponse) SetData ¶

func (o *FollowResponse) SetData(v FollowResponseData)

SetData sets field value

func (FollowResponse) ToMap ¶

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

func (*FollowResponse) UnmarshalJSON ¶

func (o *FollowResponse) UnmarshalJSON(data []byte) (err error)

type FollowResponseData ¶

type FollowResponseData struct {
	User FollowResponseUser `json:"user"`
}

FollowResponseData struct for FollowResponseData

func NewFollowResponseData ¶

func NewFollowResponseData(user FollowResponseUser) *FollowResponseData

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

func NewFollowResponseDataWithDefaults ¶

func NewFollowResponseDataWithDefaults() *FollowResponseData

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

func (*FollowResponseData) GetUser ¶

GetUser returns the User field value

func (*FollowResponseData) GetUserOk ¶

func (o *FollowResponseData) GetUserOk() (*FollowResponseUser, bool)

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

func (FollowResponseData) MarshalJSON ¶

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

func (*FollowResponseData) SetUser ¶

func (o *FollowResponseData) SetUser(v FollowResponseUser)

SetUser sets field value

func (FollowResponseData) ToMap ¶

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

func (*FollowResponseData) UnmarshalJSON ¶

func (o *FollowResponseData) UnmarshalJSON(data []byte) (err error)

type FollowResponseResult ¶

type FollowResponseResult struct {
	Typename TypeName       `json:"__typename"`
	Timeline FollowTimeline `json:"timeline"`
}

FollowResponseResult struct for FollowResponseResult

func NewFollowResponseResult ¶

func NewFollowResponseResult(typename TypeName, timeline FollowTimeline) *FollowResponseResult

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

func NewFollowResponseResultWithDefaults ¶

func NewFollowResponseResultWithDefaults() *FollowResponseResult

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

func (*FollowResponseResult) GetTimeline ¶

func (o *FollowResponseResult) GetTimeline() FollowTimeline

GetTimeline returns the Timeline field value

func (*FollowResponseResult) GetTimelineOk ¶

func (o *FollowResponseResult) GetTimelineOk() (*FollowTimeline, bool)

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

func (*FollowResponseResult) GetTypename ¶

func (o *FollowResponseResult) GetTypename() TypeName

GetTypename returns the Typename field value

func (*FollowResponseResult) GetTypenameOk ¶

func (o *FollowResponseResult) GetTypenameOk() (*TypeName, bool)

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

func (FollowResponseResult) MarshalJSON ¶

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

func (*FollowResponseResult) SetTimeline ¶

func (o *FollowResponseResult) SetTimeline(v FollowTimeline)

SetTimeline sets field value

func (*FollowResponseResult) SetTypename ¶

func (o *FollowResponseResult) SetTypename(v TypeName)

SetTypename sets field value

func (FollowResponseResult) ToMap ¶

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

func (*FollowResponseResult) UnmarshalJSON ¶

func (o *FollowResponseResult) UnmarshalJSON(data []byte) (err error)

type FollowResponseUser ¶

type FollowResponseUser struct {
	Result FollowResponseResult `json:"result"`
}

FollowResponseUser struct for FollowResponseUser

func NewFollowResponseUser ¶

func NewFollowResponseUser(result FollowResponseResult) *FollowResponseUser

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

func NewFollowResponseUserWithDefaults ¶

func NewFollowResponseUserWithDefaults() *FollowResponseUser

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

func (*FollowResponseUser) GetResult ¶

GetResult returns the Result field value

func (*FollowResponseUser) GetResultOk ¶

func (o *FollowResponseUser) GetResultOk() (*FollowResponseResult, bool)

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

func (FollowResponseUser) MarshalJSON ¶

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

func (*FollowResponseUser) SetResult ¶

func (o *FollowResponseUser) SetResult(v FollowResponseResult)

SetResult sets field value

func (FollowResponseUser) ToMap ¶

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

func (*FollowResponseUser) UnmarshalJSON ¶

func (o *FollowResponseUser) UnmarshalJSON(data []byte) (err error)

type FollowTimeline ¶

type FollowTimeline struct {
	Timeline Timeline `json:"timeline"`
}

FollowTimeline struct for FollowTimeline

func NewFollowTimeline ¶

func NewFollowTimeline(timeline Timeline) *FollowTimeline

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

func NewFollowTimelineWithDefaults ¶

func NewFollowTimelineWithDefaults() *FollowTimeline

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

func (*FollowTimeline) GetTimeline ¶

func (o *FollowTimeline) GetTimeline() Timeline

GetTimeline returns the Timeline field value

func (*FollowTimeline) GetTimelineOk ¶

func (o *FollowTimeline) GetTimelineOk() (*Timeline, bool)

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

func (FollowTimeline) MarshalJSON ¶

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

func (*FollowTimeline) SetTimeline ¶

func (o *FollowTimeline) SetTimeline(v Timeline)

SetTimeline sets field value

func (FollowTimeline) ToMap ¶

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

func (*FollowTimeline) UnmarshalJSON ¶

func (o *FollowTimeline) UnmarshalJSON(data []byte) (err 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 GetBookmarks200Response ¶

type GetBookmarks200Response struct {
	BookmarksResponse *BookmarksResponse
	Errors            *Errors
}

GetBookmarks200Response - struct for GetBookmarks200Response

func BookmarksResponseAsGetBookmarks200Response ¶

func BookmarksResponseAsGetBookmarks200Response(v *BookmarksResponse) GetBookmarks200Response

BookmarksResponseAsGetBookmarks200Response is a convenience function that returns BookmarksResponse wrapped in GetBookmarks200Response

func ErrorsAsGetBookmarks200Response ¶

func ErrorsAsGetBookmarks200Response(v *Errors) GetBookmarks200Response

ErrorsAsGetBookmarks200Response is a convenience function that returns Errors wrapped in GetBookmarks200Response

func (*GetBookmarks200Response) GetActualInstance ¶

func (obj *GetBookmarks200Response) GetActualInstance() interface{}

Get the actual instance

func (GetBookmarks200Response) MarshalJSON ¶

func (src GetBookmarks200Response) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*GetBookmarks200Response) UnmarshalJSON ¶

func (dst *GetBookmarks200Response) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type GetFavoriters200Response ¶

type GetFavoriters200Response struct {
	Errors                  *Errors
	TweetFavoritersResponse *TweetFavoritersResponse
}

GetFavoriters200Response - struct for GetFavoriters200Response

func ErrorsAsGetFavoriters200Response ¶

func ErrorsAsGetFavoriters200Response(v *Errors) GetFavoriters200Response

ErrorsAsGetFavoriters200Response is a convenience function that returns Errors wrapped in GetFavoriters200Response

func TweetFavoritersResponseAsGetFavoriters200Response ¶

func TweetFavoritersResponseAsGetFavoriters200Response(v *TweetFavoritersResponse) GetFavoriters200Response

TweetFavoritersResponseAsGetFavoriters200Response is a convenience function that returns TweetFavoritersResponse wrapped in GetFavoriters200Response

func (*GetFavoriters200Response) GetActualInstance ¶

func (obj *GetFavoriters200Response) GetActualInstance() interface{}

Get the actual instance

func (GetFavoriters200Response) MarshalJSON ¶

func (src GetFavoriters200Response) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*GetFavoriters200Response) UnmarshalJSON ¶

func (dst *GetFavoriters200Response) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type GetFollowers200Response ¶

type GetFollowers200Response struct {
	Errors         *Errors
	FollowResponse *FollowResponse
}

GetFollowers200Response - struct for GetFollowers200Response

func ErrorsAsGetFollowers200Response ¶

func ErrorsAsGetFollowers200Response(v *Errors) GetFollowers200Response

ErrorsAsGetFollowers200Response is a convenience function that returns Errors wrapped in GetFollowers200Response

func FollowResponseAsGetFollowers200Response ¶

func FollowResponseAsGetFollowers200Response(v *FollowResponse) GetFollowers200Response

FollowResponseAsGetFollowers200Response is a convenience function that returns FollowResponse wrapped in GetFollowers200Response

func (*GetFollowers200Response) GetActualInstance ¶

func (obj *GetFollowers200Response) GetActualInstance() interface{}

Get the actual instance

func (GetFollowers200Response) MarshalJSON ¶

func (src GetFollowers200Response) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*GetFollowers200Response) UnmarshalJSON ¶

func (dst *GetFollowers200Response) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type GetHomeLatestTimeline200Response ¶

type GetHomeLatestTimeline200Response struct {
	Errors           *Errors
	TimelineResponse *TimelineResponse
}

GetHomeLatestTimeline200Response - struct for GetHomeLatestTimeline200Response

func ErrorsAsGetHomeLatestTimeline200Response ¶

func ErrorsAsGetHomeLatestTimeline200Response(v *Errors) GetHomeLatestTimeline200Response

ErrorsAsGetHomeLatestTimeline200Response is a convenience function that returns Errors wrapped in GetHomeLatestTimeline200Response

func TimelineResponseAsGetHomeLatestTimeline200Response ¶

func TimelineResponseAsGetHomeLatestTimeline200Response(v *TimelineResponse) GetHomeLatestTimeline200Response

TimelineResponseAsGetHomeLatestTimeline200Response is a convenience function that returns TimelineResponse wrapped in GetHomeLatestTimeline200Response

func (*GetHomeLatestTimeline200Response) GetActualInstance ¶

func (obj *GetHomeLatestTimeline200Response) GetActualInstance() interface{}

Get the actual instance

func (GetHomeLatestTimeline200Response) MarshalJSON ¶

func (src GetHomeLatestTimeline200Response) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*GetHomeLatestTimeline200Response) UnmarshalJSON ¶

func (dst *GetHomeLatestTimeline200Response) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type GetLikes200Response ¶

type GetLikes200Response struct {
	Errors             *Errors
	UserTweetsResponse *UserTweetsResponse
}

GetLikes200Response - struct for GetLikes200Response

func ErrorsAsGetLikes200Response ¶

func ErrorsAsGetLikes200Response(v *Errors) GetLikes200Response

ErrorsAsGetLikes200Response is a convenience function that returns Errors wrapped in GetLikes200Response

func UserTweetsResponseAsGetLikes200Response ¶

func UserTweetsResponseAsGetLikes200Response(v *UserTweetsResponse) GetLikes200Response

UserTweetsResponseAsGetLikes200Response is a convenience function that returns UserTweetsResponse wrapped in GetLikes200Response

func (*GetLikes200Response) GetActualInstance ¶

func (obj *GetLikes200Response) GetActualInstance() interface{}

Get the actual instance

func (GetLikes200Response) MarshalJSON ¶

func (src GetLikes200Response) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*GetLikes200Response) UnmarshalJSON ¶

func (dst *GetLikes200Response) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type GetListLatestTweetsTimeline200Response ¶

type GetListLatestTweetsTimeline200Response struct {
	Errors                           *Errors
	ListLatestTweetsTimelineResponse *ListLatestTweetsTimelineResponse
}

GetListLatestTweetsTimeline200Response - struct for GetListLatestTweetsTimeline200Response

func ErrorsAsGetListLatestTweetsTimeline200Response ¶

func ErrorsAsGetListLatestTweetsTimeline200Response(v *Errors) GetListLatestTweetsTimeline200Response

ErrorsAsGetListLatestTweetsTimeline200Response is a convenience function that returns Errors wrapped in GetListLatestTweetsTimeline200Response

func ListLatestTweetsTimelineResponseAsGetListLatestTweetsTimeline200Response ¶

func ListLatestTweetsTimelineResponseAsGetListLatestTweetsTimeline200Response(v *ListLatestTweetsTimelineResponse) GetListLatestTweetsTimeline200Response

ListLatestTweetsTimelineResponseAsGetListLatestTweetsTimeline200Response is a convenience function that returns ListLatestTweetsTimelineResponse wrapped in GetListLatestTweetsTimeline200Response

func (*GetListLatestTweetsTimeline200Response) GetActualInstance ¶

func (obj *GetListLatestTweetsTimeline200Response) GetActualInstance() interface{}

Get the actual instance

func (GetListLatestTweetsTimeline200Response) MarshalJSON ¶

func (src GetListLatestTweetsTimeline200Response) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*GetListLatestTweetsTimeline200Response) UnmarshalJSON ¶

func (dst *GetListLatestTweetsTimeline200Response) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type GetProfileSpotlightsQuery200Response ¶

type GetProfileSpotlightsQuery200Response struct {
	Errors          *Errors
	ProfileResponse *ProfileResponse
}

GetProfileSpotlightsQuery200Response - struct for GetProfileSpotlightsQuery200Response

func ErrorsAsGetProfileSpotlightsQuery200Response ¶

func ErrorsAsGetProfileSpotlightsQuery200Response(v *Errors) GetProfileSpotlightsQuery200Response

ErrorsAsGetProfileSpotlightsQuery200Response is a convenience function that returns Errors wrapped in GetProfileSpotlightsQuery200Response

func ProfileResponseAsGetProfileSpotlightsQuery200Response ¶

func ProfileResponseAsGetProfileSpotlightsQuery200Response(v *ProfileResponse) GetProfileSpotlightsQuery200Response

ProfileResponseAsGetProfileSpotlightsQuery200Response is a convenience function that returns ProfileResponse wrapped in GetProfileSpotlightsQuery200Response

func (*GetProfileSpotlightsQuery200Response) GetActualInstance ¶

func (obj *GetProfileSpotlightsQuery200Response) GetActualInstance() interface{}

Get the actual instance

func (GetProfileSpotlightsQuery200Response) MarshalJSON ¶

func (src GetProfileSpotlightsQuery200Response) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*GetProfileSpotlightsQuery200Response) UnmarshalJSON ¶

func (dst *GetProfileSpotlightsQuery200Response) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type GetRetweeters200Response ¶

type GetRetweeters200Response struct {
	Errors                  *Errors
	TweetRetweetersResponse *TweetRetweetersResponse
}

GetRetweeters200Response - struct for GetRetweeters200Response

func ErrorsAsGetRetweeters200Response ¶

func ErrorsAsGetRetweeters200Response(v *Errors) GetRetweeters200Response

ErrorsAsGetRetweeters200Response is a convenience function that returns Errors wrapped in GetRetweeters200Response

func TweetRetweetersResponseAsGetRetweeters200Response ¶

func TweetRetweetersResponseAsGetRetweeters200Response(v *TweetRetweetersResponse) GetRetweeters200Response

TweetRetweetersResponseAsGetRetweeters200Response is a convenience function that returns TweetRetweetersResponse wrapped in GetRetweeters200Response

func (*GetRetweeters200Response) GetActualInstance ¶

func (obj *GetRetweeters200Response) GetActualInstance() interface{}

Get the actual instance

func (GetRetweeters200Response) MarshalJSON ¶

func (src GetRetweeters200Response) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*GetRetweeters200Response) UnmarshalJSON ¶

func (dst *GetRetweeters200Response) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type GetSearchTimeline200Response ¶

type GetSearchTimeline200Response struct {
	Errors                 *Errors
	SearchTimelineResponse *SearchTimelineResponse
}

GetSearchTimeline200Response - struct for GetSearchTimeline200Response

func ErrorsAsGetSearchTimeline200Response ¶

func ErrorsAsGetSearchTimeline200Response(v *Errors) GetSearchTimeline200Response

ErrorsAsGetSearchTimeline200Response is a convenience function that returns Errors wrapped in GetSearchTimeline200Response

func SearchTimelineResponseAsGetSearchTimeline200Response ¶

func SearchTimelineResponseAsGetSearchTimeline200Response(v *SearchTimelineResponse) GetSearchTimeline200Response

SearchTimelineResponseAsGetSearchTimeline200Response is a convenience function that returns SearchTimelineResponse wrapped in GetSearchTimeline200Response

func (*GetSearchTimeline200Response) GetActualInstance ¶

func (obj *GetSearchTimeline200Response) GetActualInstance() interface{}

Get the actual instance

func (GetSearchTimeline200Response) MarshalJSON ¶

func (src GetSearchTimeline200Response) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*GetSearchTimeline200Response) UnmarshalJSON ¶

func (dst *GetSearchTimeline200Response) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type GetTweetDetail200Response ¶

type GetTweetDetail200Response struct {
	Errors              *Errors
	TweetDetailResponse *TweetDetailResponse
}

GetTweetDetail200Response - struct for GetTweetDetail200Response

func ErrorsAsGetTweetDetail200Response ¶

func ErrorsAsGetTweetDetail200Response(v *Errors) GetTweetDetail200Response

ErrorsAsGetTweetDetail200Response is a convenience function that returns Errors wrapped in GetTweetDetail200Response

func TweetDetailResponseAsGetTweetDetail200Response ¶

func TweetDetailResponseAsGetTweetDetail200Response(v *TweetDetailResponse) GetTweetDetail200Response

TweetDetailResponseAsGetTweetDetail200Response is a convenience function that returns TweetDetailResponse wrapped in GetTweetDetail200Response

func (*GetTweetDetail200Response) GetActualInstance ¶

func (obj *GetTweetDetail200Response) GetActualInstance() interface{}

Get the actual instance

func (GetTweetDetail200Response) MarshalJSON ¶

func (src GetTweetDetail200Response) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*GetTweetDetail200Response) UnmarshalJSON ¶

func (dst *GetTweetDetail200Response) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type GetTweetResultByRestId200Response ¶

type GetTweetResultByRestId200Response struct {
	Errors                      *Errors
	TweetResultByRestIdResponse *TweetResultByRestIdResponse
}

GetTweetResultByRestId200Response - struct for GetTweetResultByRestId200Response

func ErrorsAsGetTweetResultByRestId200Response ¶

func ErrorsAsGetTweetResultByRestId200Response(v *Errors) GetTweetResultByRestId200Response

ErrorsAsGetTweetResultByRestId200Response is a convenience function that returns Errors wrapped in GetTweetResultByRestId200Response

func TweetResultByRestIdResponseAsGetTweetResultByRestId200Response ¶

func TweetResultByRestIdResponseAsGetTweetResultByRestId200Response(v *TweetResultByRestIdResponse) GetTweetResultByRestId200Response

TweetResultByRestIdResponseAsGetTweetResultByRestId200Response is a convenience function that returns TweetResultByRestIdResponse wrapped in GetTweetResultByRestId200Response

func (*GetTweetResultByRestId200Response) GetActualInstance ¶

func (obj *GetTweetResultByRestId200Response) GetActualInstance() interface{}

Get the actual instance

func (GetTweetResultByRestId200Response) MarshalJSON ¶

func (src GetTweetResultByRestId200Response) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*GetTweetResultByRestId200Response) UnmarshalJSON ¶

func (dst *GetTweetResultByRestId200Response) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type GetUserByRestId200Response ¶

type GetUserByRestId200Response struct {
	Errors       *Errors
	UserResponse *UserResponse
}

GetUserByRestId200Response - struct for GetUserByRestId200Response

func ErrorsAsGetUserByRestId200Response ¶

func ErrorsAsGetUserByRestId200Response(v *Errors) GetUserByRestId200Response

ErrorsAsGetUserByRestId200Response is a convenience function that returns Errors wrapped in GetUserByRestId200Response

func UserResponseAsGetUserByRestId200Response ¶

func UserResponseAsGetUserByRestId200Response(v *UserResponse) GetUserByRestId200Response

UserResponseAsGetUserByRestId200Response is a convenience function that returns UserResponse wrapped in GetUserByRestId200Response

func (*GetUserByRestId200Response) GetActualInstance ¶

func (obj *GetUserByRestId200Response) GetActualInstance() interface{}

Get the actual instance

func (GetUserByRestId200Response) MarshalJSON ¶

func (src GetUserByRestId200Response) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*GetUserByRestId200Response) UnmarshalJSON ¶

func (dst *GetUserByRestId200Response) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type GetUserHighlightsTweets200Response ¶

type GetUserHighlightsTweets200Response struct {
	Errors                       *Errors
	UserHighlightsTweetsResponse *UserHighlightsTweetsResponse
}

GetUserHighlightsTweets200Response - struct for GetUserHighlightsTweets200Response

func ErrorsAsGetUserHighlightsTweets200Response ¶

func ErrorsAsGetUserHighlightsTweets200Response(v *Errors) GetUserHighlightsTweets200Response

ErrorsAsGetUserHighlightsTweets200Response is a convenience function that returns Errors wrapped in GetUserHighlightsTweets200Response

func UserHighlightsTweetsResponseAsGetUserHighlightsTweets200Response ¶

func UserHighlightsTweetsResponseAsGetUserHighlightsTweets200Response(v *UserHighlightsTweetsResponse) GetUserHighlightsTweets200Response

UserHighlightsTweetsResponseAsGetUserHighlightsTweets200Response is a convenience function that returns UserHighlightsTweetsResponse wrapped in GetUserHighlightsTweets200Response

func (*GetUserHighlightsTweets200Response) GetActualInstance ¶

func (obj *GetUserHighlightsTweets200Response) GetActualInstance() interface{}

Get the actual instance

func (GetUserHighlightsTweets200Response) MarshalJSON ¶

func (src GetUserHighlightsTweets200Response) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*GetUserHighlightsTweets200Response) UnmarshalJSON ¶

func (dst *GetUserHighlightsTweets200Response) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type GetUsersByRestIds200Response ¶

type GetUsersByRestIds200Response struct {
	Errors        *Errors
	UsersResponse *UsersResponse
}

GetUsersByRestIds200Response - struct for GetUsersByRestIds200Response

func ErrorsAsGetUsersByRestIds200Response ¶

func ErrorsAsGetUsersByRestIds200Response(v *Errors) GetUsersByRestIds200Response

ErrorsAsGetUsersByRestIds200Response is a convenience function that returns Errors wrapped in GetUsersByRestIds200Response

func UsersResponseAsGetUsersByRestIds200Response ¶

func UsersResponseAsGetUsersByRestIds200Response(v *UsersResponse) GetUsersByRestIds200Response

UsersResponseAsGetUsersByRestIds200Response is a convenience function that returns UsersResponse wrapped in GetUsersByRestIds200Response

func (*GetUsersByRestIds200Response) GetActualInstance ¶

func (obj *GetUsersByRestIds200Response) GetActualInstance() interface{}

Get the actual instance

func (GetUsersByRestIds200Response) MarshalJSON ¶

func (src GetUsersByRestIds200Response) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*GetUsersByRestIds200Response) UnmarshalJSON ¶

func (dst *GetUsersByRestIds200Response) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type Highlight ¶

type Highlight struct {
	TextHighlights []TextHighlight `json:"textHighlights"`
}

Highlight struct for Highlight

func NewHighlight ¶

func NewHighlight(textHighlights []TextHighlight) *Highlight

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

func NewHighlightWithDefaults ¶

func NewHighlightWithDefaults() *Highlight

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

func (*Highlight) GetTextHighlights ¶

func (o *Highlight) GetTextHighlights() []TextHighlight

GetTextHighlights returns the TextHighlights field value

func (*Highlight) GetTextHighlightsOk ¶

func (o *Highlight) GetTextHighlightsOk() ([]TextHighlight, bool)

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

func (Highlight) MarshalJSON ¶

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

func (*Highlight) SetTextHighlights ¶

func (o *Highlight) SetTextHighlights(v []TextHighlight)

SetTextHighlights sets field value

func (Highlight) ToMap ¶

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

func (*Highlight) UnmarshalJSON ¶

func (o *Highlight) UnmarshalJSON(data []byte) (err error)

type HomeTimelineHome ¶

type HomeTimelineHome struct {
	HomeTimelineUrt Timeline `json:"home_timeline_urt"`
}

HomeTimelineHome struct for HomeTimelineHome

func NewHomeTimelineHome ¶

func NewHomeTimelineHome(homeTimelineUrt Timeline) *HomeTimelineHome

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

func NewHomeTimelineHomeWithDefaults ¶

func NewHomeTimelineHomeWithDefaults() *HomeTimelineHome

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

func (*HomeTimelineHome) GetHomeTimelineUrt ¶

func (o *HomeTimelineHome) GetHomeTimelineUrt() Timeline

GetHomeTimelineUrt returns the HomeTimelineUrt field value

func (*HomeTimelineHome) GetHomeTimelineUrtOk ¶

func (o *HomeTimelineHome) GetHomeTimelineUrtOk() (*Timeline, bool)

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

func (HomeTimelineHome) MarshalJSON ¶

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

func (*HomeTimelineHome) SetHomeTimelineUrt ¶

func (o *HomeTimelineHome) SetHomeTimelineUrt(v Timeline)

SetHomeTimelineUrt sets field value

func (HomeTimelineHome) ToMap ¶

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

func (*HomeTimelineHome) UnmarshalJSON ¶

func (o *HomeTimelineHome) UnmarshalJSON(data []byte) (err error)

type HomeTimelineResponseData ¶

type HomeTimelineResponseData struct {
	Home HomeTimelineHome `json:"home"`
}

HomeTimelineResponseData struct for HomeTimelineResponseData

func NewHomeTimelineResponseData ¶

func NewHomeTimelineResponseData(home HomeTimelineHome) *HomeTimelineResponseData

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

func NewHomeTimelineResponseDataWithDefaults ¶

func NewHomeTimelineResponseDataWithDefaults() *HomeTimelineResponseData

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

func (*HomeTimelineResponseData) GetHome ¶

GetHome returns the Home field value

func (*HomeTimelineResponseData) GetHomeOk ¶

func (o *HomeTimelineResponseData) GetHomeOk() (*HomeTimelineHome, bool)

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

func (HomeTimelineResponseData) MarshalJSON ¶

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

func (*HomeTimelineResponseData) SetHome ¶

SetHome sets field value

func (HomeTimelineResponseData) ToMap ¶

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

func (*HomeTimelineResponseData) UnmarshalJSON ¶

func (o *HomeTimelineResponseData) UnmarshalJSON(data []byte) (err error)

type InstructionType ¶

type InstructionType string

InstructionType the model 'InstructionType'

const (
	TIMELINE_ADD_ENTRIES        InstructionType = "TimelineAddEntries"
	TIMELINE_ADD_TO_MODULE      InstructionType = "TimelineAddToModule"
	TIMELINE_CLEAR_CACHE        InstructionType = "TimelineClearCache"
	TIMELINE_PIN_ENTRY          InstructionType = "TimelinePinEntry"
	TIMELINE_REPLACE_ENTRY      InstructionType = "TimelineReplaceEntry"
	TIMELINE_SHOW_ALERT         InstructionType = "TimelineShowAlert"
	TIMELINE_TERMINATE_TIMELINE InstructionType = "TimelineTerminateTimeline"
	TIMELINE_SHOW_COVER         InstructionType = "TimelineShowCover"
)

List of InstructionType

func NewInstructionTypeFromValue ¶

func NewInstructionTypeFromValue(v string) (*InstructionType, error)

NewInstructionTypeFromValue returns a pointer to a valid InstructionType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (InstructionType) IsValid ¶

func (v InstructionType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (InstructionType) Ptr ¶

Ptr returns reference to InstructionType value

func (*InstructionType) UnmarshalJSON ¶

func (v *InstructionType) UnmarshalJSON(src []byte) error

type InstructionUnion ¶

type InstructionUnion struct {
	TimelineAddEntries        *TimelineAddEntries
	TimelineAddToModule       *TimelineAddToModule
	TimelineClearCache        *TimelineClearCache
	TimelinePinEntry          *TimelinePinEntry
	TimelineReplaceEntry      *TimelineReplaceEntry
	TimelineShowAlert         *TimelineShowAlert
	TimelineShowCover         *TimelineShowCover
	TimelineTerminateTimeline *TimelineTerminateTimeline
}

InstructionUnion - struct for InstructionUnion

func TimelineAddEntriesAsInstructionUnion ¶

func TimelineAddEntriesAsInstructionUnion(v *TimelineAddEntries) InstructionUnion

TimelineAddEntriesAsInstructionUnion is a convenience function that returns TimelineAddEntries wrapped in InstructionUnion

func TimelineAddToModuleAsInstructionUnion ¶

func TimelineAddToModuleAsInstructionUnion(v *TimelineAddToModule) InstructionUnion

TimelineAddToModuleAsInstructionUnion is a convenience function that returns TimelineAddToModule wrapped in InstructionUnion

func TimelineClearCacheAsInstructionUnion ¶

func TimelineClearCacheAsInstructionUnion(v *TimelineClearCache) InstructionUnion

TimelineClearCacheAsInstructionUnion is a convenience function that returns TimelineClearCache wrapped in InstructionUnion

func TimelinePinEntryAsInstructionUnion ¶

func TimelinePinEntryAsInstructionUnion(v *TimelinePinEntry) InstructionUnion

TimelinePinEntryAsInstructionUnion is a convenience function that returns TimelinePinEntry wrapped in InstructionUnion

func TimelineReplaceEntryAsInstructionUnion ¶

func TimelineReplaceEntryAsInstructionUnion(v *TimelineReplaceEntry) InstructionUnion

TimelineReplaceEntryAsInstructionUnion is a convenience function that returns TimelineReplaceEntry wrapped in InstructionUnion

func TimelineShowAlertAsInstructionUnion ¶

func TimelineShowAlertAsInstructionUnion(v *TimelineShowAlert) InstructionUnion

TimelineShowAlertAsInstructionUnion is a convenience function that returns TimelineShowAlert wrapped in InstructionUnion

func TimelineShowCoverAsInstructionUnion ¶

func TimelineShowCoverAsInstructionUnion(v *TimelineShowCover) InstructionUnion

TimelineShowCoverAsInstructionUnion is a convenience function that returns TimelineShowCover wrapped in InstructionUnion

func TimelineTerminateTimelineAsInstructionUnion ¶

func TimelineTerminateTimelineAsInstructionUnion(v *TimelineTerminateTimeline) InstructionUnion

TimelineTerminateTimelineAsInstructionUnion is a convenience function that returns TimelineTerminateTimeline wrapped in InstructionUnion

func (*InstructionUnion) GetActualInstance ¶

func (obj *InstructionUnion) GetActualInstance() interface{}

Get the actual instance

func (InstructionUnion) MarshalJSON ¶

func (src InstructionUnion) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*InstructionUnion) UnmarshalJSON ¶

func (dst *InstructionUnion) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type ItemContentUnion ¶

type ItemContentUnion struct {
	TimelineCommunity      *TimelineCommunity
	TimelineMessagePrompt  *TimelineMessagePrompt
	TimelinePrompt         *TimelinePrompt
	TimelineTimelineCursor *TimelineTimelineCursor
	TimelineTweet          *TimelineTweet
	TimelineUser           *TimelineUser
}

ItemContentUnion - struct for ItemContentUnion

func TimelineCommunityAsItemContentUnion ¶

func TimelineCommunityAsItemContentUnion(v *TimelineCommunity) ItemContentUnion

TimelineCommunityAsItemContentUnion is a convenience function that returns TimelineCommunity wrapped in ItemContentUnion

func TimelineMessagePromptAsItemContentUnion ¶

func TimelineMessagePromptAsItemContentUnion(v *TimelineMessagePrompt) ItemContentUnion

TimelineMessagePromptAsItemContentUnion is a convenience function that returns TimelineMessagePrompt wrapped in ItemContentUnion

func TimelinePromptAsItemContentUnion ¶

func TimelinePromptAsItemContentUnion(v *TimelinePrompt) ItemContentUnion

TimelinePromptAsItemContentUnion is a convenience function that returns TimelinePrompt wrapped in ItemContentUnion

func TimelineTimelineCursorAsItemContentUnion ¶

func TimelineTimelineCursorAsItemContentUnion(v *TimelineTimelineCursor) ItemContentUnion

TimelineTimelineCursorAsItemContentUnion is a convenience function that returns TimelineTimelineCursor wrapped in ItemContentUnion

func TimelineTweetAsItemContentUnion ¶

func TimelineTweetAsItemContentUnion(v *TimelineTweet) ItemContentUnion

TimelineTweetAsItemContentUnion is a convenience function that returns TimelineTweet wrapped in ItemContentUnion

func TimelineUserAsItemContentUnion ¶

func TimelineUserAsItemContentUnion(v *TimelineUser) ItemContentUnion

TimelineUserAsItemContentUnion is a convenience function that returns TimelineUser wrapped in ItemContentUnion

func (*ItemContentUnion) GetActualInstance ¶

func (obj *ItemContentUnion) GetActualInstance() interface{}

Get the actual instance

func (ItemContentUnion) MarshalJSON ¶

func (src ItemContentUnion) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ItemContentUnion) UnmarshalJSON ¶

func (dst *ItemContentUnion) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type ItemResult ¶

type ItemResult struct {
	Typename *TypeName   `json:"__typename,omitempty"`
	Result   *TweetUnion `json:"result,omitempty"`
}

ItemResult struct for ItemResult

func NewItemResult ¶

func NewItemResult() *ItemResult

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

func NewItemResultWithDefaults ¶

func NewItemResultWithDefaults() *ItemResult

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

func (*ItemResult) GetResult ¶

func (o *ItemResult) GetResult() TweetUnion

GetResult returns the Result field value if set, zero value otherwise.

func (*ItemResult) GetResultOk ¶

func (o *ItemResult) GetResultOk() (*TweetUnion, bool)

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

func (*ItemResult) GetTypename ¶

func (o *ItemResult) GetTypename() TypeName

GetTypename returns the Typename field value if set, zero value otherwise.

func (*ItemResult) GetTypenameOk ¶

func (o *ItemResult) GetTypenameOk() (*TypeName, bool)

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

func (*ItemResult) HasResult ¶

func (o *ItemResult) HasResult() bool

HasResult returns a boolean if a field has been set.

func (*ItemResult) HasTypename ¶

func (o *ItemResult) HasTypename() bool

HasTypename returns a boolean if a field has been set.

func (ItemResult) MarshalJSON ¶

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

func (*ItemResult) SetResult ¶

func (o *ItemResult) SetResult(v TweetUnion)

SetResult gets a reference to the given TweetUnion and assigns it to the Result field.

func (*ItemResult) SetTypename ¶

func (o *ItemResult) SetTypename(v TypeName)

SetTypename gets a reference to the given TypeName and assigns it to the Typename field.

func (ItemResult) ToMap ¶

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

type ListLatestTweetsTimelineResponse ¶

type ListLatestTweetsTimelineResponse struct {
	Data ListTweetsTimelineData `json:"data"`
}

ListLatestTweetsTimelineResponse struct for ListLatestTweetsTimelineResponse

func NewListLatestTweetsTimelineResponse ¶

func NewListLatestTweetsTimelineResponse(data ListTweetsTimelineData) *ListLatestTweetsTimelineResponse

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

func NewListLatestTweetsTimelineResponseWithDefaults ¶

func NewListLatestTweetsTimelineResponseWithDefaults() *ListLatestTweetsTimelineResponse

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

func (*ListLatestTweetsTimelineResponse) GetData ¶

GetData returns the Data field value

func (*ListLatestTweetsTimelineResponse) GetDataOk ¶

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

func (ListLatestTweetsTimelineResponse) MarshalJSON ¶

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

func (*ListLatestTweetsTimelineResponse) SetData ¶

SetData sets field value

func (ListLatestTweetsTimelineResponse) ToMap ¶

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

func (*ListLatestTweetsTimelineResponse) UnmarshalJSON ¶

func (o *ListLatestTweetsTimelineResponse) UnmarshalJSON(data []byte) (err error)

type ListTweetsTimeline ¶

type ListTweetsTimeline struct {
	Timeline *Timeline `json:"timeline,omitempty"`
}

ListTweetsTimeline struct for ListTweetsTimeline

func NewListTweetsTimeline ¶

func NewListTweetsTimeline() *ListTweetsTimeline

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

func NewListTweetsTimelineWithDefaults ¶

func NewListTweetsTimelineWithDefaults() *ListTweetsTimeline

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

func (*ListTweetsTimeline) GetTimeline ¶

func (o *ListTweetsTimeline) GetTimeline() Timeline

GetTimeline returns the Timeline field value if set, zero value otherwise.

func (*ListTweetsTimeline) GetTimelineOk ¶

func (o *ListTweetsTimeline) GetTimelineOk() (*Timeline, bool)

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

func (*ListTweetsTimeline) HasTimeline ¶

func (o *ListTweetsTimeline) HasTimeline() bool

HasTimeline returns a boolean if a field has been set.

func (ListTweetsTimeline) MarshalJSON ¶

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

func (*ListTweetsTimeline) SetTimeline ¶

func (o *ListTweetsTimeline) SetTimeline(v Timeline)

SetTimeline gets a reference to the given Timeline and assigns it to the Timeline field.

func (ListTweetsTimeline) ToMap ¶

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

type ListTweetsTimelineData ¶

type ListTweetsTimelineData struct {
	List ListTweetsTimelineList `json:"list"`
}

ListTweetsTimelineData struct for ListTweetsTimelineData

func NewListTweetsTimelineData ¶

func NewListTweetsTimelineData(list ListTweetsTimelineList) *ListTweetsTimelineData

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

func NewListTweetsTimelineDataWithDefaults ¶

func NewListTweetsTimelineDataWithDefaults() *ListTweetsTimelineData

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

func (*ListTweetsTimelineData) GetList ¶

GetList returns the List field value

func (*ListTweetsTimelineData) GetListOk ¶

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

func (ListTweetsTimelineData) MarshalJSON ¶

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

func (*ListTweetsTimelineData) SetList ¶

SetList sets field value

func (ListTweetsTimelineData) ToMap ¶

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

func (*ListTweetsTimelineData) UnmarshalJSON ¶

func (o *ListTweetsTimelineData) UnmarshalJSON(data []byte) (err error)

type ListTweetsTimelineList ¶

type ListTweetsTimelineList struct {
	TweetsTimeline ListTweetsTimeline `json:"tweets_timeline"`
}

ListTweetsTimelineList struct for ListTweetsTimelineList

func NewListTweetsTimelineList ¶

func NewListTweetsTimelineList(tweetsTimeline ListTweetsTimeline) *ListTweetsTimelineList

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

func NewListTweetsTimelineListWithDefaults ¶

func NewListTweetsTimelineListWithDefaults() *ListTweetsTimelineList

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

func (*ListTweetsTimelineList) GetTweetsTimeline ¶

func (o *ListTweetsTimelineList) GetTweetsTimeline() ListTweetsTimeline

GetTweetsTimeline returns the TweetsTimeline field value

func (*ListTweetsTimelineList) GetTweetsTimelineOk ¶

func (o *ListTweetsTimelineList) GetTweetsTimelineOk() (*ListTweetsTimeline, bool)

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

func (ListTweetsTimelineList) MarshalJSON ¶

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

func (*ListTweetsTimelineList) SetTweetsTimeline ¶

func (o *ListTweetsTimelineList) SetTweetsTimeline(v ListTweetsTimeline)

SetTweetsTimeline sets field value

func (ListTweetsTimelineList) ToMap ¶

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

func (*ListTweetsTimelineList) UnmarshalJSON ¶

func (o *ListTweetsTimelineList) UnmarshalJSON(data []byte) (err error)

type Location ¶

type Location struct {
	Column int32 `json:"column"`
	Line   int32 `json:"line"`
}

Location struct for Location

func NewLocation ¶

func NewLocation(column int32, line int32) *Location

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

func NewLocationWithDefaults ¶

func NewLocationWithDefaults() *Location

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

func (*Location) GetColumn ¶

func (o *Location) GetColumn() int32

GetColumn returns the Column field value

func (*Location) GetColumnOk ¶

func (o *Location) GetColumnOk() (*int32, bool)

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

func (*Location) GetLine ¶

func (o *Location) GetLine() int32

GetLine returns the Line field value

func (*Location) GetLineOk ¶

func (o *Location) GetLineOk() (*int32, bool)

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

func (Location) MarshalJSON ¶

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

func (*Location) SetColumn ¶

func (o *Location) SetColumn(v int32)

SetColumn sets field value

func (*Location) SetLine ¶

func (o *Location) SetLine(v int32)

SetLine sets field value

func (Location) ToMap ¶

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

func (*Location) UnmarshalJSON ¶

func (o *Location) UnmarshalJSON(data []byte) (err error)

type MappedNullable ¶

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type Media ¶

type Media struct {
	AdditionalMediaInfo   *AdditionalMediaInfo   `json:"additional_media_info,omitempty"`
	AllowDownloadStatus   *AllowDownloadStatus   `json:"allow_download_status,omitempty"`
	DisplayUrl            string                 `json:"display_url"`
	ExpandedUrl           string                 `json:"expanded_url"`
	ExtAltText            *string                `json:"ext_alt_text,omitempty"`
	ExtMediaAvailability  ExtMediaAvailability   `json:"ext_media_availability"`
	Features              map[string]interface{} `json:"features,omitempty"`
	IdStr                 string                 `json:"id_str" validate:"regexp=^[0-9]+$"`
	Indices               []int32                `json:"indices"`
	MediaKey              string                 `json:"media_key"`
	MediaResults          *MediaResults          `json:"media_results,omitempty"`
	MediaUrlHttps         string                 `json:"media_url_https"`
	OriginalInfo          MediaOriginalInfo      `json:"original_info"`
	SensitiveMediaWarning *SensitiveMediaWarning `json:"sensitive_media_warning,omitempty"`
	Sizes                 MediaSizes             `json:"sizes"`
	SourceStatusIdStr     *string                `json:"source_status_id_str,omitempty" validate:"regexp=^[0-9]+$"`
	SourceUserIdStr       *string                `json:"source_user_id_str,omitempty" validate:"regexp=^[0-9]+$"`
	Type                  string                 `json:"type"`
	Url                   string                 `json:"url"`
	VideoInfo             *MediaVideoInfo        `json:"video_info,omitempty"`
}

Media struct for Media

func NewMedia ¶

func NewMedia(displayUrl string, expandedUrl string, extMediaAvailability ExtMediaAvailability, idStr string, indices []int32, mediaKey string, mediaUrlHttps string, originalInfo MediaOriginalInfo, sizes MediaSizes, type_ string, url string) *Media

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

func NewMediaWithDefaults ¶

func NewMediaWithDefaults() *Media

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

func (*Media) GetAdditionalMediaInfo ¶

func (o *Media) GetAdditionalMediaInfo() AdditionalMediaInfo

GetAdditionalMediaInfo returns the AdditionalMediaInfo field value if set, zero value otherwise.

func (*Media) GetAdditionalMediaInfoOk ¶

func (o *Media) GetAdditionalMediaInfoOk() (*AdditionalMediaInfo, bool)

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

func (*Media) GetAllowDownloadStatus ¶

func (o *Media) GetAllowDownloadStatus() AllowDownloadStatus

GetAllowDownloadStatus returns the AllowDownloadStatus field value if set, zero value otherwise.

func (*Media) GetAllowDownloadStatusOk ¶

func (o *Media) GetAllowDownloadStatusOk() (*AllowDownloadStatus, bool)

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

func (*Media) GetDisplayUrl ¶

func (o *Media) GetDisplayUrl() string

GetDisplayUrl returns the DisplayUrl field value

func (*Media) GetDisplayUrlOk ¶

func (o *Media) GetDisplayUrlOk() (*string, bool)

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

func (*Media) GetExpandedUrl ¶

func (o *Media) GetExpandedUrl() string

GetExpandedUrl returns the ExpandedUrl field value

func (*Media) GetExpandedUrlOk ¶

func (o *Media) GetExpandedUrlOk() (*string, bool)

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

func (*Media) GetExtAltText ¶

func (o *Media) GetExtAltText() string

GetExtAltText returns the ExtAltText field value if set, zero value otherwise.

func (*Media) GetExtAltTextOk ¶

func (o *Media) GetExtAltTextOk() (*string, bool)

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

func (*Media) GetExtMediaAvailability ¶

func (o *Media) GetExtMediaAvailability() ExtMediaAvailability

GetExtMediaAvailability returns the ExtMediaAvailability field value

func (*Media) GetExtMediaAvailabilityOk ¶

func (o *Media) GetExtMediaAvailabilityOk() (*ExtMediaAvailability, bool)

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

func (*Media) GetFeatures ¶

func (o *Media) GetFeatures() map[string]interface{}

GetFeatures returns the Features field value if set, zero value otherwise.

func (*Media) GetFeaturesOk ¶

func (o *Media) GetFeaturesOk() (map[string]interface{}, bool)

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

func (*Media) GetIdStr ¶

func (o *Media) GetIdStr() string

GetIdStr returns the IdStr field value

func (*Media) GetIdStrOk ¶

func (o *Media) GetIdStrOk() (*string, bool)

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

func (*Media) GetIndices ¶

func (o *Media) GetIndices() []int32

GetIndices returns the Indices field value

func (*Media) GetIndicesOk ¶

func (o *Media) GetIndicesOk() ([]int32, bool)

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

func (*Media) GetMediaKey ¶

func (o *Media) GetMediaKey() string

GetMediaKey returns the MediaKey field value

func (*Media) GetMediaKeyOk ¶

func (o *Media) GetMediaKeyOk() (*string, bool)

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

func (*Media) GetMediaResults ¶

func (o *Media) GetMediaResults() MediaResults

GetMediaResults returns the MediaResults field value if set, zero value otherwise.

func (*Media) GetMediaResultsOk ¶

func (o *Media) GetMediaResultsOk() (*MediaResults, bool)

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

func (*Media) GetMediaUrlHttps ¶

func (o *Media) GetMediaUrlHttps() string

GetMediaUrlHttps returns the MediaUrlHttps field value

func (*Media) GetMediaUrlHttpsOk ¶

func (o *Media) GetMediaUrlHttpsOk() (*string, bool)

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

func (*Media) GetOriginalInfo ¶

func (o *Media) GetOriginalInfo() MediaOriginalInfo

GetOriginalInfo returns the OriginalInfo field value

func (*Media) GetOriginalInfoOk ¶

func (o *Media) GetOriginalInfoOk() (*MediaOriginalInfo, bool)

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

func (*Media) GetSensitiveMediaWarning ¶

func (o *Media) GetSensitiveMediaWarning() SensitiveMediaWarning

GetSensitiveMediaWarning returns the SensitiveMediaWarning field value if set, zero value otherwise.

func (*Media) GetSensitiveMediaWarningOk ¶

func (o *Media) GetSensitiveMediaWarningOk() (*SensitiveMediaWarning, bool)

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

func (*Media) GetSizes ¶

func (o *Media) GetSizes() MediaSizes

GetSizes returns the Sizes field value

func (*Media) GetSizesOk ¶

func (o *Media) GetSizesOk() (*MediaSizes, bool)

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

func (*Media) GetSourceStatusIdStr ¶

func (o *Media) GetSourceStatusIdStr() string

GetSourceStatusIdStr returns the SourceStatusIdStr field value if set, zero value otherwise.

func (*Media) GetSourceStatusIdStrOk ¶

func (o *Media) GetSourceStatusIdStrOk() (*string, bool)

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

func (*Media) GetSourceUserIdStr ¶

func (o *Media) GetSourceUserIdStr() string

GetSourceUserIdStr returns the SourceUserIdStr field value if set, zero value otherwise.

func (*Media) GetSourceUserIdStrOk ¶

func (o *Media) GetSourceUserIdStrOk() (*string, bool)

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

func (*Media) GetType ¶

func (o *Media) GetType() string

GetType returns the Type field value

func (*Media) GetTypeOk ¶

func (o *Media) GetTypeOk() (*string, bool)

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

func (*Media) GetUrl ¶

func (o *Media) GetUrl() string

GetUrl returns the Url field value

func (*Media) GetUrlOk ¶

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

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

func (*Media) GetVideoInfo ¶

func (o *Media) GetVideoInfo() MediaVideoInfo

GetVideoInfo returns the VideoInfo field value if set, zero value otherwise.

func (*Media) GetVideoInfoOk ¶

func (o *Media) GetVideoInfoOk() (*MediaVideoInfo, bool)

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

func (*Media) HasAdditionalMediaInfo ¶

func (o *Media) HasAdditionalMediaInfo() bool

HasAdditionalMediaInfo returns a boolean if a field has been set.

func (*Media) HasAllowDownloadStatus ¶

func (o *Media) HasAllowDownloadStatus() bool

HasAllowDownloadStatus returns a boolean if a field has been set.

func (*Media) HasExtAltText ¶

func (o *Media) HasExtAltText() bool

HasExtAltText returns a boolean if a field has been set.

func (*Media) HasFeatures ¶

func (o *Media) HasFeatures() bool

HasFeatures returns a boolean if a field has been set.

func (*Media) HasMediaResults ¶

func (o *Media) HasMediaResults() bool

HasMediaResults returns a boolean if a field has been set.

func (*Media) HasSensitiveMediaWarning ¶

func (o *Media) HasSensitiveMediaWarning() bool

HasSensitiveMediaWarning returns a boolean if a field has been set.

func (*Media) HasSourceStatusIdStr ¶

func (o *Media) HasSourceStatusIdStr() bool

HasSourceStatusIdStr returns a boolean if a field has been set.

func (*Media) HasSourceUserIdStr ¶

func (o *Media) HasSourceUserIdStr() bool

HasSourceUserIdStr returns a boolean if a field has been set.

func (*Media) HasVideoInfo ¶

func (o *Media) HasVideoInfo() bool

HasVideoInfo returns a boolean if a field has been set.

func (Media) MarshalJSON ¶

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

func (*Media) SetAdditionalMediaInfo ¶

func (o *Media) SetAdditionalMediaInfo(v AdditionalMediaInfo)

SetAdditionalMediaInfo gets a reference to the given AdditionalMediaInfo and assigns it to the AdditionalMediaInfo field.

func (*Media) SetAllowDownloadStatus ¶

func (o *Media) SetAllowDownloadStatus(v AllowDownloadStatus)

SetAllowDownloadStatus gets a reference to the given AllowDownloadStatus and assigns it to the AllowDownloadStatus field.

func (*Media) SetDisplayUrl ¶

func (o *Media) SetDisplayUrl(v string)

SetDisplayUrl sets field value

func (*Media) SetExpandedUrl ¶

func (o *Media) SetExpandedUrl(v string)

SetExpandedUrl sets field value

func (*Media) SetExtAltText ¶

func (o *Media) SetExtAltText(v string)

SetExtAltText gets a reference to the given string and assigns it to the ExtAltText field.

func (*Media) SetExtMediaAvailability ¶

func (o *Media) SetExtMediaAvailability(v ExtMediaAvailability)

SetExtMediaAvailability sets field value

func (*Media) SetFeatures ¶

func (o *Media) SetFeatures(v map[string]interface{})

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

func (*Media) SetIdStr ¶

func (o *Media) SetIdStr(v string)

SetIdStr sets field value

func (*Media) SetIndices ¶

func (o *Media) SetIndices(v []int32)

SetIndices sets field value

func (*Media) SetMediaKey ¶

func (o *Media) SetMediaKey(v string)

SetMediaKey sets field value

func (*Media) SetMediaResults ¶

func (o *Media) SetMediaResults(v MediaResults)

SetMediaResults gets a reference to the given MediaResults and assigns it to the MediaResults field.

func (*Media) SetMediaUrlHttps ¶

func (o *Media) SetMediaUrlHttps(v string)

SetMediaUrlHttps sets field value

func (*Media) SetOriginalInfo ¶

func (o *Media) SetOriginalInfo(v MediaOriginalInfo)

SetOriginalInfo sets field value

func (*Media) SetSensitiveMediaWarning ¶

func (o *Media) SetSensitiveMediaWarning(v SensitiveMediaWarning)

SetSensitiveMediaWarning gets a reference to the given SensitiveMediaWarning and assigns it to the SensitiveMediaWarning field.

func (*Media) SetSizes ¶

func (o *Media) SetSizes(v MediaSizes)

SetSizes sets field value

func (*Media) SetSourceStatusIdStr ¶

func (o *Media) SetSourceStatusIdStr(v string)

SetSourceStatusIdStr gets a reference to the given string and assigns it to the SourceStatusIdStr field.

func (*Media) SetSourceUserIdStr ¶

func (o *Media) SetSourceUserIdStr(v string)

SetSourceUserIdStr gets a reference to the given string and assigns it to the SourceUserIdStr field.

func (*Media) SetType ¶

func (o *Media) SetType(v string)

SetType sets field value

func (*Media) SetUrl ¶

func (o *Media) SetUrl(v string)

SetUrl sets field value

func (*Media) SetVideoInfo ¶

func (o *Media) SetVideoInfo(v MediaVideoInfo)

SetVideoInfo gets a reference to the given MediaVideoInfo and assigns it to the VideoInfo field.

func (Media) ToMap ¶

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

func (*Media) UnmarshalJSON ¶

func (o *Media) UnmarshalJSON(data []byte) (err error)

type MediaExtended ¶

type MediaExtended struct {
	AdditionalMediaInfo   *AdditionalMediaInfo   `json:"additional_media_info,omitempty"`
	AllowDownloadStatus   *AllowDownloadStatus   `json:"allow_download_status,omitempty"`
	DisplayUrl            string                 `json:"display_url"`
	ExpandedUrl           string                 `json:"expanded_url"`
	ExtAltText            *string                `json:"ext_alt_text,omitempty"`
	ExtMediaAvailability  *ExtMediaAvailability  `json:"ext_media_availability,omitempty"`
	Features              map[string]interface{} `json:"features,omitempty"`
	IdStr                 string                 `json:"id_str" validate:"regexp=^[0-9]+$"`
	Indices               []int32                `json:"indices"`
	MediaStats            *MediaStats            `json:"mediaStats,omitempty"`
	MediaKey              string                 `json:"media_key"`
	MediaResults          *MediaResults          `json:"media_results,omitempty"`
	MediaUrlHttps         string                 `json:"media_url_https"`
	OriginalInfo          MediaOriginalInfo      `json:"original_info"`
	SensitiveMediaWarning *SensitiveMediaWarning `json:"sensitive_media_warning,omitempty"`
	Sizes                 MediaSizes             `json:"sizes"`
	SourceStatusIdStr     *string                `json:"source_status_id_str,omitempty" validate:"regexp=^[0-9]+$"`
	SourceUserIdStr       *string                `json:"source_user_id_str,omitempty" validate:"regexp=^[0-9]+$"`
	Type                  string                 `json:"type"`
	Url                   string                 `json:"url"`
	VideoInfo             *MediaVideoInfo        `json:"video_info,omitempty"`
}

MediaExtended struct for MediaExtended

func NewMediaExtended ¶

func NewMediaExtended(displayUrl string, expandedUrl string, idStr string, indices []int32, mediaKey string, mediaUrlHttps string, originalInfo MediaOriginalInfo, sizes MediaSizes, type_ string, url string) *MediaExtended

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

func NewMediaExtendedWithDefaults ¶

func NewMediaExtendedWithDefaults() *MediaExtended

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

func (*MediaExtended) GetAdditionalMediaInfo ¶

func (o *MediaExtended) GetAdditionalMediaInfo() AdditionalMediaInfo

GetAdditionalMediaInfo returns the AdditionalMediaInfo field value if set, zero value otherwise.

func (*MediaExtended) GetAdditionalMediaInfoOk ¶

func (o *MediaExtended) GetAdditionalMediaInfoOk() (*AdditionalMediaInfo, bool)

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

func (*MediaExtended) GetAllowDownloadStatus ¶

func (o *MediaExtended) GetAllowDownloadStatus() AllowDownloadStatus

GetAllowDownloadStatus returns the AllowDownloadStatus field value if set, zero value otherwise.

func (*MediaExtended) GetAllowDownloadStatusOk ¶

func (o *MediaExtended) GetAllowDownloadStatusOk() (*AllowDownloadStatus, bool)

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

func (*MediaExtended) GetDisplayUrl ¶

func (o *MediaExtended) GetDisplayUrl() string

GetDisplayUrl returns the DisplayUrl field value

func (*MediaExtended) GetDisplayUrlOk ¶

func (o *MediaExtended) GetDisplayUrlOk() (*string, bool)

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

func (*MediaExtended) GetExpandedUrl ¶

func (o *MediaExtended) GetExpandedUrl() string

GetExpandedUrl returns the ExpandedUrl field value

func (*MediaExtended) GetExpandedUrlOk ¶

func (o *MediaExtended) GetExpandedUrlOk() (*string, bool)

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

func (*MediaExtended) GetExtAltText ¶

func (o *MediaExtended) GetExtAltText() string

GetExtAltText returns the ExtAltText field value if set, zero value otherwise.

func (*MediaExtended) GetExtAltTextOk ¶

func (o *MediaExtended) GetExtAltTextOk() (*string, bool)

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

func (*MediaExtended) GetExtMediaAvailability ¶

func (o *MediaExtended) GetExtMediaAvailability() ExtMediaAvailability

GetExtMediaAvailability returns the ExtMediaAvailability field value if set, zero value otherwise.

func (*MediaExtended) GetExtMediaAvailabilityOk ¶

func (o *MediaExtended) GetExtMediaAvailabilityOk() (*ExtMediaAvailability, bool)

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

func (*MediaExtended) GetFeatures ¶

func (o *MediaExtended) GetFeatures() map[string]interface{}

GetFeatures returns the Features field value if set, zero value otherwise.

func (*MediaExtended) GetFeaturesOk ¶

func (o *MediaExtended) GetFeaturesOk() (map[string]interface{}, bool)

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

func (*MediaExtended) GetIdStr ¶

func (o *MediaExtended) GetIdStr() string

GetIdStr returns the IdStr field value

func (*MediaExtended) GetIdStrOk ¶

func (o *MediaExtended) GetIdStrOk() (*string, bool)

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

func (*MediaExtended) GetIndices ¶

func (o *MediaExtended) GetIndices() []int32

GetIndices returns the Indices field value

func (*MediaExtended) GetIndicesOk ¶

func (o *MediaExtended) GetIndicesOk() ([]int32, bool)

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

func (*MediaExtended) GetMediaKey ¶

func (o *MediaExtended) GetMediaKey() string

GetMediaKey returns the MediaKey field value

func (*MediaExtended) GetMediaKeyOk ¶

func (o *MediaExtended) GetMediaKeyOk() (*string, bool)

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

func (*MediaExtended) GetMediaResults ¶

func (o *MediaExtended) GetMediaResults() MediaResults

GetMediaResults returns the MediaResults field value if set, zero value otherwise.

func (*MediaExtended) GetMediaResultsOk ¶

func (o *MediaExtended) GetMediaResultsOk() (*MediaResults, bool)

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

func (*MediaExtended) GetMediaStats ¶

func (o *MediaExtended) GetMediaStats() MediaStats

GetMediaStats returns the MediaStats field value if set, zero value otherwise.

func (*MediaExtended) GetMediaStatsOk ¶

func (o *MediaExtended) GetMediaStatsOk() (*MediaStats, bool)

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

func (*MediaExtended) GetMediaUrlHttps ¶

func (o *MediaExtended) GetMediaUrlHttps() string

GetMediaUrlHttps returns the MediaUrlHttps field value

func (*MediaExtended) GetMediaUrlHttpsOk ¶

func (o *MediaExtended) GetMediaUrlHttpsOk() (*string, bool)

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

func (*MediaExtended) GetOriginalInfo ¶

func (o *MediaExtended) GetOriginalInfo() MediaOriginalInfo

GetOriginalInfo returns the OriginalInfo field value

func (*MediaExtended) GetOriginalInfoOk ¶

func (o *MediaExtended) GetOriginalInfoOk() (*MediaOriginalInfo, bool)

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

func (*MediaExtended) GetSensitiveMediaWarning ¶

func (o *MediaExtended) GetSensitiveMediaWarning() SensitiveMediaWarning

GetSensitiveMediaWarning returns the SensitiveMediaWarning field value if set, zero value otherwise.

func (*MediaExtended) GetSensitiveMediaWarningOk ¶

func (o *MediaExtended) GetSensitiveMediaWarningOk() (*SensitiveMediaWarning, bool)

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

func (*MediaExtended) GetSizes ¶

func (o *MediaExtended) GetSizes() MediaSizes

GetSizes returns the Sizes field value

func (*MediaExtended) GetSizesOk ¶

func (o *MediaExtended) GetSizesOk() (*MediaSizes, bool)

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

func (*MediaExtended) GetSourceStatusIdStr ¶

func (o *MediaExtended) GetSourceStatusIdStr() string

GetSourceStatusIdStr returns the SourceStatusIdStr field value if set, zero value otherwise.

func (*MediaExtended) GetSourceStatusIdStrOk ¶

func (o *MediaExtended) GetSourceStatusIdStrOk() (*string, bool)

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

func (*MediaExtended) GetSourceUserIdStr ¶

func (o *MediaExtended) GetSourceUserIdStr() string

GetSourceUserIdStr returns the SourceUserIdStr field value if set, zero value otherwise.

func (*MediaExtended) GetSourceUserIdStrOk ¶

func (o *MediaExtended) GetSourceUserIdStrOk() (*string, bool)

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

func (*MediaExtended) GetType ¶

func (o *MediaExtended) GetType() string

GetType returns the Type field value

func (*MediaExtended) GetTypeOk ¶

func (o *MediaExtended) GetTypeOk() (*string, bool)

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

func (*MediaExtended) GetUrl ¶

func (o *MediaExtended) GetUrl() string

GetUrl returns the Url field value

func (*MediaExtended) GetUrlOk ¶

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

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

func (*MediaExtended) GetVideoInfo ¶

func (o *MediaExtended) GetVideoInfo() MediaVideoInfo

GetVideoInfo returns the VideoInfo field value if set, zero value otherwise.

func (*MediaExtended) GetVideoInfoOk ¶

func (o *MediaExtended) GetVideoInfoOk() (*MediaVideoInfo, bool)

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

func (*MediaExtended) HasAdditionalMediaInfo ¶

func (o *MediaExtended) HasAdditionalMediaInfo() bool

HasAdditionalMediaInfo returns a boolean if a field has been set.

func (*MediaExtended) HasAllowDownloadStatus ¶

func (o *MediaExtended) HasAllowDownloadStatus() bool

HasAllowDownloadStatus returns a boolean if a field has been set.

func (*MediaExtended) HasExtAltText ¶

func (o *MediaExtended) HasExtAltText() bool

HasExtAltText returns a boolean if a field has been set.

func (*MediaExtended) HasExtMediaAvailability ¶

func (o *MediaExtended) HasExtMediaAvailability() bool

HasExtMediaAvailability returns a boolean if a field has been set.

func (*MediaExtended) HasFeatures ¶

func (o *MediaExtended) HasFeatures() bool

HasFeatures returns a boolean if a field has been set.

func (*MediaExtended) HasMediaResults ¶

func (o *MediaExtended) HasMediaResults() bool

HasMediaResults returns a boolean if a field has been set.

func (*MediaExtended) HasMediaStats ¶

func (o *MediaExtended) HasMediaStats() bool

HasMediaStats returns a boolean if a field has been set.

func (*MediaExtended) HasSensitiveMediaWarning ¶

func (o *MediaExtended) HasSensitiveMediaWarning() bool

HasSensitiveMediaWarning returns a boolean if a field has been set.

func (*MediaExtended) HasSourceStatusIdStr ¶

func (o *MediaExtended) HasSourceStatusIdStr() bool

HasSourceStatusIdStr returns a boolean if a field has been set.

func (*MediaExtended) HasSourceUserIdStr ¶

func (o *MediaExtended) HasSourceUserIdStr() bool

HasSourceUserIdStr returns a boolean if a field has been set.

func (*MediaExtended) HasVideoInfo ¶

func (o *MediaExtended) HasVideoInfo() bool

HasVideoInfo returns a boolean if a field has been set.

func (MediaExtended) MarshalJSON ¶

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

func (*MediaExtended) SetAdditionalMediaInfo ¶

func (o *MediaExtended) SetAdditionalMediaInfo(v AdditionalMediaInfo)

SetAdditionalMediaInfo gets a reference to the given AdditionalMediaInfo and assigns it to the AdditionalMediaInfo field.

func (*MediaExtended) SetAllowDownloadStatus ¶

func (o *MediaExtended) SetAllowDownloadStatus(v AllowDownloadStatus)

SetAllowDownloadStatus gets a reference to the given AllowDownloadStatus and assigns it to the AllowDownloadStatus field.

func (*MediaExtended) SetDisplayUrl ¶

func (o *MediaExtended) SetDisplayUrl(v string)

SetDisplayUrl sets field value

func (*MediaExtended) SetExpandedUrl ¶

func (o *MediaExtended) SetExpandedUrl(v string)

SetExpandedUrl sets field value

func (*MediaExtended) SetExtAltText ¶

func (o *MediaExtended) SetExtAltText(v string)

SetExtAltText gets a reference to the given string and assigns it to the ExtAltText field.

func (*MediaExtended) SetExtMediaAvailability ¶

func (o *MediaExtended) SetExtMediaAvailability(v ExtMediaAvailability)

SetExtMediaAvailability gets a reference to the given ExtMediaAvailability and assigns it to the ExtMediaAvailability field.

func (*MediaExtended) SetFeatures ¶

func (o *MediaExtended) SetFeatures(v map[string]interface{})

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

func (*MediaExtended) SetIdStr ¶

func (o *MediaExtended) SetIdStr(v string)

SetIdStr sets field value

func (*MediaExtended) SetIndices ¶

func (o *MediaExtended) SetIndices(v []int32)

SetIndices sets field value

func (*MediaExtended) SetMediaKey ¶

func (o *MediaExtended) SetMediaKey(v string)

SetMediaKey sets field value

func (*MediaExtended) SetMediaResults ¶

func (o *MediaExtended) SetMediaResults(v MediaResults)

SetMediaResults gets a reference to the given MediaResults and assigns it to the MediaResults field.

func (*MediaExtended) SetMediaStats ¶

func (o *MediaExtended) SetMediaStats(v MediaStats)

SetMediaStats gets a reference to the given MediaStats and assigns it to the MediaStats field.

func (*MediaExtended) SetMediaUrlHttps ¶

func (o *MediaExtended) SetMediaUrlHttps(v string)

SetMediaUrlHttps sets field value

func (*MediaExtended) SetOriginalInfo ¶

func (o *MediaExtended) SetOriginalInfo(v MediaOriginalInfo)

SetOriginalInfo sets field value

func (*MediaExtended) SetSensitiveMediaWarning ¶

func (o *MediaExtended) SetSensitiveMediaWarning(v SensitiveMediaWarning)

SetSensitiveMediaWarning gets a reference to the given SensitiveMediaWarning and assigns it to the SensitiveMediaWarning field.

func (*MediaExtended) SetSizes ¶

func (o *MediaExtended) SetSizes(v MediaSizes)

SetSizes sets field value

func (*MediaExtended) SetSourceStatusIdStr ¶

func (o *MediaExtended) SetSourceStatusIdStr(v string)

SetSourceStatusIdStr gets a reference to the given string and assigns it to the SourceStatusIdStr field.

func (*MediaExtended) SetSourceUserIdStr ¶

func (o *MediaExtended) SetSourceUserIdStr(v string)

SetSourceUserIdStr gets a reference to the given string and assigns it to the SourceUserIdStr field.

func (*MediaExtended) SetType ¶

func (o *MediaExtended) SetType(v string)

SetType sets field value

func (*MediaExtended) SetUrl ¶

func (o *MediaExtended) SetUrl(v string)

SetUrl sets field value

func (*MediaExtended) SetVideoInfo ¶

func (o *MediaExtended) SetVideoInfo(v MediaVideoInfo)

SetVideoInfo gets a reference to the given MediaVideoInfo and assigns it to the VideoInfo field.

func (MediaExtended) ToMap ¶

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

func (*MediaExtended) UnmarshalJSON ¶

func (o *MediaExtended) UnmarshalJSON(data []byte) (err error)

type MediaOriginalInfo ¶

type MediaOriginalInfo struct {
	FocusRects []MediaOriginalInfoFocusRect `json:"focus_rects,omitempty"`
	Height     int32                        `json:"height"`
	Width      int32                        `json:"width"`
}

MediaOriginalInfo struct for MediaOriginalInfo

func NewMediaOriginalInfo ¶

func NewMediaOriginalInfo(height int32, width int32) *MediaOriginalInfo

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

func NewMediaOriginalInfoWithDefaults ¶

func NewMediaOriginalInfoWithDefaults() *MediaOriginalInfo

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

func (*MediaOriginalInfo) GetFocusRects ¶

func (o *MediaOriginalInfo) GetFocusRects() []MediaOriginalInfoFocusRect

GetFocusRects returns the FocusRects field value if set, zero value otherwise.

func (*MediaOriginalInfo) GetFocusRectsOk ¶

func (o *MediaOriginalInfo) GetFocusRectsOk() ([]MediaOriginalInfoFocusRect, bool)

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

func (*MediaOriginalInfo) GetHeight ¶

func (o *MediaOriginalInfo) GetHeight() int32

GetHeight returns the Height field value

func (*MediaOriginalInfo) GetHeightOk ¶

func (o *MediaOriginalInfo) GetHeightOk() (*int32, bool)

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

func (*MediaOriginalInfo) GetWidth ¶

func (o *MediaOriginalInfo) GetWidth() int32

GetWidth returns the Width field value

func (*MediaOriginalInfo) GetWidthOk ¶

func (o *MediaOriginalInfo) GetWidthOk() (*int32, bool)

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

func (*MediaOriginalInfo) HasFocusRects ¶

func (o *MediaOriginalInfo) HasFocusRects() bool

HasFocusRects returns a boolean if a field has been set.

func (MediaOriginalInfo) MarshalJSON ¶

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

func (*MediaOriginalInfo) SetFocusRects ¶

func (o *MediaOriginalInfo) SetFocusRects(v []MediaOriginalInfoFocusRect)

SetFocusRects gets a reference to the given []MediaOriginalInfoFocusRect and assigns it to the FocusRects field.

func (*MediaOriginalInfo) SetHeight ¶

func (o *MediaOriginalInfo) SetHeight(v int32)

SetHeight sets field value

func (*MediaOriginalInfo) SetWidth ¶

func (o *MediaOriginalInfo) SetWidth(v int32)

SetWidth sets field value

func (MediaOriginalInfo) ToMap ¶

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

func (*MediaOriginalInfo) UnmarshalJSON ¶

func (o *MediaOriginalInfo) UnmarshalJSON(data []byte) (err error)

type MediaOriginalInfoFocusRect ¶

type MediaOriginalInfoFocusRect struct {
	H int32 `json:"h"`
	W int32 `json:"w"`
	X int32 `json:"x"`
	Y int32 `json:"y"`
}

MediaOriginalInfoFocusRect struct for MediaOriginalInfoFocusRect

func NewMediaOriginalInfoFocusRect ¶

func NewMediaOriginalInfoFocusRect(h int32, w int32, x int32, y int32) *MediaOriginalInfoFocusRect

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

func NewMediaOriginalInfoFocusRectWithDefaults ¶

func NewMediaOriginalInfoFocusRectWithDefaults() *MediaOriginalInfoFocusRect

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

func (*MediaOriginalInfoFocusRect) GetH ¶

GetH returns the H field value

func (*MediaOriginalInfoFocusRect) GetHOk ¶

func (o *MediaOriginalInfoFocusRect) GetHOk() (*int32, bool)

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

func (*MediaOriginalInfoFocusRect) GetW ¶

GetW returns the W field value

func (*MediaOriginalInfoFocusRect) GetWOk ¶

func (o *MediaOriginalInfoFocusRect) GetWOk() (*int32, bool)

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

func (*MediaOriginalInfoFocusRect) GetX ¶

GetX returns the X field value

func (*MediaOriginalInfoFocusRect) GetXOk ¶

func (o *MediaOriginalInfoFocusRect) GetXOk() (*int32, bool)

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

func (*MediaOriginalInfoFocusRect) GetY ¶

GetY returns the Y field value

func (*MediaOriginalInfoFocusRect) GetYOk ¶

func (o *MediaOriginalInfoFocusRect) GetYOk() (*int32, bool)

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

func (MediaOriginalInfoFocusRect) MarshalJSON ¶

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

func (*MediaOriginalInfoFocusRect) SetH ¶

func (o *MediaOriginalInfoFocusRect) SetH(v int32)

SetH sets field value

func (*MediaOriginalInfoFocusRect) SetW ¶

func (o *MediaOriginalInfoFocusRect) SetW(v int32)

SetW sets field value

func (*MediaOriginalInfoFocusRect) SetX ¶

func (o *MediaOriginalInfoFocusRect) SetX(v int32)

SetX sets field value

func (*MediaOriginalInfoFocusRect) SetY ¶

func (o *MediaOriginalInfoFocusRect) SetY(v int32)

SetY sets field value

func (MediaOriginalInfoFocusRect) ToMap ¶

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

func (*MediaOriginalInfoFocusRect) UnmarshalJSON ¶

func (o *MediaOriginalInfoFocusRect) UnmarshalJSON(data []byte) (err error)

type MediaResult ¶

type MediaResult struct {
	MediaKey string `json:"media_key"`
}

MediaResult struct for MediaResult

func NewMediaResult ¶

func NewMediaResult(mediaKey string) *MediaResult

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

func NewMediaResultWithDefaults ¶

func NewMediaResultWithDefaults() *MediaResult

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

func (*MediaResult) GetMediaKey ¶

func (o *MediaResult) GetMediaKey() string

GetMediaKey returns the MediaKey field value

func (*MediaResult) GetMediaKeyOk ¶

func (o *MediaResult) GetMediaKeyOk() (*string, bool)

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

func (MediaResult) MarshalJSON ¶

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

func (*MediaResult) SetMediaKey ¶

func (o *MediaResult) SetMediaKey(v string)

SetMediaKey sets field value

func (MediaResult) ToMap ¶

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

func (*MediaResult) UnmarshalJSON ¶

func (o *MediaResult) UnmarshalJSON(data []byte) (err error)

type MediaResults ¶

type MediaResults struct {
	Result MediaResult `json:"result"`
}

MediaResults struct for MediaResults

func NewMediaResults ¶

func NewMediaResults(result MediaResult) *MediaResults

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

func NewMediaResultsWithDefaults ¶

func NewMediaResultsWithDefaults() *MediaResults

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

func (*MediaResults) GetResult ¶

func (o *MediaResults) GetResult() MediaResult

GetResult returns the Result field value

func (*MediaResults) GetResultOk ¶

func (o *MediaResults) GetResultOk() (*MediaResult, bool)

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

func (MediaResults) MarshalJSON ¶

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

func (*MediaResults) SetResult ¶

func (o *MediaResults) SetResult(v MediaResult)

SetResult sets field value

func (MediaResults) ToMap ¶

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

func (*MediaResults) UnmarshalJSON ¶

func (o *MediaResults) UnmarshalJSON(data []byte) (err error)

type MediaSize ¶

type MediaSize struct {
	H      int32  `json:"h"`
	Resize string `json:"resize"`
	W      int32  `json:"w"`
}

MediaSize struct for MediaSize

func NewMediaSize ¶

func NewMediaSize(h int32, resize string, w int32) *MediaSize

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

func NewMediaSizeWithDefaults ¶

func NewMediaSizeWithDefaults() *MediaSize

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

func (*MediaSize) GetH ¶

func (o *MediaSize) GetH() int32

GetH returns the H field value

func (*MediaSize) GetHOk ¶

func (o *MediaSize) GetHOk() (*int32, bool)

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

func (*MediaSize) GetResize ¶

func (o *MediaSize) GetResize() string

GetResize returns the Resize field value

func (*MediaSize) GetResizeOk ¶

func (o *MediaSize) GetResizeOk() (*string, bool)

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

func (*MediaSize) GetW ¶

func (o *MediaSize) GetW() int32

GetW returns the W field value

func (*MediaSize) GetWOk ¶

func (o *MediaSize) GetWOk() (*int32, bool)

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

func (MediaSize) MarshalJSON ¶

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

func (*MediaSize) SetH ¶

func (o *MediaSize) SetH(v int32)

SetH sets field value

func (*MediaSize) SetResize ¶

func (o *MediaSize) SetResize(v string)

SetResize sets field value

func (*MediaSize) SetW ¶

func (o *MediaSize) SetW(v int32)

SetW sets field value

func (MediaSize) ToMap ¶

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

func (*MediaSize) UnmarshalJSON ¶

func (o *MediaSize) UnmarshalJSON(data []byte) (err error)

type MediaSizes ¶

type MediaSizes struct {
	Large  MediaSize `json:"large"`
	Medium MediaSize `json:"medium"`
	Small  MediaSize `json:"small"`
	Thumb  MediaSize `json:"thumb"`
}

MediaSizes struct for MediaSizes

func NewMediaSizes ¶

func NewMediaSizes(large MediaSize, medium MediaSize, small MediaSize, thumb MediaSize) *MediaSizes

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

func NewMediaSizesWithDefaults ¶

func NewMediaSizesWithDefaults() *MediaSizes

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

func (*MediaSizes) GetLarge ¶

func (o *MediaSizes) GetLarge() MediaSize

GetLarge returns the Large field value

func (*MediaSizes) GetLargeOk ¶

func (o *MediaSizes) GetLargeOk() (*MediaSize, bool)

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

func (*MediaSizes) GetMedium ¶

func (o *MediaSizes) GetMedium() MediaSize

GetMedium returns the Medium field value

func (*MediaSizes) GetMediumOk ¶

func (o *MediaSizes) GetMediumOk() (*MediaSize, bool)

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

func (*MediaSizes) GetSmall ¶

func (o *MediaSizes) GetSmall() MediaSize

GetSmall returns the Small field value

func (*MediaSizes) GetSmallOk ¶

func (o *MediaSizes) GetSmallOk() (*MediaSize, bool)

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

func (*MediaSizes) GetThumb ¶

func (o *MediaSizes) GetThumb() MediaSize

GetThumb returns the Thumb field value

func (*MediaSizes) GetThumbOk ¶

func (o *MediaSizes) GetThumbOk() (*MediaSize, bool)

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

func (MediaSizes) MarshalJSON ¶

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

func (*MediaSizes) SetLarge ¶

func (o *MediaSizes) SetLarge(v MediaSize)

SetLarge sets field value

func (*MediaSizes) SetMedium ¶

func (o *MediaSizes) SetMedium(v MediaSize)

SetMedium sets field value

func (*MediaSizes) SetSmall ¶

func (o *MediaSizes) SetSmall(v MediaSize)

SetSmall sets field value

func (*MediaSizes) SetThumb ¶

func (o *MediaSizes) SetThumb(v MediaSize)

SetThumb sets field value

func (MediaSizes) ToMap ¶

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

func (*MediaSizes) UnmarshalJSON ¶

func (o *MediaSizes) UnmarshalJSON(data []byte) (err error)

type MediaStats ¶

type MediaStats struct {
	ViewCount int32 `json:"viewCount"`
}

MediaStats struct for MediaStats

func NewMediaStats ¶

func NewMediaStats(viewCount int32) *MediaStats

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

func NewMediaStatsWithDefaults ¶

func NewMediaStatsWithDefaults() *MediaStats

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

func (*MediaStats) GetViewCount ¶

func (o *MediaStats) GetViewCount() int32

GetViewCount returns the ViewCount field value

func (*MediaStats) GetViewCountOk ¶

func (o *MediaStats) GetViewCountOk() (*int32, bool)

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

func (MediaStats) MarshalJSON ¶

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

func (*MediaStats) SetViewCount ¶

func (o *MediaStats) SetViewCount(v int32)

SetViewCount sets field value

func (MediaStats) ToMap ¶

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

func (*MediaStats) UnmarshalJSON ¶

func (o *MediaStats) UnmarshalJSON(data []byte) (err error)

type MediaVideoInfo ¶

type MediaVideoInfo struct {
	AspectRatio    []int32                 `json:"aspect_ratio"`
	DurationMillis *int32                  `json:"duration_millis,omitempty"`
	Variants       []MediaVideoInfoVariant `json:"variants"`
}

MediaVideoInfo struct for MediaVideoInfo

func NewMediaVideoInfo ¶

func NewMediaVideoInfo(aspectRatio []int32, variants []MediaVideoInfoVariant) *MediaVideoInfo

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

func NewMediaVideoInfoWithDefaults ¶

func NewMediaVideoInfoWithDefaults() *MediaVideoInfo

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

func (*MediaVideoInfo) GetAspectRatio ¶

func (o *MediaVideoInfo) GetAspectRatio() []int32

GetAspectRatio returns the AspectRatio field value

func (*MediaVideoInfo) GetAspectRatioOk ¶

func (o *MediaVideoInfo) GetAspectRatioOk() ([]int32, bool)

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

func (*MediaVideoInfo) GetDurationMillis ¶

func (o *MediaVideoInfo) GetDurationMillis() int32

GetDurationMillis returns the DurationMillis field value if set, zero value otherwise.

func (*MediaVideoInfo) GetDurationMillisOk ¶

func (o *MediaVideoInfo) GetDurationMillisOk() (*int32, bool)

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

func (*MediaVideoInfo) GetVariants ¶

func (o *MediaVideoInfo) GetVariants() []MediaVideoInfoVariant

GetVariants returns the Variants field value

func (*MediaVideoInfo) GetVariantsOk ¶

func (o *MediaVideoInfo) GetVariantsOk() ([]MediaVideoInfoVariant, bool)

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

func (*MediaVideoInfo) HasDurationMillis ¶

func (o *MediaVideoInfo) HasDurationMillis() bool

HasDurationMillis returns a boolean if a field has been set.

func (MediaVideoInfo) MarshalJSON ¶

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

func (*MediaVideoInfo) SetAspectRatio ¶

func (o *MediaVideoInfo) SetAspectRatio(v []int32)

SetAspectRatio sets field value

func (*MediaVideoInfo) SetDurationMillis ¶

func (o *MediaVideoInfo) SetDurationMillis(v int32)

SetDurationMillis gets a reference to the given int32 and assigns it to the DurationMillis field.

func (*MediaVideoInfo) SetVariants ¶

func (o *MediaVideoInfo) SetVariants(v []MediaVideoInfoVariant)

SetVariants sets field value

func (MediaVideoInfo) ToMap ¶

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

func (*MediaVideoInfo) UnmarshalJSON ¶

func (o *MediaVideoInfo) UnmarshalJSON(data []byte) (err error)

type MediaVideoInfoVariant ¶

type MediaVideoInfoVariant struct {
	Bitrate     *int32 `json:"bitrate,omitempty"`
	ContentType string `json:"content_type"`
	Url         string `json:"url"`
}

MediaVideoInfoVariant struct for MediaVideoInfoVariant

func NewMediaVideoInfoVariant ¶

func NewMediaVideoInfoVariant(contentType string, url string) *MediaVideoInfoVariant

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

func NewMediaVideoInfoVariantWithDefaults ¶

func NewMediaVideoInfoVariantWithDefaults() *MediaVideoInfoVariant

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

func (*MediaVideoInfoVariant) GetBitrate ¶

func (o *MediaVideoInfoVariant) GetBitrate() int32

GetBitrate returns the Bitrate field value if set, zero value otherwise.

func (*MediaVideoInfoVariant) GetBitrateOk ¶

func (o *MediaVideoInfoVariant) GetBitrateOk() (*int32, bool)

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

func (*MediaVideoInfoVariant) GetContentType ¶

func (o *MediaVideoInfoVariant) GetContentType() string

GetContentType returns the ContentType field value

func (*MediaVideoInfoVariant) GetContentTypeOk ¶

func (o *MediaVideoInfoVariant) GetContentTypeOk() (*string, bool)

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

func (*MediaVideoInfoVariant) GetUrl ¶

func (o *MediaVideoInfoVariant) GetUrl() string

GetUrl returns the Url field value

func (*MediaVideoInfoVariant) GetUrlOk ¶

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

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

func (*MediaVideoInfoVariant) HasBitrate ¶

func (o *MediaVideoInfoVariant) HasBitrate() bool

HasBitrate returns a boolean if a field has been set.

func (MediaVideoInfoVariant) MarshalJSON ¶

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

func (*MediaVideoInfoVariant) SetBitrate ¶

func (o *MediaVideoInfoVariant) SetBitrate(v int32)

SetBitrate gets a reference to the given int32 and assigns it to the Bitrate field.

func (*MediaVideoInfoVariant) SetContentType ¶

func (o *MediaVideoInfoVariant) SetContentType(v string)

SetContentType sets field value

func (*MediaVideoInfoVariant) SetUrl ¶

func (o *MediaVideoInfoVariant) SetUrl(v string)

SetUrl sets field value

func (MediaVideoInfoVariant) ToMap ¶

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

func (*MediaVideoInfoVariant) UnmarshalJSON ¶

func (o *MediaVideoInfoVariant) UnmarshalJSON(data []byte) (err error)

type MediaVisibilityResults ¶

type MediaVisibilityResults struct {
	BlurredImageInterstitial MediaVisibilityResultsBlurredImageInterstitial `json:"blurred_image_interstitial"`
}

MediaVisibilityResults struct for MediaVisibilityResults

func NewMediaVisibilityResults ¶

func NewMediaVisibilityResults(blurredImageInterstitial MediaVisibilityResultsBlurredImageInterstitial) *MediaVisibilityResults

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

func NewMediaVisibilityResultsWithDefaults ¶

func NewMediaVisibilityResultsWithDefaults() *MediaVisibilityResults

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

func (*MediaVisibilityResults) GetBlurredImageInterstitial ¶

GetBlurredImageInterstitial returns the BlurredImageInterstitial field value

func (*MediaVisibilityResults) GetBlurredImageInterstitialOk ¶

func (o *MediaVisibilityResults) GetBlurredImageInterstitialOk() (*MediaVisibilityResultsBlurredImageInterstitial, bool)

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

func (MediaVisibilityResults) MarshalJSON ¶

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

func (*MediaVisibilityResults) SetBlurredImageInterstitial ¶

SetBlurredImageInterstitial sets field value

func (MediaVisibilityResults) ToMap ¶

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

func (*MediaVisibilityResults) UnmarshalJSON ¶

func (o *MediaVisibilityResults) UnmarshalJSON(data []byte) (err error)

type MediaVisibilityResultsBlurredImageInterstitial ¶

type MediaVisibilityResultsBlurredImageInterstitial struct {
	Opacity float32               `json:"opacity"`
	Text    TweetInterstitialText `json:"text"`
	Title   TweetInterstitialText `json:"title"`
}

MediaVisibilityResultsBlurredImageInterstitial struct for MediaVisibilityResultsBlurredImageInterstitial

func NewMediaVisibilityResultsBlurredImageInterstitial ¶

func NewMediaVisibilityResultsBlurredImageInterstitial(opacity float32, text TweetInterstitialText, title TweetInterstitialText) *MediaVisibilityResultsBlurredImageInterstitial

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

func NewMediaVisibilityResultsBlurredImageInterstitialWithDefaults ¶

func NewMediaVisibilityResultsBlurredImageInterstitialWithDefaults() *MediaVisibilityResultsBlurredImageInterstitial

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

func (*MediaVisibilityResultsBlurredImageInterstitial) GetOpacity ¶

GetOpacity returns the Opacity field value

func (*MediaVisibilityResultsBlurredImageInterstitial) GetOpacityOk ¶

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

func (*MediaVisibilityResultsBlurredImageInterstitial) GetText ¶

GetText returns the Text field value

func (*MediaVisibilityResultsBlurredImageInterstitial) GetTextOk ¶

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

func (*MediaVisibilityResultsBlurredImageInterstitial) GetTitle ¶

GetTitle returns the Title field value

func (*MediaVisibilityResultsBlurredImageInterstitial) GetTitleOk ¶

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

func (MediaVisibilityResultsBlurredImageInterstitial) MarshalJSON ¶

func (*MediaVisibilityResultsBlurredImageInterstitial) SetOpacity ¶

SetOpacity sets field value

func (*MediaVisibilityResultsBlurredImageInterstitial) SetText ¶

SetText sets field value

func (*MediaVisibilityResultsBlurredImageInterstitial) SetTitle ¶

SetTitle sets field value

func (MediaVisibilityResultsBlurredImageInterstitial) ToMap ¶

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

func (*MediaVisibilityResultsBlurredImageInterstitial) UnmarshalJSON ¶

func (o *MediaVisibilityResultsBlurredImageInterstitial) UnmarshalJSON(data []byte) (err error)

type ModuleEntry ¶

type ModuleEntry struct {
	ClientEventInfo *ClientEventInfo `json:"clientEventInfo,omitempty"`
	FeedbackInfo    *FeedbackInfo    `json:"feedbackInfo,omitempty"`
	ItemContent     ItemContentUnion `json:"itemContent"`
}

ModuleEntry struct for ModuleEntry

func NewModuleEntry ¶

func NewModuleEntry(itemContent ItemContentUnion) *ModuleEntry

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

func NewModuleEntryWithDefaults ¶

func NewModuleEntryWithDefaults() *ModuleEntry

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

func (*ModuleEntry) GetClientEventInfo ¶

func (o *ModuleEntry) GetClientEventInfo() ClientEventInfo

GetClientEventInfo returns the ClientEventInfo field value if set, zero value otherwise.

func (*ModuleEntry) GetClientEventInfoOk ¶

func (o *ModuleEntry) GetClientEventInfoOk() (*ClientEventInfo, bool)

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

func (*ModuleEntry) GetFeedbackInfo ¶

func (o *ModuleEntry) GetFeedbackInfo() FeedbackInfo

GetFeedbackInfo returns the FeedbackInfo field value if set, zero value otherwise.

func (*ModuleEntry) GetFeedbackInfoOk ¶

func (o *ModuleEntry) GetFeedbackInfoOk() (*FeedbackInfo, bool)

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

func (*ModuleEntry) GetItemContent ¶

func (o *ModuleEntry) GetItemContent() ItemContentUnion

GetItemContent returns the ItemContent field value

func (*ModuleEntry) GetItemContentOk ¶

func (o *ModuleEntry) GetItemContentOk() (*ItemContentUnion, bool)

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

func (*ModuleEntry) HasClientEventInfo ¶

func (o *ModuleEntry) HasClientEventInfo() bool

HasClientEventInfo returns a boolean if a field has been set.

func (*ModuleEntry) HasFeedbackInfo ¶

func (o *ModuleEntry) HasFeedbackInfo() bool

HasFeedbackInfo returns a boolean if a field has been set.

func (ModuleEntry) MarshalJSON ¶

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

func (*ModuleEntry) SetClientEventInfo ¶

func (o *ModuleEntry) SetClientEventInfo(v ClientEventInfo)

SetClientEventInfo gets a reference to the given ClientEventInfo and assigns it to the ClientEventInfo field.

func (*ModuleEntry) SetFeedbackInfo ¶

func (o *ModuleEntry) SetFeedbackInfo(v FeedbackInfo)

SetFeedbackInfo gets a reference to the given FeedbackInfo and assigns it to the FeedbackInfo field.

func (*ModuleEntry) SetItemContent ¶

func (o *ModuleEntry) SetItemContent(v ItemContentUnion)

SetItemContent sets field value

func (ModuleEntry) ToMap ¶

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

func (*ModuleEntry) UnmarshalJSON ¶

func (o *ModuleEntry) UnmarshalJSON(data []byte) (err error)

type ModuleItem ¶

type ModuleItem struct {
	EntryId string      `json:"entryId" validate:"regexp=^(([a-z]+|[0-9]+|[0-9a-f]+)(-|$))+"`
	Item    ModuleEntry `json:"item"`
}

ModuleItem struct for ModuleItem

func NewModuleItem ¶

func NewModuleItem(entryId string, item ModuleEntry) *ModuleItem

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

func NewModuleItemWithDefaults ¶

func NewModuleItemWithDefaults() *ModuleItem

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

func (*ModuleItem) GetEntryId ¶

func (o *ModuleItem) GetEntryId() string

GetEntryId returns the EntryId field value

func (*ModuleItem) GetEntryIdOk ¶

func (o *ModuleItem) GetEntryIdOk() (*string, bool)

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

func (*ModuleItem) GetItem ¶

func (o *ModuleItem) GetItem() ModuleEntry

GetItem returns the Item field value

func (*ModuleItem) GetItemOk ¶

func (o *ModuleItem) GetItemOk() (*ModuleEntry, bool)

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

func (ModuleItem) MarshalJSON ¶

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

func (*ModuleItem) SetEntryId ¶

func (o *ModuleItem) SetEntryId(v string)

SetEntryId sets field value

func (*ModuleItem) SetItem ¶

func (o *ModuleItem) SetItem(v ModuleEntry)

SetItem sets field value

func (ModuleItem) ToMap ¶

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

func (*ModuleItem) UnmarshalJSON ¶

func (o *ModuleItem) UnmarshalJSON(data []byte) (err error)

type NoteTweet ¶

type NoteTweet struct {
	IsExpandable     bool            `json:"is_expandable"`
	NoteTweetResults NoteTweetResult `json:"note_tweet_results"`
}

NoteTweet struct for NoteTweet

func NewNoteTweet ¶

func NewNoteTweet(isExpandable bool, noteTweetResults NoteTweetResult) *NoteTweet

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

func NewNoteTweetWithDefaults ¶

func NewNoteTweetWithDefaults() *NoteTweet

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

func (*NoteTweet) GetIsExpandable ¶

func (o *NoteTweet) GetIsExpandable() bool

GetIsExpandable returns the IsExpandable field value

func (*NoteTweet) GetIsExpandableOk ¶

func (o *NoteTweet) GetIsExpandableOk() (*bool, bool)

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

func (*NoteTweet) GetNoteTweetResults ¶

func (o *NoteTweet) GetNoteTweetResults() NoteTweetResult

GetNoteTweetResults returns the NoteTweetResults field value

func (*NoteTweet) GetNoteTweetResultsOk ¶

func (o *NoteTweet) GetNoteTweetResultsOk() (*NoteTweetResult, bool)

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

func (NoteTweet) MarshalJSON ¶

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

func (*NoteTweet) SetIsExpandable ¶

func (o *NoteTweet) SetIsExpandable(v bool)

SetIsExpandable sets field value

func (*NoteTweet) SetNoteTweetResults ¶

func (o *NoteTweet) SetNoteTweetResults(v NoteTweetResult)

SetNoteTweetResults sets field value

func (NoteTweet) ToMap ¶

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

func (*NoteTweet) UnmarshalJSON ¶

func (o *NoteTweet) UnmarshalJSON(data []byte) (err error)

type NoteTweetResult ¶

type NoteTweetResult struct {
	Result NoteTweetResultData `json:"result"`
}

NoteTweetResult struct for NoteTweetResult

func NewNoteTweetResult ¶

func NewNoteTweetResult(result NoteTweetResultData) *NoteTweetResult

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

func NewNoteTweetResultWithDefaults ¶

func NewNoteTweetResultWithDefaults() *NoteTweetResult

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

func (*NoteTweetResult) GetResult ¶

func (o *NoteTweetResult) GetResult() NoteTweetResultData

GetResult returns the Result field value

func (*NoteTweetResult) GetResultOk ¶

func (o *NoteTweetResult) GetResultOk() (*NoteTweetResultData, bool)

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

func (NoteTweetResult) MarshalJSON ¶

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

func (*NoteTweetResult) SetResult ¶

func (o *NoteTweetResult) SetResult(v NoteTweetResultData)

SetResult sets field value

func (NoteTweetResult) ToMap ¶

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

func (*NoteTweetResult) UnmarshalJSON ¶

func (o *NoteTweetResult) UnmarshalJSON(data []byte) (err error)

type NoteTweetResultData ¶

type NoteTweetResultData struct {
	EntitySet Entities                 `json:"entity_set"`
	Id        string                   `json:"id" validate:"regexp=^([A-Za-z0-9+\\/]{4})*([A-Za-z0-9+\\/]{3}=|[A-Za-z0-9+\\/]{2}==)?$"`
	Media     *NoteTweetResultMedia    `json:"media,omitempty"`
	Richtext  *NoteTweetResultRichText `json:"richtext,omitempty"`
	Text      string                   `json:"text"`
}

NoteTweetResultData struct for NoteTweetResultData

func NewNoteTweetResultData ¶

func NewNoteTweetResultData(entitySet Entities, id string, text string) *NoteTweetResultData

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

func NewNoteTweetResultDataWithDefaults ¶

func NewNoteTweetResultDataWithDefaults() *NoteTweetResultData

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

func (*NoteTweetResultData) GetEntitySet ¶

func (o *NoteTweetResultData) GetEntitySet() Entities

GetEntitySet returns the EntitySet field value

func (*NoteTweetResultData) GetEntitySetOk ¶

func (o *NoteTweetResultData) GetEntitySetOk() (*Entities, bool)

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

func (*NoteTweetResultData) GetId ¶

func (o *NoteTweetResultData) GetId() string

GetId returns the Id field value

func (*NoteTweetResultData) GetIdOk ¶

func (o *NoteTweetResultData) GetIdOk() (*string, bool)

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

func (*NoteTweetResultData) GetMedia ¶

GetMedia returns the Media field value if set, zero value otherwise.

func (*NoteTweetResultData) GetMediaOk ¶

func (o *NoteTweetResultData) GetMediaOk() (*NoteTweetResultMedia, bool)

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

func (*NoteTweetResultData) GetRichtext ¶

GetRichtext returns the Richtext field value if set, zero value otherwise.

func (*NoteTweetResultData) GetRichtextOk ¶

func (o *NoteTweetResultData) GetRichtextOk() (*NoteTweetResultRichText, bool)

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

func (*NoteTweetResultData) GetText ¶

func (o *NoteTweetResultData) GetText() string

GetText returns the Text field value

func (*NoteTweetResultData) GetTextOk ¶

func (o *NoteTweetResultData) GetTextOk() (*string, bool)

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

func (*NoteTweetResultData) HasMedia ¶

func (o *NoteTweetResultData) HasMedia() bool

HasMedia returns a boolean if a field has been set.

func (*NoteTweetResultData) HasRichtext ¶

func (o *NoteTweetResultData) HasRichtext() bool

HasRichtext returns a boolean if a field has been set.

func (NoteTweetResultData) MarshalJSON ¶

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

func (*NoteTweetResultData) SetEntitySet ¶

func (o *NoteTweetResultData) SetEntitySet(v Entities)

SetEntitySet sets field value

func (*NoteTweetResultData) SetId ¶

func (o *NoteTweetResultData) SetId(v string)

SetId sets field value

func (*NoteTweetResultData) SetMedia ¶

SetMedia gets a reference to the given NoteTweetResultMedia and assigns it to the Media field.

func (*NoteTweetResultData) SetRichtext ¶

func (o *NoteTweetResultData) SetRichtext(v NoteTweetResultRichText)

SetRichtext gets a reference to the given NoteTweetResultRichText and assigns it to the Richtext field.

func (*NoteTweetResultData) SetText ¶

func (o *NoteTweetResultData) SetText(v string)

SetText sets field value

func (NoteTweetResultData) ToMap ¶

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

func (*NoteTweetResultData) UnmarshalJSON ¶

func (o *NoteTweetResultData) UnmarshalJSON(data []byte) (err error)

type NoteTweetResultMedia ¶

type NoteTweetResultMedia struct {
	InlineMedia []NoteTweetResultMediaInlineMedia `json:"inline_media"`
}

NoteTweetResultMedia struct for NoteTweetResultMedia

func NewNoteTweetResultMedia ¶

func NewNoteTweetResultMedia(inlineMedia []NoteTweetResultMediaInlineMedia) *NoteTweetResultMedia

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

func NewNoteTweetResultMediaWithDefaults ¶

func NewNoteTweetResultMediaWithDefaults() *NoteTweetResultMedia

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

func (*NoteTweetResultMedia) GetInlineMedia ¶

GetInlineMedia returns the InlineMedia field value

func (*NoteTweetResultMedia) GetInlineMediaOk ¶

func (o *NoteTweetResultMedia) GetInlineMediaOk() ([]NoteTweetResultMediaInlineMedia, bool)

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

func (NoteTweetResultMedia) MarshalJSON ¶

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

func (*NoteTweetResultMedia) SetInlineMedia ¶

SetInlineMedia sets field value

func (NoteTweetResultMedia) ToMap ¶

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

func (*NoteTweetResultMedia) UnmarshalJSON ¶

func (o *NoteTweetResultMedia) UnmarshalJSON(data []byte) (err error)

type NoteTweetResultMediaInlineMedia ¶

type NoteTweetResultMediaInlineMedia struct {
	Index   int32  `json:"index"`
	MediaId string `json:"media_id" validate:"regexp=^[0-9]+$"`
}

NoteTweetResultMediaInlineMedia struct for NoteTweetResultMediaInlineMedia

func NewNoteTweetResultMediaInlineMedia ¶

func NewNoteTweetResultMediaInlineMedia(index int32, mediaId string) *NoteTweetResultMediaInlineMedia

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

func NewNoteTweetResultMediaInlineMediaWithDefaults ¶

func NewNoteTweetResultMediaInlineMediaWithDefaults() *NoteTweetResultMediaInlineMedia

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

func (*NoteTweetResultMediaInlineMedia) GetIndex ¶

func (o *NoteTweetResultMediaInlineMedia) GetIndex() int32

GetIndex returns the Index field value

func (*NoteTweetResultMediaInlineMedia) GetIndexOk ¶

func (o *NoteTweetResultMediaInlineMedia) GetIndexOk() (*int32, bool)

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

func (*NoteTweetResultMediaInlineMedia) GetMediaId ¶

func (o *NoteTweetResultMediaInlineMedia) GetMediaId() string

GetMediaId returns the MediaId field value

func (*NoteTweetResultMediaInlineMedia) GetMediaIdOk ¶

func (o *NoteTweetResultMediaInlineMedia) GetMediaIdOk() (*string, bool)

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

func (NoteTweetResultMediaInlineMedia) MarshalJSON ¶

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

func (*NoteTweetResultMediaInlineMedia) SetIndex ¶

func (o *NoteTweetResultMediaInlineMedia) SetIndex(v int32)

SetIndex sets field value

func (*NoteTweetResultMediaInlineMedia) SetMediaId ¶

func (o *NoteTweetResultMediaInlineMedia) SetMediaId(v string)

SetMediaId sets field value

func (NoteTweetResultMediaInlineMedia) ToMap ¶

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

func (*NoteTweetResultMediaInlineMedia) UnmarshalJSON ¶

func (o *NoteTweetResultMediaInlineMedia) UnmarshalJSON(data []byte) (err error)

type NoteTweetResultRichText ¶

type NoteTweetResultRichText struct {
	RichtextTags []NoteTweetResultRichTextTag `json:"richtext_tags"`
}

NoteTweetResultRichText struct for NoteTweetResultRichText

func NewNoteTweetResultRichText ¶

func NewNoteTweetResultRichText(richtextTags []NoteTweetResultRichTextTag) *NoteTweetResultRichText

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

func NewNoteTweetResultRichTextWithDefaults ¶

func NewNoteTweetResultRichTextWithDefaults() *NoteTweetResultRichText

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

func (*NoteTweetResultRichText) GetRichtextTags ¶

func (o *NoteTweetResultRichText) GetRichtextTags() []NoteTweetResultRichTextTag

GetRichtextTags returns the RichtextTags field value

func (*NoteTweetResultRichText) GetRichtextTagsOk ¶

func (o *NoteTweetResultRichText) GetRichtextTagsOk() ([]NoteTweetResultRichTextTag, bool)

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

func (NoteTweetResultRichText) MarshalJSON ¶

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

func (*NoteTweetResultRichText) SetRichtextTags ¶

func (o *NoteTweetResultRichText) SetRichtextTags(v []NoteTweetResultRichTextTag)

SetRichtextTags sets field value

func (NoteTweetResultRichText) ToMap ¶

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

func (*NoteTweetResultRichText) UnmarshalJSON ¶

func (o *NoteTweetResultRichText) UnmarshalJSON(data []byte) (err error)

type NoteTweetResultRichTextTag ¶

type NoteTweetResultRichTextTag struct {
	FromIndex     int32    `json:"from_index"`
	RichtextTypes []string `json:"richtext_types"`
	ToIndex       int32    `json:"to_index"`
}

NoteTweetResultRichTextTag struct for NoteTweetResultRichTextTag

func NewNoteTweetResultRichTextTag ¶

func NewNoteTweetResultRichTextTag(fromIndex int32, richtextTypes []string, toIndex int32) *NoteTweetResultRichTextTag

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

func NewNoteTweetResultRichTextTagWithDefaults ¶

func NewNoteTweetResultRichTextTagWithDefaults() *NoteTweetResultRichTextTag

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

func (*NoteTweetResultRichTextTag) GetFromIndex ¶

func (o *NoteTweetResultRichTextTag) GetFromIndex() int32

GetFromIndex returns the FromIndex field value

func (*NoteTweetResultRichTextTag) GetFromIndexOk ¶

func (o *NoteTweetResultRichTextTag) GetFromIndexOk() (*int32, bool)

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

func (*NoteTweetResultRichTextTag) GetRichtextTypes ¶

func (o *NoteTweetResultRichTextTag) GetRichtextTypes() []string

GetRichtextTypes returns the RichtextTypes field value

func (*NoteTweetResultRichTextTag) GetRichtextTypesOk ¶

func (o *NoteTweetResultRichTextTag) GetRichtextTypesOk() ([]string, bool)

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

func (*NoteTweetResultRichTextTag) GetToIndex ¶

func (o *NoteTweetResultRichTextTag) GetToIndex() int32

GetToIndex returns the ToIndex field value

func (*NoteTweetResultRichTextTag) GetToIndexOk ¶

func (o *NoteTweetResultRichTextTag) GetToIndexOk() (*int32, bool)

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

func (NoteTweetResultRichTextTag) MarshalJSON ¶

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

func (*NoteTweetResultRichTextTag) SetFromIndex ¶

func (o *NoteTweetResultRichTextTag) SetFromIndex(v int32)

SetFromIndex sets field value

func (*NoteTweetResultRichTextTag) SetRichtextTypes ¶

func (o *NoteTweetResultRichTextTag) SetRichtextTypes(v []string)

SetRichtextTypes sets field value

func (*NoteTweetResultRichTextTag) SetToIndex ¶

func (o *NoteTweetResultRichTextTag) SetToIndex(v int32)

SetToIndex sets field value

func (NoteTweetResultRichTextTag) ToMap ¶

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

func (*NoteTweetResultRichTextTag) UnmarshalJSON ¶

func (o *NoteTweetResultRichTextTag) UnmarshalJSON(data []byte) (err error)

type NullableAdditionalMediaInfo ¶

type NullableAdditionalMediaInfo struct {
	// contains filtered or unexported fields
}

func (NullableAdditionalMediaInfo) Get ¶

func (NullableAdditionalMediaInfo) IsSet ¶

func (NullableAdditionalMediaInfo) MarshalJSON ¶

func (v NullableAdditionalMediaInfo) MarshalJSON() ([]byte, error)

func (*NullableAdditionalMediaInfo) Set ¶

func (*NullableAdditionalMediaInfo) UnmarshalJSON ¶

func (v *NullableAdditionalMediaInfo) UnmarshalJSON(src []byte) error

func (*NullableAdditionalMediaInfo) Unset ¶

func (v *NullableAdditionalMediaInfo) Unset()

type NullableAdditionalMediaInfoCallToActions ¶

type NullableAdditionalMediaInfoCallToActions struct {
	// contains filtered or unexported fields
}

func (NullableAdditionalMediaInfoCallToActions) Get ¶

func (NullableAdditionalMediaInfoCallToActions) IsSet ¶

func (NullableAdditionalMediaInfoCallToActions) MarshalJSON ¶

func (*NullableAdditionalMediaInfoCallToActions) Set ¶

func (*NullableAdditionalMediaInfoCallToActions) UnmarshalJSON ¶

func (v *NullableAdditionalMediaInfoCallToActions) UnmarshalJSON(src []byte) error

func (*NullableAdditionalMediaInfoCallToActions) Unset ¶

type NullableAdditionalMediaInfoCallToActionsUrl ¶

type NullableAdditionalMediaInfoCallToActionsUrl struct {
	// contains filtered or unexported fields
}

func (NullableAdditionalMediaInfoCallToActionsUrl) Get ¶

func (NullableAdditionalMediaInfoCallToActionsUrl) IsSet ¶

func (NullableAdditionalMediaInfoCallToActionsUrl) MarshalJSON ¶

func (*NullableAdditionalMediaInfoCallToActionsUrl) Set ¶

func (*NullableAdditionalMediaInfoCallToActionsUrl) UnmarshalJSON ¶

func (v *NullableAdditionalMediaInfoCallToActionsUrl) UnmarshalJSON(src []byte) error

func (*NullableAdditionalMediaInfoCallToActionsUrl) Unset ¶

type NullableAllowDownloadStatus ¶

type NullableAllowDownloadStatus struct {
	// contains filtered or unexported fields
}

func (NullableAllowDownloadStatus) Get ¶

func (NullableAllowDownloadStatus) IsSet ¶

func (NullableAllowDownloadStatus) MarshalJSON ¶

func (v NullableAllowDownloadStatus) MarshalJSON() ([]byte, error)

func (*NullableAllowDownloadStatus) Set ¶

func (*NullableAllowDownloadStatus) UnmarshalJSON ¶

func (v *NullableAllowDownloadStatus) UnmarshalJSON(src []byte) error

func (*NullableAllowDownloadStatus) Unset ¶

func (v *NullableAllowDownloadStatus) Unset()

type NullableArticle ¶

type NullableArticle struct {
	// contains filtered or unexported fields
}

func NewNullableArticle ¶

func NewNullableArticle(val *Article) *NullableArticle

func (NullableArticle) Get ¶

func (v NullableArticle) Get() *Article

func (NullableArticle) IsSet ¶

func (v NullableArticle) IsSet() bool

func (NullableArticle) MarshalJSON ¶

func (v NullableArticle) MarshalJSON() ([]byte, error)

func (*NullableArticle) Set ¶

func (v *NullableArticle) Set(val *Article)

func (*NullableArticle) UnmarshalJSON ¶

func (v *NullableArticle) UnmarshalJSON(src []byte) error

func (*NullableArticle) Unset ¶

func (v *NullableArticle) Unset()

type NullableArticleCoverMedia ¶

type NullableArticleCoverMedia struct {
	// contains filtered or unexported fields
}

func NewNullableArticleCoverMedia ¶

func NewNullableArticleCoverMedia(val *ArticleCoverMedia) *NullableArticleCoverMedia

func (NullableArticleCoverMedia) Get ¶

func (NullableArticleCoverMedia) IsSet ¶

func (v NullableArticleCoverMedia) IsSet() bool

func (NullableArticleCoverMedia) MarshalJSON ¶

func (v NullableArticleCoverMedia) MarshalJSON() ([]byte, error)

func (*NullableArticleCoverMedia) Set ¶

func (*NullableArticleCoverMedia) UnmarshalJSON ¶

func (v *NullableArticleCoverMedia) UnmarshalJSON(src []byte) error

func (*NullableArticleCoverMedia) Unset ¶

func (v *NullableArticleCoverMedia) Unset()

type NullableArticleCoverMediaColorInfo ¶

type NullableArticleCoverMediaColorInfo struct {
	// contains filtered or unexported fields
}

func (NullableArticleCoverMediaColorInfo) Get ¶

func (NullableArticleCoverMediaColorInfo) IsSet ¶

func (NullableArticleCoverMediaColorInfo) MarshalJSON ¶

func (v NullableArticleCoverMediaColorInfo) MarshalJSON() ([]byte, error)

func (*NullableArticleCoverMediaColorInfo) Set ¶

func (*NullableArticleCoverMediaColorInfo) UnmarshalJSON ¶

func (v *NullableArticleCoverMediaColorInfo) UnmarshalJSON(src []byte) error

func (*NullableArticleCoverMediaColorInfo) Unset ¶

type NullableArticleCoverMediaColorInfoPalette ¶

type NullableArticleCoverMediaColorInfoPalette struct {
	// contains filtered or unexported fields
}

func (NullableArticleCoverMediaColorInfoPalette) Get ¶

func (NullableArticleCoverMediaColorInfoPalette) IsSet ¶

func (NullableArticleCoverMediaColorInfoPalette) MarshalJSON ¶

func (*NullableArticleCoverMediaColorInfoPalette) Set ¶

func (*NullableArticleCoverMediaColorInfoPalette) UnmarshalJSON ¶

func (v *NullableArticleCoverMediaColorInfoPalette) UnmarshalJSON(src []byte) error

func (*NullableArticleCoverMediaColorInfoPalette) Unset ¶

type NullableArticleCoverMediaColorInfoPaletteRGB ¶

type NullableArticleCoverMediaColorInfoPaletteRGB struct {
	// contains filtered or unexported fields
}

func (NullableArticleCoverMediaColorInfoPaletteRGB) Get ¶

func (NullableArticleCoverMediaColorInfoPaletteRGB) IsSet ¶

func (NullableArticleCoverMediaColorInfoPaletteRGB) MarshalJSON ¶

func (*NullableArticleCoverMediaColorInfoPaletteRGB) Set ¶

func (*NullableArticleCoverMediaColorInfoPaletteRGB) UnmarshalJSON ¶

func (*NullableArticleCoverMediaColorInfoPaletteRGB) Unset ¶

type NullableArticleCoverMediaInfo ¶

type NullableArticleCoverMediaInfo struct {
	// contains filtered or unexported fields
}

func (NullableArticleCoverMediaInfo) Get ¶

func (NullableArticleCoverMediaInfo) IsSet ¶

func (NullableArticleCoverMediaInfo) MarshalJSON ¶

func (v NullableArticleCoverMediaInfo) MarshalJSON() ([]byte, error)

func (*NullableArticleCoverMediaInfo) Set ¶

func (*NullableArticleCoverMediaInfo) UnmarshalJSON ¶

func (v *NullableArticleCoverMediaInfo) UnmarshalJSON(src []byte) error

func (*NullableArticleCoverMediaInfo) Unset ¶

func (v *NullableArticleCoverMediaInfo) Unset()

type NullableArticleLifecycleState ¶

type NullableArticleLifecycleState struct {
	// contains filtered or unexported fields
}

func (NullableArticleLifecycleState) Get ¶

func (NullableArticleLifecycleState) IsSet ¶

func (NullableArticleLifecycleState) MarshalJSON ¶

func (v NullableArticleLifecycleState) MarshalJSON() ([]byte, error)

func (*NullableArticleLifecycleState) Set ¶

func (*NullableArticleLifecycleState) UnmarshalJSON ¶

func (v *NullableArticleLifecycleState) UnmarshalJSON(src []byte) error

func (*NullableArticleLifecycleState) Unset ¶

func (v *NullableArticleLifecycleState) Unset()

type NullableArticleMetadata ¶

type NullableArticleMetadata struct {
	// contains filtered or unexported fields
}

func NewNullableArticleMetadata ¶

func NewNullableArticleMetadata(val *ArticleMetadata) *NullableArticleMetadata

func (NullableArticleMetadata) Get ¶

func (NullableArticleMetadata) IsSet ¶

func (v NullableArticleMetadata) IsSet() bool

func (NullableArticleMetadata) MarshalJSON ¶

func (v NullableArticleMetadata) MarshalJSON() ([]byte, error)

func (*NullableArticleMetadata) Set ¶

func (*NullableArticleMetadata) UnmarshalJSON ¶

func (v *NullableArticleMetadata) UnmarshalJSON(src []byte) error

func (*NullableArticleMetadata) Unset ¶

func (v *NullableArticleMetadata) Unset()

type NullableArticleResult ¶

type NullableArticleResult struct {
	// contains filtered or unexported fields
}

func NewNullableArticleResult ¶

func NewNullableArticleResult(val *ArticleResult) *NullableArticleResult

func (NullableArticleResult) Get ¶

func (NullableArticleResult) IsSet ¶

func (v NullableArticleResult) IsSet() bool

func (NullableArticleResult) MarshalJSON ¶

func (v NullableArticleResult) MarshalJSON() ([]byte, error)

func (*NullableArticleResult) Set ¶

func (v *NullableArticleResult) Set(val *ArticleResult)

func (*NullableArticleResult) UnmarshalJSON ¶

func (v *NullableArticleResult) UnmarshalJSON(src []byte) error

func (*NullableArticleResult) Unset ¶

func (v *NullableArticleResult) Unset()

type NullableArticleResults ¶

type NullableArticleResults struct {
	// contains filtered or unexported fields
}

func NewNullableArticleResults ¶

func NewNullableArticleResults(val *ArticleResults) *NullableArticleResults

func (NullableArticleResults) Get ¶

func (NullableArticleResults) IsSet ¶

func (v NullableArticleResults) IsSet() bool

func (NullableArticleResults) MarshalJSON ¶

func (v NullableArticleResults) MarshalJSON() ([]byte, error)

func (*NullableArticleResults) Set ¶

func (*NullableArticleResults) UnmarshalJSON ¶

func (v *NullableArticleResults) UnmarshalJSON(src []byte) error

func (*NullableArticleResults) Unset ¶

func (v *NullableArticleResults) Unset()

type NullableAuthorCommunityRelationship ¶

type NullableAuthorCommunityRelationship struct {
	// contains filtered or unexported fields
}

func (NullableAuthorCommunityRelationship) Get ¶

func (NullableAuthorCommunityRelationship) IsSet ¶

func (NullableAuthorCommunityRelationship) MarshalJSON ¶

func (v NullableAuthorCommunityRelationship) MarshalJSON() ([]byte, error)

func (*NullableAuthorCommunityRelationship) Set ¶

func (*NullableAuthorCommunityRelationship) UnmarshalJSON ¶

func (v *NullableAuthorCommunityRelationship) UnmarshalJSON(src []byte) error

func (*NullableAuthorCommunityRelationship) Unset ¶

type NullableBirdwatchEntity ¶

type NullableBirdwatchEntity struct {
	// contains filtered or unexported fields
}

func NewNullableBirdwatchEntity ¶

func NewNullableBirdwatchEntity(val *BirdwatchEntity) *NullableBirdwatchEntity

func (NullableBirdwatchEntity) Get ¶

func (NullableBirdwatchEntity) IsSet ¶

func (v NullableBirdwatchEntity) IsSet() bool

func (NullableBirdwatchEntity) MarshalJSON ¶

func (v NullableBirdwatchEntity) MarshalJSON() ([]byte, error)

func (*NullableBirdwatchEntity) Set ¶

func (*NullableBirdwatchEntity) UnmarshalJSON ¶

func (v *NullableBirdwatchEntity) UnmarshalJSON(src []byte) error

func (*NullableBirdwatchEntity) Unset ¶

func (v *NullableBirdwatchEntity) Unset()

type NullableBirdwatchEntityRef ¶

type NullableBirdwatchEntityRef struct {
	// contains filtered or unexported fields
}

func NewNullableBirdwatchEntityRef ¶

func NewNullableBirdwatchEntityRef(val *BirdwatchEntityRef) *NullableBirdwatchEntityRef

func (NullableBirdwatchEntityRef) Get ¶

func (NullableBirdwatchEntityRef) IsSet ¶

func (v NullableBirdwatchEntityRef) IsSet() bool

func (NullableBirdwatchEntityRef) MarshalJSON ¶

func (v NullableBirdwatchEntityRef) MarshalJSON() ([]byte, error)

func (*NullableBirdwatchEntityRef) Set ¶

func (*NullableBirdwatchEntityRef) UnmarshalJSON ¶

func (v *NullableBirdwatchEntityRef) UnmarshalJSON(src []byte) error

func (*NullableBirdwatchEntityRef) Unset ¶

func (v *NullableBirdwatchEntityRef) Unset()

type NullableBirdwatchPivot ¶

type NullableBirdwatchPivot struct {
	// contains filtered or unexported fields
}

func NewNullableBirdwatchPivot ¶

func NewNullableBirdwatchPivot(val *BirdwatchPivot) *NullableBirdwatchPivot

func (NullableBirdwatchPivot) Get ¶

func (NullableBirdwatchPivot) IsSet ¶

func (v NullableBirdwatchPivot) IsSet() bool

func (NullableBirdwatchPivot) MarshalJSON ¶

func (v NullableBirdwatchPivot) MarshalJSON() ([]byte, error)

func (*NullableBirdwatchPivot) Set ¶

func (*NullableBirdwatchPivot) UnmarshalJSON ¶

func (v *NullableBirdwatchPivot) UnmarshalJSON(src []byte) error

func (*NullableBirdwatchPivot) Unset ¶

func (v *NullableBirdwatchPivot) Unset()

type NullableBirdwatchPivotCallToAction ¶

type NullableBirdwatchPivotCallToAction struct {
	// contains filtered or unexported fields
}

func (NullableBirdwatchPivotCallToAction) Get ¶

func (NullableBirdwatchPivotCallToAction) IsSet ¶

func (NullableBirdwatchPivotCallToAction) MarshalJSON ¶

func (v NullableBirdwatchPivotCallToAction) MarshalJSON() ([]byte, error)

func (*NullableBirdwatchPivotCallToAction) Set ¶

func (*NullableBirdwatchPivotCallToAction) UnmarshalJSON ¶

func (v *NullableBirdwatchPivotCallToAction) UnmarshalJSON(src []byte) error

func (*NullableBirdwatchPivotCallToAction) Unset ¶

type NullableBirdwatchPivotFooter ¶

type NullableBirdwatchPivotFooter struct {
	// contains filtered or unexported fields
}

func (NullableBirdwatchPivotFooter) Get ¶

func (NullableBirdwatchPivotFooter) IsSet ¶

func (NullableBirdwatchPivotFooter) MarshalJSON ¶

func (v NullableBirdwatchPivotFooter) MarshalJSON() ([]byte, error)

func (*NullableBirdwatchPivotFooter) Set ¶

func (*NullableBirdwatchPivotFooter) UnmarshalJSON ¶

func (v *NullableBirdwatchPivotFooter) UnmarshalJSON(src []byte) error

func (*NullableBirdwatchPivotFooter) Unset ¶

func (v *NullableBirdwatchPivotFooter) Unset()

type NullableBirdwatchPivotNote ¶

type NullableBirdwatchPivotNote struct {
	// contains filtered or unexported fields
}

func NewNullableBirdwatchPivotNote ¶

func NewNullableBirdwatchPivotNote(val *BirdwatchPivotNote) *NullableBirdwatchPivotNote

func (NullableBirdwatchPivotNote) Get ¶

func (NullableBirdwatchPivotNote) IsSet ¶

func (v NullableBirdwatchPivotNote) IsSet() bool

func (NullableBirdwatchPivotNote) MarshalJSON ¶

func (v NullableBirdwatchPivotNote) MarshalJSON() ([]byte, error)

func (*NullableBirdwatchPivotNote) Set ¶

func (*NullableBirdwatchPivotNote) UnmarshalJSON ¶

func (v *NullableBirdwatchPivotNote) UnmarshalJSON(src []byte) error

func (*NullableBirdwatchPivotNote) Unset ¶

func (v *NullableBirdwatchPivotNote) Unset()

type NullableBirdwatchPivotSubtitle ¶

type NullableBirdwatchPivotSubtitle struct {
	// contains filtered or unexported fields
}

func (NullableBirdwatchPivotSubtitle) Get ¶

func (NullableBirdwatchPivotSubtitle) IsSet ¶

func (NullableBirdwatchPivotSubtitle) MarshalJSON ¶

func (v NullableBirdwatchPivotSubtitle) MarshalJSON() ([]byte, error)

func (*NullableBirdwatchPivotSubtitle) Set ¶

func (*NullableBirdwatchPivotSubtitle) UnmarshalJSON ¶

func (v *NullableBirdwatchPivotSubtitle) UnmarshalJSON(src []byte) error

func (*NullableBirdwatchPivotSubtitle) Unset ¶

func (v *NullableBirdwatchPivotSubtitle) Unset()

type NullableBookmarksResponse ¶

type NullableBookmarksResponse struct {
	// contains filtered or unexported fields
}

func NewNullableBookmarksResponse ¶

func NewNullableBookmarksResponse(val *BookmarksResponse) *NullableBookmarksResponse

func (NullableBookmarksResponse) Get ¶

func (NullableBookmarksResponse) IsSet ¶

func (v NullableBookmarksResponse) IsSet() bool

func (NullableBookmarksResponse) MarshalJSON ¶

func (v NullableBookmarksResponse) MarshalJSON() ([]byte, error)

func (*NullableBookmarksResponse) Set ¶

func (*NullableBookmarksResponse) UnmarshalJSON ¶

func (v *NullableBookmarksResponse) UnmarshalJSON(src []byte) error

func (*NullableBookmarksResponse) Unset ¶

func (v *NullableBookmarksResponse) Unset()

type NullableBookmarksResponseData ¶

type NullableBookmarksResponseData struct {
	// contains filtered or unexported fields
}

func (NullableBookmarksResponseData) Get ¶

func (NullableBookmarksResponseData) IsSet ¶

func (NullableBookmarksResponseData) MarshalJSON ¶

func (v NullableBookmarksResponseData) MarshalJSON() ([]byte, error)

func (*NullableBookmarksResponseData) Set ¶

func (*NullableBookmarksResponseData) UnmarshalJSON ¶

func (v *NullableBookmarksResponseData) UnmarshalJSON(src []byte) error

func (*NullableBookmarksResponseData) Unset ¶

func (v *NullableBookmarksResponseData) Unset()

type NullableBookmarksTimeline ¶

type NullableBookmarksTimeline struct {
	// contains filtered or unexported fields
}

func NewNullableBookmarksTimeline ¶

func NewNullableBookmarksTimeline(val *BookmarksTimeline) *NullableBookmarksTimeline

func (NullableBookmarksTimeline) Get ¶

func (NullableBookmarksTimeline) IsSet ¶

func (v NullableBookmarksTimeline) IsSet() bool

func (NullableBookmarksTimeline) MarshalJSON ¶

func (v NullableBookmarksTimeline) MarshalJSON() ([]byte, error)

func (*NullableBookmarksTimeline) Set ¶

func (*NullableBookmarksTimeline) UnmarshalJSON ¶

func (v *NullableBookmarksTimeline) UnmarshalJSON(src []byte) error

func (*NullableBookmarksTimeline) Unset ¶

func (v *NullableBookmarksTimeline) 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 NullableCallback ¶

type NullableCallback struct {
	// contains filtered or unexported fields
}

func NewNullableCallback ¶

func NewNullableCallback(val *Callback) *NullableCallback

func (NullableCallback) Get ¶

func (v NullableCallback) Get() *Callback

func (NullableCallback) IsSet ¶

func (v NullableCallback) IsSet() bool

func (NullableCallback) MarshalJSON ¶

func (v NullableCallback) MarshalJSON() ([]byte, error)

func (*NullableCallback) Set ¶

func (v *NullableCallback) Set(val *Callback)

func (*NullableCallback) UnmarshalJSON ¶

func (v *NullableCallback) UnmarshalJSON(src []byte) error

func (*NullableCallback) Unset ¶

func (v *NullableCallback) Unset()

type NullableClientEventInfo ¶

type NullableClientEventInfo struct {
	// contains filtered or unexported fields
}

func NewNullableClientEventInfo ¶

func NewNullableClientEventInfo(val *ClientEventInfo) *NullableClientEventInfo

func (NullableClientEventInfo) Get ¶

func (NullableClientEventInfo) IsSet ¶

func (v NullableClientEventInfo) IsSet() bool

func (NullableClientEventInfo) MarshalJSON ¶

func (v NullableClientEventInfo) MarshalJSON() ([]byte, error)

func (*NullableClientEventInfo) Set ¶

func (*NullableClientEventInfo) UnmarshalJSON ¶

func (v *NullableClientEventInfo) UnmarshalJSON(src []byte) error

func (*NullableClientEventInfo) Unset ¶

func (v *NullableClientEventInfo) Unset()

type NullableCommunitiesActions ¶

type NullableCommunitiesActions struct {
	// contains filtered or unexported fields
}

func NewNullableCommunitiesActions ¶

func NewNullableCommunitiesActions(val *CommunitiesActions) *NullableCommunitiesActions

func (NullableCommunitiesActions) Get ¶

func (NullableCommunitiesActions) IsSet ¶

func (v NullableCommunitiesActions) IsSet() bool

func (NullableCommunitiesActions) MarshalJSON ¶

func (v NullableCommunitiesActions) MarshalJSON() ([]byte, error)

func (*NullableCommunitiesActions) Set ¶

func (*NullableCommunitiesActions) UnmarshalJSON ¶

func (v *NullableCommunitiesActions) UnmarshalJSON(src []byte) error

func (*NullableCommunitiesActions) Unset ¶

func (v *NullableCommunitiesActions) Unset()

type NullableCommunity ¶

type NullableCommunity struct {
	// contains filtered or unexported fields
}

func NewNullableCommunity ¶

func NewNullableCommunity(val *Community) *NullableCommunity

func (NullableCommunity) Get ¶

func (v NullableCommunity) Get() *Community

func (NullableCommunity) IsSet ¶

func (v NullableCommunity) IsSet() bool

func (NullableCommunity) MarshalJSON ¶

func (v NullableCommunity) MarshalJSON() ([]byte, error)

func (*NullableCommunity) Set ¶

func (v *NullableCommunity) Set(val *Community)

func (*NullableCommunity) UnmarshalJSON ¶

func (v *NullableCommunity) UnmarshalJSON(src []byte) error

func (*NullableCommunity) Unset ¶

func (v *NullableCommunity) Unset()

type NullableCommunityActions ¶

type NullableCommunityActions struct {
	// contains filtered or unexported fields
}

func NewNullableCommunityActions ¶

func NewNullableCommunityActions(val *CommunityActions) *NullableCommunityActions

func (NullableCommunityActions) Get ¶

func (NullableCommunityActions) IsSet ¶

func (v NullableCommunityActions) IsSet() bool

func (NullableCommunityActions) MarshalJSON ¶

func (v NullableCommunityActions) MarshalJSON() ([]byte, error)

func (*NullableCommunityActions) Set ¶

func (*NullableCommunityActions) UnmarshalJSON ¶

func (v *NullableCommunityActions) UnmarshalJSON(src []byte) error

func (*NullableCommunityActions) Unset ¶

func (v *NullableCommunityActions) Unset()

type NullableCommunityData ¶

type NullableCommunityData struct {
	// contains filtered or unexported fields
}

func NewNullableCommunityData ¶

func NewNullableCommunityData(val *CommunityData) *NullableCommunityData

func (NullableCommunityData) Get ¶

func (NullableCommunityData) IsSet ¶

func (v NullableCommunityData) IsSet() bool

func (NullableCommunityData) MarshalJSON ¶

func (v NullableCommunityData) MarshalJSON() ([]byte, error)

func (*NullableCommunityData) Set ¶

func (v *NullableCommunityData) Set(val *CommunityData)

func (*NullableCommunityData) UnmarshalJSON ¶

func (v *NullableCommunityData) UnmarshalJSON(src []byte) error

func (*NullableCommunityData) Unset ¶

func (v *NullableCommunityData) Unset()

type NullableCommunityDeleteActionResult ¶

type NullableCommunityDeleteActionResult struct {
	// contains filtered or unexported fields
}

func (NullableCommunityDeleteActionResult) Get ¶

func (NullableCommunityDeleteActionResult) IsSet ¶

func (NullableCommunityDeleteActionResult) MarshalJSON ¶

func (v NullableCommunityDeleteActionResult) MarshalJSON() ([]byte, error)

func (*NullableCommunityDeleteActionResult) Set ¶

func (*NullableCommunityDeleteActionResult) UnmarshalJSON ¶

func (v *NullableCommunityDeleteActionResult) UnmarshalJSON(src []byte) error

func (*NullableCommunityDeleteActionResult) Unset ¶

type NullableCommunityInvitesResult ¶

type NullableCommunityInvitesResult struct {
	// contains filtered or unexported fields
}

func (NullableCommunityInvitesResult) Get ¶

func (NullableCommunityInvitesResult) IsSet ¶

func (NullableCommunityInvitesResult) MarshalJSON ¶

func (v NullableCommunityInvitesResult) MarshalJSON() ([]byte, error)

func (*NullableCommunityInvitesResult) Set ¶

func (*NullableCommunityInvitesResult) UnmarshalJSON ¶

func (v *NullableCommunityInvitesResult) UnmarshalJSON(src []byte) error

func (*NullableCommunityInvitesResult) Unset ¶

func (v *NullableCommunityInvitesResult) Unset()

type NullableCommunityJoinActionResult ¶

type NullableCommunityJoinActionResult struct {
	// contains filtered or unexported fields
}

func (NullableCommunityJoinActionResult) Get ¶

func (NullableCommunityJoinActionResult) IsSet ¶

func (NullableCommunityJoinActionResult) MarshalJSON ¶

func (v NullableCommunityJoinActionResult) MarshalJSON() ([]byte, error)

func (*NullableCommunityJoinActionResult) Set ¶

func (*NullableCommunityJoinActionResult) UnmarshalJSON ¶

func (v *NullableCommunityJoinActionResult) UnmarshalJSON(src []byte) error

func (*NullableCommunityJoinActionResult) Unset ¶

type NullableCommunityJoinRequestsResult ¶

type NullableCommunityJoinRequestsResult struct {
	// contains filtered or unexported fields
}

func (NullableCommunityJoinRequestsResult) Get ¶

func (NullableCommunityJoinRequestsResult) IsSet ¶

func (NullableCommunityJoinRequestsResult) MarshalJSON ¶

func (v NullableCommunityJoinRequestsResult) MarshalJSON() ([]byte, error)

func (*NullableCommunityJoinRequestsResult) Set ¶

func (*NullableCommunityJoinRequestsResult) UnmarshalJSON ¶

func (v *NullableCommunityJoinRequestsResult) UnmarshalJSON(src []byte) error

func (*NullableCommunityJoinRequestsResult) Unset ¶

type NullableCommunityLeaveActionResult ¶

type NullableCommunityLeaveActionResult struct {
	// contains filtered or unexported fields
}

func (NullableCommunityLeaveActionResult) Get ¶

func (NullableCommunityLeaveActionResult) IsSet ¶

func (NullableCommunityLeaveActionResult) MarshalJSON ¶

func (v NullableCommunityLeaveActionResult) MarshalJSON() ([]byte, error)

func (*NullableCommunityLeaveActionResult) Set ¶

func (*NullableCommunityLeaveActionResult) UnmarshalJSON ¶

func (v *NullableCommunityLeaveActionResult) UnmarshalJSON(src []byte) error

func (*NullableCommunityLeaveActionResult) Unset ¶

type NullableCommunityPinActionResult ¶

type NullableCommunityPinActionResult struct {
	// contains filtered or unexported fields
}

func (NullableCommunityPinActionResult) Get ¶

func (NullableCommunityPinActionResult) IsSet ¶

func (NullableCommunityPinActionResult) MarshalJSON ¶

func (v NullableCommunityPinActionResult) MarshalJSON() ([]byte, error)

func (*NullableCommunityPinActionResult) Set ¶

func (*NullableCommunityPinActionResult) UnmarshalJSON ¶

func (v *NullableCommunityPinActionResult) UnmarshalJSON(src []byte) error

func (*NullableCommunityPinActionResult) Unset ¶

type NullableCommunityRelationship ¶

type NullableCommunityRelationship struct {
	// contains filtered or unexported fields
}

func (NullableCommunityRelationship) Get ¶

func (NullableCommunityRelationship) IsSet ¶

func (NullableCommunityRelationship) MarshalJSON ¶

func (v NullableCommunityRelationship) MarshalJSON() ([]byte, error)

func (*NullableCommunityRelationship) Set ¶

func (*NullableCommunityRelationship) UnmarshalJSON ¶

func (v *NullableCommunityRelationship) UnmarshalJSON(src []byte) error

func (*NullableCommunityRelationship) Unset ¶

func (v *NullableCommunityRelationship) Unset()

type NullableCommunityRule ¶

type NullableCommunityRule struct {
	// contains filtered or unexported fields
}

func NewNullableCommunityRule ¶

func NewNullableCommunityRule(val *CommunityRule) *NullableCommunityRule

func (NullableCommunityRule) Get ¶

func (NullableCommunityRule) IsSet ¶

func (v NullableCommunityRule) IsSet() bool

func (NullableCommunityRule) MarshalJSON ¶

func (v NullableCommunityRule) MarshalJSON() ([]byte, error)

func (*NullableCommunityRule) Set ¶

func (v *NullableCommunityRule) Set(val *CommunityRule)

func (*NullableCommunityRule) UnmarshalJSON ¶

func (v *NullableCommunityRule) UnmarshalJSON(src []byte) error

func (*NullableCommunityRule) Unset ¶

func (v *NullableCommunityRule) Unset()

type NullableCommunityUnpinActionResult ¶

type NullableCommunityUnpinActionResult struct {
	// contains filtered or unexported fields
}

func (NullableCommunityUnpinActionResult) Get ¶

func (NullableCommunityUnpinActionResult) IsSet ¶

func (NullableCommunityUnpinActionResult) MarshalJSON ¶

func (v NullableCommunityUnpinActionResult) MarshalJSON() ([]byte, error)

func (*NullableCommunityUnpinActionResult) Set ¶

func (*NullableCommunityUnpinActionResult) UnmarshalJSON ¶

func (v *NullableCommunityUnpinActionResult) UnmarshalJSON(src []byte) error

func (*NullableCommunityUnpinActionResult) Unset ¶

type NullableCommunityUrls ¶

type NullableCommunityUrls struct {
	// contains filtered or unexported fields
}

func NewNullableCommunityUrls ¶

func NewNullableCommunityUrls(val *CommunityUrls) *NullableCommunityUrls

func (NullableCommunityUrls) Get ¶

func (NullableCommunityUrls) IsSet ¶

func (v NullableCommunityUrls) IsSet() bool

func (NullableCommunityUrls) MarshalJSON ¶

func (v NullableCommunityUrls) MarshalJSON() ([]byte, error)

func (*NullableCommunityUrls) Set ¶

func (v *NullableCommunityUrls) Set(val *CommunityUrls)

func (*NullableCommunityUrls) UnmarshalJSON ¶

func (v *NullableCommunityUrls) UnmarshalJSON(src []byte) error

func (*NullableCommunityUrls) Unset ¶

func (v *NullableCommunityUrls) Unset()
type NullableCommunityUrlsPermalink struct {
	// contains filtered or unexported fields
}

func (NullableCommunityUrlsPermalink) Get ¶

func (NullableCommunityUrlsPermalink) IsSet ¶

func (NullableCommunityUrlsPermalink) MarshalJSON ¶

func (v NullableCommunityUrlsPermalink) MarshalJSON() ([]byte, error)

func (*NullableCommunityUrlsPermalink) Set ¶

func (*NullableCommunityUrlsPermalink) UnmarshalJSON ¶

func (v *NullableCommunityUrlsPermalink) UnmarshalJSON(src []byte) error

func (*NullableCommunityUrlsPermalink) Unset ¶

func (v *NullableCommunityUrlsPermalink) Unset()

type NullableContentEntryType ¶

type NullableContentEntryType struct {
	// contains filtered or unexported fields
}

func NewNullableContentEntryType ¶

func NewNullableContentEntryType(val *ContentEntryType) *NullableContentEntryType

func (NullableContentEntryType) Get ¶

func (NullableContentEntryType) IsSet ¶

func (v NullableContentEntryType) IsSet() bool

func (NullableContentEntryType) MarshalJSON ¶

func (v NullableContentEntryType) MarshalJSON() ([]byte, error)

func (*NullableContentEntryType) Set ¶

func (*NullableContentEntryType) UnmarshalJSON ¶

func (v *NullableContentEntryType) UnmarshalJSON(src []byte) error

func (*NullableContentEntryType) Unset ¶

func (v *NullableContentEntryType) Unset()

type NullableContentItemType ¶

type NullableContentItemType struct {
	// contains filtered or unexported fields
}

func NewNullableContentItemType ¶

func NewNullableContentItemType(val *ContentItemType) *NullableContentItemType

func (NullableContentItemType) Get ¶

func (NullableContentItemType) IsSet ¶

func (v NullableContentItemType) IsSet() bool

func (NullableContentItemType) MarshalJSON ¶

func (v NullableContentItemType) MarshalJSON() ([]byte, error)

func (*NullableContentItemType) Set ¶

func (*NullableContentItemType) UnmarshalJSON ¶

func (v *NullableContentItemType) UnmarshalJSON(src []byte) error

func (*NullableContentItemType) Unset ¶

func (v *NullableContentItemType) Unset()

type NullableContentUnion ¶

type NullableContentUnion struct {
	// contains filtered or unexported fields
}

func NewNullableContentUnion ¶

func NewNullableContentUnion(val *ContentUnion) *NullableContentUnion

func (NullableContentUnion) Get ¶

func (NullableContentUnion) IsSet ¶

func (v NullableContentUnion) IsSet() bool

func (NullableContentUnion) MarshalJSON ¶

func (v NullableContentUnion) MarshalJSON() ([]byte, error)

func (*NullableContentUnion) Set ¶

func (v *NullableContentUnion) Set(val *ContentUnion)

func (*NullableContentUnion) UnmarshalJSON ¶

func (v *NullableContentUnion) UnmarshalJSON(src []byte) error

func (*NullableContentUnion) Unset ¶

func (v *NullableContentUnion) Unset()

type NullableConversationControl ¶

type NullableConversationControl struct {
	// contains filtered or unexported fields
}

func (NullableConversationControl) Get ¶

func (NullableConversationControl) IsSet ¶

func (NullableConversationControl) MarshalJSON ¶

func (v NullableConversationControl) MarshalJSON() ([]byte, error)

func (*NullableConversationControl) Set ¶

func (*NullableConversationControl) UnmarshalJSON ¶

func (v *NullableConversationControl) UnmarshalJSON(src []byte) error

func (*NullableConversationControl) Unset ¶

func (v *NullableConversationControl) Unset()

type NullableCoverCta ¶

type NullableCoverCta struct {
	// contains filtered or unexported fields
}

func NewNullableCoverCta ¶

func NewNullableCoverCta(val *CoverCta) *NullableCoverCta

func (NullableCoverCta) Get ¶

func (v NullableCoverCta) Get() *CoverCta

func (NullableCoverCta) IsSet ¶

func (v NullableCoverCta) IsSet() bool

func (NullableCoverCta) MarshalJSON ¶

func (v NullableCoverCta) MarshalJSON() ([]byte, error)

func (*NullableCoverCta) Set ¶

func (v *NullableCoverCta) Set(val *CoverCta)

func (*NullableCoverCta) UnmarshalJSON ¶

func (v *NullableCoverCta) UnmarshalJSON(src []byte) error

func (*NullableCoverCta) Unset ¶

func (v *NullableCoverCta) Unset()

type NullableCreateBookmarkResponse ¶

type NullableCreateBookmarkResponse struct {
	// contains filtered or unexported fields
}

func (NullableCreateBookmarkResponse) Get ¶

func (NullableCreateBookmarkResponse) IsSet ¶

func (NullableCreateBookmarkResponse) MarshalJSON ¶

func (v NullableCreateBookmarkResponse) MarshalJSON() ([]byte, error)

func (*NullableCreateBookmarkResponse) Set ¶

func (*NullableCreateBookmarkResponse) UnmarshalJSON ¶

func (v *NullableCreateBookmarkResponse) UnmarshalJSON(src []byte) error

func (*NullableCreateBookmarkResponse) Unset ¶

func (v *NullableCreateBookmarkResponse) Unset()

type NullableCreateBookmarkResponseData ¶

type NullableCreateBookmarkResponseData struct {
	// contains filtered or unexported fields
}

func (NullableCreateBookmarkResponseData) Get ¶

func (NullableCreateBookmarkResponseData) IsSet ¶

func (NullableCreateBookmarkResponseData) MarshalJSON ¶

func (v NullableCreateBookmarkResponseData) MarshalJSON() ([]byte, error)

func (*NullableCreateBookmarkResponseData) Set ¶

func (*NullableCreateBookmarkResponseData) UnmarshalJSON ¶

func (v *NullableCreateBookmarkResponseData) UnmarshalJSON(src []byte) error

func (*NullableCreateBookmarkResponseData) Unset ¶

type NullableCreateRetweet ¶

type NullableCreateRetweet struct {
	// contains filtered or unexported fields
}

func NewNullableCreateRetweet ¶

func NewNullableCreateRetweet(val *CreateRetweet) *NullableCreateRetweet

func (NullableCreateRetweet) Get ¶

func (NullableCreateRetweet) IsSet ¶

func (v NullableCreateRetweet) IsSet() bool

func (NullableCreateRetweet) MarshalJSON ¶

func (v NullableCreateRetweet) MarshalJSON() ([]byte, error)

func (*NullableCreateRetweet) Set ¶

func (v *NullableCreateRetweet) Set(val *CreateRetweet)

func (*NullableCreateRetweet) UnmarshalJSON ¶

func (v *NullableCreateRetweet) UnmarshalJSON(src []byte) error

func (*NullableCreateRetweet) Unset ¶

func (v *NullableCreateRetweet) Unset()

type NullableCreateRetweetResponse ¶

type NullableCreateRetweetResponse struct {
	// contains filtered or unexported fields
}

func (NullableCreateRetweetResponse) Get ¶

func (NullableCreateRetweetResponse) IsSet ¶

func (NullableCreateRetweetResponse) MarshalJSON ¶

func (v NullableCreateRetweetResponse) MarshalJSON() ([]byte, error)

func (*NullableCreateRetweetResponse) Set ¶

func (*NullableCreateRetweetResponse) UnmarshalJSON ¶

func (v *NullableCreateRetweetResponse) UnmarshalJSON(src []byte) error

func (*NullableCreateRetweetResponse) Unset ¶

func (v *NullableCreateRetweetResponse) Unset()

type NullableCreateRetweetResponseData ¶

type NullableCreateRetweetResponseData struct {
	// contains filtered or unexported fields
}

func (NullableCreateRetweetResponseData) Get ¶

func (NullableCreateRetweetResponseData) IsSet ¶

func (NullableCreateRetweetResponseData) MarshalJSON ¶

func (v NullableCreateRetweetResponseData) MarshalJSON() ([]byte, error)

func (*NullableCreateRetweetResponseData) Set ¶

func (*NullableCreateRetweetResponseData) UnmarshalJSON ¶

func (v *NullableCreateRetweetResponseData) UnmarshalJSON(src []byte) error

func (*NullableCreateRetweetResponseData) Unset ¶

type NullableCreateRetweetResponseResult ¶

type NullableCreateRetweetResponseResult struct {
	// contains filtered or unexported fields
}

func (NullableCreateRetweetResponseResult) Get ¶

func (NullableCreateRetweetResponseResult) IsSet ¶

func (NullableCreateRetweetResponseResult) MarshalJSON ¶

func (v NullableCreateRetweetResponseResult) MarshalJSON() ([]byte, error)

func (*NullableCreateRetweetResponseResult) Set ¶

func (*NullableCreateRetweetResponseResult) UnmarshalJSON ¶

func (v *NullableCreateRetweetResponseResult) UnmarshalJSON(src []byte) error

func (*NullableCreateRetweetResponseResult) Unset ¶

type NullableCreateTweet ¶

type NullableCreateTweet struct {
	// contains filtered or unexported fields
}

func NewNullableCreateTweet ¶

func NewNullableCreateTweet(val *CreateTweet) *NullableCreateTweet

func (NullableCreateTweet) Get ¶

func (NullableCreateTweet) IsSet ¶

func (v NullableCreateTweet) IsSet() bool

func (NullableCreateTweet) MarshalJSON ¶

func (v NullableCreateTweet) MarshalJSON() ([]byte, error)

func (*NullableCreateTweet) Set ¶

func (v *NullableCreateTweet) Set(val *CreateTweet)

func (*NullableCreateTweet) UnmarshalJSON ¶

func (v *NullableCreateTweet) UnmarshalJSON(src []byte) error

func (*NullableCreateTweet) Unset ¶

func (v *NullableCreateTweet) Unset()

type NullableCreateTweetResponse ¶

type NullableCreateTweetResponse struct {
	// contains filtered or unexported fields
}

func (NullableCreateTweetResponse) Get ¶

func (NullableCreateTweetResponse) IsSet ¶

func (NullableCreateTweetResponse) MarshalJSON ¶

func (v NullableCreateTweetResponse) MarshalJSON() ([]byte, error)

func (*NullableCreateTweetResponse) Set ¶

func (*NullableCreateTweetResponse) UnmarshalJSON ¶

func (v *NullableCreateTweetResponse) UnmarshalJSON(src []byte) error

func (*NullableCreateTweetResponse) Unset ¶

func (v *NullableCreateTweetResponse) Unset()

type NullableCreateTweetResponseData ¶

type NullableCreateTweetResponseData struct {
	// contains filtered or unexported fields
}

func (NullableCreateTweetResponseData) Get ¶

func (NullableCreateTweetResponseData) IsSet ¶

func (NullableCreateTweetResponseData) MarshalJSON ¶

func (v NullableCreateTweetResponseData) MarshalJSON() ([]byte, error)

func (*NullableCreateTweetResponseData) Set ¶

func (*NullableCreateTweetResponseData) UnmarshalJSON ¶

func (v *NullableCreateTweetResponseData) UnmarshalJSON(src []byte) error

func (*NullableCreateTweetResponseData) Unset ¶

type NullableCreateTweetResponseResult ¶

type NullableCreateTweetResponseResult struct {
	// contains filtered or unexported fields
}

func (NullableCreateTweetResponseResult) Get ¶

func (NullableCreateTweetResponseResult) IsSet ¶

func (NullableCreateTweetResponseResult) MarshalJSON ¶

func (v NullableCreateTweetResponseResult) MarshalJSON() ([]byte, error)

func (*NullableCreateTweetResponseResult) Set ¶

func (*NullableCreateTweetResponseResult) UnmarshalJSON ¶

func (v *NullableCreateTweetResponseResult) UnmarshalJSON(src []byte) error

func (*NullableCreateTweetResponseResult) Unset ¶

type NullableCtaClientEventInfo ¶

type NullableCtaClientEventInfo struct {
	// contains filtered or unexported fields
}

func NewNullableCtaClientEventInfo ¶

func NewNullableCtaClientEventInfo(val *CtaClientEventInfo) *NullableCtaClientEventInfo

func (NullableCtaClientEventInfo) Get ¶

func (NullableCtaClientEventInfo) IsSet ¶

func (v NullableCtaClientEventInfo) IsSet() bool

func (NullableCtaClientEventInfo) MarshalJSON ¶

func (v NullableCtaClientEventInfo) MarshalJSON() ([]byte, error)

func (*NullableCtaClientEventInfo) Set ¶

func (*NullableCtaClientEventInfo) UnmarshalJSON ¶

func (v *NullableCtaClientEventInfo) UnmarshalJSON(src []byte) error

func (*NullableCtaClientEventInfo) Unset ¶

func (v *NullableCtaClientEventInfo) Unset()

type NullableCursorType ¶

type NullableCursorType struct {
	// contains filtered or unexported fields
}

func NewNullableCursorType ¶

func NewNullableCursorType(val *CursorType) *NullableCursorType

func (NullableCursorType) Get ¶

func (v NullableCursorType) Get() *CursorType

func (NullableCursorType) IsSet ¶

func (v NullableCursorType) IsSet() bool

func (NullableCursorType) MarshalJSON ¶

func (v NullableCursorType) MarshalJSON() ([]byte, error)

func (*NullableCursorType) Set ¶

func (v *NullableCursorType) Set(val *CursorType)

func (*NullableCursorType) UnmarshalJSON ¶

func (v *NullableCursorType) UnmarshalJSON(src []byte) error

func (*NullableCursorType) Unset ¶

func (v *NullableCursorType) Unset()

type NullableDeleteBookmarkResponse ¶

type NullableDeleteBookmarkResponse struct {
	// contains filtered or unexported fields
}

func (NullableDeleteBookmarkResponse) Get ¶

func (NullableDeleteBookmarkResponse) IsSet ¶

func (NullableDeleteBookmarkResponse) MarshalJSON ¶

func (v NullableDeleteBookmarkResponse) MarshalJSON() ([]byte, error)

func (*NullableDeleteBookmarkResponse) Set ¶

func (*NullableDeleteBookmarkResponse) UnmarshalJSON ¶

func (v *NullableDeleteBookmarkResponse) UnmarshalJSON(src []byte) error

func (*NullableDeleteBookmarkResponse) Unset ¶

func (v *NullableDeleteBookmarkResponse) Unset()

type NullableDeleteBookmarkResponseData ¶

type NullableDeleteBookmarkResponseData struct {
	// contains filtered or unexported fields
}

func (NullableDeleteBookmarkResponseData) Get ¶

func (NullableDeleteBookmarkResponseData) IsSet ¶

func (NullableDeleteBookmarkResponseData) MarshalJSON ¶

func (v NullableDeleteBookmarkResponseData) MarshalJSON() ([]byte, error)

func (*NullableDeleteBookmarkResponseData) Set ¶

func (*NullableDeleteBookmarkResponseData) UnmarshalJSON ¶

func (v *NullableDeleteBookmarkResponseData) UnmarshalJSON(src []byte) error

func (*NullableDeleteBookmarkResponseData) Unset ¶

type NullableDeleteRetweet ¶

type NullableDeleteRetweet struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteRetweet ¶

func NewNullableDeleteRetweet(val *DeleteRetweet) *NullableDeleteRetweet

func (NullableDeleteRetweet) Get ¶

func (NullableDeleteRetweet) IsSet ¶

func (v NullableDeleteRetweet) IsSet() bool

func (NullableDeleteRetweet) MarshalJSON ¶

func (v NullableDeleteRetweet) MarshalJSON() ([]byte, error)

func (*NullableDeleteRetweet) Set ¶

func (v *NullableDeleteRetweet) Set(val *DeleteRetweet)

func (*NullableDeleteRetweet) UnmarshalJSON ¶

func (v *NullableDeleteRetweet) UnmarshalJSON(src []byte) error

func (*NullableDeleteRetweet) Unset ¶

func (v *NullableDeleteRetweet) Unset()

type NullableDeleteRetweetResponse ¶

type NullableDeleteRetweetResponse struct {
	// contains filtered or unexported fields
}

func (NullableDeleteRetweetResponse) Get ¶

func (NullableDeleteRetweetResponse) IsSet ¶

func (NullableDeleteRetweetResponse) MarshalJSON ¶

func (v NullableDeleteRetweetResponse) MarshalJSON() ([]byte, error)

func (*NullableDeleteRetweetResponse) Set ¶

func (*NullableDeleteRetweetResponse) UnmarshalJSON ¶

func (v *NullableDeleteRetweetResponse) UnmarshalJSON(src []byte) error

func (*NullableDeleteRetweetResponse) Unset ¶

func (v *NullableDeleteRetweetResponse) Unset()

type NullableDeleteRetweetResponseData ¶

type NullableDeleteRetweetResponseData struct {
	// contains filtered or unexported fields
}

func (NullableDeleteRetweetResponseData) Get ¶

func (NullableDeleteRetweetResponseData) IsSet ¶

func (NullableDeleteRetweetResponseData) MarshalJSON ¶

func (v NullableDeleteRetweetResponseData) MarshalJSON() ([]byte, error)

func (*NullableDeleteRetweetResponseData) Set ¶

func (*NullableDeleteRetweetResponseData) UnmarshalJSON ¶

func (v *NullableDeleteRetweetResponseData) UnmarshalJSON(src []byte) error

func (*NullableDeleteRetweetResponseData) Unset ¶

type NullableDeleteRetweetResponseResult ¶

type NullableDeleteRetweetResponseResult struct {
	// contains filtered or unexported fields
}

func (NullableDeleteRetweetResponseResult) Get ¶

func (NullableDeleteRetweetResponseResult) IsSet ¶

func (NullableDeleteRetweetResponseResult) MarshalJSON ¶

func (v NullableDeleteRetweetResponseResult) MarshalJSON() ([]byte, error)

func (*NullableDeleteRetweetResponseResult) Set ¶

func (*NullableDeleteRetweetResponseResult) UnmarshalJSON ¶

func (v *NullableDeleteRetweetResponseResult) UnmarshalJSON(src []byte) error

func (*NullableDeleteRetweetResponseResult) Unset ¶

type NullableDeleteTweetResponse ¶

type NullableDeleteTweetResponse struct {
	// contains filtered or unexported fields
}

func (NullableDeleteTweetResponse) Get ¶

func (NullableDeleteTweetResponse) IsSet ¶

func (NullableDeleteTweetResponse) MarshalJSON ¶

func (v NullableDeleteTweetResponse) MarshalJSON() ([]byte, error)

func (*NullableDeleteTweetResponse) Set ¶

func (*NullableDeleteTweetResponse) UnmarshalJSON ¶

func (v *NullableDeleteTweetResponse) UnmarshalJSON(src []byte) error

func (*NullableDeleteTweetResponse) Unset ¶

func (v *NullableDeleteTweetResponse) Unset()

type NullableDeleteTweetResponseData ¶

type NullableDeleteTweetResponseData struct {
	// contains filtered or unexported fields
}

func (NullableDeleteTweetResponseData) Get ¶

func (NullableDeleteTweetResponseData) IsSet ¶

func (NullableDeleteTweetResponseData) MarshalJSON ¶

func (v NullableDeleteTweetResponseData) MarshalJSON() ([]byte, error)

func (*NullableDeleteTweetResponseData) Set ¶

func (*NullableDeleteTweetResponseData) UnmarshalJSON ¶

func (v *NullableDeleteTweetResponseData) UnmarshalJSON(src []byte) error

func (*NullableDeleteTweetResponseData) Unset ¶

type NullableDeleteTweetResponseResult ¶

type NullableDeleteTweetResponseResult struct {
	// contains filtered or unexported fields
}

func (NullableDeleteTweetResponseResult) Get ¶

func (NullableDeleteTweetResponseResult) IsSet ¶

func (NullableDeleteTweetResponseResult) MarshalJSON ¶

func (v NullableDeleteTweetResponseResult) MarshalJSON() ([]byte, error)

func (*NullableDeleteTweetResponseResult) Set ¶

func (*NullableDeleteTweetResponseResult) UnmarshalJSON ¶

func (v *NullableDeleteTweetResponseResult) UnmarshalJSON(src []byte) error

func (*NullableDeleteTweetResponseResult) Unset ¶

type NullableDisplayTreatment ¶

type NullableDisplayTreatment struct {
	// contains filtered or unexported fields
}

func NewNullableDisplayTreatment ¶

func NewNullableDisplayTreatment(val *DisplayTreatment) *NullableDisplayTreatment

func (NullableDisplayTreatment) Get ¶

func (NullableDisplayTreatment) IsSet ¶

func (v NullableDisplayTreatment) IsSet() bool

func (NullableDisplayTreatment) MarshalJSON ¶

func (v NullableDisplayTreatment) MarshalJSON() ([]byte, error)

func (*NullableDisplayTreatment) Set ¶

func (*NullableDisplayTreatment) UnmarshalJSON ¶

func (v *NullableDisplayTreatment) UnmarshalJSON(src []byte) error

func (*NullableDisplayTreatment) Unset ¶

func (v *NullableDisplayTreatment) Unset()

type NullableDisplayType ¶

type NullableDisplayType struct {
	// contains filtered or unexported fields
}

func NewNullableDisplayType ¶

func NewNullableDisplayType(val *DisplayType) *NullableDisplayType

func (NullableDisplayType) Get ¶

func (NullableDisplayType) IsSet ¶

func (v NullableDisplayType) IsSet() bool

func (NullableDisplayType) MarshalJSON ¶

func (v NullableDisplayType) MarshalJSON() ([]byte, error)

func (*NullableDisplayType) Set ¶

func (v *NullableDisplayType) Set(val *DisplayType)

func (*NullableDisplayType) UnmarshalJSON ¶

func (v *NullableDisplayType) UnmarshalJSON(src []byte) error

func (*NullableDisplayType) Unset ¶

func (v *NullableDisplayType) Unset()

type NullableEntities ¶

type NullableEntities struct {
	// contains filtered or unexported fields
}

func NewNullableEntities ¶

func NewNullableEntities(val *Entities) *NullableEntities

func (NullableEntities) Get ¶

func (v NullableEntities) Get() *Entities

func (NullableEntities) IsSet ¶

func (v NullableEntities) IsSet() bool

func (NullableEntities) MarshalJSON ¶

func (v NullableEntities) MarshalJSON() ([]byte, error)

func (*NullableEntities) Set ¶

func (v *NullableEntities) Set(val *Entities)

func (*NullableEntities) UnmarshalJSON ¶

func (v *NullableEntities) UnmarshalJSON(src []byte) error

func (*NullableEntities) Unset ¶

func (v *NullableEntities) Unset()

type NullableError ¶

type NullableError struct {
	// contains filtered or unexported fields
}

func NewNullableError ¶

func NewNullableError(val *Error) *NullableError

func (NullableError) Get ¶

func (v NullableError) Get() *Error

func (NullableError) IsSet ¶

func (v NullableError) IsSet() bool

func (NullableError) MarshalJSON ¶

func (v NullableError) MarshalJSON() ([]byte, error)

func (*NullableError) Set ¶

func (v *NullableError) Set(val *Error)

func (*NullableError) UnmarshalJSON ¶

func (v *NullableError) UnmarshalJSON(src []byte) error

func (*NullableError) Unset ¶

func (v *NullableError) Unset()

type NullableErrorExtensions ¶

type NullableErrorExtensions struct {
	// contains filtered or unexported fields
}

func NewNullableErrorExtensions ¶

func NewNullableErrorExtensions(val *ErrorExtensions) *NullableErrorExtensions

func (NullableErrorExtensions) Get ¶

func (NullableErrorExtensions) IsSet ¶

func (v NullableErrorExtensions) IsSet() bool

func (NullableErrorExtensions) MarshalJSON ¶

func (v NullableErrorExtensions) MarshalJSON() ([]byte, error)

func (*NullableErrorExtensions) Set ¶

func (*NullableErrorExtensions) UnmarshalJSON ¶

func (v *NullableErrorExtensions) UnmarshalJSON(src []byte) error

func (*NullableErrorExtensions) Unset ¶

func (v *NullableErrorExtensions) Unset()

type NullableErrors ¶

type NullableErrors struct {
	// contains filtered or unexported fields
}

func NewNullableErrors ¶

func NewNullableErrors(val *Errors) *NullableErrors

func (NullableErrors) Get ¶

func (v NullableErrors) Get() *Errors

func (NullableErrors) IsSet ¶

func (v NullableErrors) IsSet() bool

func (NullableErrors) MarshalJSON ¶

func (v NullableErrors) MarshalJSON() ([]byte, error)

func (*NullableErrors) Set ¶

func (v *NullableErrors) Set(val *Errors)

func (*NullableErrors) UnmarshalJSON ¶

func (v *NullableErrors) UnmarshalJSON(src []byte) error

func (*NullableErrors) Unset ¶

func (v *NullableErrors) Unset()

type NullableErrorsData ¶

type NullableErrorsData struct {
	// contains filtered or unexported fields
}

func NewNullableErrorsData ¶

func NewNullableErrorsData(val *ErrorsData) *NullableErrorsData

func (NullableErrorsData) Get ¶

func (v NullableErrorsData) Get() *ErrorsData

func (NullableErrorsData) IsSet ¶

func (v NullableErrorsData) IsSet() bool

func (NullableErrorsData) MarshalJSON ¶

func (v NullableErrorsData) MarshalJSON() ([]byte, error)

func (*NullableErrorsData) Set ¶

func (v *NullableErrorsData) Set(val *ErrorsData)

func (*NullableErrorsData) UnmarshalJSON ¶

func (v *NullableErrorsData) UnmarshalJSON(src []byte) error

func (*NullableErrorsData) Unset ¶

func (v *NullableErrorsData) Unset()

type NullableExtMediaAvailability ¶

type NullableExtMediaAvailability struct {
	// contains filtered or unexported fields
}

func (NullableExtMediaAvailability) Get ¶

func (NullableExtMediaAvailability) IsSet ¶

func (NullableExtMediaAvailability) MarshalJSON ¶

func (v NullableExtMediaAvailability) MarshalJSON() ([]byte, error)

func (*NullableExtMediaAvailability) Set ¶

func (*NullableExtMediaAvailability) UnmarshalJSON ¶

func (v *NullableExtMediaAvailability) UnmarshalJSON(src []byte) error

func (*NullableExtMediaAvailability) Unset ¶

func (v *NullableExtMediaAvailability) Unset()

type NullableExtendedEntities ¶

type NullableExtendedEntities struct {
	// contains filtered or unexported fields
}

func NewNullableExtendedEntities ¶

func NewNullableExtendedEntities(val *ExtendedEntities) *NullableExtendedEntities

func (NullableExtendedEntities) Get ¶

func (NullableExtendedEntities) IsSet ¶

func (v NullableExtendedEntities) IsSet() bool

func (NullableExtendedEntities) MarshalJSON ¶

func (v NullableExtendedEntities) MarshalJSON() ([]byte, error)

func (*NullableExtendedEntities) Set ¶

func (*NullableExtendedEntities) UnmarshalJSON ¶

func (v *NullableExtendedEntities) UnmarshalJSON(src []byte) error

func (*NullableExtendedEntities) Unset ¶

func (v *NullableExtendedEntities) Unset()

type NullableFavoriteTweet ¶

type NullableFavoriteTweet struct {
	// contains filtered or unexported fields
}

func NewNullableFavoriteTweet ¶

func NewNullableFavoriteTweet(val *FavoriteTweet) *NullableFavoriteTweet

func (NullableFavoriteTweet) Get ¶

func (NullableFavoriteTweet) IsSet ¶

func (v NullableFavoriteTweet) IsSet() bool

func (NullableFavoriteTweet) MarshalJSON ¶

func (v NullableFavoriteTweet) MarshalJSON() ([]byte, error)

func (*NullableFavoriteTweet) Set ¶

func (v *NullableFavoriteTweet) Set(val *FavoriteTweet)

func (*NullableFavoriteTweet) UnmarshalJSON ¶

func (v *NullableFavoriteTweet) UnmarshalJSON(src []byte) error

func (*NullableFavoriteTweet) Unset ¶

func (v *NullableFavoriteTweet) Unset()

type NullableFavoriteTweetResponseData ¶

type NullableFavoriteTweetResponseData struct {
	// contains filtered or unexported fields
}

func (NullableFavoriteTweetResponseData) Get ¶

func (NullableFavoriteTweetResponseData) IsSet ¶

func (NullableFavoriteTweetResponseData) MarshalJSON ¶

func (v NullableFavoriteTweetResponseData) MarshalJSON() ([]byte, error)

func (*NullableFavoriteTweetResponseData) Set ¶

func (*NullableFavoriteTweetResponseData) UnmarshalJSON ¶

func (v *NullableFavoriteTweetResponseData) UnmarshalJSON(src []byte) error

func (*NullableFavoriteTweetResponseData) Unset ¶

type NullableFeedbackInfo ¶

type NullableFeedbackInfo struct {
	// contains filtered or unexported fields
}

func NewNullableFeedbackInfo ¶

func NewNullableFeedbackInfo(val *FeedbackInfo) *NullableFeedbackInfo

func (NullableFeedbackInfo) Get ¶

func (NullableFeedbackInfo) IsSet ¶

func (v NullableFeedbackInfo) IsSet() bool

func (NullableFeedbackInfo) MarshalJSON ¶

func (v NullableFeedbackInfo) MarshalJSON() ([]byte, error)

func (*NullableFeedbackInfo) Set ¶

func (v *NullableFeedbackInfo) Set(val *FeedbackInfo)

func (*NullableFeedbackInfo) UnmarshalJSON ¶

func (v *NullableFeedbackInfo) UnmarshalJSON(src []byte) error

func (*NullableFeedbackInfo) Unset ¶

func (v *NullableFeedbackInfo) 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 NullableFollowResponse ¶

type NullableFollowResponse struct {
	// contains filtered or unexported fields
}

func NewNullableFollowResponse ¶

func NewNullableFollowResponse(val *FollowResponse) *NullableFollowResponse

func (NullableFollowResponse) Get ¶

func (NullableFollowResponse) IsSet ¶

func (v NullableFollowResponse) IsSet() bool

func (NullableFollowResponse) MarshalJSON ¶

func (v NullableFollowResponse) MarshalJSON() ([]byte, error)

func (*NullableFollowResponse) Set ¶

func (*NullableFollowResponse) UnmarshalJSON ¶

func (v *NullableFollowResponse) UnmarshalJSON(src []byte) error

func (*NullableFollowResponse) Unset ¶

func (v *NullableFollowResponse) Unset()

type NullableFollowResponseData ¶

type NullableFollowResponseData struct {
	// contains filtered or unexported fields
}

func NewNullableFollowResponseData ¶

func NewNullableFollowResponseData(val *FollowResponseData) *NullableFollowResponseData

func (NullableFollowResponseData) Get ¶

func (NullableFollowResponseData) IsSet ¶

func (v NullableFollowResponseData) IsSet() bool

func (NullableFollowResponseData) MarshalJSON ¶

func (v NullableFollowResponseData) MarshalJSON() ([]byte, error)

func (*NullableFollowResponseData) Set ¶

func (*NullableFollowResponseData) UnmarshalJSON ¶

func (v *NullableFollowResponseData) UnmarshalJSON(src []byte) error

func (*NullableFollowResponseData) Unset ¶

func (v *NullableFollowResponseData) Unset()

type NullableFollowResponseResult ¶

type NullableFollowResponseResult struct {
	// contains filtered or unexported fields
}

func (NullableFollowResponseResult) Get ¶

func (NullableFollowResponseResult) IsSet ¶

func (NullableFollowResponseResult) MarshalJSON ¶

func (v NullableFollowResponseResult) MarshalJSON() ([]byte, error)

func (*NullableFollowResponseResult) Set ¶

func (*NullableFollowResponseResult) UnmarshalJSON ¶

func (v *NullableFollowResponseResult) UnmarshalJSON(src []byte) error

func (*NullableFollowResponseResult) Unset ¶

func (v *NullableFollowResponseResult) Unset()

type NullableFollowResponseUser ¶

type NullableFollowResponseUser struct {
	// contains filtered or unexported fields
}

func NewNullableFollowResponseUser ¶

func NewNullableFollowResponseUser(val *FollowResponseUser) *NullableFollowResponseUser

func (NullableFollowResponseUser) Get ¶

func (NullableFollowResponseUser) IsSet ¶

func (v NullableFollowResponseUser) IsSet() bool

func (NullableFollowResponseUser) MarshalJSON ¶

func (v NullableFollowResponseUser) MarshalJSON() ([]byte, error)

func (*NullableFollowResponseUser) Set ¶

func (*NullableFollowResponseUser) UnmarshalJSON ¶

func (v *NullableFollowResponseUser) UnmarshalJSON(src []byte) error

func (*NullableFollowResponseUser) Unset ¶

func (v *NullableFollowResponseUser) Unset()

type NullableFollowTimeline ¶

type NullableFollowTimeline struct {
	// contains filtered or unexported fields
}

func NewNullableFollowTimeline ¶

func NewNullableFollowTimeline(val *FollowTimeline) *NullableFollowTimeline

func (NullableFollowTimeline) Get ¶

func (NullableFollowTimeline) IsSet ¶

func (v NullableFollowTimeline) IsSet() bool

func (NullableFollowTimeline) MarshalJSON ¶

func (v NullableFollowTimeline) MarshalJSON() ([]byte, error)

func (*NullableFollowTimeline) Set ¶

func (*NullableFollowTimeline) UnmarshalJSON ¶

func (v *NullableFollowTimeline) UnmarshalJSON(src []byte) error

func (*NullableFollowTimeline) Unset ¶

func (v *NullableFollowTimeline) Unset()

type NullableGetBookmarks200Response ¶

type NullableGetBookmarks200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetBookmarks200Response) Get ¶

func (NullableGetBookmarks200Response) IsSet ¶

func (NullableGetBookmarks200Response) MarshalJSON ¶

func (v NullableGetBookmarks200Response) MarshalJSON() ([]byte, error)

func (*NullableGetBookmarks200Response) Set ¶

func (*NullableGetBookmarks200Response) UnmarshalJSON ¶

func (v *NullableGetBookmarks200Response) UnmarshalJSON(src []byte) error

func (*NullableGetBookmarks200Response) Unset ¶

type NullableGetFavoriters200Response ¶

type NullableGetFavoriters200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetFavoriters200Response) Get ¶

func (NullableGetFavoriters200Response) IsSet ¶

func (NullableGetFavoriters200Response) MarshalJSON ¶

func (v NullableGetFavoriters200Response) MarshalJSON() ([]byte, error)

func (*NullableGetFavoriters200Response) Set ¶

func (*NullableGetFavoriters200Response) UnmarshalJSON ¶

func (v *NullableGetFavoriters200Response) UnmarshalJSON(src []byte) error

func (*NullableGetFavoriters200Response) Unset ¶

type NullableGetFollowers200Response ¶

type NullableGetFollowers200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetFollowers200Response) Get ¶

func (NullableGetFollowers200Response) IsSet ¶

func (NullableGetFollowers200Response) MarshalJSON ¶

func (v NullableGetFollowers200Response) MarshalJSON() ([]byte, error)

func (*NullableGetFollowers200Response) Set ¶

func (*NullableGetFollowers200Response) UnmarshalJSON ¶

func (v *NullableGetFollowers200Response) UnmarshalJSON(src []byte) error

func (*NullableGetFollowers200Response) Unset ¶

type NullableGetHomeLatestTimeline200Response ¶

type NullableGetHomeLatestTimeline200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetHomeLatestTimeline200Response) Get ¶

func (NullableGetHomeLatestTimeline200Response) IsSet ¶

func (NullableGetHomeLatestTimeline200Response) MarshalJSON ¶

func (*NullableGetHomeLatestTimeline200Response) Set ¶

func (*NullableGetHomeLatestTimeline200Response) UnmarshalJSON ¶

func (v *NullableGetHomeLatestTimeline200Response) UnmarshalJSON(src []byte) error

func (*NullableGetHomeLatestTimeline200Response) Unset ¶

type NullableGetLikes200Response ¶

type NullableGetLikes200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetLikes200Response) Get ¶

func (NullableGetLikes200Response) IsSet ¶

func (NullableGetLikes200Response) MarshalJSON ¶

func (v NullableGetLikes200Response) MarshalJSON() ([]byte, error)

func (*NullableGetLikes200Response) Set ¶

func (*NullableGetLikes200Response) UnmarshalJSON ¶

func (v *NullableGetLikes200Response) UnmarshalJSON(src []byte) error

func (*NullableGetLikes200Response) Unset ¶

func (v *NullableGetLikes200Response) Unset()

type NullableGetListLatestTweetsTimeline200Response ¶

type NullableGetListLatestTweetsTimeline200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetListLatestTweetsTimeline200Response) Get ¶

func (NullableGetListLatestTweetsTimeline200Response) IsSet ¶

func (NullableGetListLatestTweetsTimeline200Response) MarshalJSON ¶

func (*NullableGetListLatestTweetsTimeline200Response) Set ¶

func (*NullableGetListLatestTweetsTimeline200Response) UnmarshalJSON ¶

func (*NullableGetListLatestTweetsTimeline200Response) Unset ¶

type NullableGetProfileSpotlightsQuery200Response ¶

type NullableGetProfileSpotlightsQuery200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetProfileSpotlightsQuery200Response) Get ¶

func (NullableGetProfileSpotlightsQuery200Response) IsSet ¶

func (NullableGetProfileSpotlightsQuery200Response) MarshalJSON ¶

func (*NullableGetProfileSpotlightsQuery200Response) Set ¶

func (*NullableGetProfileSpotlightsQuery200Response) UnmarshalJSON ¶

func (*NullableGetProfileSpotlightsQuery200Response) Unset ¶

type NullableGetRetweeters200Response ¶

type NullableGetRetweeters200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetRetweeters200Response) Get ¶

func (NullableGetRetweeters200Response) IsSet ¶

func (NullableGetRetweeters200Response) MarshalJSON ¶

func (v NullableGetRetweeters200Response) MarshalJSON() ([]byte, error)

func (*NullableGetRetweeters200Response) Set ¶

func (*NullableGetRetweeters200Response) UnmarshalJSON ¶

func (v *NullableGetRetweeters200Response) UnmarshalJSON(src []byte) error

func (*NullableGetRetweeters200Response) Unset ¶

type NullableGetSearchTimeline200Response ¶

type NullableGetSearchTimeline200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetSearchTimeline200Response) Get ¶

func (NullableGetSearchTimeline200Response) IsSet ¶

func (NullableGetSearchTimeline200Response) MarshalJSON ¶

func (v NullableGetSearchTimeline200Response) MarshalJSON() ([]byte, error)

func (*NullableGetSearchTimeline200Response) Set ¶

func (*NullableGetSearchTimeline200Response) UnmarshalJSON ¶

func (v *NullableGetSearchTimeline200Response) UnmarshalJSON(src []byte) error

func (*NullableGetSearchTimeline200Response) Unset ¶

type NullableGetTweetDetail200Response ¶

type NullableGetTweetDetail200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetTweetDetail200Response) Get ¶

func (NullableGetTweetDetail200Response) IsSet ¶

func (NullableGetTweetDetail200Response) MarshalJSON ¶

func (v NullableGetTweetDetail200Response) MarshalJSON() ([]byte, error)

func (*NullableGetTweetDetail200Response) Set ¶

func (*NullableGetTweetDetail200Response) UnmarshalJSON ¶

func (v *NullableGetTweetDetail200Response) UnmarshalJSON(src []byte) error

func (*NullableGetTweetDetail200Response) Unset ¶

type NullableGetTweetResultByRestId200Response ¶

type NullableGetTweetResultByRestId200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetTweetResultByRestId200Response) Get ¶

func (NullableGetTweetResultByRestId200Response) IsSet ¶

func (NullableGetTweetResultByRestId200Response) MarshalJSON ¶

func (*NullableGetTweetResultByRestId200Response) Set ¶

func (*NullableGetTweetResultByRestId200Response) UnmarshalJSON ¶

func (v *NullableGetTweetResultByRestId200Response) UnmarshalJSON(src []byte) error

func (*NullableGetTweetResultByRestId200Response) Unset ¶

type NullableGetUserByRestId200Response ¶

type NullableGetUserByRestId200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetUserByRestId200Response) Get ¶

func (NullableGetUserByRestId200Response) IsSet ¶

func (NullableGetUserByRestId200Response) MarshalJSON ¶

func (v NullableGetUserByRestId200Response) MarshalJSON() ([]byte, error)

func (*NullableGetUserByRestId200Response) Set ¶

func (*NullableGetUserByRestId200Response) UnmarshalJSON ¶

func (v *NullableGetUserByRestId200Response) UnmarshalJSON(src []byte) error

func (*NullableGetUserByRestId200Response) Unset ¶

type NullableGetUserHighlightsTweets200Response ¶

type NullableGetUserHighlightsTweets200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetUserHighlightsTweets200Response) Get ¶

func (NullableGetUserHighlightsTweets200Response) IsSet ¶

func (NullableGetUserHighlightsTweets200Response) MarshalJSON ¶

func (*NullableGetUserHighlightsTweets200Response) Set ¶

func (*NullableGetUserHighlightsTweets200Response) UnmarshalJSON ¶

func (v *NullableGetUserHighlightsTweets200Response) UnmarshalJSON(src []byte) error

func (*NullableGetUserHighlightsTweets200Response) Unset ¶

type NullableGetUsersByRestIds200Response ¶

type NullableGetUsersByRestIds200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetUsersByRestIds200Response) Get ¶

func (NullableGetUsersByRestIds200Response) IsSet ¶

func (NullableGetUsersByRestIds200Response) MarshalJSON ¶

func (v NullableGetUsersByRestIds200Response) MarshalJSON() ([]byte, error)

func (*NullableGetUsersByRestIds200Response) Set ¶

func (*NullableGetUsersByRestIds200Response) UnmarshalJSON ¶

func (v *NullableGetUsersByRestIds200Response) UnmarshalJSON(src []byte) error

func (*NullableGetUsersByRestIds200Response) Unset ¶

type NullableHighlight ¶

type NullableHighlight struct {
	// contains filtered or unexported fields
}

func NewNullableHighlight ¶

func NewNullableHighlight(val *Highlight) *NullableHighlight

func (NullableHighlight) Get ¶

func (v NullableHighlight) Get() *Highlight

func (NullableHighlight) IsSet ¶

func (v NullableHighlight) IsSet() bool

func (NullableHighlight) MarshalJSON ¶

func (v NullableHighlight) MarshalJSON() ([]byte, error)

func (*NullableHighlight) Set ¶

func (v *NullableHighlight) Set(val *Highlight)

func (*NullableHighlight) UnmarshalJSON ¶

func (v *NullableHighlight) UnmarshalJSON(src []byte) error

func (*NullableHighlight) Unset ¶

func (v *NullableHighlight) Unset()

type NullableHomeTimelineHome ¶

type NullableHomeTimelineHome struct {
	// contains filtered or unexported fields
}

func NewNullableHomeTimelineHome ¶

func NewNullableHomeTimelineHome(val *HomeTimelineHome) *NullableHomeTimelineHome

func (NullableHomeTimelineHome) Get ¶

func (NullableHomeTimelineHome) IsSet ¶

func (v NullableHomeTimelineHome) IsSet() bool

func (NullableHomeTimelineHome) MarshalJSON ¶

func (v NullableHomeTimelineHome) MarshalJSON() ([]byte, error)

func (*NullableHomeTimelineHome) Set ¶

func (*NullableHomeTimelineHome) UnmarshalJSON ¶

func (v *NullableHomeTimelineHome) UnmarshalJSON(src []byte) error

func (*NullableHomeTimelineHome) Unset ¶

func (v *NullableHomeTimelineHome) Unset()

type NullableHomeTimelineResponseData ¶

type NullableHomeTimelineResponseData struct {
	// contains filtered or unexported fields
}

func (NullableHomeTimelineResponseData) Get ¶

func (NullableHomeTimelineResponseData) IsSet ¶

func (NullableHomeTimelineResponseData) MarshalJSON ¶

func (v NullableHomeTimelineResponseData) MarshalJSON() ([]byte, error)

func (*NullableHomeTimelineResponseData) Set ¶

func (*NullableHomeTimelineResponseData) UnmarshalJSON ¶

func (v *NullableHomeTimelineResponseData) UnmarshalJSON(src []byte) error

func (*NullableHomeTimelineResponseData) Unset ¶

type NullableInstructionType ¶

type NullableInstructionType struct {
	// contains filtered or unexported fields
}

func NewNullableInstructionType ¶

func NewNullableInstructionType(val *InstructionType) *NullableInstructionType

func (NullableInstructionType) Get ¶

func (NullableInstructionType) IsSet ¶

func (v NullableInstructionType) IsSet() bool

func (NullableInstructionType) MarshalJSON ¶

func (v NullableInstructionType) MarshalJSON() ([]byte, error)

func (*NullableInstructionType) Set ¶

func (*NullableInstructionType) UnmarshalJSON ¶

func (v *NullableInstructionType) UnmarshalJSON(src []byte) error

func (*NullableInstructionType) Unset ¶

func (v *NullableInstructionType) Unset()

type NullableInstructionUnion ¶

type NullableInstructionUnion struct {
	// contains filtered or unexported fields
}

func NewNullableInstructionUnion ¶

func NewNullableInstructionUnion(val *InstructionUnion) *NullableInstructionUnion

func (NullableInstructionUnion) Get ¶

func (NullableInstructionUnion) IsSet ¶

func (v NullableInstructionUnion) IsSet() bool

func (NullableInstructionUnion) MarshalJSON ¶

func (v NullableInstructionUnion) MarshalJSON() ([]byte, error)

func (*NullableInstructionUnion) Set ¶

func (*NullableInstructionUnion) UnmarshalJSON ¶

func (v *NullableInstructionUnion) UnmarshalJSON(src []byte) error

func (*NullableInstructionUnion) Unset ¶

func (v *NullableInstructionUnion) 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 NullableItemContentUnion ¶

type NullableItemContentUnion struct {
	// contains filtered or unexported fields
}

func NewNullableItemContentUnion ¶

func NewNullableItemContentUnion(val *ItemContentUnion) *NullableItemContentUnion

func (NullableItemContentUnion) Get ¶

func (NullableItemContentUnion) IsSet ¶

func (v NullableItemContentUnion) IsSet() bool

func (NullableItemContentUnion) MarshalJSON ¶

func (v NullableItemContentUnion) MarshalJSON() ([]byte, error)

func (*NullableItemContentUnion) Set ¶

func (*NullableItemContentUnion) UnmarshalJSON ¶

func (v *NullableItemContentUnion) UnmarshalJSON(src []byte) error

func (*NullableItemContentUnion) Unset ¶

func (v *NullableItemContentUnion) Unset()

type NullableItemResult ¶

type NullableItemResult struct {
	// contains filtered or unexported fields
}

func NewNullableItemResult ¶

func NewNullableItemResult(val *ItemResult) *NullableItemResult

func (NullableItemResult) Get ¶

func (v NullableItemResult) Get() *ItemResult

func (NullableItemResult) IsSet ¶

func (v NullableItemResult) IsSet() bool

func (NullableItemResult) MarshalJSON ¶

func (v NullableItemResult) MarshalJSON() ([]byte, error)

func (*NullableItemResult) Set ¶

func (v *NullableItemResult) Set(val *ItemResult)

func (*NullableItemResult) UnmarshalJSON ¶

func (v *NullableItemResult) UnmarshalJSON(src []byte) error

func (*NullableItemResult) Unset ¶

func (v *NullableItemResult) Unset()

type NullableListLatestTweetsTimelineResponse ¶

type NullableListLatestTweetsTimelineResponse struct {
	// contains filtered or unexported fields
}

func (NullableListLatestTweetsTimelineResponse) Get ¶

func (NullableListLatestTweetsTimelineResponse) IsSet ¶

func (NullableListLatestTweetsTimelineResponse) MarshalJSON ¶

func (*NullableListLatestTweetsTimelineResponse) Set ¶

func (*NullableListLatestTweetsTimelineResponse) UnmarshalJSON ¶

func (v *NullableListLatestTweetsTimelineResponse) UnmarshalJSON(src []byte) error

func (*NullableListLatestTweetsTimelineResponse) Unset ¶

type NullableListTweetsTimeline ¶

type NullableListTweetsTimeline struct {
	// contains filtered or unexported fields
}

func NewNullableListTweetsTimeline ¶

func NewNullableListTweetsTimeline(val *ListTweetsTimeline) *NullableListTweetsTimeline

func (NullableListTweetsTimeline) Get ¶

func (NullableListTweetsTimeline) IsSet ¶

func (v NullableListTweetsTimeline) IsSet() bool

func (NullableListTweetsTimeline) MarshalJSON ¶

func (v NullableListTweetsTimeline) MarshalJSON() ([]byte, error)

func (*NullableListTweetsTimeline) Set ¶

func (*NullableListTweetsTimeline) UnmarshalJSON ¶

func (v *NullableListTweetsTimeline) UnmarshalJSON(src []byte) error

func (*NullableListTweetsTimeline) Unset ¶

func (v *NullableListTweetsTimeline) Unset()

type NullableListTweetsTimelineData ¶

type NullableListTweetsTimelineData struct {
	// contains filtered or unexported fields
}

func (NullableListTweetsTimelineData) Get ¶

func (NullableListTweetsTimelineData) IsSet ¶

func (NullableListTweetsTimelineData) MarshalJSON ¶

func (v NullableListTweetsTimelineData) MarshalJSON() ([]byte, error)

func (*NullableListTweetsTimelineData) Set ¶

func (*NullableListTweetsTimelineData) UnmarshalJSON ¶

func (v *NullableListTweetsTimelineData) UnmarshalJSON(src []byte) error

func (*NullableListTweetsTimelineData) Unset ¶

func (v *NullableListTweetsTimelineData) Unset()

type NullableListTweetsTimelineList ¶

type NullableListTweetsTimelineList struct {
	// contains filtered or unexported fields
}

func (NullableListTweetsTimelineList) Get ¶

func (NullableListTweetsTimelineList) IsSet ¶

func (NullableListTweetsTimelineList) MarshalJSON ¶

func (v NullableListTweetsTimelineList) MarshalJSON() ([]byte, error)

func (*NullableListTweetsTimelineList) Set ¶

func (*NullableListTweetsTimelineList) UnmarshalJSON ¶

func (v *NullableListTweetsTimelineList) UnmarshalJSON(src []byte) error

func (*NullableListTweetsTimelineList) Unset ¶

func (v *NullableListTweetsTimelineList) Unset()

type NullableLocation ¶

type NullableLocation struct {
	// contains filtered or unexported fields
}

func NewNullableLocation ¶

func NewNullableLocation(val *Location) *NullableLocation

func (NullableLocation) Get ¶

func (v NullableLocation) Get() *Location

func (NullableLocation) IsSet ¶

func (v NullableLocation) IsSet() bool

func (NullableLocation) MarshalJSON ¶

func (v NullableLocation) MarshalJSON() ([]byte, error)

func (*NullableLocation) Set ¶

func (v *NullableLocation) Set(val *Location)

func (*NullableLocation) UnmarshalJSON ¶

func (v *NullableLocation) UnmarshalJSON(src []byte) error

func (*NullableLocation) Unset ¶

func (v *NullableLocation) Unset()

type NullableMedia ¶

type NullableMedia struct {
	// contains filtered or unexported fields
}

func NewNullableMedia ¶

func NewNullableMedia(val *Media) *NullableMedia

func (NullableMedia) Get ¶

func (v NullableMedia) Get() *Media

func (NullableMedia) IsSet ¶

func (v NullableMedia) IsSet() bool

func (NullableMedia) MarshalJSON ¶

func (v NullableMedia) MarshalJSON() ([]byte, error)

func (*NullableMedia) Set ¶

func (v *NullableMedia) Set(val *Media)

func (*NullableMedia) UnmarshalJSON ¶

func (v *NullableMedia) UnmarshalJSON(src []byte) error

func (*NullableMedia) Unset ¶

func (v *NullableMedia) Unset()

type NullableMediaExtended ¶

type NullableMediaExtended struct {
	// contains filtered or unexported fields
}

func NewNullableMediaExtended ¶

func NewNullableMediaExtended(val *MediaExtended) *NullableMediaExtended

func (NullableMediaExtended) Get ¶

func (NullableMediaExtended) IsSet ¶

func (v NullableMediaExtended) IsSet() bool

func (NullableMediaExtended) MarshalJSON ¶

func (v NullableMediaExtended) MarshalJSON() ([]byte, error)

func (*NullableMediaExtended) Set ¶

func (v *NullableMediaExtended) Set(val *MediaExtended)

func (*NullableMediaExtended) UnmarshalJSON ¶

func (v *NullableMediaExtended) UnmarshalJSON(src []byte) error

func (*NullableMediaExtended) Unset ¶

func (v *NullableMediaExtended) Unset()

type NullableMediaOriginalInfo ¶

type NullableMediaOriginalInfo struct {
	// contains filtered or unexported fields
}

func NewNullableMediaOriginalInfo ¶

func NewNullableMediaOriginalInfo(val *MediaOriginalInfo) *NullableMediaOriginalInfo

func (NullableMediaOriginalInfo) Get ¶

func (NullableMediaOriginalInfo) IsSet ¶

func (v NullableMediaOriginalInfo) IsSet() bool

func (NullableMediaOriginalInfo) MarshalJSON ¶

func (v NullableMediaOriginalInfo) MarshalJSON() ([]byte, error)

func (*NullableMediaOriginalInfo) Set ¶

func (*NullableMediaOriginalInfo) UnmarshalJSON ¶

func (v *NullableMediaOriginalInfo) UnmarshalJSON(src []byte) error

func (*NullableMediaOriginalInfo) Unset ¶

func (v *NullableMediaOriginalInfo) Unset()

type NullableMediaOriginalInfoFocusRect ¶

type NullableMediaOriginalInfoFocusRect struct {
	// contains filtered or unexported fields
}

func (NullableMediaOriginalInfoFocusRect) Get ¶

func (NullableMediaOriginalInfoFocusRect) IsSet ¶

func (NullableMediaOriginalInfoFocusRect) MarshalJSON ¶

func (v NullableMediaOriginalInfoFocusRect) MarshalJSON() ([]byte, error)

func (*NullableMediaOriginalInfoFocusRect) Set ¶

func (*NullableMediaOriginalInfoFocusRect) UnmarshalJSON ¶

func (v *NullableMediaOriginalInfoFocusRect) UnmarshalJSON(src []byte) error

func (*NullableMediaOriginalInfoFocusRect) Unset ¶

type NullableMediaResult ¶

type NullableMediaResult struct {
	// contains filtered or unexported fields
}

func NewNullableMediaResult ¶

func NewNullableMediaResult(val *MediaResult) *NullableMediaResult

func (NullableMediaResult) Get ¶

func (NullableMediaResult) IsSet ¶

func (v NullableMediaResult) IsSet() bool

func (NullableMediaResult) MarshalJSON ¶

func (v NullableMediaResult) MarshalJSON() ([]byte, error)

func (*NullableMediaResult) Set ¶

func (v *NullableMediaResult) Set(val *MediaResult)

func (*NullableMediaResult) UnmarshalJSON ¶

func (v *NullableMediaResult) UnmarshalJSON(src []byte) error

func (*NullableMediaResult) Unset ¶

func (v *NullableMediaResult) Unset()

type NullableMediaResults ¶

type NullableMediaResults struct {
	// contains filtered or unexported fields
}

func NewNullableMediaResults ¶

func NewNullableMediaResults(val *MediaResults) *NullableMediaResults

func (NullableMediaResults) Get ¶

func (NullableMediaResults) IsSet ¶

func (v NullableMediaResults) IsSet() bool

func (NullableMediaResults) MarshalJSON ¶

func (v NullableMediaResults) MarshalJSON() ([]byte, error)

func (*NullableMediaResults) Set ¶

func (v *NullableMediaResults) Set(val *MediaResults)

func (*NullableMediaResults) UnmarshalJSON ¶

func (v *NullableMediaResults) UnmarshalJSON(src []byte) error

func (*NullableMediaResults) Unset ¶

func (v *NullableMediaResults) Unset()

type NullableMediaSize ¶

type NullableMediaSize struct {
	// contains filtered or unexported fields
}

func NewNullableMediaSize ¶

func NewNullableMediaSize(val *MediaSize) *NullableMediaSize

func (NullableMediaSize) Get ¶

func (v NullableMediaSize) Get() *MediaSize

func (NullableMediaSize) IsSet ¶

func (v NullableMediaSize) IsSet() bool

func (NullableMediaSize) MarshalJSON ¶

func (v NullableMediaSize) MarshalJSON() ([]byte, error)

func (*NullableMediaSize) Set ¶

func (v *NullableMediaSize) Set(val *MediaSize)

func (*NullableMediaSize) UnmarshalJSON ¶

func (v *NullableMediaSize) UnmarshalJSON(src []byte) error

func (*NullableMediaSize) Unset ¶

func (v *NullableMediaSize) Unset()

type NullableMediaSizes ¶

type NullableMediaSizes struct {
	// contains filtered or unexported fields
}

func NewNullableMediaSizes ¶

func NewNullableMediaSizes(val *MediaSizes) *NullableMediaSizes

func (NullableMediaSizes) Get ¶

func (v NullableMediaSizes) Get() *MediaSizes

func (NullableMediaSizes) IsSet ¶

func (v NullableMediaSizes) IsSet() bool

func (NullableMediaSizes) MarshalJSON ¶

func (v NullableMediaSizes) MarshalJSON() ([]byte, error)

func (*NullableMediaSizes) Set ¶

func (v *NullableMediaSizes) Set(val *MediaSizes)

func (*NullableMediaSizes) UnmarshalJSON ¶

func (v *NullableMediaSizes) UnmarshalJSON(src []byte) error

func (*NullableMediaSizes) Unset ¶

func (v *NullableMediaSizes) Unset()

type NullableMediaStats ¶

type NullableMediaStats struct {
	// contains filtered or unexported fields
}

func NewNullableMediaStats ¶

func NewNullableMediaStats(val *MediaStats) *NullableMediaStats

func (NullableMediaStats) Get ¶

func (v NullableMediaStats) Get() *MediaStats

func (NullableMediaStats) IsSet ¶

func (v NullableMediaStats) IsSet() bool

func (NullableMediaStats) MarshalJSON ¶

func (v NullableMediaStats) MarshalJSON() ([]byte, error)

func (*NullableMediaStats) Set ¶

func (v *NullableMediaStats) Set(val *MediaStats)

func (*NullableMediaStats) UnmarshalJSON ¶

func (v *NullableMediaStats) UnmarshalJSON(src []byte) error

func (*NullableMediaStats) Unset ¶

func (v *NullableMediaStats) Unset()

type NullableMediaVideoInfo ¶

type NullableMediaVideoInfo struct {
	// contains filtered or unexported fields
}

func NewNullableMediaVideoInfo ¶

func NewNullableMediaVideoInfo(val *MediaVideoInfo) *NullableMediaVideoInfo

func (NullableMediaVideoInfo) Get ¶

func (NullableMediaVideoInfo) IsSet ¶

func (v NullableMediaVideoInfo) IsSet() bool

func (NullableMediaVideoInfo) MarshalJSON ¶

func (v NullableMediaVideoInfo) MarshalJSON() ([]byte, error)

func (*NullableMediaVideoInfo) Set ¶

func (*NullableMediaVideoInfo) UnmarshalJSON ¶

func (v *NullableMediaVideoInfo) UnmarshalJSON(src []byte) error

func (*NullableMediaVideoInfo) Unset ¶

func (v *NullableMediaVideoInfo) Unset()

type NullableMediaVideoInfoVariant ¶

type NullableMediaVideoInfoVariant struct {
	// contains filtered or unexported fields
}

func (NullableMediaVideoInfoVariant) Get ¶

func (NullableMediaVideoInfoVariant) IsSet ¶

func (NullableMediaVideoInfoVariant) MarshalJSON ¶

func (v NullableMediaVideoInfoVariant) MarshalJSON() ([]byte, error)

func (*NullableMediaVideoInfoVariant) Set ¶

func (*NullableMediaVideoInfoVariant) UnmarshalJSON ¶

func (v *NullableMediaVideoInfoVariant) UnmarshalJSON(src []byte) error

func (*NullableMediaVideoInfoVariant) Unset ¶

func (v *NullableMediaVideoInfoVariant) Unset()

type NullableMediaVisibilityResults ¶

type NullableMediaVisibilityResults struct {
	// contains filtered or unexported fields
}

func (NullableMediaVisibilityResults) Get ¶

func (NullableMediaVisibilityResults) IsSet ¶

func (NullableMediaVisibilityResults) MarshalJSON ¶

func (v NullableMediaVisibilityResults) MarshalJSON() ([]byte, error)

func (*NullableMediaVisibilityResults) Set ¶

func (*NullableMediaVisibilityResults) UnmarshalJSON ¶

func (v *NullableMediaVisibilityResults) UnmarshalJSON(src []byte) error

func (*NullableMediaVisibilityResults) Unset ¶

func (v *NullableMediaVisibilityResults) Unset()

type NullableMediaVisibilityResultsBlurredImageInterstitial ¶

type NullableMediaVisibilityResultsBlurredImageInterstitial struct {
	// contains filtered or unexported fields
}

func (NullableMediaVisibilityResultsBlurredImageInterstitial) Get ¶

func (NullableMediaVisibilityResultsBlurredImageInterstitial) IsSet ¶

func (NullableMediaVisibilityResultsBlurredImageInterstitial) MarshalJSON ¶

func (*NullableMediaVisibilityResultsBlurredImageInterstitial) Set ¶

func (*NullableMediaVisibilityResultsBlurredImageInterstitial) UnmarshalJSON ¶

func (*NullableMediaVisibilityResultsBlurredImageInterstitial) Unset ¶

type NullableModuleEntry ¶

type NullableModuleEntry struct {
	// contains filtered or unexported fields
}

func NewNullableModuleEntry ¶

func NewNullableModuleEntry(val *ModuleEntry) *NullableModuleEntry

func (NullableModuleEntry) Get ¶

func (NullableModuleEntry) IsSet ¶

func (v NullableModuleEntry) IsSet() bool

func (NullableModuleEntry) MarshalJSON ¶

func (v NullableModuleEntry) MarshalJSON() ([]byte, error)

func (*NullableModuleEntry) Set ¶

func (v *NullableModuleEntry) Set(val *ModuleEntry)

func (*NullableModuleEntry) UnmarshalJSON ¶

func (v *NullableModuleEntry) UnmarshalJSON(src []byte) error

func (*NullableModuleEntry) Unset ¶

func (v *NullableModuleEntry) Unset()

type NullableModuleItem ¶

type NullableModuleItem struct {
	// contains filtered or unexported fields
}

func NewNullableModuleItem ¶

func NewNullableModuleItem(val *ModuleItem) *NullableModuleItem

func (NullableModuleItem) Get ¶

func (v NullableModuleItem) Get() *ModuleItem

func (NullableModuleItem) IsSet ¶

func (v NullableModuleItem) IsSet() bool

func (NullableModuleItem) MarshalJSON ¶

func (v NullableModuleItem) MarshalJSON() ([]byte, error)

func (*NullableModuleItem) Set ¶

func (v *NullableModuleItem) Set(val *ModuleItem)

func (*NullableModuleItem) UnmarshalJSON ¶

func (v *NullableModuleItem) UnmarshalJSON(src []byte) error

func (*NullableModuleItem) Unset ¶

func (v *NullableModuleItem) Unset()

type NullableNoteTweet ¶

type NullableNoteTweet struct {
	// contains filtered or unexported fields
}

func NewNullableNoteTweet ¶

func NewNullableNoteTweet(val *NoteTweet) *NullableNoteTweet

func (NullableNoteTweet) Get ¶

func (v NullableNoteTweet) Get() *NoteTweet

func (NullableNoteTweet) IsSet ¶

func (v NullableNoteTweet) IsSet() bool

func (NullableNoteTweet) MarshalJSON ¶

func (v NullableNoteTweet) MarshalJSON() ([]byte, error)

func (*NullableNoteTweet) Set ¶

func (v *NullableNoteTweet) Set(val *NoteTweet)

func (*NullableNoteTweet) UnmarshalJSON ¶

func (v *NullableNoteTweet) UnmarshalJSON(src []byte) error

func (*NullableNoteTweet) Unset ¶

func (v *NullableNoteTweet) Unset()

type NullableNoteTweetResult ¶

type NullableNoteTweetResult struct {
	// contains filtered or unexported fields
}

func NewNullableNoteTweetResult ¶

func NewNullableNoteTweetResult(val *NoteTweetResult) *NullableNoteTweetResult

func (NullableNoteTweetResult) Get ¶

func (NullableNoteTweetResult) IsSet ¶

func (v NullableNoteTweetResult) IsSet() bool

func (NullableNoteTweetResult) MarshalJSON ¶

func (v NullableNoteTweetResult) MarshalJSON() ([]byte, error)

func (*NullableNoteTweetResult) Set ¶

func (*NullableNoteTweetResult) UnmarshalJSON ¶

func (v *NullableNoteTweetResult) UnmarshalJSON(src []byte) error

func (*NullableNoteTweetResult) Unset ¶

func (v *NullableNoteTweetResult) Unset()

type NullableNoteTweetResultData ¶

type NullableNoteTweetResultData struct {
	// contains filtered or unexported fields
}

func (NullableNoteTweetResultData) Get ¶

func (NullableNoteTweetResultData) IsSet ¶

func (NullableNoteTweetResultData) MarshalJSON ¶

func (v NullableNoteTweetResultData) MarshalJSON() ([]byte, error)

func (*NullableNoteTweetResultData) Set ¶

func (*NullableNoteTweetResultData) UnmarshalJSON ¶

func (v *NullableNoteTweetResultData) UnmarshalJSON(src []byte) error

func (*NullableNoteTweetResultData) Unset ¶

func (v *NullableNoteTweetResultData) Unset()

type NullableNoteTweetResultMedia ¶

type NullableNoteTweetResultMedia struct {
	// contains filtered or unexported fields
}

func (NullableNoteTweetResultMedia) Get ¶

func (NullableNoteTweetResultMedia) IsSet ¶

func (NullableNoteTweetResultMedia) MarshalJSON ¶

func (v NullableNoteTweetResultMedia) MarshalJSON() ([]byte, error)

func (*NullableNoteTweetResultMedia) Set ¶

func (*NullableNoteTweetResultMedia) UnmarshalJSON ¶

func (v *NullableNoteTweetResultMedia) UnmarshalJSON(src []byte) error

func (*NullableNoteTweetResultMedia) Unset ¶

func (v *NullableNoteTweetResultMedia) Unset()

type NullableNoteTweetResultMediaInlineMedia ¶

type NullableNoteTweetResultMediaInlineMedia struct {
	// contains filtered or unexported fields
}

func (NullableNoteTweetResultMediaInlineMedia) Get ¶

func (NullableNoteTweetResultMediaInlineMedia) IsSet ¶

func (NullableNoteTweetResultMediaInlineMedia) MarshalJSON ¶

func (v NullableNoteTweetResultMediaInlineMedia) MarshalJSON() ([]byte, error)

func (*NullableNoteTweetResultMediaInlineMedia) Set ¶

func (*NullableNoteTweetResultMediaInlineMedia) UnmarshalJSON ¶

func (v *NullableNoteTweetResultMediaInlineMedia) UnmarshalJSON(src []byte) error

func (*NullableNoteTweetResultMediaInlineMedia) Unset ¶

type NullableNoteTweetResultRichText ¶

type NullableNoteTweetResultRichText struct {
	// contains filtered or unexported fields
}

func (NullableNoteTweetResultRichText) Get ¶

func (NullableNoteTweetResultRichText) IsSet ¶

func (NullableNoteTweetResultRichText) MarshalJSON ¶

func (v NullableNoteTweetResultRichText) MarshalJSON() ([]byte, error)

func (*NullableNoteTweetResultRichText) Set ¶

func (*NullableNoteTweetResultRichText) UnmarshalJSON ¶

func (v *NullableNoteTweetResultRichText) UnmarshalJSON(src []byte) error

func (*NullableNoteTweetResultRichText) Unset ¶

type NullableNoteTweetResultRichTextTag ¶

type NullableNoteTweetResultRichTextTag struct {
	// contains filtered or unexported fields
}

func (NullableNoteTweetResultRichTextTag) Get ¶

func (NullableNoteTweetResultRichTextTag) IsSet ¶

func (NullableNoteTweetResultRichTextTag) MarshalJSON ¶

func (v NullableNoteTweetResultRichTextTag) MarshalJSON() ([]byte, error)

func (*NullableNoteTweetResultRichTextTag) Set ¶

func (*NullableNoteTweetResultRichTextTag) UnmarshalJSON ¶

func (v *NullableNoteTweetResultRichTextTag) UnmarshalJSON(src []byte) error

func (*NullableNoteTweetResultRichTextTag) Unset ¶

type NullableOneFactorLoginEligibility ¶

type NullableOneFactorLoginEligibility struct {
	// contains filtered or unexported fields
}

func (NullableOneFactorLoginEligibility) Get ¶

func (NullableOneFactorLoginEligibility) IsSet ¶

func (NullableOneFactorLoginEligibility) MarshalJSON ¶

func (v NullableOneFactorLoginEligibility) MarshalJSON() ([]byte, error)

func (*NullableOneFactorLoginEligibility) Set ¶

func (*NullableOneFactorLoginEligibility) UnmarshalJSON ¶

func (v *NullableOneFactorLoginEligibility) UnmarshalJSON(src []byte) error

func (*NullableOneFactorLoginEligibility) Unset ¶

type NullableOtherResponse ¶

type NullableOtherResponse struct {
	// contains filtered or unexported fields
}

func NewNullableOtherResponse ¶

func NewNullableOtherResponse(val *OtherResponse) *NullableOtherResponse

func (NullableOtherResponse) Get ¶

func (NullableOtherResponse) IsSet ¶

func (v NullableOtherResponse) IsSet() bool

func (NullableOtherResponse) MarshalJSON ¶

func (v NullableOtherResponse) MarshalJSON() ([]byte, error)

func (*NullableOtherResponse) Set ¶

func (v *NullableOtherResponse) Set(val *OtherResponse)

func (*NullableOtherResponse) UnmarshalJSON ¶

func (v *NullableOtherResponse) UnmarshalJSON(src []byte) error

func (*NullableOtherResponse) Unset ¶

func (v *NullableOtherResponse) Unset()

type NullablePostCreateBookmark200Response ¶

type NullablePostCreateBookmark200Response struct {
	// contains filtered or unexported fields
}

func (NullablePostCreateBookmark200Response) Get ¶

func (NullablePostCreateBookmark200Response) IsSet ¶

func (NullablePostCreateBookmark200Response) MarshalJSON ¶

func (v NullablePostCreateBookmark200Response) MarshalJSON() ([]byte, error)

func (*NullablePostCreateBookmark200Response) Set ¶

func (*NullablePostCreateBookmark200Response) UnmarshalJSON ¶

func (v *NullablePostCreateBookmark200Response) UnmarshalJSON(src []byte) error

func (*NullablePostCreateBookmark200Response) Unset ¶

type NullablePostCreateBookmarkRequest ¶

type NullablePostCreateBookmarkRequest struct {
	// contains filtered or unexported fields
}

func (NullablePostCreateBookmarkRequest) Get ¶

func (NullablePostCreateBookmarkRequest) IsSet ¶

func (NullablePostCreateBookmarkRequest) MarshalJSON ¶

func (v NullablePostCreateBookmarkRequest) MarshalJSON() ([]byte, error)

func (*NullablePostCreateBookmarkRequest) Set ¶

func (*NullablePostCreateBookmarkRequest) UnmarshalJSON ¶

func (v *NullablePostCreateBookmarkRequest) UnmarshalJSON(src []byte) error

func (*NullablePostCreateBookmarkRequest) Unset ¶

type NullablePostCreateBookmarkRequestVariables ¶

type NullablePostCreateBookmarkRequestVariables struct {
	// contains filtered or unexported fields
}

func (NullablePostCreateBookmarkRequestVariables) Get ¶

func (NullablePostCreateBookmarkRequestVariables) IsSet ¶

func (NullablePostCreateBookmarkRequestVariables) MarshalJSON ¶

func (*NullablePostCreateBookmarkRequestVariables) Set ¶

func (*NullablePostCreateBookmarkRequestVariables) UnmarshalJSON ¶

func (v *NullablePostCreateBookmarkRequestVariables) UnmarshalJSON(src []byte) error

func (*NullablePostCreateBookmarkRequestVariables) Unset ¶

type NullablePostCreateRetweet200Response ¶

type NullablePostCreateRetweet200Response struct {
	// contains filtered or unexported fields
}

func (NullablePostCreateRetweet200Response) Get ¶

func (NullablePostCreateRetweet200Response) IsSet ¶

func (NullablePostCreateRetweet200Response) MarshalJSON ¶

func (v NullablePostCreateRetweet200Response) MarshalJSON() ([]byte, error)

func (*NullablePostCreateRetweet200Response) Set ¶

func (*NullablePostCreateRetweet200Response) UnmarshalJSON ¶

func (v *NullablePostCreateRetweet200Response) UnmarshalJSON(src []byte) error

func (*NullablePostCreateRetweet200Response) Unset ¶

type NullablePostCreateRetweetRequest ¶

type NullablePostCreateRetweetRequest struct {
	// contains filtered or unexported fields
}

func (NullablePostCreateRetweetRequest) Get ¶

func (NullablePostCreateRetweetRequest) IsSet ¶

func (NullablePostCreateRetweetRequest) MarshalJSON ¶

func (v NullablePostCreateRetweetRequest) MarshalJSON() ([]byte, error)

func (*NullablePostCreateRetweetRequest) Set ¶

func (*NullablePostCreateRetweetRequest) UnmarshalJSON ¶

func (v *NullablePostCreateRetweetRequest) UnmarshalJSON(src []byte) error

func (*NullablePostCreateRetweetRequest) Unset ¶

type NullablePostCreateRetweetRequestVariables ¶

type NullablePostCreateRetweetRequestVariables struct {
	// contains filtered or unexported fields
}

func (NullablePostCreateRetweetRequestVariables) Get ¶

func (NullablePostCreateRetweetRequestVariables) IsSet ¶

func (NullablePostCreateRetweetRequestVariables) MarshalJSON ¶

func (*NullablePostCreateRetweetRequestVariables) Set ¶

func (*NullablePostCreateRetweetRequestVariables) UnmarshalJSON ¶

func (v *NullablePostCreateRetweetRequestVariables) UnmarshalJSON(src []byte) error

func (*NullablePostCreateRetweetRequestVariables) Unset ¶

type NullablePostCreateTweet200Response ¶

type NullablePostCreateTweet200Response struct {
	// contains filtered or unexported fields
}

func (NullablePostCreateTweet200Response) Get ¶

func (NullablePostCreateTweet200Response) IsSet ¶

func (NullablePostCreateTweet200Response) MarshalJSON ¶

func (v NullablePostCreateTweet200Response) MarshalJSON() ([]byte, error)

func (*NullablePostCreateTweet200Response) Set ¶

func (*NullablePostCreateTweet200Response) UnmarshalJSON ¶

func (v *NullablePostCreateTweet200Response) UnmarshalJSON(src []byte) error

func (*NullablePostCreateTweet200Response) Unset ¶

type NullablePostCreateTweetRequest ¶

type NullablePostCreateTweetRequest struct {
	// contains filtered or unexported fields
}

func (NullablePostCreateTweetRequest) Get ¶

func (NullablePostCreateTweetRequest) IsSet ¶

func (NullablePostCreateTweetRequest) MarshalJSON ¶

func (v NullablePostCreateTweetRequest) MarshalJSON() ([]byte, error)

func (*NullablePostCreateTweetRequest) Set ¶

func (*NullablePostCreateTweetRequest) UnmarshalJSON ¶

func (v *NullablePostCreateTweetRequest) UnmarshalJSON(src []byte) error

func (*NullablePostCreateTweetRequest) Unset ¶

func (v *NullablePostCreateTweetRequest) Unset()

type NullablePostCreateTweetRequestFeatures ¶

type NullablePostCreateTweetRequestFeatures struct {
	// contains filtered or unexported fields
}

func (NullablePostCreateTweetRequestFeatures) Get ¶

func (NullablePostCreateTweetRequestFeatures) IsSet ¶

func (NullablePostCreateTweetRequestFeatures) MarshalJSON ¶

func (v NullablePostCreateTweetRequestFeatures) MarshalJSON() ([]byte, error)

func (*NullablePostCreateTweetRequestFeatures) Set ¶

func (*NullablePostCreateTweetRequestFeatures) UnmarshalJSON ¶

func (v *NullablePostCreateTweetRequestFeatures) UnmarshalJSON(src []byte) error

func (*NullablePostCreateTweetRequestFeatures) Unset ¶

type NullablePostCreateTweetRequestVariables ¶

type NullablePostCreateTweetRequestVariables struct {
	// contains filtered or unexported fields
}

func (NullablePostCreateTweetRequestVariables) Get ¶

func (NullablePostCreateTweetRequestVariables) IsSet ¶

func (NullablePostCreateTweetRequestVariables) MarshalJSON ¶

func (v NullablePostCreateTweetRequestVariables) MarshalJSON() ([]byte, error)

func (*NullablePostCreateTweetRequestVariables) Set ¶

func (*NullablePostCreateTweetRequestVariables) UnmarshalJSON ¶

func (v *NullablePostCreateTweetRequestVariables) UnmarshalJSON(src []byte) error

func (*NullablePostCreateTweetRequestVariables) Unset ¶

type NullablePostCreateTweetRequestVariablesConversationControl ¶

type NullablePostCreateTweetRequestVariablesConversationControl struct {
	// contains filtered or unexported fields
}

func (NullablePostCreateTweetRequestVariablesConversationControl) Get ¶

func (NullablePostCreateTweetRequestVariablesConversationControl) IsSet ¶

func (NullablePostCreateTweetRequestVariablesConversationControl) MarshalJSON ¶

func (*NullablePostCreateTweetRequestVariablesConversationControl) Set ¶

func (*NullablePostCreateTweetRequestVariablesConversationControl) UnmarshalJSON ¶

func (*NullablePostCreateTweetRequestVariablesConversationControl) Unset ¶

type NullablePostCreateTweetRequestVariablesMedia ¶

type NullablePostCreateTweetRequestVariablesMedia struct {
	// contains filtered or unexported fields
}

func (NullablePostCreateTweetRequestVariablesMedia) Get ¶

func (NullablePostCreateTweetRequestVariablesMedia) IsSet ¶

func (NullablePostCreateTweetRequestVariablesMedia) MarshalJSON ¶

func (*NullablePostCreateTweetRequestVariablesMedia) Set ¶

func (*NullablePostCreateTweetRequestVariablesMedia) UnmarshalJSON ¶

func (*NullablePostCreateTweetRequestVariablesMedia) Unset ¶

type NullablePostCreateTweetRequestVariablesMediaMediaEntitiesInner ¶

type NullablePostCreateTweetRequestVariablesMediaMediaEntitiesInner struct {
	// contains filtered or unexported fields
}

func (NullablePostCreateTweetRequestVariablesMediaMediaEntitiesInner) Get ¶

func (NullablePostCreateTweetRequestVariablesMediaMediaEntitiesInner) IsSet ¶

func (NullablePostCreateTweetRequestVariablesMediaMediaEntitiesInner) MarshalJSON ¶

func (*NullablePostCreateTweetRequestVariablesMediaMediaEntitiesInner) Set ¶

func (*NullablePostCreateTweetRequestVariablesMediaMediaEntitiesInner) UnmarshalJSON ¶

func (*NullablePostCreateTweetRequestVariablesMediaMediaEntitiesInner) Unset ¶

type NullablePostCreateTweetRequestVariablesReply ¶

type NullablePostCreateTweetRequestVariablesReply struct {
	// contains filtered or unexported fields
}

func (NullablePostCreateTweetRequestVariablesReply) Get ¶

func (NullablePostCreateTweetRequestVariablesReply) IsSet ¶

func (NullablePostCreateTweetRequestVariablesReply) MarshalJSON ¶

func (*NullablePostCreateTweetRequestVariablesReply) Set ¶

func (*NullablePostCreateTweetRequestVariablesReply) UnmarshalJSON ¶

func (*NullablePostCreateTweetRequestVariablesReply) Unset ¶

type NullablePostDeleteBookmark200Response ¶

type NullablePostDeleteBookmark200Response struct {
	// contains filtered or unexported fields
}

func (NullablePostDeleteBookmark200Response) Get ¶

func (NullablePostDeleteBookmark200Response) IsSet ¶

func (NullablePostDeleteBookmark200Response) MarshalJSON ¶

func (v NullablePostDeleteBookmark200Response) MarshalJSON() ([]byte, error)

func (*NullablePostDeleteBookmark200Response) Set ¶

func (*NullablePostDeleteBookmark200Response) UnmarshalJSON ¶

func (v *NullablePostDeleteBookmark200Response) UnmarshalJSON(src []byte) error

func (*NullablePostDeleteBookmark200Response) Unset ¶

type NullablePostDeleteBookmarkRequest ¶

type NullablePostDeleteBookmarkRequest struct {
	// contains filtered or unexported fields
}

func (NullablePostDeleteBookmarkRequest) Get ¶

func (NullablePostDeleteBookmarkRequest) IsSet ¶

func (NullablePostDeleteBookmarkRequest) MarshalJSON ¶

func (v NullablePostDeleteBookmarkRequest) MarshalJSON() ([]byte, error)

func (*NullablePostDeleteBookmarkRequest) Set ¶

func (*NullablePostDeleteBookmarkRequest) UnmarshalJSON ¶

func (v *NullablePostDeleteBookmarkRequest) UnmarshalJSON(src []byte) error

func (*NullablePostDeleteBookmarkRequest) Unset ¶

type NullablePostDeleteRetweet200Response ¶

type NullablePostDeleteRetweet200Response struct {
	// contains filtered or unexported fields
}

func (NullablePostDeleteRetweet200Response) Get ¶

func (NullablePostDeleteRetweet200Response) IsSet ¶

func (NullablePostDeleteRetweet200Response) MarshalJSON ¶

func (v NullablePostDeleteRetweet200Response) MarshalJSON() ([]byte, error)

func (*NullablePostDeleteRetweet200Response) Set ¶

func (*NullablePostDeleteRetweet200Response) UnmarshalJSON ¶

func (v *NullablePostDeleteRetweet200Response) UnmarshalJSON(src []byte) error

func (*NullablePostDeleteRetweet200Response) Unset ¶

type NullablePostDeleteRetweetRequest ¶

type NullablePostDeleteRetweetRequest struct {
	// contains filtered or unexported fields
}

func (NullablePostDeleteRetweetRequest) Get ¶

func (NullablePostDeleteRetweetRequest) IsSet ¶

func (NullablePostDeleteRetweetRequest) MarshalJSON ¶

func (v NullablePostDeleteRetweetRequest) MarshalJSON() ([]byte, error)

func (*NullablePostDeleteRetweetRequest) Set ¶

func (*NullablePostDeleteRetweetRequest) UnmarshalJSON ¶

func (v *NullablePostDeleteRetweetRequest) UnmarshalJSON(src []byte) error

func (*NullablePostDeleteRetweetRequest) Unset ¶

type NullablePostDeleteRetweetRequestVariables ¶

type NullablePostDeleteRetweetRequestVariables struct {
	// contains filtered or unexported fields
}

func (NullablePostDeleteRetweetRequestVariables) Get ¶

func (NullablePostDeleteRetweetRequestVariables) IsSet ¶

func (NullablePostDeleteRetweetRequestVariables) MarshalJSON ¶

func (*NullablePostDeleteRetweetRequestVariables) Set ¶

func (*NullablePostDeleteRetweetRequestVariables) UnmarshalJSON ¶

func (v *NullablePostDeleteRetweetRequestVariables) UnmarshalJSON(src []byte) error

func (*NullablePostDeleteRetweetRequestVariables) Unset ¶

type NullablePostDeleteTweet200Response ¶

type NullablePostDeleteTweet200Response struct {
	// contains filtered or unexported fields
}

func (NullablePostDeleteTweet200Response) Get ¶

func (NullablePostDeleteTweet200Response) IsSet ¶

func (NullablePostDeleteTweet200Response) MarshalJSON ¶

func (v NullablePostDeleteTweet200Response) MarshalJSON() ([]byte, error)

func (*NullablePostDeleteTweet200Response) Set ¶

func (*NullablePostDeleteTweet200Response) UnmarshalJSON ¶

func (v *NullablePostDeleteTweet200Response) UnmarshalJSON(src []byte) error

func (*NullablePostDeleteTweet200Response) Unset ¶

type NullablePostDeleteTweetRequest ¶

type NullablePostDeleteTweetRequest struct {
	// contains filtered or unexported fields
}

func (NullablePostDeleteTweetRequest) Get ¶

func (NullablePostDeleteTweetRequest) IsSet ¶

func (NullablePostDeleteTweetRequest) MarshalJSON ¶

func (v NullablePostDeleteTweetRequest) MarshalJSON() ([]byte, error)

func (*NullablePostDeleteTweetRequest) Set ¶

func (*NullablePostDeleteTweetRequest) UnmarshalJSON ¶

func (v *NullablePostDeleteTweetRequest) UnmarshalJSON(src []byte) error

func (*NullablePostDeleteTweetRequest) Unset ¶

func (v *NullablePostDeleteTweetRequest) Unset()

type NullablePostFavoriteTweet200Response ¶

type NullablePostFavoriteTweet200Response struct {
	// contains filtered or unexported fields
}

func (NullablePostFavoriteTweet200Response) Get ¶

func (NullablePostFavoriteTweet200Response) IsSet ¶

func (NullablePostFavoriteTweet200Response) MarshalJSON ¶

func (v NullablePostFavoriteTweet200Response) MarshalJSON() ([]byte, error)

func (*NullablePostFavoriteTweet200Response) Set ¶

func (*NullablePostFavoriteTweet200Response) UnmarshalJSON ¶

func (v *NullablePostFavoriteTweet200Response) UnmarshalJSON(src []byte) error

func (*NullablePostFavoriteTweet200Response) Unset ¶

type NullablePostFavoriteTweetRequest ¶

type NullablePostFavoriteTweetRequest struct {
	// contains filtered or unexported fields
}

func (NullablePostFavoriteTweetRequest) Get ¶

func (NullablePostFavoriteTweetRequest) IsSet ¶

func (NullablePostFavoriteTweetRequest) MarshalJSON ¶

func (v NullablePostFavoriteTweetRequest) MarshalJSON() ([]byte, error)

func (*NullablePostFavoriteTweetRequest) Set ¶

func (*NullablePostFavoriteTweetRequest) UnmarshalJSON ¶

func (v *NullablePostFavoriteTweetRequest) UnmarshalJSON(src []byte) error

func (*NullablePostFavoriteTweetRequest) Unset ¶

type NullablePostUnfavoriteTweet200Response ¶

type NullablePostUnfavoriteTweet200Response struct {
	// contains filtered or unexported fields
}

func (NullablePostUnfavoriteTweet200Response) Get ¶

func (NullablePostUnfavoriteTweet200Response) IsSet ¶

func (NullablePostUnfavoriteTweet200Response) MarshalJSON ¶

func (v NullablePostUnfavoriteTweet200Response) MarshalJSON() ([]byte, error)

func (*NullablePostUnfavoriteTweet200Response) Set ¶

func (*NullablePostUnfavoriteTweet200Response) UnmarshalJSON ¶

func (v *NullablePostUnfavoriteTweet200Response) UnmarshalJSON(src []byte) error

func (*NullablePostUnfavoriteTweet200Response) Unset ¶

type NullablePostUnfavoriteTweetRequest ¶

type NullablePostUnfavoriteTweetRequest struct {
	// contains filtered or unexported fields
}

func (NullablePostUnfavoriteTweetRequest) Get ¶

func (NullablePostUnfavoriteTweetRequest) IsSet ¶

func (NullablePostUnfavoriteTweetRequest) MarshalJSON ¶

func (v NullablePostUnfavoriteTweetRequest) MarshalJSON() ([]byte, error)

func (*NullablePostUnfavoriteTweetRequest) Set ¶

func (*NullablePostUnfavoriteTweetRequest) UnmarshalJSON ¶

func (v *NullablePostUnfavoriteTweetRequest) UnmarshalJSON(src []byte) error

func (*NullablePostUnfavoriteTweetRequest) Unset ¶

type NullablePrimaryCommunityTopic ¶

type NullablePrimaryCommunityTopic struct {
	// contains filtered or unexported fields
}

func (NullablePrimaryCommunityTopic) Get ¶

func (NullablePrimaryCommunityTopic) IsSet ¶

func (NullablePrimaryCommunityTopic) MarshalJSON ¶

func (v NullablePrimaryCommunityTopic) MarshalJSON() ([]byte, error)

func (*NullablePrimaryCommunityTopic) Set ¶

func (*NullablePrimaryCommunityTopic) UnmarshalJSON ¶

func (v *NullablePrimaryCommunityTopic) UnmarshalJSON(src []byte) error

func (*NullablePrimaryCommunityTopic) Unset ¶

func (v *NullablePrimaryCommunityTopic) Unset()

type NullableProfileResponse ¶

type NullableProfileResponse struct {
	// contains filtered or unexported fields
}

func NewNullableProfileResponse ¶

func NewNullableProfileResponse(val *ProfileResponse) *NullableProfileResponse

func (NullableProfileResponse) Get ¶

func (NullableProfileResponse) IsSet ¶

func (v NullableProfileResponse) IsSet() bool

func (NullableProfileResponse) MarshalJSON ¶

func (v NullableProfileResponse) MarshalJSON() ([]byte, error)

func (*NullableProfileResponse) Set ¶

func (*NullableProfileResponse) UnmarshalJSON ¶

func (v *NullableProfileResponse) UnmarshalJSON(src []byte) error

func (*NullableProfileResponse) Unset ¶

func (v *NullableProfileResponse) Unset()

type NullableProfileResponseData ¶

type NullableProfileResponseData struct {
	// contains filtered or unexported fields
}

func (NullableProfileResponseData) Get ¶

func (NullableProfileResponseData) IsSet ¶

func (NullableProfileResponseData) MarshalJSON ¶

func (v NullableProfileResponseData) MarshalJSON() ([]byte, error)

func (*NullableProfileResponseData) Set ¶

func (*NullableProfileResponseData) UnmarshalJSON ¶

func (v *NullableProfileResponseData) UnmarshalJSON(src []byte) error

func (*NullableProfileResponseData) Unset ¶

func (v *NullableProfileResponseData) Unset()

type NullableQuotedRefResult ¶

type NullableQuotedRefResult struct {
	// contains filtered or unexported fields
}

func NewNullableQuotedRefResult ¶

func NewNullableQuotedRefResult(val *QuotedRefResult) *NullableQuotedRefResult

func (NullableQuotedRefResult) Get ¶

func (NullableQuotedRefResult) IsSet ¶

func (v NullableQuotedRefResult) IsSet() bool

func (NullableQuotedRefResult) MarshalJSON ¶

func (v NullableQuotedRefResult) MarshalJSON() ([]byte, error)

func (*NullableQuotedRefResult) Set ¶

func (*NullableQuotedRefResult) UnmarshalJSON ¶

func (v *NullableQuotedRefResult) UnmarshalJSON(src []byte) error

func (*NullableQuotedRefResult) Unset ¶

func (v *NullableQuotedRefResult) Unset()
type NullableQuotedStatusPermalink struct {
	// contains filtered or unexported fields
}

func (NullableQuotedStatusPermalink) Get ¶

func (NullableQuotedStatusPermalink) IsSet ¶

func (NullableQuotedStatusPermalink) MarshalJSON ¶

func (v NullableQuotedStatusPermalink) MarshalJSON() ([]byte, error)

func (*NullableQuotedStatusPermalink) Set ¶

func (*NullableQuotedStatusPermalink) UnmarshalJSON ¶

func (v *NullableQuotedStatusPermalink) UnmarshalJSON(src []byte) error

func (*NullableQuotedStatusPermalink) Unset ¶

func (v *NullableQuotedStatusPermalink) Unset()

type NullableRetweet ¶

type NullableRetweet struct {
	// contains filtered or unexported fields
}

func NewNullableRetweet ¶

func NewNullableRetweet(val *Retweet) *NullableRetweet

func (NullableRetweet) Get ¶

func (v NullableRetweet) Get() *Retweet

func (NullableRetweet) IsSet ¶

func (v NullableRetweet) IsSet() bool

func (NullableRetweet) MarshalJSON ¶

func (v NullableRetweet) MarshalJSON() ([]byte, error)

func (*NullableRetweet) Set ¶

func (v *NullableRetweet) Set(val *Retweet)

func (*NullableRetweet) UnmarshalJSON ¶

func (v *NullableRetweet) UnmarshalJSON(src []byte) error

func (*NullableRetweet) Unset ¶

func (v *NullableRetweet) Unset()

type NullableRetweetLegacy ¶

type NullableRetweetLegacy struct {
	// contains filtered or unexported fields
}

func NewNullableRetweetLegacy ¶

func NewNullableRetweetLegacy(val *RetweetLegacy) *NullableRetweetLegacy

func (NullableRetweetLegacy) Get ¶

func (NullableRetweetLegacy) IsSet ¶

func (v NullableRetweetLegacy) IsSet() bool

func (NullableRetweetLegacy) MarshalJSON ¶

func (v NullableRetweetLegacy) MarshalJSON() ([]byte, error)

func (*NullableRetweetLegacy) Set ¶

func (v *NullableRetweetLegacy) Set(val *RetweetLegacy)

func (*NullableRetweetLegacy) UnmarshalJSON ¶

func (v *NullableRetweetLegacy) UnmarshalJSON(src []byte) error

func (*NullableRetweetLegacy) Unset ¶

func (v *NullableRetweetLegacy) Unset()

type NullableSearchByRawQuery ¶

type NullableSearchByRawQuery struct {
	// contains filtered or unexported fields
}

func NewNullableSearchByRawQuery ¶

func NewNullableSearchByRawQuery(val *SearchByRawQuery) *NullableSearchByRawQuery

func (NullableSearchByRawQuery) Get ¶

func (NullableSearchByRawQuery) IsSet ¶

func (v NullableSearchByRawQuery) IsSet() bool

func (NullableSearchByRawQuery) MarshalJSON ¶

func (v NullableSearchByRawQuery) MarshalJSON() ([]byte, error)

func (*NullableSearchByRawQuery) Set ¶

func (*NullableSearchByRawQuery) UnmarshalJSON ¶

func (v *NullableSearchByRawQuery) UnmarshalJSON(src []byte) error

func (*NullableSearchByRawQuery) Unset ¶

func (v *NullableSearchByRawQuery) Unset()

type NullableSearchTimeline ¶

type NullableSearchTimeline struct {
	// contains filtered or unexported fields
}

func NewNullableSearchTimeline ¶

func NewNullableSearchTimeline(val *SearchTimeline) *NullableSearchTimeline

func (NullableSearchTimeline) Get ¶

func (NullableSearchTimeline) IsSet ¶

func (v NullableSearchTimeline) IsSet() bool

func (NullableSearchTimeline) MarshalJSON ¶

func (v NullableSearchTimeline) MarshalJSON() ([]byte, error)

func (*NullableSearchTimeline) Set ¶

func (*NullableSearchTimeline) UnmarshalJSON ¶

func (v *NullableSearchTimeline) UnmarshalJSON(src []byte) error

func (*NullableSearchTimeline) Unset ¶

func (v *NullableSearchTimeline) Unset()

type NullableSearchTimelineData ¶

type NullableSearchTimelineData struct {
	// contains filtered or unexported fields
}

func NewNullableSearchTimelineData ¶

func NewNullableSearchTimelineData(val *SearchTimelineData) *NullableSearchTimelineData

func (NullableSearchTimelineData) Get ¶

func (NullableSearchTimelineData) IsSet ¶

func (v NullableSearchTimelineData) IsSet() bool

func (NullableSearchTimelineData) MarshalJSON ¶

func (v NullableSearchTimelineData) MarshalJSON() ([]byte, error)

func (*NullableSearchTimelineData) Set ¶

func (*NullableSearchTimelineData) UnmarshalJSON ¶

func (v *NullableSearchTimelineData) UnmarshalJSON(src []byte) error

func (*NullableSearchTimelineData) Unset ¶

func (v *NullableSearchTimelineData) Unset()

type NullableSearchTimelineResponse ¶

type NullableSearchTimelineResponse struct {
	// contains filtered or unexported fields
}

func (NullableSearchTimelineResponse) Get ¶

func (NullableSearchTimelineResponse) IsSet ¶

func (NullableSearchTimelineResponse) MarshalJSON ¶

func (v NullableSearchTimelineResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchTimelineResponse) Set ¶

func (*NullableSearchTimelineResponse) UnmarshalJSON ¶

func (v *NullableSearchTimelineResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchTimelineResponse) Unset ¶

func (v *NullableSearchTimelineResponse) Unset()

type NullableSelfThread ¶

type NullableSelfThread struct {
	// contains filtered or unexported fields
}

func NewNullableSelfThread ¶

func NewNullableSelfThread(val *SelfThread) *NullableSelfThread

func (NullableSelfThread) Get ¶

func (v NullableSelfThread) Get() *SelfThread

func (NullableSelfThread) IsSet ¶

func (v NullableSelfThread) IsSet() bool

func (NullableSelfThread) MarshalJSON ¶

func (v NullableSelfThread) MarshalJSON() ([]byte, error)

func (*NullableSelfThread) Set ¶

func (v *NullableSelfThread) Set(val *SelfThread)

func (*NullableSelfThread) UnmarshalJSON ¶

func (v *NullableSelfThread) UnmarshalJSON(src []byte) error

func (*NullableSelfThread) Unset ¶

func (v *NullableSelfThread) Unset()

type NullableSensitiveMediaWarning ¶

type NullableSensitiveMediaWarning struct {
	// contains filtered or unexported fields
}

func (NullableSensitiveMediaWarning) Get ¶

func (NullableSensitiveMediaWarning) IsSet ¶

func (NullableSensitiveMediaWarning) MarshalJSON ¶

func (v NullableSensitiveMediaWarning) MarshalJSON() ([]byte, error)

func (*NullableSensitiveMediaWarning) Set ¶

func (*NullableSensitiveMediaWarning) UnmarshalJSON ¶

func (v *NullableSensitiveMediaWarning) UnmarshalJSON(src []byte) error

func (*NullableSensitiveMediaWarning) Unset ¶

func (v *NullableSensitiveMediaWarning) Unset()

type NullableSession ¶

type NullableSession struct {
	// contains filtered or unexported fields
}

func NewNullableSession ¶

func NewNullableSession(val *Session) *NullableSession

func (NullableSession) Get ¶

func (v NullableSession) Get() *Session

func (NullableSession) IsSet ¶

func (v NullableSession) IsSet() bool

func (NullableSession) MarshalJSON ¶

func (v NullableSession) MarshalJSON() ([]byte, error)

func (*NullableSession) Set ¶

func (v *NullableSession) Set(val *Session)

func (*NullableSession) UnmarshalJSON ¶

func (v *NullableSession) UnmarshalJSON(src []byte) error

func (*NullableSession) Unset ¶

func (v *NullableSession) Unset()

type NullableSocialContextLandingUrl ¶

type NullableSocialContextLandingUrl struct {
	// contains filtered or unexported fields
}

func (NullableSocialContextLandingUrl) Get ¶

func (NullableSocialContextLandingUrl) IsSet ¶

func (NullableSocialContextLandingUrl) MarshalJSON ¶

func (v NullableSocialContextLandingUrl) MarshalJSON() ([]byte, error)

func (*NullableSocialContextLandingUrl) Set ¶

func (*NullableSocialContextLandingUrl) UnmarshalJSON ¶

func (v *NullableSocialContextLandingUrl) UnmarshalJSON(src []byte) error

func (*NullableSocialContextLandingUrl) Unset ¶

type NullableSocialContextUnion ¶

type NullableSocialContextUnion struct {
	// contains filtered or unexported fields
}

func NewNullableSocialContextUnion ¶

func NewNullableSocialContextUnion(val *SocialContextUnion) *NullableSocialContextUnion

func (NullableSocialContextUnion) Get ¶

func (NullableSocialContextUnion) IsSet ¶

func (v NullableSocialContextUnion) IsSet() bool

func (NullableSocialContextUnion) MarshalJSON ¶

func (v NullableSocialContextUnion) MarshalJSON() ([]byte, error)

func (*NullableSocialContextUnion) Set ¶

func (*NullableSocialContextUnion) UnmarshalJSON ¶

func (v *NullableSocialContextUnion) UnmarshalJSON(src []byte) error

func (*NullableSocialContextUnion) Unset ¶

func (v *NullableSocialContextUnion) Unset()

type NullableSocialContextUnionType ¶

type NullableSocialContextUnionType struct {
	// contains filtered or unexported fields
}

func (NullableSocialContextUnionType) Get ¶

func (NullableSocialContextUnionType) IsSet ¶

func (NullableSocialContextUnionType) MarshalJSON ¶

func (v NullableSocialContextUnionType) MarshalJSON() ([]byte, error)

func (*NullableSocialContextUnionType) Set ¶

func (*NullableSocialContextUnionType) UnmarshalJSON ¶

func (v *NullableSocialContextUnionType) UnmarshalJSON(src []byte) error

func (*NullableSocialContextUnionType) Unset ¶

func (v *NullableSocialContextUnionType) 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 NullableSuperFollowsReplyUserResult ¶

type NullableSuperFollowsReplyUserResult struct {
	// contains filtered or unexported fields
}

func (NullableSuperFollowsReplyUserResult) Get ¶

func (NullableSuperFollowsReplyUserResult) IsSet ¶

func (NullableSuperFollowsReplyUserResult) MarshalJSON ¶

func (v NullableSuperFollowsReplyUserResult) MarshalJSON() ([]byte, error)

func (*NullableSuperFollowsReplyUserResult) Set ¶

func (*NullableSuperFollowsReplyUserResult) UnmarshalJSON ¶

func (v *NullableSuperFollowsReplyUserResult) UnmarshalJSON(src []byte) error

func (*NullableSuperFollowsReplyUserResult) Unset ¶

type NullableSuperFollowsReplyUserResultData ¶

type NullableSuperFollowsReplyUserResultData struct {
	// contains filtered or unexported fields
}

func (NullableSuperFollowsReplyUserResultData) Get ¶

func (NullableSuperFollowsReplyUserResultData) IsSet ¶

func (NullableSuperFollowsReplyUserResultData) MarshalJSON ¶

func (v NullableSuperFollowsReplyUserResultData) MarshalJSON() ([]byte, error)

func (*NullableSuperFollowsReplyUserResultData) Set ¶

func (*NullableSuperFollowsReplyUserResultData) UnmarshalJSON ¶

func (v *NullableSuperFollowsReplyUserResultData) UnmarshalJSON(src []byte) error

func (*NullableSuperFollowsReplyUserResultData) Unset ¶

type NullableSuperFollowsReplyUserResultLegacy ¶

type NullableSuperFollowsReplyUserResultLegacy struct {
	// contains filtered or unexported fields
}

func (NullableSuperFollowsReplyUserResultLegacy) Get ¶

func (NullableSuperFollowsReplyUserResultLegacy) IsSet ¶

func (NullableSuperFollowsReplyUserResultLegacy) MarshalJSON ¶

func (*NullableSuperFollowsReplyUserResultLegacy) Set ¶

func (*NullableSuperFollowsReplyUserResultLegacy) UnmarshalJSON ¶

func (v *NullableSuperFollowsReplyUserResultLegacy) UnmarshalJSON(src []byte) error

func (*NullableSuperFollowsReplyUserResultLegacy) Unset ¶

type NullableText ¶

type NullableText struct {
	// contains filtered or unexported fields
}

func NewNullableText ¶

func NewNullableText(val *Text) *NullableText

func (NullableText) Get ¶

func (v NullableText) Get() *Text

func (NullableText) IsSet ¶

func (v NullableText) IsSet() bool

func (NullableText) MarshalJSON ¶

func (v NullableText) MarshalJSON() ([]byte, error)

func (*NullableText) Set ¶

func (v *NullableText) Set(val *Text)

func (*NullableText) UnmarshalJSON ¶

func (v *NullableText) UnmarshalJSON(src []byte) error

func (*NullableText) Unset ¶

func (v *NullableText) Unset()

type NullableTextEntity ¶

type NullableTextEntity struct {
	// contains filtered or unexported fields
}

func NewNullableTextEntity ¶

func NewNullableTextEntity(val *TextEntity) *NullableTextEntity

func (NullableTextEntity) Get ¶

func (v NullableTextEntity) Get() *TextEntity

func (NullableTextEntity) IsSet ¶

func (v NullableTextEntity) IsSet() bool

func (NullableTextEntity) MarshalJSON ¶

func (v NullableTextEntity) MarshalJSON() ([]byte, error)

func (*NullableTextEntity) Set ¶

func (v *NullableTextEntity) Set(val *TextEntity)

func (*NullableTextEntity) UnmarshalJSON ¶

func (v *NullableTextEntity) UnmarshalJSON(src []byte) error

func (*NullableTextEntity) Unset ¶

func (v *NullableTextEntity) Unset()

type NullableTextEntityRef ¶

type NullableTextEntityRef struct {
	// contains filtered or unexported fields
}

func NewNullableTextEntityRef ¶

func NewNullableTextEntityRef(val *TextEntityRef) *NullableTextEntityRef

func (NullableTextEntityRef) Get ¶

func (NullableTextEntityRef) IsSet ¶

func (v NullableTextEntityRef) IsSet() bool

func (NullableTextEntityRef) MarshalJSON ¶

func (v NullableTextEntityRef) MarshalJSON() ([]byte, error)

func (*NullableTextEntityRef) Set ¶

func (v *NullableTextEntityRef) Set(val *TextEntityRef)

func (*NullableTextEntityRef) UnmarshalJSON ¶

func (v *NullableTextEntityRef) UnmarshalJSON(src []byte) error

func (*NullableTextEntityRef) Unset ¶

func (v *NullableTextEntityRef) Unset()

type NullableTextHighlight ¶

type NullableTextHighlight struct {
	// contains filtered or unexported fields
}

func NewNullableTextHighlight ¶

func NewNullableTextHighlight(val *TextHighlight) *NullableTextHighlight

func (NullableTextHighlight) Get ¶

func (NullableTextHighlight) IsSet ¶

func (v NullableTextHighlight) IsSet() bool

func (NullableTextHighlight) MarshalJSON ¶

func (v NullableTextHighlight) MarshalJSON() ([]byte, error)

func (*NullableTextHighlight) Set ¶

func (v *NullableTextHighlight) Set(val *TextHighlight)

func (*NullableTextHighlight) UnmarshalJSON ¶

func (v *NullableTextHighlight) UnmarshalJSON(src []byte) error

func (*NullableTextHighlight) Unset ¶

func (v *NullableTextHighlight) 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 NullableTimeline ¶

type NullableTimeline struct {
	// contains filtered or unexported fields
}

func NewNullableTimeline ¶

func NewNullableTimeline(val *Timeline) *NullableTimeline

func (NullableTimeline) Get ¶

func (v NullableTimeline) Get() *Timeline

func (NullableTimeline) IsSet ¶

func (v NullableTimeline) IsSet() bool

func (NullableTimeline) MarshalJSON ¶

func (v NullableTimeline) MarshalJSON() ([]byte, error)

func (*NullableTimeline) Set ¶

func (v *NullableTimeline) Set(val *Timeline)

func (*NullableTimeline) UnmarshalJSON ¶

func (v *NullableTimeline) UnmarshalJSON(src []byte) error

func (*NullableTimeline) Unset ¶

func (v *NullableTimeline) Unset()

type NullableTimelineAddEntries ¶

type NullableTimelineAddEntries struct {
	// contains filtered or unexported fields
}

func NewNullableTimelineAddEntries ¶

func NewNullableTimelineAddEntries(val *TimelineAddEntries) *NullableTimelineAddEntries

func (NullableTimelineAddEntries) Get ¶

func (NullableTimelineAddEntries) IsSet ¶

func (v NullableTimelineAddEntries) IsSet() bool

func (NullableTimelineAddEntries) MarshalJSON ¶

func (v NullableTimelineAddEntries) MarshalJSON() ([]byte, error)

func (*NullableTimelineAddEntries) Set ¶

func (*NullableTimelineAddEntries) UnmarshalJSON ¶

func (v *NullableTimelineAddEntries) UnmarshalJSON(src []byte) error

func (*NullableTimelineAddEntries) Unset ¶

func (v *NullableTimelineAddEntries) Unset()

type NullableTimelineAddEntry ¶

type NullableTimelineAddEntry struct {
	// contains filtered or unexported fields
}

func NewNullableTimelineAddEntry ¶

func NewNullableTimelineAddEntry(val *TimelineAddEntry) *NullableTimelineAddEntry

func (NullableTimelineAddEntry) Get ¶

func (NullableTimelineAddEntry) IsSet ¶

func (v NullableTimelineAddEntry) IsSet() bool

func (NullableTimelineAddEntry) MarshalJSON ¶

func (v NullableTimelineAddEntry) MarshalJSON() ([]byte, error)

func (*NullableTimelineAddEntry) Set ¶

func (*NullableTimelineAddEntry) UnmarshalJSON ¶

func (v *NullableTimelineAddEntry) UnmarshalJSON(src []byte) error

func (*NullableTimelineAddEntry) Unset ¶

func (v *NullableTimelineAddEntry) Unset()

type NullableTimelineAddToModule ¶

type NullableTimelineAddToModule struct {
	// contains filtered or unexported fields
}

func (NullableTimelineAddToModule) Get ¶

func (NullableTimelineAddToModule) IsSet ¶

func (NullableTimelineAddToModule) MarshalJSON ¶

func (v NullableTimelineAddToModule) MarshalJSON() ([]byte, error)

func (*NullableTimelineAddToModule) Set ¶

func (*NullableTimelineAddToModule) UnmarshalJSON ¶

func (v *NullableTimelineAddToModule) UnmarshalJSON(src []byte) error

func (*NullableTimelineAddToModule) Unset ¶

func (v *NullableTimelineAddToModule) Unset()

type NullableTimelineClearCache ¶

type NullableTimelineClearCache struct {
	// contains filtered or unexported fields
}

func NewNullableTimelineClearCache ¶

func NewNullableTimelineClearCache(val *TimelineClearCache) *NullableTimelineClearCache

func (NullableTimelineClearCache) Get ¶

func (NullableTimelineClearCache) IsSet ¶

func (v NullableTimelineClearCache) IsSet() bool

func (NullableTimelineClearCache) MarshalJSON ¶

func (v NullableTimelineClearCache) MarshalJSON() ([]byte, error)

func (*NullableTimelineClearCache) Set ¶

func (*NullableTimelineClearCache) UnmarshalJSON ¶

func (v *NullableTimelineClearCache) UnmarshalJSON(src []byte) error

func (*NullableTimelineClearCache) Unset ¶

func (v *NullableTimelineClearCache) Unset()

type NullableTimelineCommunity ¶

type NullableTimelineCommunity struct {
	// contains filtered or unexported fields
}

func NewNullableTimelineCommunity ¶

func NewNullableTimelineCommunity(val *TimelineCommunity) *NullableTimelineCommunity

func (NullableTimelineCommunity) Get ¶

func (NullableTimelineCommunity) IsSet ¶

func (v NullableTimelineCommunity) IsSet() bool

func (NullableTimelineCommunity) MarshalJSON ¶

func (v NullableTimelineCommunity) MarshalJSON() ([]byte, error)

func (*NullableTimelineCommunity) Set ¶

func (*NullableTimelineCommunity) UnmarshalJSON ¶

func (v *NullableTimelineCommunity) UnmarshalJSON(src []byte) error

func (*NullableTimelineCommunity) Unset ¶

func (v *NullableTimelineCommunity) Unset()

type NullableTimelineCoverBehavior ¶

type NullableTimelineCoverBehavior struct {
	// contains filtered or unexported fields
}

func (NullableTimelineCoverBehavior) Get ¶

func (NullableTimelineCoverBehavior) IsSet ¶

func (NullableTimelineCoverBehavior) MarshalJSON ¶

func (v NullableTimelineCoverBehavior) MarshalJSON() ([]byte, error)

func (*NullableTimelineCoverBehavior) Set ¶

func (*NullableTimelineCoverBehavior) UnmarshalJSON ¶

func (v *NullableTimelineCoverBehavior) UnmarshalJSON(src []byte) error

func (*NullableTimelineCoverBehavior) Unset ¶

func (v *NullableTimelineCoverBehavior) Unset()

type NullableTimelineCoverBehaviorUrl ¶

type NullableTimelineCoverBehaviorUrl struct {
	// contains filtered or unexported fields
}

func (NullableTimelineCoverBehaviorUrl) Get ¶

func (NullableTimelineCoverBehaviorUrl) IsSet ¶

func (NullableTimelineCoverBehaviorUrl) MarshalJSON ¶

func (v NullableTimelineCoverBehaviorUrl) MarshalJSON() ([]byte, error)

func (*NullableTimelineCoverBehaviorUrl) Set ¶

func (*NullableTimelineCoverBehaviorUrl) UnmarshalJSON ¶

func (v *NullableTimelineCoverBehaviorUrl) UnmarshalJSON(src []byte) error

func (*NullableTimelineCoverBehaviorUrl) Unset ¶

type NullableTimelineGeneralContext ¶

type NullableTimelineGeneralContext struct {
	// contains filtered or unexported fields
}

func (NullableTimelineGeneralContext) Get ¶

func (NullableTimelineGeneralContext) IsSet ¶

func (NullableTimelineGeneralContext) MarshalJSON ¶

func (v NullableTimelineGeneralContext) MarshalJSON() ([]byte, error)

func (*NullableTimelineGeneralContext) Set ¶

func (*NullableTimelineGeneralContext) UnmarshalJSON ¶

func (v *NullableTimelineGeneralContext) UnmarshalJSON(src []byte) error

func (*NullableTimelineGeneralContext) Unset ¶

func (v *NullableTimelineGeneralContext) Unset()

type NullableTimelineHalfCover ¶

type NullableTimelineHalfCover struct {
	// contains filtered or unexported fields
}

func NewNullableTimelineHalfCover ¶

func NewNullableTimelineHalfCover(val *TimelineHalfCover) *NullableTimelineHalfCover

func (NullableTimelineHalfCover) Get ¶

func (NullableTimelineHalfCover) IsSet ¶

func (v NullableTimelineHalfCover) IsSet() bool

func (NullableTimelineHalfCover) MarshalJSON ¶

func (v NullableTimelineHalfCover) MarshalJSON() ([]byte, error)

func (*NullableTimelineHalfCover) Set ¶

func (*NullableTimelineHalfCover) UnmarshalJSON ¶

func (v *NullableTimelineHalfCover) UnmarshalJSON(src []byte) error

func (*NullableTimelineHalfCover) Unset ¶

func (v *NullableTimelineHalfCover) Unset()

type NullableTimelineMessagePrompt ¶

type NullableTimelineMessagePrompt struct {
	// contains filtered or unexported fields
}

func (NullableTimelineMessagePrompt) Get ¶

func (NullableTimelineMessagePrompt) IsSet ¶

func (NullableTimelineMessagePrompt) MarshalJSON ¶

func (v NullableTimelineMessagePrompt) MarshalJSON() ([]byte, error)

func (*NullableTimelineMessagePrompt) Set ¶

func (*NullableTimelineMessagePrompt) UnmarshalJSON ¶

func (v *NullableTimelineMessagePrompt) UnmarshalJSON(src []byte) error

func (*NullableTimelineMessagePrompt) Unset ¶

func (v *NullableTimelineMessagePrompt) Unset()

type NullableTimelinePinEntry ¶

type NullableTimelinePinEntry struct {
	// contains filtered or unexported fields
}

func NewNullableTimelinePinEntry ¶

func NewNullableTimelinePinEntry(val *TimelinePinEntry) *NullableTimelinePinEntry

func (NullableTimelinePinEntry) Get ¶

func (NullableTimelinePinEntry) IsSet ¶

func (v NullableTimelinePinEntry) IsSet() bool

func (NullableTimelinePinEntry) MarshalJSON ¶

func (v NullableTimelinePinEntry) MarshalJSON() ([]byte, error)

func (*NullableTimelinePinEntry) Set ¶

func (*NullableTimelinePinEntry) UnmarshalJSON ¶

func (v *NullableTimelinePinEntry) UnmarshalJSON(src []byte) error

func (*NullableTimelinePinEntry) Unset ¶

func (v *NullableTimelinePinEntry) Unset()

type NullableTimelinePrompt ¶

type NullableTimelinePrompt struct {
	// contains filtered or unexported fields
}

func NewNullableTimelinePrompt ¶

func NewNullableTimelinePrompt(val *TimelinePrompt) *NullableTimelinePrompt

func (NullableTimelinePrompt) Get ¶

func (NullableTimelinePrompt) IsSet ¶

func (v NullableTimelinePrompt) IsSet() bool

func (NullableTimelinePrompt) MarshalJSON ¶

func (v NullableTimelinePrompt) MarshalJSON() ([]byte, error)

func (*NullableTimelinePrompt) Set ¶

func (*NullableTimelinePrompt) UnmarshalJSON ¶

func (v *NullableTimelinePrompt) UnmarshalJSON(src []byte) error

func (*NullableTimelinePrompt) Unset ¶

func (v *NullableTimelinePrompt) Unset()

type NullableTimelineReplaceEntry ¶

type NullableTimelineReplaceEntry struct {
	// contains filtered or unexported fields
}

func (NullableTimelineReplaceEntry) Get ¶

func (NullableTimelineReplaceEntry) IsSet ¶

func (NullableTimelineReplaceEntry) MarshalJSON ¶

func (v NullableTimelineReplaceEntry) MarshalJSON() ([]byte, error)

func (*NullableTimelineReplaceEntry) Set ¶

func (*NullableTimelineReplaceEntry) UnmarshalJSON ¶

func (v *NullableTimelineReplaceEntry) UnmarshalJSON(src []byte) error

func (*NullableTimelineReplaceEntry) Unset ¶

func (v *NullableTimelineReplaceEntry) Unset()

type NullableTimelineResponse ¶

type NullableTimelineResponse struct {
	// contains filtered or unexported fields
}

func NewNullableTimelineResponse ¶

func NewNullableTimelineResponse(val *TimelineResponse) *NullableTimelineResponse

func (NullableTimelineResponse) Get ¶

func (NullableTimelineResponse) IsSet ¶

func (v NullableTimelineResponse) IsSet() bool

func (NullableTimelineResponse) MarshalJSON ¶

func (v NullableTimelineResponse) MarshalJSON() ([]byte, error)

func (*NullableTimelineResponse) Set ¶

func (*NullableTimelineResponse) UnmarshalJSON ¶

func (v *NullableTimelineResponse) UnmarshalJSON(src []byte) error

func (*NullableTimelineResponse) Unset ¶

func (v *NullableTimelineResponse) Unset()

type NullableTimelineShowAlert ¶

type NullableTimelineShowAlert struct {
	// contains filtered or unexported fields
}

func NewNullableTimelineShowAlert ¶

func NewNullableTimelineShowAlert(val *TimelineShowAlert) *NullableTimelineShowAlert

func (NullableTimelineShowAlert) Get ¶

func (NullableTimelineShowAlert) IsSet ¶

func (v NullableTimelineShowAlert) IsSet() bool

func (NullableTimelineShowAlert) MarshalJSON ¶

func (v NullableTimelineShowAlert) MarshalJSON() ([]byte, error)

func (*NullableTimelineShowAlert) Set ¶

func (*NullableTimelineShowAlert) UnmarshalJSON ¶

func (v *NullableTimelineShowAlert) UnmarshalJSON(src []byte) error

func (*NullableTimelineShowAlert) Unset ¶

func (v *NullableTimelineShowAlert) Unset()

type NullableTimelineShowAlertRichText ¶

type NullableTimelineShowAlertRichText struct {
	// contains filtered or unexported fields
}

func (NullableTimelineShowAlertRichText) Get ¶

func (NullableTimelineShowAlertRichText) IsSet ¶

func (NullableTimelineShowAlertRichText) MarshalJSON ¶

func (v NullableTimelineShowAlertRichText) MarshalJSON() ([]byte, error)

func (*NullableTimelineShowAlertRichText) Set ¶

func (*NullableTimelineShowAlertRichText) UnmarshalJSON ¶

func (v *NullableTimelineShowAlertRichText) UnmarshalJSON(src []byte) error

func (*NullableTimelineShowAlertRichText) Unset ¶

type NullableTimelineShowCover ¶

type NullableTimelineShowCover struct {
	// contains filtered or unexported fields
}

func NewNullableTimelineShowCover ¶

func NewNullableTimelineShowCover(val *TimelineShowCover) *NullableTimelineShowCover

func (NullableTimelineShowCover) Get ¶

func (NullableTimelineShowCover) IsSet ¶

func (v NullableTimelineShowCover) IsSet() bool

func (NullableTimelineShowCover) MarshalJSON ¶

func (v NullableTimelineShowCover) MarshalJSON() ([]byte, error)

func (*NullableTimelineShowCover) Set ¶

func (*NullableTimelineShowCover) UnmarshalJSON ¶

func (v *NullableTimelineShowCover) UnmarshalJSON(src []byte) error

func (*NullableTimelineShowCover) Unset ¶

func (v *NullableTimelineShowCover) Unset()

type NullableTimelineTerminateTimeline ¶

type NullableTimelineTerminateTimeline struct {
	// contains filtered or unexported fields
}

func (NullableTimelineTerminateTimeline) Get ¶

func (NullableTimelineTerminateTimeline) IsSet ¶

func (NullableTimelineTerminateTimeline) MarshalJSON ¶

func (v NullableTimelineTerminateTimeline) MarshalJSON() ([]byte, error)

func (*NullableTimelineTerminateTimeline) Set ¶

func (*NullableTimelineTerminateTimeline) UnmarshalJSON ¶

func (v *NullableTimelineTerminateTimeline) UnmarshalJSON(src []byte) error

func (*NullableTimelineTerminateTimeline) Unset ¶

type NullableTimelineTimelineCursor ¶

type NullableTimelineTimelineCursor struct {
	// contains filtered or unexported fields
}

func (NullableTimelineTimelineCursor) Get ¶

func (NullableTimelineTimelineCursor) IsSet ¶

func (NullableTimelineTimelineCursor) MarshalJSON ¶

func (v NullableTimelineTimelineCursor) MarshalJSON() ([]byte, error)

func (*NullableTimelineTimelineCursor) Set ¶

func (*NullableTimelineTimelineCursor) UnmarshalJSON ¶

func (v *NullableTimelineTimelineCursor) UnmarshalJSON(src []byte) error

func (*NullableTimelineTimelineCursor) Unset ¶

func (v *NullableTimelineTimelineCursor) Unset()

type NullableTimelineTimelineItem ¶

type NullableTimelineTimelineItem struct {
	// contains filtered or unexported fields
}

func (NullableTimelineTimelineItem) Get ¶

func (NullableTimelineTimelineItem) IsSet ¶

func (NullableTimelineTimelineItem) MarshalJSON ¶

func (v NullableTimelineTimelineItem) MarshalJSON() ([]byte, error)

func (*NullableTimelineTimelineItem) Set ¶

func (*NullableTimelineTimelineItem) UnmarshalJSON ¶

func (v *NullableTimelineTimelineItem) UnmarshalJSON(src []byte) error

func (*NullableTimelineTimelineItem) Unset ¶

func (v *NullableTimelineTimelineItem) Unset()

type NullableTimelineTimelineModule ¶

type NullableTimelineTimelineModule struct {
	// contains filtered or unexported fields
}

func (NullableTimelineTimelineModule) Get ¶

func (NullableTimelineTimelineModule) IsSet ¶

func (NullableTimelineTimelineModule) MarshalJSON ¶

func (v NullableTimelineTimelineModule) MarshalJSON() ([]byte, error)

func (*NullableTimelineTimelineModule) Set ¶

func (*NullableTimelineTimelineModule) UnmarshalJSON ¶

func (v *NullableTimelineTimelineModule) UnmarshalJSON(src []byte) error

func (*NullableTimelineTimelineModule) Unset ¶

func (v *NullableTimelineTimelineModule) Unset()

type NullableTimelineTopicContext ¶

type NullableTimelineTopicContext struct {
	// contains filtered or unexported fields
}

func (NullableTimelineTopicContext) Get ¶

func (NullableTimelineTopicContext) IsSet ¶

func (NullableTimelineTopicContext) MarshalJSON ¶

func (v NullableTimelineTopicContext) MarshalJSON() ([]byte, error)

func (*NullableTimelineTopicContext) Set ¶

func (*NullableTimelineTopicContext) UnmarshalJSON ¶

func (v *NullableTimelineTopicContext) UnmarshalJSON(src []byte) error

func (*NullableTimelineTopicContext) Unset ¶

func (v *NullableTimelineTopicContext) Unset()

type NullableTimelineTweet ¶

type NullableTimelineTweet struct {
	// contains filtered or unexported fields
}

func NewNullableTimelineTweet ¶

func NewNullableTimelineTweet(val *TimelineTweet) *NullableTimelineTweet

func (NullableTimelineTweet) Get ¶

func (NullableTimelineTweet) IsSet ¶

func (v NullableTimelineTweet) IsSet() bool

func (NullableTimelineTweet) MarshalJSON ¶

func (v NullableTimelineTweet) MarshalJSON() ([]byte, error)

func (*NullableTimelineTweet) Set ¶

func (v *NullableTimelineTweet) Set(val *TimelineTweet)

func (*NullableTimelineTweet) UnmarshalJSON ¶

func (v *NullableTimelineTweet) UnmarshalJSON(src []byte) error

func (*NullableTimelineTweet) Unset ¶

func (v *NullableTimelineTweet) Unset()

type NullableTimelineUser ¶

type NullableTimelineUser struct {
	// contains filtered or unexported fields
}

func NewNullableTimelineUser ¶

func NewNullableTimelineUser(val *TimelineUser) *NullableTimelineUser

func (NullableTimelineUser) Get ¶

func (NullableTimelineUser) IsSet ¶

func (v NullableTimelineUser) IsSet() bool

func (NullableTimelineUser) MarshalJSON ¶

func (v NullableTimelineUser) MarshalJSON() ([]byte, error)

func (*NullableTimelineUser) Set ¶

func (v *NullableTimelineUser) Set(val *TimelineUser)

func (*NullableTimelineUser) UnmarshalJSON ¶

func (v *NullableTimelineUser) UnmarshalJSON(src []byte) error

func (*NullableTimelineUser) Unset ¶

func (v *NullableTimelineUser) Unset()

type NullableTimelineV2 ¶

type NullableTimelineV2 struct {
	// contains filtered or unexported fields
}

func NewNullableTimelineV2 ¶

func NewNullableTimelineV2(val *TimelineV2) *NullableTimelineV2

func (NullableTimelineV2) Get ¶

func (v NullableTimelineV2) Get() *TimelineV2

func (NullableTimelineV2) IsSet ¶

func (v NullableTimelineV2) IsSet() bool

func (NullableTimelineV2) MarshalJSON ¶

func (v NullableTimelineV2) MarshalJSON() ([]byte, error)

func (*NullableTimelineV2) Set ¶

func (v *NullableTimelineV2) Set(val *TimelineV2)

func (*NullableTimelineV2) UnmarshalJSON ¶

func (v *NullableTimelineV2) UnmarshalJSON(src []byte) error

func (*NullableTimelineV2) Unset ¶

func (v *NullableTimelineV2) Unset()

type NullableTimestamp ¶

type NullableTimestamp struct {
	// contains filtered or unexported fields
}

func NewNullableTimestamp ¶

func NewNullableTimestamp(val *Timestamp) *NullableTimestamp

func (NullableTimestamp) Get ¶

func (v NullableTimestamp) Get() *Timestamp

func (NullableTimestamp) IsSet ¶

func (v NullableTimestamp) IsSet() bool

func (NullableTimestamp) MarshalJSON ¶

func (v NullableTimestamp) MarshalJSON() ([]byte, error)

func (*NullableTimestamp) Set ¶

func (v *NullableTimestamp) Set(val *Timestamp)

func (*NullableTimestamp) UnmarshalJSON ¶

func (v *NullableTimestamp) UnmarshalJSON(src []byte) error

func (*NullableTimestamp) Unset ¶

func (v *NullableTimestamp) Unset()

type NullableTopicContext ¶

type NullableTopicContext struct {
	// contains filtered or unexported fields
}

func NewNullableTopicContext ¶

func NewNullableTopicContext(val *TopicContext) *NullableTopicContext

func (NullableTopicContext) Get ¶

func (NullableTopicContext) IsSet ¶

func (v NullableTopicContext) IsSet() bool

func (NullableTopicContext) MarshalJSON ¶

func (v NullableTopicContext) MarshalJSON() ([]byte, error)

func (*NullableTopicContext) Set ¶

func (v *NullableTopicContext) Set(val *TopicContext)

func (*NullableTopicContext) UnmarshalJSON ¶

func (v *NullableTopicContext) UnmarshalJSON(src []byte) error

func (*NullableTopicContext) Unset ¶

func (v *NullableTopicContext) Unset()

type NullableTracing ¶

type NullableTracing struct {
	// contains filtered or unexported fields
}

func NewNullableTracing ¶

func NewNullableTracing(val *Tracing) *NullableTracing

func (NullableTracing) Get ¶

func (v NullableTracing) Get() *Tracing

func (NullableTracing) IsSet ¶

func (v NullableTracing) IsSet() bool

func (NullableTracing) MarshalJSON ¶

func (v NullableTracing) MarshalJSON() ([]byte, error)

func (*NullableTracing) Set ¶

func (v *NullableTracing) Set(val *Tracing)

func (*NullableTracing) UnmarshalJSON ¶

func (v *NullableTracing) UnmarshalJSON(src []byte) error

func (*NullableTracing) Unset ¶

func (v *NullableTracing) Unset()

type NullableTweet ¶

type NullableTweet struct {
	// contains filtered or unexported fields
}

func NewNullableTweet ¶

func NewNullableTweet(val *Tweet) *NullableTweet

func (NullableTweet) Get ¶

func (v NullableTweet) Get() *Tweet

func (NullableTweet) IsSet ¶

func (v NullableTweet) IsSet() bool

func (NullableTweet) MarshalJSON ¶

func (v NullableTweet) MarshalJSON() ([]byte, error)

func (*NullableTweet) Set ¶

func (v *NullableTweet) Set(val *Tweet)

func (*NullableTweet) UnmarshalJSON ¶

func (v *NullableTweet) UnmarshalJSON(src []byte) error

func (*NullableTweet) Unset ¶

func (v *NullableTweet) Unset()

type NullableTweetCard ¶

type NullableTweetCard struct {
	// contains filtered or unexported fields
}

func NewNullableTweetCard ¶

func NewNullableTweetCard(val *TweetCard) *NullableTweetCard

func (NullableTweetCard) Get ¶

func (v NullableTweetCard) Get() *TweetCard

func (NullableTweetCard) IsSet ¶

func (v NullableTweetCard) IsSet() bool

func (NullableTweetCard) MarshalJSON ¶

func (v NullableTweetCard) MarshalJSON() ([]byte, error)

func (*NullableTweetCard) Set ¶

func (v *NullableTweetCard) Set(val *TweetCard)

func (*NullableTweetCard) UnmarshalJSON ¶

func (v *NullableTweetCard) UnmarshalJSON(src []byte) error

func (*NullableTweetCard) Unset ¶

func (v *NullableTweetCard) Unset()

type NullableTweetCardLegacy ¶

type NullableTweetCardLegacy struct {
	// contains filtered or unexported fields
}

func NewNullableTweetCardLegacy ¶

func NewNullableTweetCardLegacy(val *TweetCardLegacy) *NullableTweetCardLegacy

func (NullableTweetCardLegacy) Get ¶

func (NullableTweetCardLegacy) IsSet ¶

func (v NullableTweetCardLegacy) IsSet() bool

func (NullableTweetCardLegacy) MarshalJSON ¶

func (v NullableTweetCardLegacy) MarshalJSON() ([]byte, error)

func (*NullableTweetCardLegacy) Set ¶

func (*NullableTweetCardLegacy) UnmarshalJSON ¶

func (v *NullableTweetCardLegacy) UnmarshalJSON(src []byte) error

func (*NullableTweetCardLegacy) Unset ¶

func (v *NullableTweetCardLegacy) Unset()

type NullableTweetCardLegacyBindingValue ¶

type NullableTweetCardLegacyBindingValue struct {
	// contains filtered or unexported fields
}

func (NullableTweetCardLegacyBindingValue) Get ¶

func (NullableTweetCardLegacyBindingValue) IsSet ¶

func (NullableTweetCardLegacyBindingValue) MarshalJSON ¶

func (v NullableTweetCardLegacyBindingValue) MarshalJSON() ([]byte, error)

func (*NullableTweetCardLegacyBindingValue) Set ¶

func (*NullableTweetCardLegacyBindingValue) UnmarshalJSON ¶

func (v *NullableTweetCardLegacyBindingValue) UnmarshalJSON(src []byte) error

func (*NullableTweetCardLegacyBindingValue) Unset ¶

type NullableTweetCardLegacyBindingValueData ¶

type NullableTweetCardLegacyBindingValueData struct {
	// contains filtered or unexported fields
}

func (NullableTweetCardLegacyBindingValueData) Get ¶

func (NullableTweetCardLegacyBindingValueData) IsSet ¶

func (NullableTweetCardLegacyBindingValueData) MarshalJSON ¶

func (v NullableTweetCardLegacyBindingValueData) MarshalJSON() ([]byte, error)

func (*NullableTweetCardLegacyBindingValueData) Set ¶

func (*NullableTweetCardLegacyBindingValueData) UnmarshalJSON ¶

func (v *NullableTweetCardLegacyBindingValueData) UnmarshalJSON(src []byte) error

func (*NullableTweetCardLegacyBindingValueData) Unset ¶

type NullableTweetCardLegacyBindingValueDataImage ¶

type NullableTweetCardLegacyBindingValueDataImage struct {
	// contains filtered or unexported fields
}

func (NullableTweetCardLegacyBindingValueDataImage) Get ¶

func (NullableTweetCardLegacyBindingValueDataImage) IsSet ¶

func (NullableTweetCardLegacyBindingValueDataImage) MarshalJSON ¶

func (*NullableTweetCardLegacyBindingValueDataImage) Set ¶

func (*NullableTweetCardLegacyBindingValueDataImage) UnmarshalJSON ¶

func (*NullableTweetCardLegacyBindingValueDataImage) Unset ¶

type NullableTweetCardPlatform ¶

type NullableTweetCardPlatform struct {
	// contains filtered or unexported fields
}

func NewNullableTweetCardPlatform ¶

func NewNullableTweetCardPlatform(val *TweetCardPlatform) *NullableTweetCardPlatform

func (NullableTweetCardPlatform) Get ¶

func (NullableTweetCardPlatform) IsSet ¶

func (v NullableTweetCardPlatform) IsSet() bool

func (NullableTweetCardPlatform) MarshalJSON ¶

func (v NullableTweetCardPlatform) MarshalJSON() ([]byte, error)

func (*NullableTweetCardPlatform) Set ¶

func (*NullableTweetCardPlatform) UnmarshalJSON ¶

func (v *NullableTweetCardPlatform) UnmarshalJSON(src []byte) error

func (*NullableTweetCardPlatform) Unset ¶

func (v *NullableTweetCardPlatform) Unset()

type NullableTweetCardPlatformAudience ¶

type NullableTweetCardPlatformAudience struct {
	// contains filtered or unexported fields
}

func (NullableTweetCardPlatformAudience) Get ¶

func (NullableTweetCardPlatformAudience) IsSet ¶

func (NullableTweetCardPlatformAudience) MarshalJSON ¶

func (v NullableTweetCardPlatformAudience) MarshalJSON() ([]byte, error)

func (*NullableTweetCardPlatformAudience) Set ¶

func (*NullableTweetCardPlatformAudience) UnmarshalJSON ¶

func (v *NullableTweetCardPlatformAudience) UnmarshalJSON(src []byte) error

func (*NullableTweetCardPlatformAudience) Unset ¶

type NullableTweetCardPlatformData ¶

type NullableTweetCardPlatformData struct {
	// contains filtered or unexported fields
}

func (NullableTweetCardPlatformData) Get ¶

func (NullableTweetCardPlatformData) IsSet ¶

func (NullableTweetCardPlatformData) MarshalJSON ¶

func (v NullableTweetCardPlatformData) MarshalJSON() ([]byte, error)

func (*NullableTweetCardPlatformData) Set ¶

func (*NullableTweetCardPlatformData) UnmarshalJSON ¶

func (v *NullableTweetCardPlatformData) UnmarshalJSON(src []byte) error

func (*NullableTweetCardPlatformData) Unset ¶

func (v *NullableTweetCardPlatformData) Unset()

type NullableTweetCardPlatformDevice ¶

type NullableTweetCardPlatformDevice struct {
	// contains filtered or unexported fields
}

func (NullableTweetCardPlatformDevice) Get ¶

func (NullableTweetCardPlatformDevice) IsSet ¶

func (NullableTweetCardPlatformDevice) MarshalJSON ¶

func (v NullableTweetCardPlatformDevice) MarshalJSON() ([]byte, error)

func (*NullableTweetCardPlatformDevice) Set ¶

func (*NullableTweetCardPlatformDevice) UnmarshalJSON ¶

func (v *NullableTweetCardPlatformDevice) UnmarshalJSON(src []byte) error

func (*NullableTweetCardPlatformDevice) Unset ¶

type NullableTweetDetailResponse ¶

type NullableTweetDetailResponse struct {
	// contains filtered or unexported fields
}

func (NullableTweetDetailResponse) Get ¶

func (NullableTweetDetailResponse) IsSet ¶

func (NullableTweetDetailResponse) MarshalJSON ¶

func (v NullableTweetDetailResponse) MarshalJSON() ([]byte, error)

func (*NullableTweetDetailResponse) Set ¶

func (*NullableTweetDetailResponse) UnmarshalJSON ¶

func (v *NullableTweetDetailResponse) UnmarshalJSON(src []byte) error

func (*NullableTweetDetailResponse) Unset ¶

func (v *NullableTweetDetailResponse) Unset()

type NullableTweetDetailResponseData ¶

type NullableTweetDetailResponseData struct {
	// contains filtered or unexported fields
}

func (NullableTweetDetailResponseData) Get ¶

func (NullableTweetDetailResponseData) IsSet ¶

func (NullableTweetDetailResponseData) MarshalJSON ¶

func (v NullableTweetDetailResponseData) MarshalJSON() ([]byte, error)

func (*NullableTweetDetailResponseData) Set ¶

func (*NullableTweetDetailResponseData) UnmarshalJSON ¶

func (v *NullableTweetDetailResponseData) UnmarshalJSON(src []byte) error

func (*NullableTweetDetailResponseData) Unset ¶

type NullableTweetEditControl ¶

type NullableTweetEditControl struct {
	// contains filtered or unexported fields
}

func NewNullableTweetEditControl ¶

func NewNullableTweetEditControl(val *TweetEditControl) *NullableTweetEditControl

func (NullableTweetEditControl) Get ¶

func (NullableTweetEditControl) IsSet ¶

func (v NullableTweetEditControl) IsSet() bool

func (NullableTweetEditControl) MarshalJSON ¶

func (v NullableTweetEditControl) MarshalJSON() ([]byte, error)

func (*NullableTweetEditControl) Set ¶

func (*NullableTweetEditControl) UnmarshalJSON ¶

func (v *NullableTweetEditControl) UnmarshalJSON(src []byte) error

func (*NullableTweetEditControl) Unset ¶

func (v *NullableTweetEditControl) Unset()

type NullableTweetEditControlInitial ¶

type NullableTweetEditControlInitial struct {
	// contains filtered or unexported fields
}

func (NullableTweetEditControlInitial) Get ¶

func (NullableTweetEditControlInitial) IsSet ¶

func (NullableTweetEditControlInitial) MarshalJSON ¶

func (v NullableTweetEditControlInitial) MarshalJSON() ([]byte, error)

func (*NullableTweetEditControlInitial) Set ¶

func (*NullableTweetEditControlInitial) UnmarshalJSON ¶

func (v *NullableTweetEditControlInitial) UnmarshalJSON(src []byte) error

func (*NullableTweetEditControlInitial) Unset ¶

type NullableTweetEditPrespective ¶

type NullableTweetEditPrespective struct {
	// contains filtered or unexported fields
}

func (NullableTweetEditPrespective) Get ¶

func (NullableTweetEditPrespective) IsSet ¶

func (NullableTweetEditPrespective) MarshalJSON ¶

func (v NullableTweetEditPrespective) MarshalJSON() ([]byte, error)

func (*NullableTweetEditPrespective) Set ¶

func (*NullableTweetEditPrespective) UnmarshalJSON ¶

func (v *NullableTweetEditPrespective) UnmarshalJSON(src []byte) error

func (*NullableTweetEditPrespective) Unset ¶

func (v *NullableTweetEditPrespective) Unset()

type NullableTweetFavoritersResponse ¶

type NullableTweetFavoritersResponse struct {
	// contains filtered or unexported fields
}

func (NullableTweetFavoritersResponse) Get ¶

func (NullableTweetFavoritersResponse) IsSet ¶

func (NullableTweetFavoritersResponse) MarshalJSON ¶

func (v NullableTweetFavoritersResponse) MarshalJSON() ([]byte, error)

func (*NullableTweetFavoritersResponse) Set ¶

func (*NullableTweetFavoritersResponse) UnmarshalJSON ¶

func (v *NullableTweetFavoritersResponse) UnmarshalJSON(src []byte) error

func (*NullableTweetFavoritersResponse) Unset ¶

type NullableTweetFavoritersResponseData ¶

type NullableTweetFavoritersResponseData struct {
	// contains filtered or unexported fields
}

func (NullableTweetFavoritersResponseData) Get ¶

func (NullableTweetFavoritersResponseData) IsSet ¶

func (NullableTweetFavoritersResponseData) MarshalJSON ¶

func (v NullableTweetFavoritersResponseData) MarshalJSON() ([]byte, error)

func (*NullableTweetFavoritersResponseData) Set ¶

func (*NullableTweetFavoritersResponseData) UnmarshalJSON ¶

func (v *NullableTweetFavoritersResponseData) UnmarshalJSON(src []byte) error

func (*NullableTweetFavoritersResponseData) Unset ¶

type NullableTweetInterstitial ¶

type NullableTweetInterstitial struct {
	// contains filtered or unexported fields
}

func NewNullableTweetInterstitial ¶

func NewNullableTweetInterstitial(val *TweetInterstitial) *NullableTweetInterstitial

func (NullableTweetInterstitial) Get ¶

func (NullableTweetInterstitial) IsSet ¶

func (v NullableTweetInterstitial) IsSet() bool

func (NullableTweetInterstitial) MarshalJSON ¶

func (v NullableTweetInterstitial) MarshalJSON() ([]byte, error)

func (*NullableTweetInterstitial) Set ¶

func (*NullableTweetInterstitial) UnmarshalJSON ¶

func (v *NullableTweetInterstitial) UnmarshalJSON(src []byte) error

func (*NullableTweetInterstitial) Unset ¶

func (v *NullableTweetInterstitial) Unset()

type NullableTweetInterstitialRevealText ¶

type NullableTweetInterstitialRevealText struct {
	// contains filtered or unexported fields
}

func (NullableTweetInterstitialRevealText) Get ¶

func (NullableTweetInterstitialRevealText) IsSet ¶

func (NullableTweetInterstitialRevealText) MarshalJSON ¶

func (v NullableTweetInterstitialRevealText) MarshalJSON() ([]byte, error)

func (*NullableTweetInterstitialRevealText) Set ¶

func (*NullableTweetInterstitialRevealText) UnmarshalJSON ¶

func (v *NullableTweetInterstitialRevealText) UnmarshalJSON(src []byte) error

func (*NullableTweetInterstitialRevealText) Unset ¶

type NullableTweetInterstitialText ¶

type NullableTweetInterstitialText struct {
	// contains filtered or unexported fields
}

func (NullableTweetInterstitialText) Get ¶

func (NullableTweetInterstitialText) IsSet ¶

func (NullableTweetInterstitialText) MarshalJSON ¶

func (v NullableTweetInterstitialText) MarshalJSON() ([]byte, error)

func (*NullableTweetInterstitialText) Set ¶

func (*NullableTweetInterstitialText) UnmarshalJSON ¶

func (v *NullableTweetInterstitialText) UnmarshalJSON(src []byte) error

func (*NullableTweetInterstitialText) Unset ¶

func (v *NullableTweetInterstitialText) Unset()

type NullableTweetInterstitialTextEntity ¶

type NullableTweetInterstitialTextEntity struct {
	// contains filtered or unexported fields
}

func (NullableTweetInterstitialTextEntity) Get ¶

func (NullableTweetInterstitialTextEntity) IsSet ¶

func (NullableTweetInterstitialTextEntity) MarshalJSON ¶

func (v NullableTweetInterstitialTextEntity) MarshalJSON() ([]byte, error)

func (*NullableTweetInterstitialTextEntity) Set ¶

func (*NullableTweetInterstitialTextEntity) UnmarshalJSON ¶

func (v *NullableTweetInterstitialTextEntity) UnmarshalJSON(src []byte) error

func (*NullableTweetInterstitialTextEntity) Unset ¶

type NullableTweetInterstitialTextEntityRef ¶

type NullableTweetInterstitialTextEntityRef struct {
	// contains filtered or unexported fields
}

func (NullableTweetInterstitialTextEntityRef) Get ¶

func (NullableTweetInterstitialTextEntityRef) IsSet ¶

func (NullableTweetInterstitialTextEntityRef) MarshalJSON ¶

func (v NullableTweetInterstitialTextEntityRef) MarshalJSON() ([]byte, error)

func (*NullableTweetInterstitialTextEntityRef) Set ¶

func (*NullableTweetInterstitialTextEntityRef) UnmarshalJSON ¶

func (v *NullableTweetInterstitialTextEntityRef) UnmarshalJSON(src []byte) error

func (*NullableTweetInterstitialTextEntityRef) Unset ¶

type NullableTweetLegacy ¶

type NullableTweetLegacy struct {
	// contains filtered or unexported fields
}

func NewNullableTweetLegacy ¶

func NewNullableTweetLegacy(val *TweetLegacy) *NullableTweetLegacy

func (NullableTweetLegacy) Get ¶

func (NullableTweetLegacy) IsSet ¶

func (v NullableTweetLegacy) IsSet() bool

func (NullableTweetLegacy) MarshalJSON ¶

func (v NullableTweetLegacy) MarshalJSON() ([]byte, error)

func (*NullableTweetLegacy) Set ¶

func (v *NullableTweetLegacy) Set(val *TweetLegacy)

func (*NullableTweetLegacy) UnmarshalJSON ¶

func (v *NullableTweetLegacy) UnmarshalJSON(src []byte) error

func (*NullableTweetLegacy) Unset ¶

func (v *NullableTweetLegacy) Unset()

type NullableTweetLegacyScopes ¶

type NullableTweetLegacyScopes struct {
	// contains filtered or unexported fields
}

func NewNullableTweetLegacyScopes ¶

func NewNullableTweetLegacyScopes(val *TweetLegacyScopes) *NullableTweetLegacyScopes

func (NullableTweetLegacyScopes) Get ¶

func (NullableTweetLegacyScopes) IsSet ¶

func (v NullableTweetLegacyScopes) IsSet() bool

func (NullableTweetLegacyScopes) MarshalJSON ¶

func (v NullableTweetLegacyScopes) MarshalJSON() ([]byte, error)

func (*NullableTweetLegacyScopes) Set ¶

func (*NullableTweetLegacyScopes) UnmarshalJSON ¶

func (v *NullableTweetLegacyScopes) UnmarshalJSON(src []byte) error

func (*NullableTweetLegacyScopes) Unset ¶

func (v *NullableTweetLegacyScopes) Unset()

type NullableTweetPreviousCounts ¶

type NullableTweetPreviousCounts struct {
	// contains filtered or unexported fields
}

func (NullableTweetPreviousCounts) Get ¶

func (NullableTweetPreviousCounts) IsSet ¶

func (NullableTweetPreviousCounts) MarshalJSON ¶

func (v NullableTweetPreviousCounts) MarshalJSON() ([]byte, error)

func (*NullableTweetPreviousCounts) Set ¶

func (*NullableTweetPreviousCounts) UnmarshalJSON ¶

func (v *NullableTweetPreviousCounts) UnmarshalJSON(src []byte) error

func (*NullableTweetPreviousCounts) Unset ¶

func (v *NullableTweetPreviousCounts) Unset()

type NullableTweetResultByRestIdData ¶

type NullableTweetResultByRestIdData struct {
	// contains filtered or unexported fields
}

func (NullableTweetResultByRestIdData) Get ¶

func (NullableTweetResultByRestIdData) IsSet ¶

func (NullableTweetResultByRestIdData) MarshalJSON ¶

func (v NullableTweetResultByRestIdData) MarshalJSON() ([]byte, error)

func (*NullableTweetResultByRestIdData) Set ¶

func (*NullableTweetResultByRestIdData) UnmarshalJSON ¶

func (v *NullableTweetResultByRestIdData) UnmarshalJSON(src []byte) error

func (*NullableTweetResultByRestIdData) Unset ¶

type NullableTweetResultByRestIdResponse ¶

type NullableTweetResultByRestIdResponse struct {
	// contains filtered or unexported fields
}

func (NullableTweetResultByRestIdResponse) Get ¶

func (NullableTweetResultByRestIdResponse) IsSet ¶

func (NullableTweetResultByRestIdResponse) MarshalJSON ¶

func (v NullableTweetResultByRestIdResponse) MarshalJSON() ([]byte, error)

func (*NullableTweetResultByRestIdResponse) Set ¶

func (*NullableTweetResultByRestIdResponse) UnmarshalJSON ¶

func (v *NullableTweetResultByRestIdResponse) UnmarshalJSON(src []byte) error

func (*NullableTweetResultByRestIdResponse) Unset ¶

type NullableTweetRetweetersResponse ¶

type NullableTweetRetweetersResponse struct {
	// contains filtered or unexported fields
}

func (NullableTweetRetweetersResponse) Get ¶

func (NullableTweetRetweetersResponse) IsSet ¶

func (NullableTweetRetweetersResponse) MarshalJSON ¶

func (v NullableTweetRetweetersResponse) MarshalJSON() ([]byte, error)

func (*NullableTweetRetweetersResponse) Set ¶

func (*NullableTweetRetweetersResponse) UnmarshalJSON ¶

func (v *NullableTweetRetweetersResponse) UnmarshalJSON(src []byte) error

func (*NullableTweetRetweetersResponse) Unset ¶

type NullableTweetRetweetersResponseData ¶

type NullableTweetRetweetersResponseData struct {
	// contains filtered or unexported fields
}

func (NullableTweetRetweetersResponseData) Get ¶

func (NullableTweetRetweetersResponseData) IsSet ¶

func (NullableTweetRetweetersResponseData) MarshalJSON ¶

func (v NullableTweetRetweetersResponseData) MarshalJSON() ([]byte, error)

func (*NullableTweetRetweetersResponseData) Set ¶

func (*NullableTweetRetweetersResponseData) UnmarshalJSON ¶

func (v *NullableTweetRetweetersResponseData) UnmarshalJSON(src []byte) error

func (*NullableTweetRetweetersResponseData) Unset ¶

type NullableTweetTombstone ¶

type NullableTweetTombstone struct {
	// contains filtered or unexported fields
}

func NewNullableTweetTombstone ¶

func NewNullableTweetTombstone(val *TweetTombstone) *NullableTweetTombstone

func (NullableTweetTombstone) Get ¶

func (NullableTweetTombstone) IsSet ¶

func (v NullableTweetTombstone) IsSet() bool

func (NullableTweetTombstone) MarshalJSON ¶

func (v NullableTweetTombstone) MarshalJSON() ([]byte, error)

func (*NullableTweetTombstone) Set ¶

func (*NullableTweetTombstone) UnmarshalJSON ¶

func (v *NullableTweetTombstone) UnmarshalJSON(src []byte) error

func (*NullableTweetTombstone) Unset ¶

func (v *NullableTweetTombstone) Unset()

type NullableTweetUnavailable ¶

type NullableTweetUnavailable struct {
	// contains filtered or unexported fields
}

func NewNullableTweetUnavailable ¶

func NewNullableTweetUnavailable(val *TweetUnavailable) *NullableTweetUnavailable

func (NullableTweetUnavailable) Get ¶

func (NullableTweetUnavailable) IsSet ¶

func (v NullableTweetUnavailable) IsSet() bool

func (NullableTweetUnavailable) MarshalJSON ¶

func (v NullableTweetUnavailable) MarshalJSON() ([]byte, error)

func (*NullableTweetUnavailable) Set ¶

func (*NullableTweetUnavailable) UnmarshalJSON ¶

func (v *NullableTweetUnavailable) UnmarshalJSON(src []byte) error

func (*NullableTweetUnavailable) Unset ¶

func (v *NullableTweetUnavailable) Unset()

type NullableTweetUnion ¶

type NullableTweetUnion struct {
	// contains filtered or unexported fields
}

func NewNullableTweetUnion ¶

func NewNullableTweetUnion(val *TweetUnion) *NullableTweetUnion

func (NullableTweetUnion) Get ¶

func (v NullableTweetUnion) Get() *TweetUnion

func (NullableTweetUnion) IsSet ¶

func (v NullableTweetUnion) IsSet() bool

func (NullableTweetUnion) MarshalJSON ¶

func (v NullableTweetUnion) MarshalJSON() ([]byte, error)

func (*NullableTweetUnion) Set ¶

func (v *NullableTweetUnion) Set(val *TweetUnion)

func (*NullableTweetUnion) UnmarshalJSON ¶

func (v *NullableTweetUnion) UnmarshalJSON(src []byte) error

func (*NullableTweetUnion) Unset ¶

func (v *NullableTweetUnion) Unset()

type NullableTweetView ¶

type NullableTweetView struct {
	// contains filtered or unexported fields
}

func NewNullableTweetView ¶

func NewNullableTweetView(val *TweetView) *NullableTweetView

func (NullableTweetView) Get ¶

func (v NullableTweetView) Get() *TweetView

func (NullableTweetView) IsSet ¶

func (v NullableTweetView) IsSet() bool

func (NullableTweetView) MarshalJSON ¶

func (v NullableTweetView) MarshalJSON() ([]byte, error)

func (*NullableTweetView) Set ¶

func (v *NullableTweetView) Set(val *TweetView)

func (*NullableTweetView) UnmarshalJSON ¶

func (v *NullableTweetView) UnmarshalJSON(src []byte) error

func (*NullableTweetView) Unset ¶

func (v *NullableTweetView) Unset()

type NullableTweetWithVisibilityResults ¶

type NullableTweetWithVisibilityResults struct {
	// contains filtered or unexported fields
}

func (NullableTweetWithVisibilityResults) Get ¶

func (NullableTweetWithVisibilityResults) IsSet ¶

func (NullableTweetWithVisibilityResults) MarshalJSON ¶

func (v NullableTweetWithVisibilityResults) MarshalJSON() ([]byte, error)

func (*NullableTweetWithVisibilityResults) Set ¶

func (*NullableTweetWithVisibilityResults) UnmarshalJSON ¶

func (v *NullableTweetWithVisibilityResults) UnmarshalJSON(src []byte) error

func (*NullableTweetWithVisibilityResults) Unset ¶

type NullableTypeName ¶

type NullableTypeName struct {
	// contains filtered or unexported fields
}

func NewNullableTypeName ¶

func NewNullableTypeName(val *TypeName) *NullableTypeName

func (NullableTypeName) Get ¶

func (v NullableTypeName) Get() *TypeName

func (NullableTypeName) IsSet ¶

func (v NullableTypeName) IsSet() bool

func (NullableTypeName) MarshalJSON ¶

func (v NullableTypeName) MarshalJSON() ([]byte, error)

func (*NullableTypeName) Set ¶

func (v *NullableTypeName) Set(val *TypeName)

func (*NullableTypeName) UnmarshalJSON ¶

func (v *NullableTypeName) UnmarshalJSON(src []byte) error

func (*NullableTypeName) Unset ¶

func (v *NullableTypeName) Unset()

type NullableUnfavoriteTweet ¶

type NullableUnfavoriteTweet struct {
	// contains filtered or unexported fields
}

func NewNullableUnfavoriteTweet ¶

func NewNullableUnfavoriteTweet(val *UnfavoriteTweet) *NullableUnfavoriteTweet

func (NullableUnfavoriteTweet) Get ¶

func (NullableUnfavoriteTweet) IsSet ¶

func (v NullableUnfavoriteTweet) IsSet() bool

func (NullableUnfavoriteTweet) MarshalJSON ¶

func (v NullableUnfavoriteTweet) MarshalJSON() ([]byte, error)

func (*NullableUnfavoriteTweet) Set ¶

func (*NullableUnfavoriteTweet) UnmarshalJSON ¶

func (v *NullableUnfavoriteTweet) UnmarshalJSON(src []byte) error

func (*NullableUnfavoriteTweet) Unset ¶

func (v *NullableUnfavoriteTweet) Unset()

type NullableUnfavoriteTweetResponseData ¶

type NullableUnfavoriteTweetResponseData struct {
	// contains filtered or unexported fields
}

func (NullableUnfavoriteTweetResponseData) Get ¶

func (NullableUnfavoriteTweetResponseData) IsSet ¶

func (NullableUnfavoriteTweetResponseData) MarshalJSON ¶

func (v NullableUnfavoriteTweetResponseData) MarshalJSON() ([]byte, error)

func (*NullableUnfavoriteTweetResponseData) Set ¶

func (*NullableUnfavoriteTweetResponseData) UnmarshalJSON ¶

func (v *NullableUnfavoriteTweetResponseData) UnmarshalJSON(src []byte) error

func (*NullableUnfavoriteTweetResponseData) Unset ¶

type NullableUnifiedCard ¶

type NullableUnifiedCard struct {
	// contains filtered or unexported fields
}

func NewNullableUnifiedCard ¶

func NewNullableUnifiedCard(val *UnifiedCard) *NullableUnifiedCard

func (NullableUnifiedCard) Get ¶

func (NullableUnifiedCard) IsSet ¶

func (v NullableUnifiedCard) IsSet() bool

func (NullableUnifiedCard) MarshalJSON ¶

func (v NullableUnifiedCard) MarshalJSON() ([]byte, error)

func (*NullableUnifiedCard) Set ¶

func (v *NullableUnifiedCard) Set(val *UnifiedCard)

func (*NullableUnifiedCard) UnmarshalJSON ¶

func (v *NullableUnifiedCard) UnmarshalJSON(src []byte) error

func (*NullableUnifiedCard) Unset ¶

func (v *NullableUnifiedCard) Unset()

type NullableUrl ¶

type NullableUrl struct {
	// contains filtered or unexported fields
}

func NewNullableUrl ¶

func NewNullableUrl(val *Url) *NullableUrl

func (NullableUrl) Get ¶

func (v NullableUrl) Get() *Url

func (NullableUrl) IsSet ¶

func (v NullableUrl) IsSet() bool

func (NullableUrl) MarshalJSON ¶

func (v NullableUrl) MarshalJSON() ([]byte, error)

func (*NullableUrl) Set ¶

func (v *NullableUrl) Set(val *Url)

func (*NullableUrl) UnmarshalJSON ¶

func (v *NullableUrl) UnmarshalJSON(src []byte) error

func (*NullableUrl) Unset ¶

func (v *NullableUrl) Unset()

type NullableUrtEndpointOptions ¶

type NullableUrtEndpointOptions struct {
	// contains filtered or unexported fields
}

func NewNullableUrtEndpointOptions ¶

func NewNullableUrtEndpointOptions(val *UrtEndpointOptions) *NullableUrtEndpointOptions

func (NullableUrtEndpointOptions) Get ¶

func (NullableUrtEndpointOptions) IsSet ¶

func (v NullableUrtEndpointOptions) IsSet() bool

func (NullableUrtEndpointOptions) MarshalJSON ¶

func (v NullableUrtEndpointOptions) MarshalJSON() ([]byte, error)

func (*NullableUrtEndpointOptions) Set ¶

func (*NullableUrtEndpointOptions) UnmarshalJSON ¶

func (v *NullableUrtEndpointOptions) UnmarshalJSON(src []byte) error

func (*NullableUrtEndpointOptions) Unset ¶

func (v *NullableUrtEndpointOptions) Unset()

type NullableUrtEndpointRequestParams ¶

type NullableUrtEndpointRequestParams struct {
	// contains filtered or unexported fields
}

func (NullableUrtEndpointRequestParams) Get ¶

func (NullableUrtEndpointRequestParams) IsSet ¶

func (NullableUrtEndpointRequestParams) MarshalJSON ¶

func (v NullableUrtEndpointRequestParams) MarshalJSON() ([]byte, error)

func (*NullableUrtEndpointRequestParams) Set ¶

func (*NullableUrtEndpointRequestParams) UnmarshalJSON ¶

func (v *NullableUrtEndpointRequestParams) UnmarshalJSON(src []byte) error

func (*NullableUrtEndpointRequestParams) Unset ¶

type NullableUser ¶

type NullableUser struct {
	// contains filtered or unexported fields
}

func NewNullableUser ¶

func NewNullableUser(val *User) *NullableUser

func (NullableUser) Get ¶

func (v NullableUser) Get() *User

func (NullableUser) IsSet ¶

func (v NullableUser) IsSet() bool

func (NullableUser) MarshalJSON ¶

func (v NullableUser) MarshalJSON() ([]byte, error)

func (*NullableUser) Set ¶

func (v *NullableUser) Set(val *User)

func (*NullableUser) UnmarshalJSON ¶

func (v *NullableUser) UnmarshalJSON(src []byte) error

func (*NullableUser) Unset ¶

func (v *NullableUser) Unset()

type NullableUserFeatures ¶

type NullableUserFeatures struct {
	// contains filtered or unexported fields
}

func NewNullableUserFeatures ¶

func NewNullableUserFeatures(val *UserFeatures) *NullableUserFeatures

func (NullableUserFeatures) Get ¶

func (NullableUserFeatures) IsSet ¶

func (v NullableUserFeatures) IsSet() bool

func (NullableUserFeatures) MarshalJSON ¶

func (v NullableUserFeatures) MarshalJSON() ([]byte, error)

func (*NullableUserFeatures) Set ¶

func (v *NullableUserFeatures) Set(val *UserFeatures)

func (*NullableUserFeatures) UnmarshalJSON ¶

func (v *NullableUserFeatures) UnmarshalJSON(src []byte) error

func (*NullableUserFeatures) Unset ¶

func (v *NullableUserFeatures) Unset()

type NullableUserHighlightsInfo ¶

type NullableUserHighlightsInfo struct {
	// contains filtered or unexported fields
}

func NewNullableUserHighlightsInfo ¶

func NewNullableUserHighlightsInfo(val *UserHighlightsInfo) *NullableUserHighlightsInfo

func (NullableUserHighlightsInfo) Get ¶

func (NullableUserHighlightsInfo) IsSet ¶

func (v NullableUserHighlightsInfo) IsSet() bool

func (NullableUserHighlightsInfo) MarshalJSON ¶

func (v NullableUserHighlightsInfo) MarshalJSON() ([]byte, error)

func (*NullableUserHighlightsInfo) Set ¶

func (*NullableUserHighlightsInfo) UnmarshalJSON ¶

func (v *NullableUserHighlightsInfo) UnmarshalJSON(src []byte) error

func (*NullableUserHighlightsInfo) Unset ¶

func (v *NullableUserHighlightsInfo) Unset()

type NullableUserHighlightsTweetsData ¶

type NullableUserHighlightsTweetsData struct {
	// contains filtered or unexported fields
}

func (NullableUserHighlightsTweetsData) Get ¶

func (NullableUserHighlightsTweetsData) IsSet ¶

func (NullableUserHighlightsTweetsData) MarshalJSON ¶

func (v NullableUserHighlightsTweetsData) MarshalJSON() ([]byte, error)

func (*NullableUserHighlightsTweetsData) Set ¶

func (*NullableUserHighlightsTweetsData) UnmarshalJSON ¶

func (v *NullableUserHighlightsTweetsData) UnmarshalJSON(src []byte) error

func (*NullableUserHighlightsTweetsData) Unset ¶

type NullableUserHighlightsTweetsResponse ¶

type NullableUserHighlightsTweetsResponse struct {
	// contains filtered or unexported fields
}

func (NullableUserHighlightsTweetsResponse) Get ¶

func (NullableUserHighlightsTweetsResponse) IsSet ¶

func (NullableUserHighlightsTweetsResponse) MarshalJSON ¶

func (v NullableUserHighlightsTweetsResponse) MarshalJSON() ([]byte, error)

func (*NullableUserHighlightsTweetsResponse) Set ¶

func (*NullableUserHighlightsTweetsResponse) UnmarshalJSON ¶

func (v *NullableUserHighlightsTweetsResponse) UnmarshalJSON(src []byte) error

func (*NullableUserHighlightsTweetsResponse) Unset ¶

type NullableUserHighlightsTweetsResult ¶

type NullableUserHighlightsTweetsResult struct {
	// contains filtered or unexported fields
}

func (NullableUserHighlightsTweetsResult) Get ¶

func (NullableUserHighlightsTweetsResult) IsSet ¶

func (NullableUserHighlightsTweetsResult) MarshalJSON ¶

func (v NullableUserHighlightsTweetsResult) MarshalJSON() ([]byte, error)

func (*NullableUserHighlightsTweetsResult) Set ¶

func (*NullableUserHighlightsTweetsResult) UnmarshalJSON ¶

func (v *NullableUserHighlightsTweetsResult) UnmarshalJSON(src []byte) error

func (*NullableUserHighlightsTweetsResult) Unset ¶

type NullableUserHighlightsTweetsTimeline ¶

type NullableUserHighlightsTweetsTimeline struct {
	// contains filtered or unexported fields
}

func (NullableUserHighlightsTweetsTimeline) Get ¶

func (NullableUserHighlightsTweetsTimeline) IsSet ¶

func (NullableUserHighlightsTweetsTimeline) MarshalJSON ¶

func (v NullableUserHighlightsTweetsTimeline) MarshalJSON() ([]byte, error)

func (*NullableUserHighlightsTweetsTimeline) Set ¶

func (*NullableUserHighlightsTweetsTimeline) UnmarshalJSON ¶

func (v *NullableUserHighlightsTweetsTimeline) UnmarshalJSON(src []byte) error

func (*NullableUserHighlightsTweetsTimeline) Unset ¶

type NullableUserHighlightsTweetsUser ¶

type NullableUserHighlightsTweetsUser struct {
	// contains filtered or unexported fields
}

func (NullableUserHighlightsTweetsUser) Get ¶

func (NullableUserHighlightsTweetsUser) IsSet ¶

func (NullableUserHighlightsTweetsUser) MarshalJSON ¶

func (v NullableUserHighlightsTweetsUser) MarshalJSON() ([]byte, error)

func (*NullableUserHighlightsTweetsUser) Set ¶

func (*NullableUserHighlightsTweetsUser) UnmarshalJSON ¶

func (v *NullableUserHighlightsTweetsUser) UnmarshalJSON(src []byte) error

func (*NullableUserHighlightsTweetsUser) Unset ¶

type NullableUserLegacy ¶

type NullableUserLegacy struct {
	// contains filtered or unexported fields
}

func NewNullableUserLegacy ¶

func NewNullableUserLegacy(val *UserLegacy) *NullableUserLegacy

func (NullableUserLegacy) Get ¶

func (v NullableUserLegacy) Get() *UserLegacy

func (NullableUserLegacy) IsSet ¶

func (v NullableUserLegacy) IsSet() bool

func (NullableUserLegacy) MarshalJSON ¶

func (v NullableUserLegacy) MarshalJSON() ([]byte, error)

func (*NullableUserLegacy) Set ¶

func (v *NullableUserLegacy) Set(val *UserLegacy)

func (*NullableUserLegacy) UnmarshalJSON ¶

func (v *NullableUserLegacy) UnmarshalJSON(src []byte) error

func (*NullableUserLegacy) Unset ¶

func (v *NullableUserLegacy) Unset()

type NullableUserLegacyExtendedProfile ¶

type NullableUserLegacyExtendedProfile struct {
	// contains filtered or unexported fields
}

func (NullableUserLegacyExtendedProfile) Get ¶

func (NullableUserLegacyExtendedProfile) IsSet ¶

func (NullableUserLegacyExtendedProfile) MarshalJSON ¶

func (v NullableUserLegacyExtendedProfile) MarshalJSON() ([]byte, error)

func (*NullableUserLegacyExtendedProfile) Set ¶

func (*NullableUserLegacyExtendedProfile) UnmarshalJSON ¶

func (v *NullableUserLegacyExtendedProfile) UnmarshalJSON(src []byte) error

func (*NullableUserLegacyExtendedProfile) Unset ¶

type NullableUserLegacyExtendedProfileBirthdate ¶

type NullableUserLegacyExtendedProfileBirthdate struct {
	// contains filtered or unexported fields
}

func (NullableUserLegacyExtendedProfileBirthdate) Get ¶

func (NullableUserLegacyExtendedProfileBirthdate) IsSet ¶

func (NullableUserLegacyExtendedProfileBirthdate) MarshalJSON ¶

func (*NullableUserLegacyExtendedProfileBirthdate) Set ¶

func (*NullableUserLegacyExtendedProfileBirthdate) UnmarshalJSON ¶

func (v *NullableUserLegacyExtendedProfileBirthdate) UnmarshalJSON(src []byte) error

func (*NullableUserLegacyExtendedProfileBirthdate) Unset ¶

type NullableUserProfessional ¶

type NullableUserProfessional struct {
	// contains filtered or unexported fields
}

func NewNullableUserProfessional ¶

func NewNullableUserProfessional(val *UserProfessional) *NullableUserProfessional

func (NullableUserProfessional) Get ¶

func (NullableUserProfessional) IsSet ¶

func (v NullableUserProfessional) IsSet() bool

func (NullableUserProfessional) MarshalJSON ¶

func (v NullableUserProfessional) MarshalJSON() ([]byte, error)

func (*NullableUserProfessional) Set ¶

func (*NullableUserProfessional) UnmarshalJSON ¶

func (v *NullableUserProfessional) UnmarshalJSON(src []byte) error

func (*NullableUserProfessional) Unset ¶

func (v *NullableUserProfessional) Unset()

type NullableUserProfessionalCategory ¶

type NullableUserProfessionalCategory struct {
	// contains filtered or unexported fields
}

func (NullableUserProfessionalCategory) Get ¶

func (NullableUserProfessionalCategory) IsSet ¶

func (NullableUserProfessionalCategory) MarshalJSON ¶

func (v NullableUserProfessionalCategory) MarshalJSON() ([]byte, error)

func (*NullableUserProfessionalCategory) Set ¶

func (*NullableUserProfessionalCategory) UnmarshalJSON ¶

func (v *NullableUserProfessionalCategory) UnmarshalJSON(src []byte) error

func (*NullableUserProfessionalCategory) Unset ¶

type NullableUserResponse ¶

type NullableUserResponse struct {
	// contains filtered or unexported fields
}

func NewNullableUserResponse ¶

func NewNullableUserResponse(val *UserResponse) *NullableUserResponse

func (NullableUserResponse) Get ¶

func (NullableUserResponse) IsSet ¶

func (v NullableUserResponse) IsSet() bool

func (NullableUserResponse) MarshalJSON ¶

func (v NullableUserResponse) MarshalJSON() ([]byte, error)

func (*NullableUserResponse) Set ¶

func (v *NullableUserResponse) Set(val *UserResponse)

func (*NullableUserResponse) UnmarshalJSON ¶

func (v *NullableUserResponse) UnmarshalJSON(src []byte) error

func (*NullableUserResponse) Unset ¶

func (v *NullableUserResponse) Unset()

type NullableUserResponseData ¶

type NullableUserResponseData struct {
	// contains filtered or unexported fields
}

func NewNullableUserResponseData ¶

func NewNullableUserResponseData(val *UserResponseData) *NullableUserResponseData

func (NullableUserResponseData) Get ¶

func (NullableUserResponseData) IsSet ¶

func (v NullableUserResponseData) IsSet() bool

func (NullableUserResponseData) MarshalJSON ¶

func (v NullableUserResponseData) MarshalJSON() ([]byte, error)

func (*NullableUserResponseData) Set ¶

func (*NullableUserResponseData) UnmarshalJSON ¶

func (v *NullableUserResponseData) UnmarshalJSON(src []byte) error

func (*NullableUserResponseData) Unset ¶

func (v *NullableUserResponseData) Unset()

type NullableUserResultByScreenName ¶

type NullableUserResultByScreenName struct {
	// contains filtered or unexported fields
}

func (NullableUserResultByScreenName) Get ¶

func (NullableUserResultByScreenName) IsSet ¶

func (NullableUserResultByScreenName) MarshalJSON ¶

func (v NullableUserResultByScreenName) MarshalJSON() ([]byte, error)

func (*NullableUserResultByScreenName) Set ¶

func (*NullableUserResultByScreenName) UnmarshalJSON ¶

func (v *NullableUserResultByScreenName) UnmarshalJSON(src []byte) error

func (*NullableUserResultByScreenName) Unset ¶

func (v *NullableUserResultByScreenName) Unset()

type NullableUserResultByScreenNameLegacy ¶

type NullableUserResultByScreenNameLegacy struct {
	// contains filtered or unexported fields
}

func (NullableUserResultByScreenNameLegacy) Get ¶

func (NullableUserResultByScreenNameLegacy) IsSet ¶

func (NullableUserResultByScreenNameLegacy) MarshalJSON ¶

func (v NullableUserResultByScreenNameLegacy) MarshalJSON() ([]byte, error)

func (*NullableUserResultByScreenNameLegacy) Set ¶

func (*NullableUserResultByScreenNameLegacy) UnmarshalJSON ¶

func (v *NullableUserResultByScreenNameLegacy) UnmarshalJSON(src []byte) error

func (*NullableUserResultByScreenNameLegacy) Unset ¶

type NullableUserResultByScreenNameResult ¶

type NullableUserResultByScreenNameResult struct {
	// contains filtered or unexported fields
}

func (NullableUserResultByScreenNameResult) Get ¶

func (NullableUserResultByScreenNameResult) IsSet ¶

func (NullableUserResultByScreenNameResult) MarshalJSON ¶

func (v NullableUserResultByScreenNameResult) MarshalJSON() ([]byte, error)

func (*NullableUserResultByScreenNameResult) Set ¶

func (*NullableUserResultByScreenNameResult) UnmarshalJSON ¶

func (v *NullableUserResultByScreenNameResult) UnmarshalJSON(src []byte) error

func (*NullableUserResultByScreenNameResult) Unset ¶

type NullableUserResultCore ¶

type NullableUserResultCore struct {
	// contains filtered or unexported fields
}

func NewNullableUserResultCore ¶

func NewNullableUserResultCore(val *UserResultCore) *NullableUserResultCore

func (NullableUserResultCore) Get ¶

func (NullableUserResultCore) IsSet ¶

func (v NullableUserResultCore) IsSet() bool

func (NullableUserResultCore) MarshalJSON ¶

func (v NullableUserResultCore) MarshalJSON() ([]byte, error)

func (*NullableUserResultCore) Set ¶

func (*NullableUserResultCore) UnmarshalJSON ¶

func (v *NullableUserResultCore) UnmarshalJSON(src []byte) error

func (*NullableUserResultCore) Unset ¶

func (v *NullableUserResultCore) Unset()

type NullableUserResults ¶

type NullableUserResults struct {
	// contains filtered or unexported fields
}

func NewNullableUserResults ¶

func NewNullableUserResults(val *UserResults) *NullableUserResults

func (NullableUserResults) Get ¶

func (NullableUserResults) IsSet ¶

func (v NullableUserResults) IsSet() bool

func (NullableUserResults) MarshalJSON ¶

func (v NullableUserResults) MarshalJSON() ([]byte, error)

func (*NullableUserResults) Set ¶

func (v *NullableUserResults) Set(val *UserResults)

func (*NullableUserResults) UnmarshalJSON ¶

func (v *NullableUserResults) UnmarshalJSON(src []byte) error

func (*NullableUserResults) Unset ¶

func (v *NullableUserResults) Unset()

type NullableUserTipJarSettings ¶

type NullableUserTipJarSettings struct {
	// contains filtered or unexported fields
}

func NewNullableUserTipJarSettings ¶

func NewNullableUserTipJarSettings(val *UserTipJarSettings) *NullableUserTipJarSettings

func (NullableUserTipJarSettings) Get ¶

func (NullableUserTipJarSettings) IsSet ¶

func (v NullableUserTipJarSettings) IsSet() bool

func (NullableUserTipJarSettings) MarshalJSON ¶

func (v NullableUserTipJarSettings) MarshalJSON() ([]byte, error)

func (*NullableUserTipJarSettings) Set ¶

func (*NullableUserTipJarSettings) UnmarshalJSON ¶

func (v *NullableUserTipJarSettings) UnmarshalJSON(src []byte) error

func (*NullableUserTipJarSettings) Unset ¶

func (v *NullableUserTipJarSettings) Unset()

type NullableUserTweetsData ¶

type NullableUserTweetsData struct {
	// contains filtered or unexported fields
}

func NewNullableUserTweetsData ¶

func NewNullableUserTweetsData(val *UserTweetsData) *NullableUserTweetsData

func (NullableUserTweetsData) Get ¶

func (NullableUserTweetsData) IsSet ¶

func (v NullableUserTweetsData) IsSet() bool

func (NullableUserTweetsData) MarshalJSON ¶

func (v NullableUserTweetsData) MarshalJSON() ([]byte, error)

func (*NullableUserTweetsData) Set ¶

func (*NullableUserTweetsData) UnmarshalJSON ¶

func (v *NullableUserTweetsData) UnmarshalJSON(src []byte) error

func (*NullableUserTweetsData) Unset ¶

func (v *NullableUserTweetsData) Unset()

type NullableUserTweetsResponse ¶

type NullableUserTweetsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableUserTweetsResponse ¶

func NewNullableUserTweetsResponse(val *UserTweetsResponse) *NullableUserTweetsResponse

func (NullableUserTweetsResponse) Get ¶

func (NullableUserTweetsResponse) IsSet ¶

func (v NullableUserTweetsResponse) IsSet() bool

func (NullableUserTweetsResponse) MarshalJSON ¶

func (v NullableUserTweetsResponse) MarshalJSON() ([]byte, error)

func (*NullableUserTweetsResponse) Set ¶

func (*NullableUserTweetsResponse) UnmarshalJSON ¶

func (v *NullableUserTweetsResponse) UnmarshalJSON(src []byte) error

func (*NullableUserTweetsResponse) Unset ¶

func (v *NullableUserTweetsResponse) Unset()

type NullableUserTweetsResult ¶

type NullableUserTweetsResult struct {
	// contains filtered or unexported fields
}

func NewNullableUserTweetsResult ¶

func NewNullableUserTweetsResult(val *UserTweetsResult) *NullableUserTweetsResult

func (NullableUserTweetsResult) Get ¶

func (NullableUserTweetsResult) IsSet ¶

func (v NullableUserTweetsResult) IsSet() bool

func (NullableUserTweetsResult) MarshalJSON ¶

func (v NullableUserTweetsResult) MarshalJSON() ([]byte, error)

func (*NullableUserTweetsResult) Set ¶

func (*NullableUserTweetsResult) UnmarshalJSON ¶

func (v *NullableUserTweetsResult) UnmarshalJSON(src []byte) error

func (*NullableUserTweetsResult) Unset ¶

func (v *NullableUserTweetsResult) Unset()

type NullableUserTweetsUser ¶

type NullableUserTweetsUser struct {
	// contains filtered or unexported fields
}

func NewNullableUserTweetsUser ¶

func NewNullableUserTweetsUser(val *UserTweetsUser) *NullableUserTweetsUser

func (NullableUserTweetsUser) Get ¶

func (NullableUserTweetsUser) IsSet ¶

func (v NullableUserTweetsUser) IsSet() bool

func (NullableUserTweetsUser) MarshalJSON ¶

func (v NullableUserTweetsUser) MarshalJSON() ([]byte, error)

func (*NullableUserTweetsUser) Set ¶

func (*NullableUserTweetsUser) UnmarshalJSON ¶

func (v *NullableUserTweetsUser) UnmarshalJSON(src []byte) error

func (*NullableUserTweetsUser) Unset ¶

func (v *NullableUserTweetsUser) Unset()

type NullableUserUnavailable ¶

type NullableUserUnavailable struct {
	// contains filtered or unexported fields
}

func NewNullableUserUnavailable ¶

func NewNullableUserUnavailable(val *UserUnavailable) *NullableUserUnavailable

func (NullableUserUnavailable) Get ¶

func (NullableUserUnavailable) IsSet ¶

func (v NullableUserUnavailable) IsSet() bool

func (NullableUserUnavailable) MarshalJSON ¶

func (v NullableUserUnavailable) MarshalJSON() ([]byte, error)

func (*NullableUserUnavailable) Set ¶

func (*NullableUserUnavailable) UnmarshalJSON ¶

func (v *NullableUserUnavailable) UnmarshalJSON(src []byte) error

func (*NullableUserUnavailable) Unset ¶

func (v *NullableUserUnavailable) Unset()

type NullableUserUnion ¶

type NullableUserUnion struct {
	// contains filtered or unexported fields
}

func NewNullableUserUnion ¶

func NewNullableUserUnion(val *UserUnion) *NullableUserUnion

func (NullableUserUnion) Get ¶

func (v NullableUserUnion) Get() *UserUnion

func (NullableUserUnion) IsSet ¶

func (v NullableUserUnion) IsSet() bool

func (NullableUserUnion) MarshalJSON ¶

func (v NullableUserUnion) MarshalJSON() ([]byte, error)

func (*NullableUserUnion) Set ¶

func (v *NullableUserUnion) Set(val *UserUnion)

func (*NullableUserUnion) UnmarshalJSON ¶

func (v *NullableUserUnion) UnmarshalJSON(src []byte) error

func (*NullableUserUnion) Unset ¶

func (v *NullableUserUnion) Unset()

type NullableUserValue ¶

type NullableUserValue struct {
	// contains filtered or unexported fields
}

func NewNullableUserValue ¶

func NewNullableUserValue(val *UserValue) *NullableUserValue

func (NullableUserValue) Get ¶

func (v NullableUserValue) Get() *UserValue

func (NullableUserValue) IsSet ¶

func (v NullableUserValue) IsSet() bool

func (NullableUserValue) MarshalJSON ¶

func (v NullableUserValue) MarshalJSON() ([]byte, error)

func (*NullableUserValue) Set ¶

func (v *NullableUserValue) Set(val *UserValue)

func (*NullableUserValue) UnmarshalJSON ¶

func (v *NullableUserValue) UnmarshalJSON(src []byte) error

func (*NullableUserValue) Unset ¶

func (v *NullableUserValue) Unset()

type NullableUserVerificationInfo ¶

type NullableUserVerificationInfo struct {
	// contains filtered or unexported fields
}

func (NullableUserVerificationInfo) Get ¶

func (NullableUserVerificationInfo) IsSet ¶

func (NullableUserVerificationInfo) MarshalJSON ¶

func (v NullableUserVerificationInfo) MarshalJSON() ([]byte, error)

func (*NullableUserVerificationInfo) Set ¶

func (*NullableUserVerificationInfo) UnmarshalJSON ¶

func (v *NullableUserVerificationInfo) UnmarshalJSON(src []byte) error

func (*NullableUserVerificationInfo) Unset ¶

func (v *NullableUserVerificationInfo) Unset()

type NullableUserVerificationInfoReason ¶

type NullableUserVerificationInfoReason struct {
	// contains filtered or unexported fields
}

func (NullableUserVerificationInfoReason) Get ¶

func (NullableUserVerificationInfoReason) IsSet ¶

func (NullableUserVerificationInfoReason) MarshalJSON ¶

func (v NullableUserVerificationInfoReason) MarshalJSON() ([]byte, error)

func (*NullableUserVerificationInfoReason) Set ¶

func (*NullableUserVerificationInfoReason) UnmarshalJSON ¶

func (v *NullableUserVerificationInfoReason) UnmarshalJSON(src []byte) error

func (*NullableUserVerificationInfoReason) Unset ¶

type NullableUserVerificationInfoReasonDescription ¶

type NullableUserVerificationInfoReasonDescription struct {
	// contains filtered or unexported fields
}

func (NullableUserVerificationInfoReasonDescription) Get ¶

func (NullableUserVerificationInfoReasonDescription) IsSet ¶

func (NullableUserVerificationInfoReasonDescription) MarshalJSON ¶

func (*NullableUserVerificationInfoReasonDescription) Set ¶

func (*NullableUserVerificationInfoReasonDescription) UnmarshalJSON ¶

func (*NullableUserVerificationInfoReasonDescription) Unset ¶

type NullableUserVerificationInfoReasonDescriptionEntities ¶

type NullableUserVerificationInfoReasonDescriptionEntities struct {
	// contains filtered or unexported fields
}

func (NullableUserVerificationInfoReasonDescriptionEntities) Get ¶

func (NullableUserVerificationInfoReasonDescriptionEntities) IsSet ¶

func (NullableUserVerificationInfoReasonDescriptionEntities) MarshalJSON ¶

func (*NullableUserVerificationInfoReasonDescriptionEntities) Set ¶

func (*NullableUserVerificationInfoReasonDescriptionEntities) UnmarshalJSON ¶

func (*NullableUserVerificationInfoReasonDescriptionEntities) Unset ¶

type NullableUserVerificationInfoReasonDescriptionEntitiesRef ¶

type NullableUserVerificationInfoReasonDescriptionEntitiesRef struct {
	// contains filtered or unexported fields
}

func (NullableUserVerificationInfoReasonDescriptionEntitiesRef) Get ¶

func (NullableUserVerificationInfoReasonDescriptionEntitiesRef) IsSet ¶

func (NullableUserVerificationInfoReasonDescriptionEntitiesRef) MarshalJSON ¶

func (*NullableUserVerificationInfoReasonDescriptionEntitiesRef) Set ¶

func (*NullableUserVerificationInfoReasonDescriptionEntitiesRef) UnmarshalJSON ¶

func (*NullableUserVerificationInfoReasonDescriptionEntitiesRef) Unset ¶

type NullableUsersResponse ¶

type NullableUsersResponse struct {
	// contains filtered or unexported fields
}

func NewNullableUsersResponse ¶

func NewNullableUsersResponse(val *UsersResponse) *NullableUsersResponse

func (NullableUsersResponse) Get ¶

func (NullableUsersResponse) IsSet ¶

func (v NullableUsersResponse) IsSet() bool

func (NullableUsersResponse) MarshalJSON ¶

func (v NullableUsersResponse) MarshalJSON() ([]byte, error)

func (*NullableUsersResponse) Set ¶

func (v *NullableUsersResponse) Set(val *UsersResponse)

func (*NullableUsersResponse) UnmarshalJSON ¶

func (v *NullableUsersResponse) UnmarshalJSON(src []byte) error

func (*NullableUsersResponse) Unset ¶

func (v *NullableUsersResponse) Unset()

type NullableUsersResponseData ¶

type NullableUsersResponseData struct {
	// contains filtered or unexported fields
}

func NewNullableUsersResponseData ¶

func NewNullableUsersResponseData(val *UsersResponseData) *NullableUsersResponseData

func (NullableUsersResponseData) Get ¶

func (NullableUsersResponseData) IsSet ¶

func (v NullableUsersResponseData) IsSet() bool

func (NullableUsersResponseData) MarshalJSON ¶

func (v NullableUsersResponseData) MarshalJSON() ([]byte, error)

func (*NullableUsersResponseData) Set ¶

func (*NullableUsersResponseData) UnmarshalJSON ¶

func (v *NullableUsersResponseData) UnmarshalJSON(src []byte) error

func (*NullableUsersResponseData) Unset ¶

func (v *NullableUsersResponseData) Unset()

type OneFactorLoginEligibility ¶

type OneFactorLoginEligibility struct {
	FetchStatus string `json:"fetchStatus"`
}

OneFactorLoginEligibility struct for OneFactorLoginEligibility

func NewOneFactorLoginEligibility ¶

func NewOneFactorLoginEligibility(fetchStatus string) *OneFactorLoginEligibility

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

func NewOneFactorLoginEligibilityWithDefaults ¶

func NewOneFactorLoginEligibilityWithDefaults() *OneFactorLoginEligibility

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

func (*OneFactorLoginEligibility) GetFetchStatus ¶

func (o *OneFactorLoginEligibility) GetFetchStatus() string

GetFetchStatus returns the FetchStatus field value

func (*OneFactorLoginEligibility) GetFetchStatusOk ¶

func (o *OneFactorLoginEligibility) GetFetchStatusOk() (*string, bool)

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

func (OneFactorLoginEligibility) MarshalJSON ¶

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

func (*OneFactorLoginEligibility) SetFetchStatus ¶

func (o *OneFactorLoginEligibility) SetFetchStatus(v string)

SetFetchStatus sets field value

func (OneFactorLoginEligibility) ToMap ¶

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

func (*OneFactorLoginEligibility) UnmarshalJSON ¶

func (o *OneFactorLoginEligibility) UnmarshalJSON(data []byte) (err error)

type OtherAPIService ¶

type OtherAPIService service

OtherAPIService OtherAPI service

func (*OtherAPIService) Other ¶

Other Method for Other

This is not an actual endpoint

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

func (*OtherAPIService) OtherExecute ¶

Execute executes the request

@return OtherResponse

type OtherResponse ¶

type OtherResponse struct {
	Session *Session `json:"Session,omitempty"`
}

OtherResponse struct for OtherResponse

func NewOtherResponse ¶

func NewOtherResponse() *OtherResponse

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

func NewOtherResponseWithDefaults ¶

func NewOtherResponseWithDefaults() *OtherResponse

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

func (*OtherResponse) GetSession ¶

func (o *OtherResponse) GetSession() Session

GetSession returns the Session field value if set, zero value otherwise.

func (*OtherResponse) GetSessionOk ¶

func (o *OtherResponse) GetSessionOk() (*Session, bool)

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

func (*OtherResponse) HasSession ¶

func (o *OtherResponse) HasSession() bool

HasSession returns a boolean if a field has been set.

func (OtherResponse) MarshalJSON ¶

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

func (*OtherResponse) SetSession ¶

func (o *OtherResponse) SetSession(v Session)

SetSession gets a reference to the given Session and assigns it to the Session field.

func (OtherResponse) ToMap ¶

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

type PostAPIService ¶

type PostAPIService service

PostAPIService PostAPI service

func (*PostAPIService) PostCreateBookmark ¶

func (a *PostAPIService) PostCreateBookmark(ctx context.Context, pathQueryId string) ApiPostCreateBookmarkRequest

PostCreateBookmark Method for PostCreateBookmark

create Bookmark

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

func (*PostAPIService) PostCreateBookmarkExecute ¶

Execute executes the request

@return PostCreateBookmark200Response

func (*PostAPIService) PostCreateRetweet ¶

func (a *PostAPIService) PostCreateRetweet(ctx context.Context, pathQueryId string) ApiPostCreateRetweetRequest

PostCreateRetweet Method for PostCreateRetweet

create Retweet

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

func (*PostAPIService) PostCreateRetweetExecute ¶

Execute executes the request

@return PostCreateRetweet200Response

func (*PostAPIService) PostCreateTweet ¶

func (a *PostAPIService) PostCreateTweet(ctx context.Context, pathQueryId string) ApiPostCreateTweetRequest

PostCreateTweet Method for PostCreateTweet

create Tweet

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

func (*PostAPIService) PostCreateTweetExecute ¶

Execute executes the request

@return PostCreateTweet200Response

func (*PostAPIService) PostDeleteBookmark ¶

func (a *PostAPIService) PostDeleteBookmark(ctx context.Context, pathQueryId string) ApiPostDeleteBookmarkRequest

PostDeleteBookmark Method for PostDeleteBookmark

delete Bookmark

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

func (*PostAPIService) PostDeleteBookmarkExecute ¶

Execute executes the request

@return PostDeleteBookmark200Response

func (*PostAPIService) PostDeleteRetweet ¶

func (a *PostAPIService) PostDeleteRetweet(ctx context.Context, pathQueryId string) ApiPostDeleteRetweetRequest

PostDeleteRetweet Method for PostDeleteRetweet

delete Retweet

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

func (*PostAPIService) PostDeleteRetweetExecute ¶

Execute executes the request

@return PostDeleteRetweet200Response

func (*PostAPIService) PostDeleteTweet ¶

func (a *PostAPIService) PostDeleteTweet(ctx context.Context, pathQueryId string) ApiPostDeleteTweetRequest

PostDeleteTweet Method for PostDeleteTweet

delete Retweet

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

func (*PostAPIService) PostDeleteTweetExecute ¶

Execute executes the request

@return PostDeleteTweet200Response

func (*PostAPIService) PostFavoriteTweet ¶

func (a *PostAPIService) PostFavoriteTweet(ctx context.Context, pathQueryId string) ApiPostFavoriteTweetRequest

PostFavoriteTweet Method for PostFavoriteTweet

favorite Tweet

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

func (*PostAPIService) PostFavoriteTweetExecute ¶

Execute executes the request

@return PostFavoriteTweet200Response

func (*PostAPIService) PostUnfavoriteTweet ¶

func (a *PostAPIService) PostUnfavoriteTweet(ctx context.Context, pathQueryId string) ApiPostUnfavoriteTweetRequest

PostUnfavoriteTweet Method for PostUnfavoriteTweet

unfavorite Tweet

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

func (*PostAPIService) PostUnfavoriteTweetExecute ¶

Execute executes the request

@return PostUnfavoriteTweet200Response

type PostCreateBookmark200Response ¶

type PostCreateBookmark200Response struct {
	CreateBookmarkResponse *CreateBookmarkResponse
	Errors                 *Errors
}

PostCreateBookmark200Response - struct for PostCreateBookmark200Response

func CreateBookmarkResponseAsPostCreateBookmark200Response ¶

func CreateBookmarkResponseAsPostCreateBookmark200Response(v *CreateBookmarkResponse) PostCreateBookmark200Response

CreateBookmarkResponseAsPostCreateBookmark200Response is a convenience function that returns CreateBookmarkResponse wrapped in PostCreateBookmark200Response

func ErrorsAsPostCreateBookmark200Response ¶

func ErrorsAsPostCreateBookmark200Response(v *Errors) PostCreateBookmark200Response

ErrorsAsPostCreateBookmark200Response is a convenience function that returns Errors wrapped in PostCreateBookmark200Response

func (*PostCreateBookmark200Response) GetActualInstance ¶

func (obj *PostCreateBookmark200Response) GetActualInstance() interface{}

Get the actual instance

func (PostCreateBookmark200Response) MarshalJSON ¶

func (src PostCreateBookmark200Response) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PostCreateBookmark200Response) UnmarshalJSON ¶

func (dst *PostCreateBookmark200Response) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type PostCreateBookmarkRequest ¶

type PostCreateBookmarkRequest struct {
	QueryId   string                             `json:"queryId"`
	Variables PostCreateBookmarkRequestVariables `json:"variables"`
}

PostCreateBookmarkRequest struct for PostCreateBookmarkRequest

func NewPostCreateBookmarkRequest ¶

func NewPostCreateBookmarkRequest(queryId string, variables PostCreateBookmarkRequestVariables) *PostCreateBookmarkRequest

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

func NewPostCreateBookmarkRequestWithDefaults ¶

func NewPostCreateBookmarkRequestWithDefaults() *PostCreateBookmarkRequest

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

func (*PostCreateBookmarkRequest) GetQueryId ¶

func (o *PostCreateBookmarkRequest) GetQueryId() string

GetQueryId returns the QueryId field value

func (*PostCreateBookmarkRequest) GetQueryIdOk ¶

func (o *PostCreateBookmarkRequest) GetQueryIdOk() (*string, bool)

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

func (*PostCreateBookmarkRequest) GetVariables ¶

GetVariables returns the Variables field value

func (*PostCreateBookmarkRequest) GetVariablesOk ¶

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

func (PostCreateBookmarkRequest) MarshalJSON ¶

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

func (*PostCreateBookmarkRequest) SetQueryId ¶

func (o *PostCreateBookmarkRequest) SetQueryId(v string)

SetQueryId sets field value

func (*PostCreateBookmarkRequest) SetVariables ¶

SetVariables sets field value

func (PostCreateBookmarkRequest) ToMap ¶

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

func (*PostCreateBookmarkRequest) UnmarshalJSON ¶

func (o *PostCreateBookmarkRequest) UnmarshalJSON(data []byte) (err error)

type PostCreateBookmarkRequestVariables ¶

type PostCreateBookmarkRequestVariables struct {
	TweetId string `json:"tweet_id"`
}

PostCreateBookmarkRequestVariables struct for PostCreateBookmarkRequestVariables

func NewPostCreateBookmarkRequestVariables ¶

func NewPostCreateBookmarkRequestVariables(tweetId string) *PostCreateBookmarkRequestVariables

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

func NewPostCreateBookmarkRequestVariablesWithDefaults ¶

func NewPostCreateBookmarkRequestVariablesWithDefaults() *PostCreateBookmarkRequestVariables

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

func (*PostCreateBookmarkRequestVariables) GetTweetId ¶

GetTweetId returns the TweetId field value

func (*PostCreateBookmarkRequestVariables) GetTweetIdOk ¶

func (o *PostCreateBookmarkRequestVariables) GetTweetIdOk() (*string, bool)

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

func (PostCreateBookmarkRequestVariables) MarshalJSON ¶

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

func (*PostCreateBookmarkRequestVariables) SetTweetId ¶

func (o *PostCreateBookmarkRequestVariables) SetTweetId(v string)

SetTweetId sets field value

func (PostCreateBookmarkRequestVariables) ToMap ¶

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

func (*PostCreateBookmarkRequestVariables) UnmarshalJSON ¶

func (o *PostCreateBookmarkRequestVariables) UnmarshalJSON(data []byte) (err error)

type PostCreateRetweet200Response ¶

type PostCreateRetweet200Response struct {
	CreateRetweetResponse *CreateRetweetResponse
	Errors                *Errors
}

PostCreateRetweet200Response - struct for PostCreateRetweet200Response

func CreateRetweetResponseAsPostCreateRetweet200Response ¶

func CreateRetweetResponseAsPostCreateRetweet200Response(v *CreateRetweetResponse) PostCreateRetweet200Response

CreateRetweetResponseAsPostCreateRetweet200Response is a convenience function that returns CreateRetweetResponse wrapped in PostCreateRetweet200Response

func ErrorsAsPostCreateRetweet200Response ¶

func ErrorsAsPostCreateRetweet200Response(v *Errors) PostCreateRetweet200Response

ErrorsAsPostCreateRetweet200Response is a convenience function that returns Errors wrapped in PostCreateRetweet200Response

func (*PostCreateRetweet200Response) GetActualInstance ¶

func (obj *PostCreateRetweet200Response) GetActualInstance() interface{}

Get the actual instance

func (PostCreateRetweet200Response) MarshalJSON ¶

func (src PostCreateRetweet200Response) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PostCreateRetweet200Response) UnmarshalJSON ¶

func (dst *PostCreateRetweet200Response) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type PostCreateRetweetRequest ¶

type PostCreateRetweetRequest struct {
	QueryId   string                            `json:"queryId"`
	Variables PostCreateRetweetRequestVariables `json:"variables"`
}

PostCreateRetweetRequest struct for PostCreateRetweetRequest

func NewPostCreateRetweetRequest ¶

func NewPostCreateRetweetRequest(queryId string, variables PostCreateRetweetRequestVariables) *PostCreateRetweetRequest

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

func NewPostCreateRetweetRequestWithDefaults ¶

func NewPostCreateRetweetRequestWithDefaults() *PostCreateRetweetRequest

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

func (*PostCreateRetweetRequest) GetQueryId ¶

func (o *PostCreateRetweetRequest) GetQueryId() string

GetQueryId returns the QueryId field value

func (*PostCreateRetweetRequest) GetQueryIdOk ¶

func (o *PostCreateRetweetRequest) GetQueryIdOk() (*string, bool)

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

func (*PostCreateRetweetRequest) GetVariables ¶

GetVariables returns the Variables field value

func (*PostCreateRetweetRequest) GetVariablesOk ¶

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

func (PostCreateRetweetRequest) MarshalJSON ¶

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

func (*PostCreateRetweetRequest) SetQueryId ¶

func (o *PostCreateRetweetRequest) SetQueryId(v string)

SetQueryId sets field value

func (*PostCreateRetweetRequest) SetVariables ¶

SetVariables sets field value

func (PostCreateRetweetRequest) ToMap ¶

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

func (*PostCreateRetweetRequest) UnmarshalJSON ¶

func (o *PostCreateRetweetRequest) UnmarshalJSON(data []byte) (err error)

type PostCreateRetweetRequestVariables ¶

type PostCreateRetweetRequestVariables struct {
	DarkRequest bool   `json:"dark_request"`
	TweetId     string `json:"tweet_id"`
}

PostCreateRetweetRequestVariables struct for PostCreateRetweetRequestVariables

func NewPostCreateRetweetRequestVariables ¶

func NewPostCreateRetweetRequestVariables(darkRequest bool, tweetId string) *PostCreateRetweetRequestVariables

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

func NewPostCreateRetweetRequestVariablesWithDefaults ¶

func NewPostCreateRetweetRequestVariablesWithDefaults() *PostCreateRetweetRequestVariables

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

func (*PostCreateRetweetRequestVariables) GetDarkRequest ¶

func (o *PostCreateRetweetRequestVariables) GetDarkRequest() bool

GetDarkRequest returns the DarkRequest field value

func (*PostCreateRetweetRequestVariables) GetDarkRequestOk ¶

func (o *PostCreateRetweetRequestVariables) GetDarkRequestOk() (*bool, bool)

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

func (*PostCreateRetweetRequestVariables) GetTweetId ¶

func (o *PostCreateRetweetRequestVariables) GetTweetId() string

GetTweetId returns the TweetId field value

func (*PostCreateRetweetRequestVariables) GetTweetIdOk ¶

func (o *PostCreateRetweetRequestVariables) GetTweetIdOk() (*string, bool)

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

func (PostCreateRetweetRequestVariables) MarshalJSON ¶

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

func (*PostCreateRetweetRequestVariables) SetDarkRequest ¶

func (o *PostCreateRetweetRequestVariables) SetDarkRequest(v bool)

SetDarkRequest sets field value

func (*PostCreateRetweetRequestVariables) SetTweetId ¶

func (o *PostCreateRetweetRequestVariables) SetTweetId(v string)

SetTweetId sets field value

func (PostCreateRetweetRequestVariables) ToMap ¶

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

func (*PostCreateRetweetRequestVariables) UnmarshalJSON ¶

func (o *PostCreateRetweetRequestVariables) UnmarshalJSON(data []byte) (err error)

type PostCreateTweet200Response ¶

type PostCreateTweet200Response struct {
	CreateTweetResponse *CreateTweetResponse
	Errors              *Errors
}

PostCreateTweet200Response - struct for PostCreateTweet200Response

func CreateTweetResponseAsPostCreateTweet200Response ¶

func CreateTweetResponseAsPostCreateTweet200Response(v *CreateTweetResponse) PostCreateTweet200Response

CreateTweetResponseAsPostCreateTweet200Response is a convenience function that returns CreateTweetResponse wrapped in PostCreateTweet200Response

func ErrorsAsPostCreateTweet200Response ¶

func ErrorsAsPostCreateTweet200Response(v *Errors) PostCreateTweet200Response

ErrorsAsPostCreateTweet200Response is a convenience function that returns Errors wrapped in PostCreateTweet200Response

func (*PostCreateTweet200Response) GetActualInstance ¶

func (obj *PostCreateTweet200Response) GetActualInstance() interface{}

Get the actual instance

func (PostCreateTweet200Response) MarshalJSON ¶

func (src PostCreateTweet200Response) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PostCreateTweet200Response) UnmarshalJSON ¶

func (dst *PostCreateTweet200Response) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type PostCreateTweetRequest ¶

type PostCreateTweetRequest struct {
	Features  PostCreateTweetRequestFeatures  `json:"features"`
	QueryId   string                          `json:"queryId"`
	Variables PostCreateTweetRequestVariables `json:"variables"`
}

PostCreateTweetRequest struct for PostCreateTweetRequest

func NewPostCreateTweetRequest ¶

func NewPostCreateTweetRequest(features PostCreateTweetRequestFeatures, queryId string, variables PostCreateTweetRequestVariables) *PostCreateTweetRequest

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

func NewPostCreateTweetRequestWithDefaults ¶

func NewPostCreateTweetRequestWithDefaults() *PostCreateTweetRequest

NewPostCreateTweetRequestWithDefaults instantiates a new PostCreateTweetRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostCreateTweetRequest) GetFeatures ¶

GetFeatures returns the Features field value

func (*PostCreateTweetRequest) GetFeaturesOk ¶

GetFeaturesOk returns a tuple with the Features field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequest) GetQueryId ¶

func (o *PostCreateTweetRequest) GetQueryId() string

GetQueryId returns the QueryId field value

func (*PostCreateTweetRequest) GetQueryIdOk ¶

func (o *PostCreateTweetRequest) GetQueryIdOk() (*string, bool)

GetQueryIdOk returns a tuple with the QueryId field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequest) GetVariables ¶

GetVariables returns the Variables field value

func (*PostCreateTweetRequest) GetVariablesOk ¶

GetVariablesOk returns a tuple with the Variables field value and a boolean to check if the value has been set.

func (PostCreateTweetRequest) MarshalJSON ¶

func (o PostCreateTweetRequest) MarshalJSON() ([]byte, error)

func (*PostCreateTweetRequest) SetFeatures ¶

SetFeatures sets field value

func (*PostCreateTweetRequest) SetQueryId ¶

func (o *PostCreateTweetRequest) SetQueryId(v string)

SetQueryId sets field value

func (*PostCreateTweetRequest) SetVariables ¶

SetVariables sets field value

func (PostCreateTweetRequest) ToMap ¶

func (o PostCreateTweetRequest) ToMap() (map[string]interface{}, error)

func (*PostCreateTweetRequest) UnmarshalJSON ¶

func (o *PostCreateTweetRequest) UnmarshalJSON(data []byte) (err error)

type PostCreateTweetRequestFeatures ¶

type PostCreateTweetRequestFeatures struct {
	ArticlesPreviewEnabled                                         bool `json:"articles_preview_enabled"`
	C9sTweetAnatomyModeratorBadgeEnabled                           bool `json:"c9s_tweet_anatomy_moderator_badge_enabled"`
	CommunitiesWebEnableTweetCommunityResultsFetch                 bool `json:"communities_web_enable_tweet_community_results_fetch"`
	CreatorSubscriptionsQuoteTweetPreviewEnabled                   bool `json:"creator_subscriptions_quote_tweet_preview_enabled"`
	FreedomOfSpeechNotReachFetchEnabled                            bool `json:"freedom_of_speech_not_reach_fetch_enabled"`
	GraphqlIsTranslatableRwebTweetIsTranslatableEnabled            bool `json:"graphql_is_translatable_rweb_tweet_is_translatable_enabled"`
	LongformNotetweetsConsumptionEnabled                           bool `json:"longform_notetweets_consumption_enabled"`
	LongformNotetweetsInlineMediaEnabled                           bool `json:"longform_notetweets_inline_media_enabled"`
	LongformNotetweetsRichTextReadEnabled                          bool `json:"longform_notetweets_rich_text_read_enabled"`
	ResponsiveWebEditTweetApiEnabled                               bool `json:"responsive_web_edit_tweet_api_enabled"`
	ResponsiveWebEnhanceCardsEnabled                               bool `json:"responsive_web_enhance_cards_enabled"`
	ResponsiveWebGraphqlExcludeDirectiveEnabled                    bool `json:"responsive_web_graphql_exclude_directive_enabled"`
	ResponsiveWebGraphqlSkipUserProfileImageExtensionsEnabled      bool `json:"responsive_web_graphql_skip_user_profile_image_extensions_enabled"`
	ResponsiveWebGraphqlTimelineNavigationEnabled                  bool `json:"responsive_web_graphql_timeline_navigation_enabled"`
	ResponsiveWebTwitterArticleTweetConsumptionEnabled             bool `json:"responsive_web_twitter_article_tweet_consumption_enabled"`
	RwebTipjarConsumptionEnabled                                   bool `json:"rweb_tipjar_consumption_enabled"`
	RwebVideoTimestampsEnabled                                     bool `json:"rweb_video_timestamps_enabled"`
	StandardizedNudgesMisinfo                                      bool `json:"standardized_nudges_misinfo"`
	TweetAwardsWebTippingEnabled                                   bool `json:"tweet_awards_web_tipping_enabled"`
	TweetWithVisibilityResultsPreferGqlLimitedActionsPolicyEnabled bool `json:"tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled"`
	VerifiedPhoneLabelEnabled                                      bool `json:"verified_phone_label_enabled"`
	ViewCountsEverywhereApiEnabled                                 bool `json:"view_counts_everywhere_api_enabled"`
}

PostCreateTweetRequestFeatures struct for PostCreateTweetRequestFeatures

func NewPostCreateTweetRequestFeatures ¶

func NewPostCreateTweetRequestFeatures(articlesPreviewEnabled bool, c9sTweetAnatomyModeratorBadgeEnabled bool, communitiesWebEnableTweetCommunityResultsFetch bool, creatorSubscriptionsQuoteTweetPreviewEnabled bool, freedomOfSpeechNotReachFetchEnabled bool, graphqlIsTranslatableRwebTweetIsTranslatableEnabled bool, longformNotetweetsConsumptionEnabled bool, longformNotetweetsInlineMediaEnabled bool, longformNotetweetsRichTextReadEnabled bool, responsiveWebEditTweetApiEnabled bool, responsiveWebEnhanceCardsEnabled bool, responsiveWebGraphqlExcludeDirectiveEnabled bool, responsiveWebGraphqlSkipUserProfileImageExtensionsEnabled bool, responsiveWebGraphqlTimelineNavigationEnabled bool, responsiveWebTwitterArticleTweetConsumptionEnabled bool, rwebTipjarConsumptionEnabled bool, rwebVideoTimestampsEnabled bool, standardizedNudgesMisinfo bool, tweetAwardsWebTippingEnabled bool, tweetWithVisibilityResultsPreferGqlLimitedActionsPolicyEnabled bool, verifiedPhoneLabelEnabled bool, viewCountsEverywhereApiEnabled bool) *PostCreateTweetRequestFeatures

NewPostCreateTweetRequestFeatures instantiates a new PostCreateTweetRequestFeatures object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostCreateTweetRequestFeaturesWithDefaults ¶

func NewPostCreateTweetRequestFeaturesWithDefaults() *PostCreateTweetRequestFeatures

NewPostCreateTweetRequestFeaturesWithDefaults instantiates a new PostCreateTweetRequestFeatures object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostCreateTweetRequestFeatures) GetArticlesPreviewEnabled ¶

func (o *PostCreateTweetRequestFeatures) GetArticlesPreviewEnabled() bool

GetArticlesPreviewEnabled returns the ArticlesPreviewEnabled field value

func (*PostCreateTweetRequestFeatures) GetArticlesPreviewEnabledOk ¶

func (o *PostCreateTweetRequestFeatures) GetArticlesPreviewEnabledOk() (*bool, bool)

GetArticlesPreviewEnabledOk returns a tuple with the ArticlesPreviewEnabled field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequestFeatures) GetC9sTweetAnatomyModeratorBadgeEnabled ¶

func (o *PostCreateTweetRequestFeatures) GetC9sTweetAnatomyModeratorBadgeEnabled() bool

GetC9sTweetAnatomyModeratorBadgeEnabled returns the C9sTweetAnatomyModeratorBadgeEnabled field value

func (*PostCreateTweetRequestFeatures) GetC9sTweetAnatomyModeratorBadgeEnabledOk ¶

func (o *PostCreateTweetRequestFeatures) GetC9sTweetAnatomyModeratorBadgeEnabledOk() (*bool, bool)

GetC9sTweetAnatomyModeratorBadgeEnabledOk returns a tuple with the C9sTweetAnatomyModeratorBadgeEnabled field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequestFeatures) GetCommunitiesWebEnableTweetCommunityResultsFetch ¶

func (o *PostCreateTweetRequestFeatures) GetCommunitiesWebEnableTweetCommunityResultsFetch() bool

GetCommunitiesWebEnableTweetCommunityResultsFetch returns the CommunitiesWebEnableTweetCommunityResultsFetch field value

func (*PostCreateTweetRequestFeatures) GetCommunitiesWebEnableTweetCommunityResultsFetchOk ¶

func (o *PostCreateTweetRequestFeatures) GetCommunitiesWebEnableTweetCommunityResultsFetchOk() (*bool, bool)

GetCommunitiesWebEnableTweetCommunityResultsFetchOk returns a tuple with the CommunitiesWebEnableTweetCommunityResultsFetch field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequestFeatures) GetCreatorSubscriptionsQuoteTweetPreviewEnabled ¶

func (o *PostCreateTweetRequestFeatures) GetCreatorSubscriptionsQuoteTweetPreviewEnabled() bool

GetCreatorSubscriptionsQuoteTweetPreviewEnabled returns the CreatorSubscriptionsQuoteTweetPreviewEnabled field value

func (*PostCreateTweetRequestFeatures) GetCreatorSubscriptionsQuoteTweetPreviewEnabledOk ¶

func (o *PostCreateTweetRequestFeatures) GetCreatorSubscriptionsQuoteTweetPreviewEnabledOk() (*bool, bool)

GetCreatorSubscriptionsQuoteTweetPreviewEnabledOk returns a tuple with the CreatorSubscriptionsQuoteTweetPreviewEnabled field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequestFeatures) GetFreedomOfSpeechNotReachFetchEnabled ¶

func (o *PostCreateTweetRequestFeatures) GetFreedomOfSpeechNotReachFetchEnabled() bool

GetFreedomOfSpeechNotReachFetchEnabled returns the FreedomOfSpeechNotReachFetchEnabled field value

func (*PostCreateTweetRequestFeatures) GetFreedomOfSpeechNotReachFetchEnabledOk ¶

func (o *PostCreateTweetRequestFeatures) GetFreedomOfSpeechNotReachFetchEnabledOk() (*bool, bool)

GetFreedomOfSpeechNotReachFetchEnabledOk returns a tuple with the FreedomOfSpeechNotReachFetchEnabled field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequestFeatures) GetGraphqlIsTranslatableRwebTweetIsTranslatableEnabled ¶

func (o *PostCreateTweetRequestFeatures) GetGraphqlIsTranslatableRwebTweetIsTranslatableEnabled() bool

GetGraphqlIsTranslatableRwebTweetIsTranslatableEnabled returns the GraphqlIsTranslatableRwebTweetIsTranslatableEnabled field value

func (*PostCreateTweetRequestFeatures) GetGraphqlIsTranslatableRwebTweetIsTranslatableEnabledOk ¶

func (o *PostCreateTweetRequestFeatures) GetGraphqlIsTranslatableRwebTweetIsTranslatableEnabledOk() (*bool, bool)

GetGraphqlIsTranslatableRwebTweetIsTranslatableEnabledOk returns a tuple with the GraphqlIsTranslatableRwebTweetIsTranslatableEnabled field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequestFeatures) GetLongformNotetweetsConsumptionEnabled ¶

func (o *PostCreateTweetRequestFeatures) GetLongformNotetweetsConsumptionEnabled() bool

GetLongformNotetweetsConsumptionEnabled returns the LongformNotetweetsConsumptionEnabled field value

func (*PostCreateTweetRequestFeatures) GetLongformNotetweetsConsumptionEnabledOk ¶

func (o *PostCreateTweetRequestFeatures) GetLongformNotetweetsConsumptionEnabledOk() (*bool, bool)

GetLongformNotetweetsConsumptionEnabledOk returns a tuple with the LongformNotetweetsConsumptionEnabled field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequestFeatures) GetLongformNotetweetsInlineMediaEnabled ¶

func (o *PostCreateTweetRequestFeatures) GetLongformNotetweetsInlineMediaEnabled() bool

GetLongformNotetweetsInlineMediaEnabled returns the LongformNotetweetsInlineMediaEnabled field value

func (*PostCreateTweetRequestFeatures) GetLongformNotetweetsInlineMediaEnabledOk ¶

func (o *PostCreateTweetRequestFeatures) GetLongformNotetweetsInlineMediaEnabledOk() (*bool, bool)

GetLongformNotetweetsInlineMediaEnabledOk returns a tuple with the LongformNotetweetsInlineMediaEnabled field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequestFeatures) GetLongformNotetweetsRichTextReadEnabled ¶

func (o *PostCreateTweetRequestFeatures) GetLongformNotetweetsRichTextReadEnabled() bool

GetLongformNotetweetsRichTextReadEnabled returns the LongformNotetweetsRichTextReadEnabled field value

func (*PostCreateTweetRequestFeatures) GetLongformNotetweetsRichTextReadEnabledOk ¶

func (o *PostCreateTweetRequestFeatures) GetLongformNotetweetsRichTextReadEnabledOk() (*bool, bool)

GetLongformNotetweetsRichTextReadEnabledOk returns a tuple with the LongformNotetweetsRichTextReadEnabled field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequestFeatures) GetResponsiveWebEditTweetApiEnabled ¶

func (o *PostCreateTweetRequestFeatures) GetResponsiveWebEditTweetApiEnabled() bool

GetResponsiveWebEditTweetApiEnabled returns the ResponsiveWebEditTweetApiEnabled field value

func (*PostCreateTweetRequestFeatures) GetResponsiveWebEditTweetApiEnabledOk ¶

func (o *PostCreateTweetRequestFeatures) GetResponsiveWebEditTweetApiEnabledOk() (*bool, bool)

GetResponsiveWebEditTweetApiEnabledOk returns a tuple with the ResponsiveWebEditTweetApiEnabled field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequestFeatures) GetResponsiveWebEnhanceCardsEnabled ¶

func (o *PostCreateTweetRequestFeatures) GetResponsiveWebEnhanceCardsEnabled() bool

GetResponsiveWebEnhanceCardsEnabled returns the ResponsiveWebEnhanceCardsEnabled field value

func (*PostCreateTweetRequestFeatures) GetResponsiveWebEnhanceCardsEnabledOk ¶

func (o *PostCreateTweetRequestFeatures) GetResponsiveWebEnhanceCardsEnabledOk() (*bool, bool)

GetResponsiveWebEnhanceCardsEnabledOk returns a tuple with the ResponsiveWebEnhanceCardsEnabled field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequestFeatures) GetResponsiveWebGraphqlExcludeDirectiveEnabled ¶

func (o *PostCreateTweetRequestFeatures) GetResponsiveWebGraphqlExcludeDirectiveEnabled() bool

GetResponsiveWebGraphqlExcludeDirectiveEnabled returns the ResponsiveWebGraphqlExcludeDirectiveEnabled field value

func (*PostCreateTweetRequestFeatures) GetResponsiveWebGraphqlExcludeDirectiveEnabledOk ¶

func (o *PostCreateTweetRequestFeatures) GetResponsiveWebGraphqlExcludeDirectiveEnabledOk() (*bool, bool)

GetResponsiveWebGraphqlExcludeDirectiveEnabledOk returns a tuple with the ResponsiveWebGraphqlExcludeDirectiveEnabled field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequestFeatures) GetResponsiveWebGraphqlSkipUserProfileImageExtensionsEnabled ¶

func (o *PostCreateTweetRequestFeatures) GetResponsiveWebGraphqlSkipUserProfileImageExtensionsEnabled() bool

GetResponsiveWebGraphqlSkipUserProfileImageExtensionsEnabled returns the ResponsiveWebGraphqlSkipUserProfileImageExtensionsEnabled field value

func (*PostCreateTweetRequestFeatures) GetResponsiveWebGraphqlSkipUserProfileImageExtensionsEnabledOk ¶

func (o *PostCreateTweetRequestFeatures) GetResponsiveWebGraphqlSkipUserProfileImageExtensionsEnabledOk() (*bool, bool)

GetResponsiveWebGraphqlSkipUserProfileImageExtensionsEnabledOk returns a tuple with the ResponsiveWebGraphqlSkipUserProfileImageExtensionsEnabled field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequestFeatures) GetResponsiveWebGraphqlTimelineNavigationEnabled ¶

func (o *PostCreateTweetRequestFeatures) GetResponsiveWebGraphqlTimelineNavigationEnabled() bool

GetResponsiveWebGraphqlTimelineNavigationEnabled returns the ResponsiveWebGraphqlTimelineNavigationEnabled field value

func (*PostCreateTweetRequestFeatures) GetResponsiveWebGraphqlTimelineNavigationEnabledOk ¶

func (o *PostCreateTweetRequestFeatures) GetResponsiveWebGraphqlTimelineNavigationEnabledOk() (*bool, bool)

GetResponsiveWebGraphqlTimelineNavigationEnabledOk returns a tuple with the ResponsiveWebGraphqlTimelineNavigationEnabled field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequestFeatures) GetResponsiveWebTwitterArticleTweetConsumptionEnabled ¶

func (o *PostCreateTweetRequestFeatures) GetResponsiveWebTwitterArticleTweetConsumptionEnabled() bool

GetResponsiveWebTwitterArticleTweetConsumptionEnabled returns the ResponsiveWebTwitterArticleTweetConsumptionEnabled field value

func (*PostCreateTweetRequestFeatures) GetResponsiveWebTwitterArticleTweetConsumptionEnabledOk ¶

func (o *PostCreateTweetRequestFeatures) GetResponsiveWebTwitterArticleTweetConsumptionEnabledOk() (*bool, bool)

GetResponsiveWebTwitterArticleTweetConsumptionEnabledOk returns a tuple with the ResponsiveWebTwitterArticleTweetConsumptionEnabled field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequestFeatures) GetRwebTipjarConsumptionEnabled ¶

func (o *PostCreateTweetRequestFeatures) GetRwebTipjarConsumptionEnabled() bool

GetRwebTipjarConsumptionEnabled returns the RwebTipjarConsumptionEnabled field value

func (*PostCreateTweetRequestFeatures) GetRwebTipjarConsumptionEnabledOk ¶

func (o *PostCreateTweetRequestFeatures) GetRwebTipjarConsumptionEnabledOk() (*bool, bool)

GetRwebTipjarConsumptionEnabledOk returns a tuple with the RwebTipjarConsumptionEnabled field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequestFeatures) GetRwebVideoTimestampsEnabled ¶

func (o *PostCreateTweetRequestFeatures) GetRwebVideoTimestampsEnabled() bool

GetRwebVideoTimestampsEnabled returns the RwebVideoTimestampsEnabled field value

func (*PostCreateTweetRequestFeatures) GetRwebVideoTimestampsEnabledOk ¶

func (o *PostCreateTweetRequestFeatures) GetRwebVideoTimestampsEnabledOk() (*bool, bool)

GetRwebVideoTimestampsEnabledOk returns a tuple with the RwebVideoTimestampsEnabled field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequestFeatures) GetStandardizedNudgesMisinfo ¶

func (o *PostCreateTweetRequestFeatures) GetStandardizedNudgesMisinfo() bool

GetStandardizedNudgesMisinfo returns the StandardizedNudgesMisinfo field value

func (*PostCreateTweetRequestFeatures) GetStandardizedNudgesMisinfoOk ¶

func (o *PostCreateTweetRequestFeatures) GetStandardizedNudgesMisinfoOk() (*bool, bool)

GetStandardizedNudgesMisinfoOk returns a tuple with the StandardizedNudgesMisinfo field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequestFeatures) GetTweetAwardsWebTippingEnabled ¶

func (o *PostCreateTweetRequestFeatures) GetTweetAwardsWebTippingEnabled() bool

GetTweetAwardsWebTippingEnabled returns the TweetAwardsWebTippingEnabled field value

func (*PostCreateTweetRequestFeatures) GetTweetAwardsWebTippingEnabledOk ¶

func (o *PostCreateTweetRequestFeatures) GetTweetAwardsWebTippingEnabledOk() (*bool, bool)

GetTweetAwardsWebTippingEnabledOk returns a tuple with the TweetAwardsWebTippingEnabled field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequestFeatures) GetTweetWithVisibilityResultsPreferGqlLimitedActionsPolicyEnabled ¶

func (o *PostCreateTweetRequestFeatures) GetTweetWithVisibilityResultsPreferGqlLimitedActionsPolicyEnabled() bool

GetTweetWithVisibilityResultsPreferGqlLimitedActionsPolicyEnabled returns the TweetWithVisibilityResultsPreferGqlLimitedActionsPolicyEnabled field value

func (*PostCreateTweetRequestFeatures) GetTweetWithVisibilityResultsPreferGqlLimitedActionsPolicyEnabledOk ¶

func (o *PostCreateTweetRequestFeatures) GetTweetWithVisibilityResultsPreferGqlLimitedActionsPolicyEnabledOk() (*bool, bool)

GetTweetWithVisibilityResultsPreferGqlLimitedActionsPolicyEnabledOk returns a tuple with the TweetWithVisibilityResultsPreferGqlLimitedActionsPolicyEnabled field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequestFeatures) GetVerifiedPhoneLabelEnabled ¶

func (o *PostCreateTweetRequestFeatures) GetVerifiedPhoneLabelEnabled() bool

GetVerifiedPhoneLabelEnabled returns the VerifiedPhoneLabelEnabled field value

func (*PostCreateTweetRequestFeatures) GetVerifiedPhoneLabelEnabledOk ¶

func (o *PostCreateTweetRequestFeatures) GetVerifiedPhoneLabelEnabledOk() (*bool, bool)

GetVerifiedPhoneLabelEnabledOk returns a tuple with the VerifiedPhoneLabelEnabled field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequestFeatures) GetViewCountsEverywhereApiEnabled ¶

func (o *PostCreateTweetRequestFeatures) GetViewCountsEverywhereApiEnabled() bool

GetViewCountsEverywhereApiEnabled returns the ViewCountsEverywhereApiEnabled field value

func (*PostCreateTweetRequestFeatures) GetViewCountsEverywhereApiEnabledOk ¶

func (o *PostCreateTweetRequestFeatures) GetViewCountsEverywhereApiEnabledOk() (*bool, bool)

GetViewCountsEverywhereApiEnabledOk returns a tuple with the ViewCountsEverywhereApiEnabled field value and a boolean to check if the value has been set.

func (PostCreateTweetRequestFeatures) MarshalJSON ¶

func (o PostCreateTweetRequestFeatures) MarshalJSON() ([]byte, error)

func (*PostCreateTweetRequestFeatures) SetArticlesPreviewEnabled ¶

func (o *PostCreateTweetRequestFeatures) SetArticlesPreviewEnabled(v bool)

SetArticlesPreviewEnabled sets field value

func (*PostCreateTweetRequestFeatures) SetC9sTweetAnatomyModeratorBadgeEnabled ¶

func (o *PostCreateTweetRequestFeatures) SetC9sTweetAnatomyModeratorBadgeEnabled(v bool)

SetC9sTweetAnatomyModeratorBadgeEnabled sets field value

func (*PostCreateTweetRequestFeatures) SetCommunitiesWebEnableTweetCommunityResultsFetch ¶

func (o *PostCreateTweetRequestFeatures) SetCommunitiesWebEnableTweetCommunityResultsFetch(v bool)

SetCommunitiesWebEnableTweetCommunityResultsFetch sets field value

func (*PostCreateTweetRequestFeatures) SetCreatorSubscriptionsQuoteTweetPreviewEnabled ¶

func (o *PostCreateTweetRequestFeatures) SetCreatorSubscriptionsQuoteTweetPreviewEnabled(v bool)

SetCreatorSubscriptionsQuoteTweetPreviewEnabled sets field value

func (*PostCreateTweetRequestFeatures) SetFreedomOfSpeechNotReachFetchEnabled ¶

func (o *PostCreateTweetRequestFeatures) SetFreedomOfSpeechNotReachFetchEnabled(v bool)

SetFreedomOfSpeechNotReachFetchEnabled sets field value

func (*PostCreateTweetRequestFeatures) SetGraphqlIsTranslatableRwebTweetIsTranslatableEnabled ¶

func (o *PostCreateTweetRequestFeatures) SetGraphqlIsTranslatableRwebTweetIsTranslatableEnabled(v bool)

SetGraphqlIsTranslatableRwebTweetIsTranslatableEnabled sets field value

func (*PostCreateTweetRequestFeatures) SetLongformNotetweetsConsumptionEnabled ¶

func (o *PostCreateTweetRequestFeatures) SetLongformNotetweetsConsumptionEnabled(v bool)

SetLongformNotetweetsConsumptionEnabled sets field value

func (*PostCreateTweetRequestFeatures) SetLongformNotetweetsInlineMediaEnabled ¶

func (o *PostCreateTweetRequestFeatures) SetLongformNotetweetsInlineMediaEnabled(v bool)

SetLongformNotetweetsInlineMediaEnabled sets field value

func (*PostCreateTweetRequestFeatures) SetLongformNotetweetsRichTextReadEnabled ¶

func (o *PostCreateTweetRequestFeatures) SetLongformNotetweetsRichTextReadEnabled(v bool)

SetLongformNotetweetsRichTextReadEnabled sets field value

func (*PostCreateTweetRequestFeatures) SetResponsiveWebEditTweetApiEnabled ¶

func (o *PostCreateTweetRequestFeatures) SetResponsiveWebEditTweetApiEnabled(v bool)

SetResponsiveWebEditTweetApiEnabled sets field value

func (*PostCreateTweetRequestFeatures) SetResponsiveWebEnhanceCardsEnabled ¶

func (o *PostCreateTweetRequestFeatures) SetResponsiveWebEnhanceCardsEnabled(v bool)

SetResponsiveWebEnhanceCardsEnabled sets field value

func (*PostCreateTweetRequestFeatures) SetResponsiveWebGraphqlExcludeDirectiveEnabled ¶

func (o *PostCreateTweetRequestFeatures) SetResponsiveWebGraphqlExcludeDirectiveEnabled(v bool)

SetResponsiveWebGraphqlExcludeDirectiveEnabled sets field value

func (*PostCreateTweetRequestFeatures) SetResponsiveWebGraphqlSkipUserProfileImageExtensionsEnabled ¶

func (o *PostCreateTweetRequestFeatures) SetResponsiveWebGraphqlSkipUserProfileImageExtensionsEnabled(v bool)

SetResponsiveWebGraphqlSkipUserProfileImageExtensionsEnabled sets field value

func (*PostCreateTweetRequestFeatures) SetResponsiveWebGraphqlTimelineNavigationEnabled ¶

func (o *PostCreateTweetRequestFeatures) SetResponsiveWebGraphqlTimelineNavigationEnabled(v bool)

SetResponsiveWebGraphqlTimelineNavigationEnabled sets field value

func (*PostCreateTweetRequestFeatures) SetResponsiveWebTwitterArticleTweetConsumptionEnabled ¶

func (o *PostCreateTweetRequestFeatures) SetResponsiveWebTwitterArticleTweetConsumptionEnabled(v bool)

SetResponsiveWebTwitterArticleTweetConsumptionEnabled sets field value

func (*PostCreateTweetRequestFeatures) SetRwebTipjarConsumptionEnabled ¶

func (o *PostCreateTweetRequestFeatures) SetRwebTipjarConsumptionEnabled(v bool)

SetRwebTipjarConsumptionEnabled sets field value

func (*PostCreateTweetRequestFeatures) SetRwebVideoTimestampsEnabled ¶

func (o *PostCreateTweetRequestFeatures) SetRwebVideoTimestampsEnabled(v bool)

SetRwebVideoTimestampsEnabled sets field value

func (*PostCreateTweetRequestFeatures) SetStandardizedNudgesMisinfo ¶

func (o *PostCreateTweetRequestFeatures) SetStandardizedNudgesMisinfo(v bool)

SetStandardizedNudgesMisinfo sets field value

func (*PostCreateTweetRequestFeatures) SetTweetAwardsWebTippingEnabled ¶

func (o *PostCreateTweetRequestFeatures) SetTweetAwardsWebTippingEnabled(v bool)

SetTweetAwardsWebTippingEnabled sets field value

func (*PostCreateTweetRequestFeatures) SetTweetWithVisibilityResultsPreferGqlLimitedActionsPolicyEnabled ¶

func (o *PostCreateTweetRequestFeatures) SetTweetWithVisibilityResultsPreferGqlLimitedActionsPolicyEnabled(v bool)

SetTweetWithVisibilityResultsPreferGqlLimitedActionsPolicyEnabled sets field value

func (*PostCreateTweetRequestFeatures) SetVerifiedPhoneLabelEnabled ¶

func (o *PostCreateTweetRequestFeatures) SetVerifiedPhoneLabelEnabled(v bool)

SetVerifiedPhoneLabelEnabled sets field value

func (*PostCreateTweetRequestFeatures) SetViewCountsEverywhereApiEnabled ¶

func (o *PostCreateTweetRequestFeatures) SetViewCountsEverywhereApiEnabled(v bool)

SetViewCountsEverywhereApiEnabled sets field value

func (PostCreateTweetRequestFeatures) ToMap ¶

func (o PostCreateTweetRequestFeatures) ToMap() (map[string]interface{}, error)

func (*PostCreateTweetRequestFeatures) UnmarshalJSON ¶

func (o *PostCreateTweetRequestFeatures) UnmarshalJSON(data []byte) (err error)

type PostCreateTweetRequestVariables ¶

type PostCreateTweetRequestVariables struct {
	AttachmentUrl          *string                                             `json:"attachment_url,omitempty"`
	ConversationControl    *PostCreateTweetRequestVariablesConversationControl `json:"conversation_control,omitempty"`
	DarkRequest            bool                                                `json:"dark_request"`
	DisallowedReplyOptions map[string]interface{}                              `json:"disallowed_reply_options,omitempty"`
	Media                  PostCreateTweetRequestVariablesMedia                `json:"media"`
	Reply                  *PostCreateTweetRequestVariablesReply               `json:"reply,omitempty"`
	SemanticAnnotationIds  []map[string]interface{}                            `json:"semantic_annotation_ids"`
	TweetText              string                                              `json:"tweet_text"`
}

PostCreateTweetRequestVariables struct for PostCreateTweetRequestVariables

func NewPostCreateTweetRequestVariables ¶

func NewPostCreateTweetRequestVariables(darkRequest bool, media PostCreateTweetRequestVariablesMedia, semanticAnnotationIds []map[string]interface{}, tweetText string) *PostCreateTweetRequestVariables

NewPostCreateTweetRequestVariables instantiates a new PostCreateTweetRequestVariables object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostCreateTweetRequestVariablesWithDefaults ¶

func NewPostCreateTweetRequestVariablesWithDefaults() *PostCreateTweetRequestVariables

NewPostCreateTweetRequestVariablesWithDefaults instantiates a new PostCreateTweetRequestVariables object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostCreateTweetRequestVariables) GetAttachmentUrl ¶

func (o *PostCreateTweetRequestVariables) GetAttachmentUrl() string

GetAttachmentUrl returns the AttachmentUrl field value if set, zero value otherwise.

func (*PostCreateTweetRequestVariables) GetAttachmentUrlOk ¶

func (o *PostCreateTweetRequestVariables) GetAttachmentUrlOk() (*string, bool)

GetAttachmentUrlOk returns a tuple with the AttachmentUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostCreateTweetRequestVariables) GetConversationControl ¶

GetConversationControl returns the ConversationControl field value if set, zero value otherwise.

func (*PostCreateTweetRequestVariables) GetConversationControlOk ¶

GetConversationControlOk returns a tuple with the ConversationControl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostCreateTweetRequestVariables) GetDarkRequest ¶

func (o *PostCreateTweetRequestVariables) GetDarkRequest() bool

GetDarkRequest returns the DarkRequest field value

func (*PostCreateTweetRequestVariables) GetDarkRequestOk ¶

func (o *PostCreateTweetRequestVariables) GetDarkRequestOk() (*bool, bool)

GetDarkRequestOk returns a tuple with the DarkRequest field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequestVariables) GetDisallowedReplyOptions ¶

func (o *PostCreateTweetRequestVariables) GetDisallowedReplyOptions() map[string]interface{}

GetDisallowedReplyOptions returns the DisallowedReplyOptions field value if set, zero value otherwise.

func (*PostCreateTweetRequestVariables) GetDisallowedReplyOptionsOk ¶

func (o *PostCreateTweetRequestVariables) GetDisallowedReplyOptionsOk() (map[string]interface{}, bool)

GetDisallowedReplyOptionsOk returns a tuple with the DisallowedReplyOptions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostCreateTweetRequestVariables) GetMedia ¶

GetMedia returns the Media field value

func (*PostCreateTweetRequestVariables) GetMediaOk ¶

GetMediaOk returns a tuple with the Media field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequestVariables) GetReply ¶

GetReply returns the Reply field value if set, zero value otherwise.

func (*PostCreateTweetRequestVariables) GetReplyOk ¶

GetReplyOk returns a tuple with the Reply field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostCreateTweetRequestVariables) GetSemanticAnnotationIds ¶

func (o *PostCreateTweetRequestVariables) GetSemanticAnnotationIds() []map[string]interface{}

GetSemanticAnnotationIds returns the SemanticAnnotationIds field value

func (*PostCreateTweetRequestVariables) GetSemanticAnnotationIdsOk ¶

func (o *PostCreateTweetRequestVariables) GetSemanticAnnotationIdsOk() ([]map[string]interface{}, bool)

GetSemanticAnnotationIdsOk returns a tuple with the SemanticAnnotationIds field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequestVariables) GetTweetText ¶

func (o *PostCreateTweetRequestVariables) GetTweetText() string

GetTweetText returns the TweetText field value

func (*PostCreateTweetRequestVariables) GetTweetTextOk ¶

func (o *PostCreateTweetRequestVariables) GetTweetTextOk() (*string, bool)

GetTweetTextOk returns a tuple with the TweetText field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequestVariables) HasAttachmentUrl ¶

func (o *PostCreateTweetRequestVariables) HasAttachmentUrl() bool

HasAttachmentUrl returns a boolean if a field has been set.

func (*PostCreateTweetRequestVariables) HasConversationControl ¶

func (o *PostCreateTweetRequestVariables) HasConversationControl() bool

HasConversationControl returns a boolean if a field has been set.

func (*PostCreateTweetRequestVariables) HasDisallowedReplyOptions ¶

func (o *PostCreateTweetRequestVariables) HasDisallowedReplyOptions() bool

HasDisallowedReplyOptions returns a boolean if a field has been set.

func (*PostCreateTweetRequestVariables) HasReply ¶

func (o *PostCreateTweetRequestVariables) HasReply() bool

HasReply returns a boolean if a field has been set.

func (PostCreateTweetRequestVariables) MarshalJSON ¶

func (o PostCreateTweetRequestVariables) MarshalJSON() ([]byte, error)

func (*PostCreateTweetRequestVariables) SetAttachmentUrl ¶

func (o *PostCreateTweetRequestVariables) SetAttachmentUrl(v string)

SetAttachmentUrl gets a reference to the given string and assigns it to the AttachmentUrl field.

func (*PostCreateTweetRequestVariables) SetConversationControl ¶

SetConversationControl gets a reference to the given PostCreateTweetRequestVariablesConversationControl and assigns it to the ConversationControl field.

func (*PostCreateTweetRequestVariables) SetDarkRequest ¶

func (o *PostCreateTweetRequestVariables) SetDarkRequest(v bool)

SetDarkRequest sets field value

func (*PostCreateTweetRequestVariables) SetDisallowedReplyOptions ¶

func (o *PostCreateTweetRequestVariables) SetDisallowedReplyOptions(v map[string]interface{})

SetDisallowedReplyOptions gets a reference to the given map[string]interface{} and assigns it to the DisallowedReplyOptions field.

func (*PostCreateTweetRequestVariables) SetMedia ¶

SetMedia sets field value

func (*PostCreateTweetRequestVariables) SetReply ¶

SetReply gets a reference to the given PostCreateTweetRequestVariablesReply and assigns it to the Reply field.

func (*PostCreateTweetRequestVariables) SetSemanticAnnotationIds ¶

func (o *PostCreateTweetRequestVariables) SetSemanticAnnotationIds(v []map[string]interface{})

SetSemanticAnnotationIds sets field value

func (*PostCreateTweetRequestVariables) SetTweetText ¶

func (o *PostCreateTweetRequestVariables) SetTweetText(v string)

SetTweetText sets field value

func (PostCreateTweetRequestVariables) ToMap ¶

func (o PostCreateTweetRequestVariables) ToMap() (map[string]interface{}, error)

func (*PostCreateTweetRequestVariables) UnmarshalJSON ¶

func (o *PostCreateTweetRequestVariables) UnmarshalJSON(data []byte) (err error)

type PostCreateTweetRequestVariablesConversationControl ¶

type PostCreateTweetRequestVariablesConversationControl struct {
	Mode string `json:"mode"`
}

PostCreateTweetRequestVariablesConversationControl struct for PostCreateTweetRequestVariablesConversationControl

func NewPostCreateTweetRequestVariablesConversationControl ¶

func NewPostCreateTweetRequestVariablesConversationControl(mode string) *PostCreateTweetRequestVariablesConversationControl

NewPostCreateTweetRequestVariablesConversationControl instantiates a new PostCreateTweetRequestVariablesConversationControl object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostCreateTweetRequestVariablesConversationControlWithDefaults ¶

func NewPostCreateTweetRequestVariablesConversationControlWithDefaults() *PostCreateTweetRequestVariablesConversationControl

NewPostCreateTweetRequestVariablesConversationControlWithDefaults instantiates a new PostCreateTweetRequestVariablesConversationControl object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostCreateTweetRequestVariablesConversationControl) GetMode ¶

GetMode returns the Mode field value

func (*PostCreateTweetRequestVariablesConversationControl) GetModeOk ¶

GetModeOk returns a tuple with the Mode field value and a boolean to check if the value has been set.

func (PostCreateTweetRequestVariablesConversationControl) MarshalJSON ¶

func (*PostCreateTweetRequestVariablesConversationControl) SetMode ¶

SetMode sets field value

func (PostCreateTweetRequestVariablesConversationControl) ToMap ¶

func (*PostCreateTweetRequestVariablesConversationControl) UnmarshalJSON ¶

func (o *PostCreateTweetRequestVariablesConversationControl) UnmarshalJSON(data []byte) (err error)

type PostCreateTweetRequestVariablesMedia ¶

type PostCreateTweetRequestVariablesMedia struct {
	MediaEntities     []PostCreateTweetRequestVariablesMediaMediaEntitiesInner `json:"media_entities,omitempty"`
	PossiblySensitive bool                                                     `json:"possibly_sensitive"`
}

PostCreateTweetRequestVariablesMedia struct for PostCreateTweetRequestVariablesMedia

func NewPostCreateTweetRequestVariablesMedia ¶

func NewPostCreateTweetRequestVariablesMedia(possiblySensitive bool) *PostCreateTweetRequestVariablesMedia

NewPostCreateTweetRequestVariablesMedia instantiates a new PostCreateTweetRequestVariablesMedia object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostCreateTweetRequestVariablesMediaWithDefaults ¶

func NewPostCreateTweetRequestVariablesMediaWithDefaults() *PostCreateTweetRequestVariablesMedia

NewPostCreateTweetRequestVariablesMediaWithDefaults instantiates a new PostCreateTweetRequestVariablesMedia object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostCreateTweetRequestVariablesMedia) GetMediaEntities ¶

GetMediaEntities returns the MediaEntities field value if set, zero value otherwise.

func (*PostCreateTweetRequestVariablesMedia) GetMediaEntitiesOk ¶

GetMediaEntitiesOk returns a tuple with the MediaEntities field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostCreateTweetRequestVariablesMedia) GetPossiblySensitive ¶

func (o *PostCreateTweetRequestVariablesMedia) GetPossiblySensitive() bool

GetPossiblySensitive returns the PossiblySensitive field value

func (*PostCreateTweetRequestVariablesMedia) GetPossiblySensitiveOk ¶

func (o *PostCreateTweetRequestVariablesMedia) GetPossiblySensitiveOk() (*bool, bool)

GetPossiblySensitiveOk returns a tuple with the PossiblySensitive field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequestVariablesMedia) HasMediaEntities ¶

func (o *PostCreateTweetRequestVariablesMedia) HasMediaEntities() bool

HasMediaEntities returns a boolean if a field has been set.

func (PostCreateTweetRequestVariablesMedia) MarshalJSON ¶

func (o PostCreateTweetRequestVariablesMedia) MarshalJSON() ([]byte, error)

func (*PostCreateTweetRequestVariablesMedia) SetMediaEntities ¶

SetMediaEntities gets a reference to the given []PostCreateTweetRequestVariablesMediaMediaEntitiesInner and assigns it to the MediaEntities field.

func (*PostCreateTweetRequestVariablesMedia) SetPossiblySensitive ¶

func (o *PostCreateTweetRequestVariablesMedia) SetPossiblySensitive(v bool)

SetPossiblySensitive sets field value

func (PostCreateTweetRequestVariablesMedia) ToMap ¶

func (o PostCreateTweetRequestVariablesMedia) ToMap() (map[string]interface{}, error)

func (*PostCreateTweetRequestVariablesMedia) UnmarshalJSON ¶

func (o *PostCreateTweetRequestVariablesMedia) UnmarshalJSON(data []byte) (err error)

type PostCreateTweetRequestVariablesMediaMediaEntitiesInner ¶

type PostCreateTweetRequestVariablesMediaMediaEntitiesInner struct {
	MediaId     string   `json:"media_id"`
	TaggedUsers []string `json:"tagged_users"`
}

PostCreateTweetRequestVariablesMediaMediaEntitiesInner struct for PostCreateTweetRequestVariablesMediaMediaEntitiesInner

func NewPostCreateTweetRequestVariablesMediaMediaEntitiesInner ¶

func NewPostCreateTweetRequestVariablesMediaMediaEntitiesInner(mediaId string, taggedUsers []string) *PostCreateTweetRequestVariablesMediaMediaEntitiesInner

NewPostCreateTweetRequestVariablesMediaMediaEntitiesInner instantiates a new PostCreateTweetRequestVariablesMediaMediaEntitiesInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostCreateTweetRequestVariablesMediaMediaEntitiesInnerWithDefaults ¶

func NewPostCreateTweetRequestVariablesMediaMediaEntitiesInnerWithDefaults() *PostCreateTweetRequestVariablesMediaMediaEntitiesInner

NewPostCreateTweetRequestVariablesMediaMediaEntitiesInnerWithDefaults instantiates a new PostCreateTweetRequestVariablesMediaMediaEntitiesInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostCreateTweetRequestVariablesMediaMediaEntitiesInner) GetMediaId ¶

GetMediaId returns the MediaId field value

func (*PostCreateTweetRequestVariablesMediaMediaEntitiesInner) GetMediaIdOk ¶

GetMediaIdOk returns a tuple with the MediaId field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequestVariablesMediaMediaEntitiesInner) GetTaggedUsers ¶

GetTaggedUsers returns the TaggedUsers field value

func (*PostCreateTweetRequestVariablesMediaMediaEntitiesInner) GetTaggedUsersOk ¶

GetTaggedUsersOk returns a tuple with the TaggedUsers field value and a boolean to check if the value has been set.

func (PostCreateTweetRequestVariablesMediaMediaEntitiesInner) MarshalJSON ¶

func (*PostCreateTweetRequestVariablesMediaMediaEntitiesInner) SetMediaId ¶

SetMediaId sets field value

func (*PostCreateTweetRequestVariablesMediaMediaEntitiesInner) SetTaggedUsers ¶

SetTaggedUsers sets field value

func (PostCreateTweetRequestVariablesMediaMediaEntitiesInner) ToMap ¶

func (*PostCreateTweetRequestVariablesMediaMediaEntitiesInner) UnmarshalJSON ¶

func (o *PostCreateTweetRequestVariablesMediaMediaEntitiesInner) UnmarshalJSON(data []byte) (err error)

type PostCreateTweetRequestVariablesReply ¶

type PostCreateTweetRequestVariablesReply struct {
	ExcludeReplyUserIds []map[string]interface{} `json:"exclude_reply_user_ids"`
	InReplyToTweetId    string                   `json:"in_reply_to_tweet_id"`
}

PostCreateTweetRequestVariablesReply struct for PostCreateTweetRequestVariablesReply

func NewPostCreateTweetRequestVariablesReply ¶

func NewPostCreateTweetRequestVariablesReply(excludeReplyUserIds []map[string]interface{}, inReplyToTweetId string) *PostCreateTweetRequestVariablesReply

NewPostCreateTweetRequestVariablesReply instantiates a new PostCreateTweetRequestVariablesReply object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostCreateTweetRequestVariablesReplyWithDefaults ¶

func NewPostCreateTweetRequestVariablesReplyWithDefaults() *PostCreateTweetRequestVariablesReply

NewPostCreateTweetRequestVariablesReplyWithDefaults instantiates a new PostCreateTweetRequestVariablesReply object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostCreateTweetRequestVariablesReply) GetExcludeReplyUserIds ¶

func (o *PostCreateTweetRequestVariablesReply) GetExcludeReplyUserIds() []map[string]interface{}

GetExcludeReplyUserIds returns the ExcludeReplyUserIds field value

func (*PostCreateTweetRequestVariablesReply) GetExcludeReplyUserIdsOk ¶

func (o *PostCreateTweetRequestVariablesReply) GetExcludeReplyUserIdsOk() ([]map[string]interface{}, bool)

GetExcludeReplyUserIdsOk returns a tuple with the ExcludeReplyUserIds field value and a boolean to check if the value has been set.

func (*PostCreateTweetRequestVariablesReply) GetInReplyToTweetId ¶

func (o *PostCreateTweetRequestVariablesReply) GetInReplyToTweetId() string

GetInReplyToTweetId returns the InReplyToTweetId field value

func (*PostCreateTweetRequestVariablesReply) GetInReplyToTweetIdOk ¶

func (o *PostCreateTweetRequestVariablesReply) GetInReplyToTweetIdOk() (*string, bool)

GetInReplyToTweetIdOk returns a tuple with the InReplyToTweetId field value and a boolean to check if the value has been set.

func (PostCreateTweetRequestVariablesReply) MarshalJSON ¶

func (o PostCreateTweetRequestVariablesReply) MarshalJSON() ([]byte, error)

func (*PostCreateTweetRequestVariablesReply) SetExcludeReplyUserIds ¶

func (o *PostCreateTweetRequestVariablesReply) SetExcludeReplyUserIds(v []map[string]interface{})

SetExcludeReplyUserIds sets field value

func (*PostCreateTweetRequestVariablesReply) SetInReplyToTweetId ¶

func (o *PostCreateTweetRequestVariablesReply) SetInReplyToTweetId(v string)

SetInReplyToTweetId sets field value

func (PostCreateTweetRequestVariablesReply) ToMap ¶

func (o PostCreateTweetRequestVariablesReply) ToMap() (map[string]interface{}, error)

func (*PostCreateTweetRequestVariablesReply) UnmarshalJSON ¶

func (o *PostCreateTweetRequestVariablesReply) UnmarshalJSON(data []byte) (err error)

type PostDeleteBookmark200Response ¶

type PostDeleteBookmark200Response struct {
	DeleteBookmarkResponse *DeleteBookmarkResponse
	Errors                 *Errors
}

PostDeleteBookmark200Response - struct for PostDeleteBookmark200Response

func DeleteBookmarkResponseAsPostDeleteBookmark200Response ¶

func DeleteBookmarkResponseAsPostDeleteBookmark200Response(v *DeleteBookmarkResponse) PostDeleteBookmark200Response

DeleteBookmarkResponseAsPostDeleteBookmark200Response is a convenience function that returns DeleteBookmarkResponse wrapped in PostDeleteBookmark200Response

func ErrorsAsPostDeleteBookmark200Response ¶

func ErrorsAsPostDeleteBookmark200Response(v *Errors) PostDeleteBookmark200Response

ErrorsAsPostDeleteBookmark200Response is a convenience function that returns Errors wrapped in PostDeleteBookmark200Response

func (*PostDeleteBookmark200Response) GetActualInstance ¶

func (obj *PostDeleteBookmark200Response) GetActualInstance() interface{}

Get the actual instance

func (PostDeleteBookmark200Response) MarshalJSON ¶

func (src PostDeleteBookmark200Response) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PostDeleteBookmark200Response) UnmarshalJSON ¶

func (dst *PostDeleteBookmark200Response) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type PostDeleteBookmarkRequest ¶

type PostDeleteBookmarkRequest struct {
	QueryId   string                             `json:"queryId"`
	Variables PostCreateBookmarkRequestVariables `json:"variables"`
}

PostDeleteBookmarkRequest struct for PostDeleteBookmarkRequest

func NewPostDeleteBookmarkRequest ¶

func NewPostDeleteBookmarkRequest(queryId string, variables PostCreateBookmarkRequestVariables) *PostDeleteBookmarkRequest

NewPostDeleteBookmarkRequest instantiates a new PostDeleteBookmarkRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostDeleteBookmarkRequestWithDefaults ¶

func NewPostDeleteBookmarkRequestWithDefaults() *PostDeleteBookmarkRequest

NewPostDeleteBookmarkRequestWithDefaults instantiates a new PostDeleteBookmarkRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostDeleteBookmarkRequest) GetQueryId ¶

func (o *PostDeleteBookmarkRequest) GetQueryId() string

GetQueryId returns the QueryId field value

func (*PostDeleteBookmarkRequest) GetQueryIdOk ¶

func (o *PostDeleteBookmarkRequest) GetQueryIdOk() (*string, bool)

GetQueryIdOk returns a tuple with the QueryId field value and a boolean to check if the value has been set.

func (*PostDeleteBookmarkRequest) GetVariables ¶

GetVariables returns the Variables field value

func (*PostDeleteBookmarkRequest) GetVariablesOk ¶

GetVariablesOk returns a tuple with the Variables field value and a boolean to check if the value has been set.

func (PostDeleteBookmarkRequest) MarshalJSON ¶

func (o PostDeleteBookmarkRequest) MarshalJSON() ([]byte, error)

func (*PostDeleteBookmarkRequest) SetQueryId ¶

func (o *PostDeleteBookmarkRequest) SetQueryId(v string)

SetQueryId sets field value

func (*PostDeleteBookmarkRequest) SetVariables ¶

SetVariables sets field value

func (PostDeleteBookmarkRequest) ToMap ¶

func (o PostDeleteBookmarkRequest) ToMap() (map[string]interface{}, error)

func (*PostDeleteBookmarkRequest) UnmarshalJSON ¶

func (o *PostDeleteBookmarkRequest) UnmarshalJSON(data []byte) (err error)

type PostDeleteRetweet200Response ¶

type PostDeleteRetweet200Response struct {
	DeleteRetweetResponse *DeleteRetweetResponse
	Errors                *Errors
}

PostDeleteRetweet200Response - struct for PostDeleteRetweet200Response

func DeleteRetweetResponseAsPostDeleteRetweet200Response ¶

func DeleteRetweetResponseAsPostDeleteRetweet200Response(v *DeleteRetweetResponse) PostDeleteRetweet200Response

DeleteRetweetResponseAsPostDeleteRetweet200Response is a convenience function that returns DeleteRetweetResponse wrapped in PostDeleteRetweet200Response

func ErrorsAsPostDeleteRetweet200Response ¶

func ErrorsAsPostDeleteRetweet200Response(v *Errors) PostDeleteRetweet200Response

ErrorsAsPostDeleteRetweet200Response is a convenience function that returns Errors wrapped in PostDeleteRetweet200Response

func (*PostDeleteRetweet200Response) GetActualInstance ¶

func (obj *PostDeleteRetweet200Response) GetActualInstance() interface{}

Get the actual instance

func (PostDeleteRetweet200Response) MarshalJSON ¶

func (src PostDeleteRetweet200Response) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PostDeleteRetweet200Response) UnmarshalJSON ¶

func (dst *PostDeleteRetweet200Response) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type PostDeleteRetweetRequest ¶

type PostDeleteRetweetRequest struct {
	QueryId   string                            `json:"queryId"`
	Variables PostDeleteRetweetRequestVariables `json:"variables"`
}

PostDeleteRetweetRequest struct for PostDeleteRetweetRequest

func NewPostDeleteRetweetRequest ¶

func NewPostDeleteRetweetRequest(queryId string, variables PostDeleteRetweetRequestVariables) *PostDeleteRetweetRequest

NewPostDeleteRetweetRequest instantiates a new PostDeleteRetweetRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostDeleteRetweetRequestWithDefaults ¶

func NewPostDeleteRetweetRequestWithDefaults() *PostDeleteRetweetRequest

NewPostDeleteRetweetRequestWithDefaults instantiates a new PostDeleteRetweetRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostDeleteRetweetRequest) GetQueryId ¶

func (o *PostDeleteRetweetRequest) GetQueryId() string

GetQueryId returns the QueryId field value

func (*PostDeleteRetweetRequest) GetQueryIdOk ¶

func (o *PostDeleteRetweetRequest) GetQueryIdOk() (*string, bool)

GetQueryIdOk returns a tuple with the QueryId field value and a boolean to check if the value has been set.

func (*PostDeleteRetweetRequest) GetVariables ¶

GetVariables returns the Variables field value

func (*PostDeleteRetweetRequest) GetVariablesOk ¶

GetVariablesOk returns a tuple with the Variables field value and a boolean to check if the value has been set.

func (PostDeleteRetweetRequest) MarshalJSON ¶

func (o PostDeleteRetweetRequest) MarshalJSON() ([]byte, error)

func (*PostDeleteRetweetRequest) SetQueryId ¶

func (o *PostDeleteRetweetRequest) SetQueryId(v string)

SetQueryId sets field value

func (*PostDeleteRetweetRequest) SetVariables ¶

SetVariables sets field value

func (PostDeleteRetweetRequest) ToMap ¶

func (o PostDeleteRetweetRequest) ToMap() (map[string]interface{}, error)

func (*PostDeleteRetweetRequest) UnmarshalJSON ¶

func (o *PostDeleteRetweetRequest) UnmarshalJSON(data []byte) (err error)

type PostDeleteRetweetRequestVariables ¶

type PostDeleteRetweetRequestVariables struct {
	DarkRequest   bool   `json:"dark_request"`
	SourceTweetId string `json:"source_tweet_id"`
}

PostDeleteRetweetRequestVariables struct for PostDeleteRetweetRequestVariables

func NewPostDeleteRetweetRequestVariables ¶

func NewPostDeleteRetweetRequestVariables(darkRequest bool, sourceTweetId string) *PostDeleteRetweetRequestVariables

NewPostDeleteRetweetRequestVariables instantiates a new PostDeleteRetweetRequestVariables object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostDeleteRetweetRequestVariablesWithDefaults ¶

func NewPostDeleteRetweetRequestVariablesWithDefaults() *PostDeleteRetweetRequestVariables

NewPostDeleteRetweetRequestVariablesWithDefaults instantiates a new PostDeleteRetweetRequestVariables object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostDeleteRetweetRequestVariables) GetDarkRequest ¶

func (o *PostDeleteRetweetRequestVariables) GetDarkRequest() bool

GetDarkRequest returns the DarkRequest field value

func (*PostDeleteRetweetRequestVariables) GetDarkRequestOk ¶

func (o *PostDeleteRetweetRequestVariables) GetDarkRequestOk() (*bool, bool)

GetDarkRequestOk returns a tuple with the DarkRequest field value and a boolean to check if the value has been set.

func (*PostDeleteRetweetRequestVariables) GetSourceTweetId ¶

func (o *PostDeleteRetweetRequestVariables) GetSourceTweetId() string

GetSourceTweetId returns the SourceTweetId field value

func (*PostDeleteRetweetRequestVariables) GetSourceTweetIdOk ¶

func (o *PostDeleteRetweetRequestVariables) GetSourceTweetIdOk() (*string, bool)

GetSourceTweetIdOk returns a tuple with the SourceTweetId field value and a boolean to check if the value has been set.

func (PostDeleteRetweetRequestVariables) MarshalJSON ¶

func (o PostDeleteRetweetRequestVariables) MarshalJSON() ([]byte, error)

func (*PostDeleteRetweetRequestVariables) SetDarkRequest ¶

func (o *PostDeleteRetweetRequestVariables) SetDarkRequest(v bool)

SetDarkRequest sets field value

func (*PostDeleteRetweetRequestVariables) SetSourceTweetId ¶

func (o *PostDeleteRetweetRequestVariables) SetSourceTweetId(v string)

SetSourceTweetId sets field value

func (PostDeleteRetweetRequestVariables) ToMap ¶

func (o PostDeleteRetweetRequestVariables) ToMap() (map[string]interface{}, error)

func (*PostDeleteRetweetRequestVariables) UnmarshalJSON ¶

func (o *PostDeleteRetweetRequestVariables) UnmarshalJSON(data []byte) (err error)

type PostDeleteTweet200Response ¶

type PostDeleteTweet200Response struct {
	DeleteTweetResponse *DeleteTweetResponse
	Errors              *Errors
}

PostDeleteTweet200Response - struct for PostDeleteTweet200Response

func DeleteTweetResponseAsPostDeleteTweet200Response ¶

func DeleteTweetResponseAsPostDeleteTweet200Response(v *DeleteTweetResponse) PostDeleteTweet200Response

DeleteTweetResponseAsPostDeleteTweet200Response is a convenience function that returns DeleteTweetResponse wrapped in PostDeleteTweet200Response

func ErrorsAsPostDeleteTweet200Response ¶

func ErrorsAsPostDeleteTweet200Response(v *Errors) PostDeleteTweet200Response

ErrorsAsPostDeleteTweet200Response is a convenience function that returns Errors wrapped in PostDeleteTweet200Response

func (*PostDeleteTweet200Response) GetActualInstance ¶

func (obj *PostDeleteTweet200Response) GetActualInstance() interface{}

Get the actual instance

func (PostDeleteTweet200Response) MarshalJSON ¶

func (src PostDeleteTweet200Response) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PostDeleteTweet200Response) UnmarshalJSON ¶

func (dst *PostDeleteTweet200Response) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type PostDeleteTweetRequest ¶

type PostDeleteTweetRequest struct {
	QueryId   string                            `json:"queryId"`
	Variables PostCreateRetweetRequestVariables `json:"variables"`
}

PostDeleteTweetRequest struct for PostDeleteTweetRequest

func NewPostDeleteTweetRequest ¶

func NewPostDeleteTweetRequest(queryId string, variables PostCreateRetweetRequestVariables) *PostDeleteTweetRequest

NewPostDeleteTweetRequest instantiates a new PostDeleteTweetRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostDeleteTweetRequestWithDefaults ¶

func NewPostDeleteTweetRequestWithDefaults() *PostDeleteTweetRequest

NewPostDeleteTweetRequestWithDefaults instantiates a new PostDeleteTweetRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostDeleteTweetRequest) GetQueryId ¶

func (o *PostDeleteTweetRequest) GetQueryId() string

GetQueryId returns the QueryId field value

func (*PostDeleteTweetRequest) GetQueryIdOk ¶

func (o *PostDeleteTweetRequest) GetQueryIdOk() (*string, bool)

GetQueryIdOk returns a tuple with the QueryId field value and a boolean to check if the value has been set.

func (*PostDeleteTweetRequest) GetVariables ¶

GetVariables returns the Variables field value

func (*PostDeleteTweetRequest) GetVariablesOk ¶

GetVariablesOk returns a tuple with the Variables field value and a boolean to check if the value has been set.

func (PostDeleteTweetRequest) MarshalJSON ¶

func (o PostDeleteTweetRequest) MarshalJSON() ([]byte, error)

func (*PostDeleteTweetRequest) SetQueryId ¶

func (o *PostDeleteTweetRequest) SetQueryId(v string)

SetQueryId sets field value

func (*PostDeleteTweetRequest) SetVariables ¶

SetVariables sets field value

func (PostDeleteTweetRequest) ToMap ¶

func (o PostDeleteTweetRequest) ToMap() (map[string]interface{}, error)

func (*PostDeleteTweetRequest) UnmarshalJSON ¶

func (o *PostDeleteTweetRequest) UnmarshalJSON(data []byte) (err error)

type PostFavoriteTweet200Response ¶

type PostFavoriteTweet200Response struct {
	Errors                    *Errors
	FavoriteTweetResponseData *FavoriteTweetResponseData
}

PostFavoriteTweet200Response - struct for PostFavoriteTweet200Response

func ErrorsAsPostFavoriteTweet200Response ¶

func ErrorsAsPostFavoriteTweet200Response(v *Errors) PostFavoriteTweet200Response

ErrorsAsPostFavoriteTweet200Response is a convenience function that returns Errors wrapped in PostFavoriteTweet200Response

func FavoriteTweetResponseDataAsPostFavoriteTweet200Response ¶

func FavoriteTweetResponseDataAsPostFavoriteTweet200Response(v *FavoriteTweetResponseData) PostFavoriteTweet200Response

FavoriteTweetResponseDataAsPostFavoriteTweet200Response is a convenience function that returns FavoriteTweetResponseData wrapped in PostFavoriteTweet200Response

func (*PostFavoriteTweet200Response) GetActualInstance ¶

func (obj *PostFavoriteTweet200Response) GetActualInstance() interface{}

Get the actual instance

func (PostFavoriteTweet200Response) MarshalJSON ¶

func (src PostFavoriteTweet200Response) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PostFavoriteTweet200Response) UnmarshalJSON ¶

func (dst *PostFavoriteTweet200Response) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type PostFavoriteTweetRequest ¶

type PostFavoriteTweetRequest struct {
	QueryId   string                             `json:"queryId"`
	Variables PostCreateBookmarkRequestVariables `json:"variables"`
}

PostFavoriteTweetRequest struct for PostFavoriteTweetRequest

func NewPostFavoriteTweetRequest ¶

func NewPostFavoriteTweetRequest(queryId string, variables PostCreateBookmarkRequestVariables) *PostFavoriteTweetRequest

NewPostFavoriteTweetRequest instantiates a new PostFavoriteTweetRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostFavoriteTweetRequestWithDefaults ¶

func NewPostFavoriteTweetRequestWithDefaults() *PostFavoriteTweetRequest

NewPostFavoriteTweetRequestWithDefaults instantiates a new PostFavoriteTweetRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostFavoriteTweetRequest) GetQueryId ¶

func (o *PostFavoriteTweetRequest) GetQueryId() string

GetQueryId returns the QueryId field value

func (*PostFavoriteTweetRequest) GetQueryIdOk ¶

func (o *PostFavoriteTweetRequest) GetQueryIdOk() (*string, bool)

GetQueryIdOk returns a tuple with the QueryId field value and a boolean to check if the value has been set.

func (*PostFavoriteTweetRequest) GetVariables ¶

GetVariables returns the Variables field value

func (*PostFavoriteTweetRequest) GetVariablesOk ¶

GetVariablesOk returns a tuple with the Variables field value and a boolean to check if the value has been set.

func (PostFavoriteTweetRequest) MarshalJSON ¶

func (o PostFavoriteTweetRequest) MarshalJSON() ([]byte, error)

func (*PostFavoriteTweetRequest) SetQueryId ¶

func (o *PostFavoriteTweetRequest) SetQueryId(v string)

SetQueryId sets field value

func (*PostFavoriteTweetRequest) SetVariables ¶

SetVariables sets field value

func (PostFavoriteTweetRequest) ToMap ¶

func (o PostFavoriteTweetRequest) ToMap() (map[string]interface{}, error)

func (*PostFavoriteTweetRequest) UnmarshalJSON ¶

func (o *PostFavoriteTweetRequest) UnmarshalJSON(data []byte) (err error)

type PostUnfavoriteTweet200Response ¶

type PostUnfavoriteTweet200Response struct {
	Errors                      *Errors
	UnfavoriteTweetResponseData *UnfavoriteTweetResponseData
}

PostUnfavoriteTweet200Response - struct for PostUnfavoriteTweet200Response

func ErrorsAsPostUnfavoriteTweet200Response ¶

func ErrorsAsPostUnfavoriteTweet200Response(v *Errors) PostUnfavoriteTweet200Response

ErrorsAsPostUnfavoriteTweet200Response is a convenience function that returns Errors wrapped in PostUnfavoriteTweet200Response

func UnfavoriteTweetResponseDataAsPostUnfavoriteTweet200Response ¶

func UnfavoriteTweetResponseDataAsPostUnfavoriteTweet200Response(v *UnfavoriteTweetResponseData) PostUnfavoriteTweet200Response

UnfavoriteTweetResponseDataAsPostUnfavoriteTweet200Response is a convenience function that returns UnfavoriteTweetResponseData wrapped in PostUnfavoriteTweet200Response

func (*PostUnfavoriteTweet200Response) GetActualInstance ¶

func (obj *PostUnfavoriteTweet200Response) GetActualInstance() interface{}

Get the actual instance

func (PostUnfavoriteTweet200Response) MarshalJSON ¶

func (src PostUnfavoriteTweet200Response) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PostUnfavoriteTweet200Response) UnmarshalJSON ¶

func (dst *PostUnfavoriteTweet200Response) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type PostUnfavoriteTweetRequest ¶

type PostUnfavoriteTweetRequest struct {
	QueryId   string                            `json:"queryId"`
	Variables PostCreateRetweetRequestVariables `json:"variables"`
}

PostUnfavoriteTweetRequest struct for PostUnfavoriteTweetRequest

func NewPostUnfavoriteTweetRequest ¶

func NewPostUnfavoriteTweetRequest(queryId string, variables PostCreateRetweetRequestVariables) *PostUnfavoriteTweetRequest

NewPostUnfavoriteTweetRequest instantiates a new PostUnfavoriteTweetRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostUnfavoriteTweetRequestWithDefaults ¶

func NewPostUnfavoriteTweetRequestWithDefaults() *PostUnfavoriteTweetRequest

NewPostUnfavoriteTweetRequestWithDefaults instantiates a new PostUnfavoriteTweetRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostUnfavoriteTweetRequest) GetQueryId ¶

func (o *PostUnfavoriteTweetRequest) GetQueryId() string

GetQueryId returns the QueryId field value

func (*PostUnfavoriteTweetRequest) GetQueryIdOk ¶

func (o *PostUnfavoriteTweetRequest) GetQueryIdOk() (*string, bool)

GetQueryIdOk returns a tuple with the QueryId field value and a boolean to check if the value has been set.

func (*PostUnfavoriteTweetRequest) GetVariables ¶

GetVariables returns the Variables field value

func (*PostUnfavoriteTweetRequest) GetVariablesOk ¶

GetVariablesOk returns a tuple with the Variables field value and a boolean to check if the value has been set.

func (PostUnfavoriteTweetRequest) MarshalJSON ¶

func (o PostUnfavoriteTweetRequest) MarshalJSON() ([]byte, error)

func (*PostUnfavoriteTweetRequest) SetQueryId ¶

func (o *PostUnfavoriteTweetRequest) SetQueryId(v string)

SetQueryId sets field value

func (*PostUnfavoriteTweetRequest) SetVariables ¶

SetVariables sets field value

func (PostUnfavoriteTweetRequest) ToMap ¶

func (o PostUnfavoriteTweetRequest) ToMap() (map[string]interface{}, error)

func (*PostUnfavoriteTweetRequest) UnmarshalJSON ¶

func (o *PostUnfavoriteTweetRequest) UnmarshalJSON(data []byte) (err error)

type PrimaryCommunityTopic ¶

type PrimaryCommunityTopic struct {
	TopicId   string `json:"topic_id" validate:"regexp=^[0-9]+$"`
	TopicName string `json:"topic_name"`
}

PrimaryCommunityTopic struct for PrimaryCommunityTopic

func NewPrimaryCommunityTopic ¶

func NewPrimaryCommunityTopic(topicId string, topicName string) *PrimaryCommunityTopic

NewPrimaryCommunityTopic instantiates a new PrimaryCommunityTopic object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPrimaryCommunityTopicWithDefaults ¶

func NewPrimaryCommunityTopicWithDefaults() *PrimaryCommunityTopic

NewPrimaryCommunityTopicWithDefaults instantiates a new PrimaryCommunityTopic object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PrimaryCommunityTopic) GetTopicId ¶

func (o *PrimaryCommunityTopic) GetTopicId() string

GetTopicId returns the TopicId field value

func (*PrimaryCommunityTopic) GetTopicIdOk ¶

func (o *PrimaryCommunityTopic) GetTopicIdOk() (*string, bool)

GetTopicIdOk returns a tuple with the TopicId field value and a boolean to check if the value has been set.

func (*PrimaryCommunityTopic) GetTopicName ¶

func (o *PrimaryCommunityTopic) GetTopicName() string

GetTopicName returns the TopicName field value

func (*PrimaryCommunityTopic) GetTopicNameOk ¶

func (o *PrimaryCommunityTopic) GetTopicNameOk() (*string, bool)

GetTopicNameOk returns a tuple with the TopicName field value and a boolean to check if the value has been set.

func (PrimaryCommunityTopic) MarshalJSON ¶

func (o PrimaryCommunityTopic) MarshalJSON() ([]byte, error)

func (*PrimaryCommunityTopic) SetTopicId ¶

func (o *PrimaryCommunityTopic) SetTopicId(v string)

SetTopicId sets field value

func (*PrimaryCommunityTopic) SetTopicName ¶

func (o *PrimaryCommunityTopic) SetTopicName(v string)

SetTopicName sets field value

func (PrimaryCommunityTopic) ToMap ¶

func (o PrimaryCommunityTopic) ToMap() (map[string]interface{}, error)

func (*PrimaryCommunityTopic) UnmarshalJSON ¶

func (o *PrimaryCommunityTopic) UnmarshalJSON(data []byte) (err error)

type ProfileResponse ¶

type ProfileResponse struct {
	Data ProfileResponseData `json:"data"`
}

ProfileResponse struct for ProfileResponse

func NewProfileResponse ¶

func NewProfileResponse(data ProfileResponseData) *ProfileResponse

NewProfileResponse instantiates a new ProfileResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProfileResponseWithDefaults ¶

func NewProfileResponseWithDefaults() *ProfileResponse

NewProfileResponseWithDefaults instantiates a new ProfileResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProfileResponse) GetData ¶

func (o *ProfileResponse) GetData() ProfileResponseData

GetData returns the Data field value

func (*ProfileResponse) GetDataOk ¶

func (o *ProfileResponse) GetDataOk() (*ProfileResponseData, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (ProfileResponse) MarshalJSON ¶

func (o ProfileResponse) MarshalJSON() ([]byte, error)

func (*ProfileResponse) SetData ¶

func (o *ProfileResponse) SetData(v ProfileResponseData)

SetData sets field value

func (ProfileResponse) ToMap ¶

func (o ProfileResponse) ToMap() (map[string]interface{}, error)

func (*ProfileResponse) UnmarshalJSON ¶

func (o *ProfileResponse) UnmarshalJSON(data []byte) (err error)

type ProfileResponseData ¶

type ProfileResponseData struct {
	UserResultByScreenName UserResultByScreenName `json:"user_result_by_screen_name"`
}

ProfileResponseData struct for ProfileResponseData

func NewProfileResponseData ¶

func NewProfileResponseData(userResultByScreenName UserResultByScreenName) *ProfileResponseData

NewProfileResponseData instantiates a new ProfileResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProfileResponseDataWithDefaults ¶

func NewProfileResponseDataWithDefaults() *ProfileResponseData

NewProfileResponseDataWithDefaults instantiates a new ProfileResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProfileResponseData) GetUserResultByScreenName ¶

func (o *ProfileResponseData) GetUserResultByScreenName() UserResultByScreenName

GetUserResultByScreenName returns the UserResultByScreenName field value

func (*ProfileResponseData) GetUserResultByScreenNameOk ¶

func (o *ProfileResponseData) GetUserResultByScreenNameOk() (*UserResultByScreenName, bool)

GetUserResultByScreenNameOk returns a tuple with the UserResultByScreenName field value and a boolean to check if the value has been set.

func (ProfileResponseData) MarshalJSON ¶

func (o ProfileResponseData) MarshalJSON() ([]byte, error)

func (*ProfileResponseData) SetUserResultByScreenName ¶

func (o *ProfileResponseData) SetUserResultByScreenName(v UserResultByScreenName)

SetUserResultByScreenName sets field value

func (ProfileResponseData) ToMap ¶

func (o ProfileResponseData) ToMap() (map[string]interface{}, error)

func (*ProfileResponseData) UnmarshalJSON ¶

func (o *ProfileResponseData) UnmarshalJSON(data []byte) (err error)

type QuotedRefResult ¶

type QuotedRefResult struct {
	Result *TweetUnion `json:"result,omitempty"`
}

QuotedRefResult struct for QuotedRefResult

func NewQuotedRefResult ¶

func NewQuotedRefResult() *QuotedRefResult

NewQuotedRefResult instantiates a new QuotedRefResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQuotedRefResultWithDefaults ¶

func NewQuotedRefResultWithDefaults() *QuotedRefResult

NewQuotedRefResultWithDefaults instantiates a new QuotedRefResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QuotedRefResult) GetResult ¶

func (o *QuotedRefResult) GetResult() TweetUnion

GetResult returns the Result field value if set, zero value otherwise.

func (*QuotedRefResult) GetResultOk ¶

func (o *QuotedRefResult) GetResultOk() (*TweetUnion, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuotedRefResult) HasResult ¶

func (o *QuotedRefResult) HasResult() bool

HasResult returns a boolean if a field has been set.

func (QuotedRefResult) MarshalJSON ¶

func (o QuotedRefResult) MarshalJSON() ([]byte, error)

func (*QuotedRefResult) SetResult ¶

func (o *QuotedRefResult) SetResult(v TweetUnion)

SetResult gets a reference to the given TweetUnion and assigns it to the Result field.

func (QuotedRefResult) ToMap ¶

func (o QuotedRefResult) ToMap() (map[string]interface{}, error)
type QuotedStatusPermalink struct {
	Display  string `json:"display"`
	Expanded string `json:"expanded"`
	Url      string `json:"url"`
}

QuotedStatusPermalink struct for QuotedStatusPermalink

func NewQuotedStatusPermalink(display string, expanded string, url string) *QuotedStatusPermalink

NewQuotedStatusPermalink instantiates a new QuotedStatusPermalink object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQuotedStatusPermalinkWithDefaults ¶

func NewQuotedStatusPermalinkWithDefaults() *QuotedStatusPermalink

NewQuotedStatusPermalinkWithDefaults instantiates a new QuotedStatusPermalink object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QuotedStatusPermalink) GetDisplay ¶

func (o *QuotedStatusPermalink) GetDisplay() string

GetDisplay returns the Display field value

func (*QuotedStatusPermalink) GetDisplayOk ¶

func (o *QuotedStatusPermalink) GetDisplayOk() (*string, bool)

GetDisplayOk returns a tuple with the Display field value and a boolean to check if the value has been set.

func (*QuotedStatusPermalink) GetExpanded ¶

func (o *QuotedStatusPermalink) GetExpanded() string

GetExpanded returns the Expanded field value

func (*QuotedStatusPermalink) GetExpandedOk ¶

func (o *QuotedStatusPermalink) GetExpandedOk() (*string, bool)

GetExpandedOk returns a tuple with the Expanded field value and a boolean to check if the value has been set.

func (*QuotedStatusPermalink) GetUrl ¶

func (o *QuotedStatusPermalink) GetUrl() string

GetUrl returns the Url field value

func (*QuotedStatusPermalink) GetUrlOk ¶

func (o *QuotedStatusPermalink) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value and a boolean to check if the value has been set.

func (QuotedStatusPermalink) MarshalJSON ¶

func (o QuotedStatusPermalink) MarshalJSON() ([]byte, error)

func (*QuotedStatusPermalink) SetDisplay ¶

func (o *QuotedStatusPermalink) SetDisplay(v string)

SetDisplay sets field value

func (*QuotedStatusPermalink) SetExpanded ¶

func (o *QuotedStatusPermalink) SetExpanded(v string)

SetExpanded sets field value

func (*QuotedStatusPermalink) SetUrl ¶

func (o *QuotedStatusPermalink) SetUrl(v string)

SetUrl sets field value

func (QuotedStatusPermalink) ToMap ¶

func (o QuotedStatusPermalink) ToMap() (map[string]interface{}, error)

func (*QuotedStatusPermalink) UnmarshalJSON ¶

func (o *QuotedStatusPermalink) UnmarshalJSON(data []byte) (err error)

type Retweet ¶

type Retweet struct {
	Legacy RetweetLegacy `json:"legacy"`
	RestId string        `json:"rest_id" validate:"regexp=^[0-9]+$"`
}

Retweet struct for Retweet

func NewRetweet ¶

func NewRetweet(legacy RetweetLegacy, restId string) *Retweet

NewRetweet instantiates a new Retweet object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRetweetWithDefaults ¶

func NewRetweetWithDefaults() *Retweet

NewRetweetWithDefaults instantiates a new Retweet object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Retweet) GetLegacy ¶

func (o *Retweet) GetLegacy() RetweetLegacy

GetLegacy returns the Legacy field value

func (*Retweet) GetLegacyOk ¶

func (o *Retweet) GetLegacyOk() (*RetweetLegacy, bool)

GetLegacyOk returns a tuple with the Legacy field value and a boolean to check if the value has been set.

func (*Retweet) GetRestId ¶

func (o *Retweet) GetRestId() string

GetRestId returns the RestId field value

func (*Retweet) GetRestIdOk ¶

func (o *Retweet) GetRestIdOk() (*string, bool)

GetRestIdOk returns a tuple with the RestId field value and a boolean to check if the value has been set.

func (Retweet) MarshalJSON ¶

func (o Retweet) MarshalJSON() ([]byte, error)

func (*Retweet) SetLegacy ¶

func (o *Retweet) SetLegacy(v RetweetLegacy)

SetLegacy sets field value

func (*Retweet) SetRestId ¶

func (o *Retweet) SetRestId(v string)

SetRestId sets field value

func (Retweet) ToMap ¶

func (o Retweet) ToMap() (map[string]interface{}, error)

func (*Retweet) UnmarshalJSON ¶

func (o *Retweet) UnmarshalJSON(data []byte) (err error)

type RetweetLegacy ¶

type RetweetLegacy struct {
	FullText string `json:"full_text"`
}

RetweetLegacy struct for RetweetLegacy

func NewRetweetLegacy ¶

func NewRetweetLegacy(fullText string) *RetweetLegacy

NewRetweetLegacy instantiates a new RetweetLegacy object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRetweetLegacyWithDefaults ¶

func NewRetweetLegacyWithDefaults() *RetweetLegacy

NewRetweetLegacyWithDefaults instantiates a new RetweetLegacy object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RetweetLegacy) GetFullText ¶

func (o *RetweetLegacy) GetFullText() string

GetFullText returns the FullText field value

func (*RetweetLegacy) GetFullTextOk ¶

func (o *RetweetLegacy) GetFullTextOk() (*string, bool)

GetFullTextOk returns a tuple with the FullText field value and a boolean to check if the value has been set.

func (RetweetLegacy) MarshalJSON ¶

func (o RetweetLegacy) MarshalJSON() ([]byte, error)

func (*RetweetLegacy) SetFullText ¶

func (o *RetweetLegacy) SetFullText(v string)

SetFullText sets field value

func (RetweetLegacy) ToMap ¶

func (o RetweetLegacy) ToMap() (map[string]interface{}, error)

func (*RetweetLegacy) UnmarshalJSON ¶

func (o *RetweetLegacy) UnmarshalJSON(data []byte) (err error)

type SearchByRawQuery ¶

type SearchByRawQuery struct {
	SearchTimeline SearchTimeline `json:"search_timeline"`
}

SearchByRawQuery struct for SearchByRawQuery

func NewSearchByRawQuery ¶

func NewSearchByRawQuery(searchTimeline SearchTimeline) *SearchByRawQuery

NewSearchByRawQuery instantiates a new SearchByRawQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSearchByRawQueryWithDefaults ¶

func NewSearchByRawQueryWithDefaults() *SearchByRawQuery

NewSearchByRawQueryWithDefaults instantiates a new SearchByRawQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SearchByRawQuery) GetSearchTimeline ¶

func (o *SearchByRawQuery) GetSearchTimeline() SearchTimeline

GetSearchTimeline returns the SearchTimeline field value

func (*SearchByRawQuery) GetSearchTimelineOk ¶

func (o *SearchByRawQuery) GetSearchTimelineOk() (*SearchTimeline, bool)

GetSearchTimelineOk returns a tuple with the SearchTimeline field value and a boolean to check if the value has been set.

func (SearchByRawQuery) MarshalJSON ¶

func (o SearchByRawQuery) MarshalJSON() ([]byte, error)

func (*SearchByRawQuery) SetSearchTimeline ¶

func (o *SearchByRawQuery) SetSearchTimeline(v SearchTimeline)

SetSearchTimeline sets field value

func (SearchByRawQuery) ToMap ¶

func (o SearchByRawQuery) ToMap() (map[string]interface{}, error)

func (*SearchByRawQuery) UnmarshalJSON ¶

func (o *SearchByRawQuery) UnmarshalJSON(data []byte) (err error)

type SearchTimeline ¶

type SearchTimeline struct {
	Timeline Timeline `json:"timeline"`
}

SearchTimeline struct for SearchTimeline

func NewSearchTimeline ¶

func NewSearchTimeline(timeline Timeline) *SearchTimeline

NewSearchTimeline instantiates a new SearchTimeline object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSearchTimelineWithDefaults ¶

func NewSearchTimelineWithDefaults() *SearchTimeline

NewSearchTimelineWithDefaults instantiates a new SearchTimeline object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SearchTimeline) GetTimeline ¶

func (o *SearchTimeline) GetTimeline() Timeline

GetTimeline returns the Timeline field value

func (*SearchTimeline) GetTimelineOk ¶

func (o *SearchTimeline) GetTimelineOk() (*Timeline, bool)

GetTimelineOk returns a tuple with the Timeline field value and a boolean to check if the value has been set.

func (SearchTimeline) MarshalJSON ¶

func (o SearchTimeline) MarshalJSON() ([]byte, error)

func (*SearchTimeline) SetTimeline ¶

func (o *SearchTimeline) SetTimeline(v Timeline)

SetTimeline sets field value

func (SearchTimeline) ToMap ¶

func (o SearchTimeline) ToMap() (map[string]interface{}, error)

func (*SearchTimeline) UnmarshalJSON ¶

func (o *SearchTimeline) UnmarshalJSON(data []byte) (err error)

type SearchTimelineData ¶

type SearchTimelineData struct {
	SearchByRawQuery SearchByRawQuery `json:"search_by_raw_query"`
}

SearchTimelineData struct for SearchTimelineData

func NewSearchTimelineData ¶

func NewSearchTimelineData(searchByRawQuery SearchByRawQuery) *SearchTimelineData

NewSearchTimelineData instantiates a new SearchTimelineData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSearchTimelineDataWithDefaults ¶

func NewSearchTimelineDataWithDefaults() *SearchTimelineData

NewSearchTimelineDataWithDefaults instantiates a new SearchTimelineData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SearchTimelineData) GetSearchByRawQuery ¶

func (o *SearchTimelineData) GetSearchByRawQuery() SearchByRawQuery

GetSearchByRawQuery returns the SearchByRawQuery field value

func (*SearchTimelineData) GetSearchByRawQueryOk ¶

func (o *SearchTimelineData) GetSearchByRawQueryOk() (*SearchByRawQuery, bool)

GetSearchByRawQueryOk returns a tuple with the SearchByRawQuery field value and a boolean to check if the value has been set.

func (SearchTimelineData) MarshalJSON ¶

func (o SearchTimelineData) MarshalJSON() ([]byte, error)

func (*SearchTimelineData) SetSearchByRawQuery ¶

func (o *SearchTimelineData) SetSearchByRawQuery(v SearchByRawQuery)

SetSearchByRawQuery sets field value

func (SearchTimelineData) ToMap ¶

func (o SearchTimelineData) ToMap() (map[string]interface{}, error)

func (*SearchTimelineData) UnmarshalJSON ¶

func (o *SearchTimelineData) UnmarshalJSON(data []byte) (err error)

type SearchTimelineResponse ¶

type SearchTimelineResponse struct {
	Data SearchTimelineData `json:"data"`
}

SearchTimelineResponse struct for SearchTimelineResponse

func NewSearchTimelineResponse ¶

func NewSearchTimelineResponse(data SearchTimelineData) *SearchTimelineResponse

NewSearchTimelineResponse instantiates a new SearchTimelineResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSearchTimelineResponseWithDefaults ¶

func NewSearchTimelineResponseWithDefaults() *SearchTimelineResponse

NewSearchTimelineResponseWithDefaults instantiates a new SearchTimelineResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SearchTimelineResponse) GetData ¶

GetData returns the Data field value

func (*SearchTimelineResponse) GetDataOk ¶

func (o *SearchTimelineResponse) GetDataOk() (*SearchTimelineData, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (SearchTimelineResponse) MarshalJSON ¶

func (o SearchTimelineResponse) MarshalJSON() ([]byte, error)

func (*SearchTimelineResponse) SetData ¶

SetData sets field value

func (SearchTimelineResponse) ToMap ¶

func (o SearchTimelineResponse) ToMap() (map[string]interface{}, error)

func (*SearchTimelineResponse) UnmarshalJSON ¶

func (o *SearchTimelineResponse) UnmarshalJSON(data []byte) (err error)

type SelfThread ¶

type SelfThread struct {
	IdStr string `json:"id_str" validate:"regexp=^[0-9]+$"`
}

SelfThread struct for SelfThread

func NewSelfThread ¶

func NewSelfThread(idStr string) *SelfThread

NewSelfThread instantiates a new SelfThread object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSelfThreadWithDefaults ¶

func NewSelfThreadWithDefaults() *SelfThread

NewSelfThreadWithDefaults instantiates a new SelfThread object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SelfThread) GetIdStr ¶

func (o *SelfThread) GetIdStr() string

GetIdStr returns the IdStr field value

func (*SelfThread) GetIdStrOk ¶

func (o *SelfThread) GetIdStrOk() (*string, bool)

GetIdStrOk returns a tuple with the IdStr field value and a boolean to check if the value has been set.

func (SelfThread) MarshalJSON ¶

func (o SelfThread) MarshalJSON() ([]byte, error)

func (*SelfThread) SetIdStr ¶

func (o *SelfThread) SetIdStr(v string)

SetIdStr sets field value

func (SelfThread) ToMap ¶

func (o SelfThread) ToMap() (map[string]interface{}, error)

func (*SelfThread) UnmarshalJSON ¶

func (o *SelfThread) UnmarshalJSON(data []byte) (err error)

type SensitiveMediaWarning ¶

type SensitiveMediaWarning struct {
	AdultContent    bool `json:"adult_content"`
	GraphicViolence bool `json:"graphic_violence"`
	Other           bool `json:"other"`
}

SensitiveMediaWarning struct for SensitiveMediaWarning

func NewSensitiveMediaWarning ¶

func NewSensitiveMediaWarning(adultContent bool, graphicViolence bool, other bool) *SensitiveMediaWarning

NewSensitiveMediaWarning instantiates a new SensitiveMediaWarning object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSensitiveMediaWarningWithDefaults ¶

func NewSensitiveMediaWarningWithDefaults() *SensitiveMediaWarning

NewSensitiveMediaWarningWithDefaults instantiates a new SensitiveMediaWarning object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SensitiveMediaWarning) GetAdultContent ¶

func (o *SensitiveMediaWarning) GetAdultContent() bool

GetAdultContent returns the AdultContent field value

func (*SensitiveMediaWarning) GetAdultContentOk ¶

func (o *SensitiveMediaWarning) GetAdultContentOk() (*bool, bool)

GetAdultContentOk returns a tuple with the AdultContent field value and a boolean to check if the value has been set.

func (*SensitiveMediaWarning) GetGraphicViolence ¶

func (o *SensitiveMediaWarning) GetGraphicViolence() bool

GetGraphicViolence returns the GraphicViolence field value

func (*SensitiveMediaWarning) GetGraphicViolenceOk ¶

func (o *SensitiveMediaWarning) GetGraphicViolenceOk() (*bool, bool)

GetGraphicViolenceOk returns a tuple with the GraphicViolence field value and a boolean to check if the value has been set.

func (*SensitiveMediaWarning) GetOther ¶

func (o *SensitiveMediaWarning) GetOther() bool

GetOther returns the Other field value

func (*SensitiveMediaWarning) GetOtherOk ¶

func (o *SensitiveMediaWarning) GetOtherOk() (*bool, bool)

GetOtherOk returns a tuple with the Other field value and a boolean to check if the value has been set.

func (SensitiveMediaWarning) MarshalJSON ¶

func (o SensitiveMediaWarning) MarshalJSON() ([]byte, error)

func (*SensitiveMediaWarning) SetAdultContent ¶

func (o *SensitiveMediaWarning) SetAdultContent(v bool)

SetAdultContent sets field value

func (*SensitiveMediaWarning) SetGraphicViolence ¶

func (o *SensitiveMediaWarning) SetGraphicViolence(v bool)

SetGraphicViolence sets field value

func (*SensitiveMediaWarning) SetOther ¶

func (o *SensitiveMediaWarning) SetOther(v bool)

SetOther sets field value

func (SensitiveMediaWarning) ToMap ¶

func (o SensitiveMediaWarning) ToMap() (map[string]interface{}, error)

func (*SensitiveMediaWarning) UnmarshalJSON ¶

func (o *SensitiveMediaWarning) UnmarshalJSON(data []byte) (err error)

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 Session ¶

type Session struct {
	SsoInitTokens                 map[string]interface{}    `json:"SsoInitTokens,omitempty"`
	CommunitiesActions            CommunitiesActions        `json:"communitiesActions"`
	Country                       string                    `json:"country" validate:"regexp=^[A-Z]{2}$"`
	GuestId                       string                    `json:"guestId" validate:"regexp=^[0-9]+$"`
	HasCommunityMemberships       bool                      `json:"hasCommunityMemberships"`
	IsActiveCreator               bool                      `json:"isActiveCreator"`
	IsRestrictedSession           bool                      `json:"isRestrictedSession"`
	IsSuperFollowSubscriber       bool                      `json:"isSuperFollowSubscriber"`
	Language                      string                    `json:"language" validate:"regexp=^[a-z]{2}$"`
	OneFactorLoginEligibility     OneFactorLoginEligibility `json:"oneFactorLoginEligibility"`
	SuperFollowersCount           int32                     `json:"superFollowersCount"`
	SuperFollowsApplicationStatus string                    `json:"superFollowsApplicationStatus"`
	UserFeatures                  UserFeatures              `json:"userFeatures"`
	UserId                        string                    `json:"user_id" validate:"regexp=^[0-9]+$"`
}

Session struct for Session

func NewSession ¶

func NewSession(communitiesActions CommunitiesActions, country string, guestId string, hasCommunityMemberships bool, isActiveCreator bool, isRestrictedSession bool, isSuperFollowSubscriber bool, language string, oneFactorLoginEligibility OneFactorLoginEligibility, superFollowersCount int32, superFollowsApplicationStatus string, userFeatures UserFeatures, userId string) *Session

NewSession instantiates a new Session object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSessionWithDefaults ¶

func NewSessionWithDefaults() *Session

NewSessionWithDefaults instantiates a new Session object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Session) GetCommunitiesActions ¶

func (o *Session) GetCommunitiesActions() CommunitiesActions

GetCommunitiesActions returns the CommunitiesActions field value

func (*Session) GetCommunitiesActionsOk ¶

func (o *Session) GetCommunitiesActionsOk() (*CommunitiesActions, bool)

GetCommunitiesActionsOk returns a tuple with the CommunitiesActions field value and a boolean to check if the value has been set.

func (*Session) GetCountry ¶

func (o *Session) GetCountry() string

GetCountry returns the Country field value

func (*Session) GetCountryOk ¶

func (o *Session) GetCountryOk() (*string, bool)

GetCountryOk returns a tuple with the Country field value and a boolean to check if the value has been set.

func (*Session) GetGuestId ¶

func (o *Session) GetGuestId() string

GetGuestId returns the GuestId field value

func (*Session) GetGuestIdOk ¶

func (o *Session) GetGuestIdOk() (*string, bool)

GetGuestIdOk returns a tuple with the GuestId field value and a boolean to check if the value has been set.

func (*Session) GetHasCommunityMemberships ¶

func (o *Session) GetHasCommunityMemberships() bool

GetHasCommunityMemberships returns the HasCommunityMemberships field value

func (*Session) GetHasCommunityMembershipsOk ¶

func (o *Session) GetHasCommunityMembershipsOk() (*bool, bool)

GetHasCommunityMembershipsOk returns a tuple with the HasCommunityMemberships field value and a boolean to check if the value has been set.

func (*Session) GetIsActiveCreator ¶

func (o *Session) GetIsActiveCreator() bool

GetIsActiveCreator returns the IsActiveCreator field value

func (*Session) GetIsActiveCreatorOk ¶

func (o *Session) GetIsActiveCreatorOk() (*bool, bool)

GetIsActiveCreatorOk returns a tuple with the IsActiveCreator field value and a boolean to check if the value has been set.

func (*Session) GetIsRestrictedSession ¶

func (o *Session) GetIsRestrictedSession() bool

GetIsRestrictedSession returns the IsRestrictedSession field value

func (*Session) GetIsRestrictedSessionOk ¶

func (o *Session) GetIsRestrictedSessionOk() (*bool, bool)

GetIsRestrictedSessionOk returns a tuple with the IsRestrictedSession field value and a boolean to check if the value has been set.

func (*Session) GetIsSuperFollowSubscriber ¶

func (o *Session) GetIsSuperFollowSubscriber() bool

GetIsSuperFollowSubscriber returns the IsSuperFollowSubscriber field value

func (*Session) GetIsSuperFollowSubscriberOk ¶

func (o *Session) GetIsSuperFollowSubscriberOk() (*bool, bool)

GetIsSuperFollowSubscriberOk returns a tuple with the IsSuperFollowSubscriber field value and a boolean to check if the value has been set.

func (*Session) GetLanguage ¶

func (o *Session) GetLanguage() string

GetLanguage returns the Language field value

func (*Session) GetLanguageOk ¶

func (o *Session) GetLanguageOk() (*string, bool)

GetLanguageOk returns a tuple with the Language field value and a boolean to check if the value has been set.

func (*Session) GetOneFactorLoginEligibility ¶

func (o *Session) GetOneFactorLoginEligibility() OneFactorLoginEligibility

GetOneFactorLoginEligibility returns the OneFactorLoginEligibility field value

func (*Session) GetOneFactorLoginEligibilityOk ¶

func (o *Session) GetOneFactorLoginEligibilityOk() (*OneFactorLoginEligibility, bool)

GetOneFactorLoginEligibilityOk returns a tuple with the OneFactorLoginEligibility field value and a boolean to check if the value has been set.

func (*Session) GetSsoInitTokens ¶

func (o *Session) GetSsoInitTokens() map[string]interface{}

GetSsoInitTokens returns the SsoInitTokens field value if set, zero value otherwise.

func (*Session) GetSsoInitTokensOk ¶

func (o *Session) GetSsoInitTokensOk() (map[string]interface{}, bool)

GetSsoInitTokensOk returns a tuple with the SsoInitTokens field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Session) GetSuperFollowersCount ¶

func (o *Session) GetSuperFollowersCount() int32

GetSuperFollowersCount returns the SuperFollowersCount field value

func (*Session) GetSuperFollowersCountOk ¶

func (o *Session) GetSuperFollowersCountOk() (*int32, bool)

GetSuperFollowersCountOk returns a tuple with the SuperFollowersCount field value and a boolean to check if the value has been set.

func (*Session) GetSuperFollowsApplicationStatus ¶

func (o *Session) GetSuperFollowsApplicationStatus() string

GetSuperFollowsApplicationStatus returns the SuperFollowsApplicationStatus field value

func (*Session) GetSuperFollowsApplicationStatusOk ¶

func (o *Session) GetSuperFollowsApplicationStatusOk() (*string, bool)

GetSuperFollowsApplicationStatusOk returns a tuple with the SuperFollowsApplicationStatus field value and a boolean to check if the value has been set.

func (*Session) GetUserFeatures ¶

func (o *Session) GetUserFeatures() UserFeatures

GetUserFeatures returns the UserFeatures field value

func (*Session) GetUserFeaturesOk ¶

func (o *Session) GetUserFeaturesOk() (*UserFeatures, bool)

GetUserFeaturesOk returns a tuple with the UserFeatures field value and a boolean to check if the value has been set.

func (*Session) GetUserId ¶

func (o *Session) GetUserId() string

GetUserId returns the UserId field value

func (*Session) GetUserIdOk ¶

func (o *Session) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId field value and a boolean to check if the value has been set.

func (*Session) HasSsoInitTokens ¶

func (o *Session) HasSsoInitTokens() bool

HasSsoInitTokens returns a boolean if a field has been set.

func (Session) MarshalJSON ¶

func (o Session) MarshalJSON() ([]byte, error)

func (*Session) SetCommunitiesActions ¶

func (o *Session) SetCommunitiesActions(v CommunitiesActions)

SetCommunitiesActions sets field value

func (*Session) SetCountry ¶

func (o *Session) SetCountry(v string)

SetCountry sets field value

func (*Session) SetGuestId ¶

func (o *Session) SetGuestId(v string)

SetGuestId sets field value

func (*Session) SetHasCommunityMemberships ¶

func (o *Session) SetHasCommunityMemberships(v bool)

SetHasCommunityMemberships sets field value

func (*Session) SetIsActiveCreator ¶

func (o *Session) SetIsActiveCreator(v bool)

SetIsActiveCreator sets field value

func (*Session) SetIsRestrictedSession ¶

func (o *Session) SetIsRestrictedSession(v bool)

SetIsRestrictedSession sets field value

func (*Session) SetIsSuperFollowSubscriber ¶

func (o *Session) SetIsSuperFollowSubscriber(v bool)

SetIsSuperFollowSubscriber sets field value

func (*Session) SetLanguage ¶

func (o *Session) SetLanguage(v string)

SetLanguage sets field value

func (*Session) SetOneFactorLoginEligibility ¶

func (o *Session) SetOneFactorLoginEligibility(v OneFactorLoginEligibility)

SetOneFactorLoginEligibility sets field value

func (*Session) SetSsoInitTokens ¶

func (o *Session) SetSsoInitTokens(v map[string]interface{})

SetSsoInitTokens gets a reference to the given map[string]interface{} and assigns it to the SsoInitTokens field.

func (*Session) SetSuperFollowersCount ¶

func (o *Session) SetSuperFollowersCount(v int32)

SetSuperFollowersCount sets field value

func (*Session) SetSuperFollowsApplicationStatus ¶

func (o *Session) SetSuperFollowsApplicationStatus(v string)

SetSuperFollowsApplicationStatus sets field value

func (*Session) SetUserFeatures ¶

func (o *Session) SetUserFeatures(v UserFeatures)

SetUserFeatures sets field value

func (*Session) SetUserId ¶

func (o *Session) SetUserId(v string)

SetUserId sets field value

func (Session) ToMap ¶

func (o Session) ToMap() (map[string]interface{}, error)

func (*Session) UnmarshalJSON ¶

func (o *Session) UnmarshalJSON(data []byte) (err error)

type SocialContextLandingUrl ¶

type SocialContextLandingUrl struct {
	Url                *string             `json:"url,omitempty"`
	UrlType            *string             `json:"urlType,omitempty"`
	UrtEndpointOptions *UrtEndpointOptions `json:"urtEndpointOptions,omitempty"`
}

SocialContextLandingUrl struct for SocialContextLandingUrl

func NewSocialContextLandingUrl ¶

func NewSocialContextLandingUrl() *SocialContextLandingUrl

NewSocialContextLandingUrl instantiates a new SocialContextLandingUrl object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSocialContextLandingUrlWithDefaults ¶

func NewSocialContextLandingUrlWithDefaults() *SocialContextLandingUrl

NewSocialContextLandingUrlWithDefaults instantiates a new SocialContextLandingUrl object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SocialContextLandingUrl) GetUrl ¶

func (o *SocialContextLandingUrl) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*SocialContextLandingUrl) GetUrlOk ¶

func (o *SocialContextLandingUrl) 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 (*SocialContextLandingUrl) GetUrlType ¶

func (o *SocialContextLandingUrl) GetUrlType() string

GetUrlType returns the UrlType field value if set, zero value otherwise.

func (*SocialContextLandingUrl) GetUrlTypeOk ¶

func (o *SocialContextLandingUrl) GetUrlTypeOk() (*string, bool)

GetUrlTypeOk returns a tuple with the UrlType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SocialContextLandingUrl) GetUrtEndpointOptions ¶

func (o *SocialContextLandingUrl) GetUrtEndpointOptions() UrtEndpointOptions

GetUrtEndpointOptions returns the UrtEndpointOptions field value if set, zero value otherwise.

func (*SocialContextLandingUrl) GetUrtEndpointOptionsOk ¶

func (o *SocialContextLandingUrl) GetUrtEndpointOptionsOk() (*UrtEndpointOptions, bool)

GetUrtEndpointOptionsOk returns a tuple with the UrtEndpointOptions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SocialContextLandingUrl) HasUrl ¶

func (o *SocialContextLandingUrl) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (*SocialContextLandingUrl) HasUrlType ¶

func (o *SocialContextLandingUrl) HasUrlType() bool

HasUrlType returns a boolean if a field has been set.

func (*SocialContextLandingUrl) HasUrtEndpointOptions ¶

func (o *SocialContextLandingUrl) HasUrtEndpointOptions() bool

HasUrtEndpointOptions returns a boolean if a field has been set.

func (SocialContextLandingUrl) MarshalJSON ¶

func (o SocialContextLandingUrl) MarshalJSON() ([]byte, error)

func (*SocialContextLandingUrl) SetUrl ¶

func (o *SocialContextLandingUrl) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (*SocialContextLandingUrl) SetUrlType ¶

func (o *SocialContextLandingUrl) SetUrlType(v string)

SetUrlType gets a reference to the given string and assigns it to the UrlType field.

func (*SocialContextLandingUrl) SetUrtEndpointOptions ¶

func (o *SocialContextLandingUrl) SetUrtEndpointOptions(v UrtEndpointOptions)

SetUrtEndpointOptions gets a reference to the given UrtEndpointOptions and assigns it to the UrtEndpointOptions field.

func (SocialContextLandingUrl) ToMap ¶

func (o SocialContextLandingUrl) ToMap() (map[string]interface{}, error)

type SocialContextUnion ¶

type SocialContextUnion struct {
	TimelineGeneralContext *TimelineGeneralContext
	TimelineTopicContext   *TimelineTopicContext
}

SocialContextUnion - struct for SocialContextUnion

func TimelineGeneralContextAsSocialContextUnion ¶

func TimelineGeneralContextAsSocialContextUnion(v *TimelineGeneralContext) SocialContextUnion

TimelineGeneralContextAsSocialContextUnion is a convenience function that returns TimelineGeneralContext wrapped in SocialContextUnion

func TimelineTopicContextAsSocialContextUnion ¶

func TimelineTopicContextAsSocialContextUnion(v *TimelineTopicContext) SocialContextUnion

TimelineTopicContextAsSocialContextUnion is a convenience function that returns TimelineTopicContext wrapped in SocialContextUnion

func (*SocialContextUnion) GetActualInstance ¶

func (obj *SocialContextUnion) GetActualInstance() interface{}

Get the actual instance

func (SocialContextUnion) MarshalJSON ¶

func (src SocialContextUnion) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SocialContextUnion) UnmarshalJSON ¶

func (dst *SocialContextUnion) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type SocialContextUnionType ¶

type SocialContextUnionType string

SocialContextUnionType the model 'SocialContextUnionType'

const (
	TIMELINE_GENERAL_CONTEXT SocialContextUnionType = "TimelineGeneralContext"
	TIMELINE_TOPIC_CONTEXT   SocialContextUnionType = "TimelineTopicContext"
)

List of SocialContextUnionType

func NewSocialContextUnionTypeFromValue ¶

func NewSocialContextUnionTypeFromValue(v string) (*SocialContextUnionType, error)

NewSocialContextUnionTypeFromValue returns a pointer to a valid SocialContextUnionType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (SocialContextUnionType) IsValid ¶

func (v SocialContextUnionType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (SocialContextUnionType) Ptr ¶

Ptr returns reference to SocialContextUnionType value

func (*SocialContextUnionType) UnmarshalJSON ¶

func (v *SocialContextUnionType) UnmarshalJSON(src []byte) error

type SuperFollowsReplyUserResult ¶

type SuperFollowsReplyUserResult struct {
	Result SuperFollowsReplyUserResultData `json:"result"`
}

SuperFollowsReplyUserResult struct for SuperFollowsReplyUserResult

func NewSuperFollowsReplyUserResult ¶

func NewSuperFollowsReplyUserResult(result SuperFollowsReplyUserResultData) *SuperFollowsReplyUserResult

NewSuperFollowsReplyUserResult instantiates a new SuperFollowsReplyUserResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSuperFollowsReplyUserResultWithDefaults ¶

func NewSuperFollowsReplyUserResultWithDefaults() *SuperFollowsReplyUserResult

NewSuperFollowsReplyUserResultWithDefaults instantiates a new SuperFollowsReplyUserResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SuperFollowsReplyUserResult) GetResult ¶

GetResult returns the Result field value

func (*SuperFollowsReplyUserResult) GetResultOk ¶

GetResultOk returns a tuple with the Result field value and a boolean to check if the value has been set.

func (SuperFollowsReplyUserResult) MarshalJSON ¶

func (o SuperFollowsReplyUserResult) MarshalJSON() ([]byte, error)

func (*SuperFollowsReplyUserResult) SetResult ¶

SetResult sets field value

func (SuperFollowsReplyUserResult) ToMap ¶

func (o SuperFollowsReplyUserResult) ToMap() (map[string]interface{}, error)

func (*SuperFollowsReplyUserResult) UnmarshalJSON ¶

func (o *SuperFollowsReplyUserResult) UnmarshalJSON(data []byte) (err error)

type SuperFollowsReplyUserResultData ¶

type SuperFollowsReplyUserResultData struct {
	Typename TypeName                          `json:"__typename"`
	Legacy   SuperFollowsReplyUserResultLegacy `json:"legacy"`
}

SuperFollowsReplyUserResultData struct for SuperFollowsReplyUserResultData

func NewSuperFollowsReplyUserResultData ¶

func NewSuperFollowsReplyUserResultData(typename TypeName, legacy SuperFollowsReplyUserResultLegacy) *SuperFollowsReplyUserResultData

NewSuperFollowsReplyUserResultData instantiates a new SuperFollowsReplyUserResultData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSuperFollowsReplyUserResultDataWithDefaults ¶

func NewSuperFollowsReplyUserResultDataWithDefaults() *SuperFollowsReplyUserResultData

NewSuperFollowsReplyUserResultDataWithDefaults instantiates a new SuperFollowsReplyUserResultData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SuperFollowsReplyUserResultData) GetLegacy ¶

GetLegacy returns the Legacy field value

func (*SuperFollowsReplyUserResultData) GetLegacyOk ¶

GetLegacyOk returns a tuple with the Legacy field value and a boolean to check if the value has been set.

func (*SuperFollowsReplyUserResultData) GetTypename ¶

func (o *SuperFollowsReplyUserResultData) GetTypename() TypeName

GetTypename returns the Typename field value

func (*SuperFollowsReplyUserResultData) GetTypenameOk ¶

func (o *SuperFollowsReplyUserResultData) GetTypenameOk() (*TypeName, bool)

GetTypenameOk returns a tuple with the Typename field value and a boolean to check if the value has been set.

func (SuperFollowsReplyUserResultData) MarshalJSON ¶

func (o SuperFollowsReplyUserResultData) MarshalJSON() ([]byte, error)

func (*SuperFollowsReplyUserResultData) SetLegacy ¶

SetLegacy sets field value

func (*SuperFollowsReplyUserResultData) SetTypename ¶

func (o *SuperFollowsReplyUserResultData) SetTypename(v TypeName)

SetTypename sets field value

func (SuperFollowsReplyUserResultData) ToMap ¶

func (o SuperFollowsReplyUserResultData) ToMap() (map[string]interface{}, error)

func (*SuperFollowsReplyUserResultData) UnmarshalJSON ¶

func (o *SuperFollowsReplyUserResultData) UnmarshalJSON(data []byte) (err error)

type SuperFollowsReplyUserResultLegacy ¶

type SuperFollowsReplyUserResultLegacy struct {
	ScreenName string `json:"screen_name"`
}

SuperFollowsReplyUserResultLegacy struct for SuperFollowsReplyUserResultLegacy

func NewSuperFollowsReplyUserResultLegacy ¶

func NewSuperFollowsReplyUserResultLegacy(screenName string) *SuperFollowsReplyUserResultLegacy

NewSuperFollowsReplyUserResultLegacy instantiates a new SuperFollowsReplyUserResultLegacy object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSuperFollowsReplyUserResultLegacyWithDefaults ¶

func NewSuperFollowsReplyUserResultLegacyWithDefaults() *SuperFollowsReplyUserResultLegacy

NewSuperFollowsReplyUserResultLegacyWithDefaults instantiates a new SuperFollowsReplyUserResultLegacy object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SuperFollowsReplyUserResultLegacy) GetScreenName ¶

func (o *SuperFollowsReplyUserResultLegacy) GetScreenName() string

GetScreenName returns the ScreenName field value

func (*SuperFollowsReplyUserResultLegacy) GetScreenNameOk ¶

func (o *SuperFollowsReplyUserResultLegacy) GetScreenNameOk() (*string, bool)

GetScreenNameOk returns a tuple with the ScreenName field value and a boolean to check if the value has been set.

func (SuperFollowsReplyUserResultLegacy) MarshalJSON ¶

func (o SuperFollowsReplyUserResultLegacy) MarshalJSON() ([]byte, error)

func (*SuperFollowsReplyUserResultLegacy) SetScreenName ¶

func (o *SuperFollowsReplyUserResultLegacy) SetScreenName(v string)

SetScreenName sets field value

func (SuperFollowsReplyUserResultLegacy) ToMap ¶

func (o SuperFollowsReplyUserResultLegacy) ToMap() (map[string]interface{}, error)

func (*SuperFollowsReplyUserResultLegacy) UnmarshalJSON ¶

func (o *SuperFollowsReplyUserResultLegacy) UnmarshalJSON(data []byte) (err error)

type Text ¶

type Text struct {
	Entities []TextEntity `json:"entities"`
	Text     string       `json:"text"`
}

Text struct for Text

func NewText ¶

func NewText(entities []TextEntity, text string) *Text

NewText instantiates a new Text object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTextWithDefaults ¶

func NewTextWithDefaults() *Text

NewTextWithDefaults instantiates a new Text object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Text) GetEntities ¶

func (o *Text) GetEntities() []TextEntity

GetEntities returns the Entities field value

func (*Text) GetEntitiesOk ¶

func (o *Text) GetEntitiesOk() ([]TextEntity, bool)

GetEntitiesOk returns a tuple with the Entities field value and a boolean to check if the value has been set.

func (*Text) GetText ¶

func (o *Text) GetText() string

GetText returns the Text field value

func (*Text) GetTextOk ¶

func (o *Text) GetTextOk() (*string, bool)

GetTextOk returns a tuple with the Text field value and a boolean to check if the value has been set.

func (Text) MarshalJSON ¶

func (o Text) MarshalJSON() ([]byte, error)

func (*Text) SetEntities ¶

func (o *Text) SetEntities(v []TextEntity)

SetEntities sets field value

func (*Text) SetText ¶

func (o *Text) SetText(v string)

SetText sets field value

func (Text) ToMap ¶

func (o Text) ToMap() (map[string]interface{}, error)

func (*Text) UnmarshalJSON ¶

func (o *Text) UnmarshalJSON(data []byte) (err error)

type TextEntity ¶

type TextEntity struct {
	FromIndex int32         `json:"fromIndex"`
	Ref       TextEntityRef `json:"ref"`
	ToIndex   int32         `json:"toIndex"`
}

TextEntity struct for TextEntity

func NewTextEntity ¶

func NewTextEntity(fromIndex int32, ref TextEntityRef, toIndex int32) *TextEntity

NewTextEntity instantiates a new TextEntity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTextEntityWithDefaults ¶

func NewTextEntityWithDefaults() *TextEntity

NewTextEntityWithDefaults instantiates a new TextEntity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TextEntity) GetFromIndex ¶

func (o *TextEntity) GetFromIndex() int32

GetFromIndex returns the FromIndex field value

func (*TextEntity) GetFromIndexOk ¶

func (o *TextEntity) GetFromIndexOk() (*int32, bool)

GetFromIndexOk returns a tuple with the FromIndex field value and a boolean to check if the value has been set.

func (*TextEntity) GetRef ¶

func (o *TextEntity) GetRef() TextEntityRef

GetRef returns the Ref field value

func (*TextEntity) GetRefOk ¶

func (o *TextEntity) GetRefOk() (*TextEntityRef, bool)

GetRefOk returns a tuple with the Ref field value and a boolean to check if the value has been set.

func (*TextEntity) GetToIndex ¶

func (o *TextEntity) GetToIndex() int32

GetToIndex returns the ToIndex field value

func (*TextEntity) GetToIndexOk ¶

func (o *TextEntity) GetToIndexOk() (*int32, bool)

GetToIndexOk returns a tuple with the ToIndex field value and a boolean to check if the value has been set.

func (TextEntity) MarshalJSON ¶

func (o TextEntity) MarshalJSON() ([]byte, error)

func (*TextEntity) SetFromIndex ¶

func (o *TextEntity) SetFromIndex(v int32)

SetFromIndex sets field value

func (*TextEntity) SetRef ¶

func (o *TextEntity) SetRef(v TextEntityRef)

SetRef sets field value

func (*TextEntity) SetToIndex ¶

func (o *TextEntity) SetToIndex(v int32)

SetToIndex sets field value

func (TextEntity) ToMap ¶

func (o TextEntity) ToMap() (map[string]interface{}, error)

func (*TextEntity) UnmarshalJSON ¶

func (o *TextEntity) UnmarshalJSON(data []byte) (err error)

type TextEntityRef ¶

type TextEntityRef struct {
	Type    string `json:"type"`
	Url     string `json:"url"`
	UrlType string `json:"urlType"`
}

TextEntityRef struct for TextEntityRef

func NewTextEntityRef ¶

func NewTextEntityRef(type_ string, url string, urlType string) *TextEntityRef

NewTextEntityRef instantiates a new TextEntityRef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTextEntityRefWithDefaults ¶

func NewTextEntityRefWithDefaults() *TextEntityRef

NewTextEntityRefWithDefaults instantiates a new TextEntityRef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TextEntityRef) GetType ¶

func (o *TextEntityRef) GetType() string

GetType returns the Type field value

func (*TextEntityRef) GetTypeOk ¶

func (o *TextEntityRef) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*TextEntityRef) GetUrl ¶

func (o *TextEntityRef) GetUrl() string

GetUrl returns the Url field value

func (*TextEntityRef) GetUrlOk ¶

func (o *TextEntityRef) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value and a boolean to check if the value has been set.

func (*TextEntityRef) GetUrlType ¶

func (o *TextEntityRef) GetUrlType() string

GetUrlType returns the UrlType field value

func (*TextEntityRef) GetUrlTypeOk ¶

func (o *TextEntityRef) GetUrlTypeOk() (*string, bool)

GetUrlTypeOk returns a tuple with the UrlType field value and a boolean to check if the value has been set.

func (TextEntityRef) MarshalJSON ¶

func (o TextEntityRef) MarshalJSON() ([]byte, error)

func (*TextEntityRef) SetType ¶

func (o *TextEntityRef) SetType(v string)

SetType sets field value

func (*TextEntityRef) SetUrl ¶

func (o *TextEntityRef) SetUrl(v string)

SetUrl sets field value

func (*TextEntityRef) SetUrlType ¶

func (o *TextEntityRef) SetUrlType(v string)

SetUrlType sets field value

func (TextEntityRef) ToMap ¶

func (o TextEntityRef) ToMap() (map[string]interface{}, error)

func (*TextEntityRef) UnmarshalJSON ¶

func (o *TextEntityRef) UnmarshalJSON(data []byte) (err error)

type TextHighlight ¶

type TextHighlight struct {
	EndIndex   int32 `json:"endIndex"`
	StartIndex int32 `json:"startIndex"`
}

TextHighlight struct for TextHighlight

func NewTextHighlight ¶

func NewTextHighlight(endIndex int32, startIndex int32) *TextHighlight

NewTextHighlight instantiates a new TextHighlight object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTextHighlightWithDefaults ¶

func NewTextHighlightWithDefaults() *TextHighlight

NewTextHighlightWithDefaults instantiates a new TextHighlight object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TextHighlight) GetEndIndex ¶

func (o *TextHighlight) GetEndIndex() int32

GetEndIndex returns the EndIndex field value

func (*TextHighlight) GetEndIndexOk ¶

func (o *TextHighlight) GetEndIndexOk() (*int32, bool)

GetEndIndexOk returns a tuple with the EndIndex field value and a boolean to check if the value has been set.

func (*TextHighlight) GetStartIndex ¶

func (o *TextHighlight) GetStartIndex() int32

GetStartIndex returns the StartIndex field value

func (*TextHighlight) GetStartIndexOk ¶

func (o *TextHighlight) GetStartIndexOk() (*int32, bool)

GetStartIndexOk returns a tuple with the StartIndex field value and a boolean to check if the value has been set.

func (TextHighlight) MarshalJSON ¶

func (o TextHighlight) MarshalJSON() ([]byte, error)

func (*TextHighlight) SetEndIndex ¶

func (o *TextHighlight) SetEndIndex(v int32)

SetEndIndex sets field value

func (*TextHighlight) SetStartIndex ¶

func (o *TextHighlight) SetStartIndex(v int32)

SetStartIndex sets field value

func (TextHighlight) ToMap ¶

func (o TextHighlight) ToMap() (map[string]interface{}, error)

func (*TextHighlight) UnmarshalJSON ¶

func (o *TextHighlight) UnmarshalJSON(data []byte) (err error)

type Timeline ¶

type Timeline struct {
	Instructions    []InstructionUnion     `json:"instructions"`
	Metadata        map[string]interface{} `json:"metadata,omitempty"`
	ResponseObjects map[string]interface{} `json:"responseObjects,omitempty"`
}

Timeline struct for Timeline

func NewTimeline ¶

func NewTimeline(instructions []InstructionUnion) *Timeline

NewTimeline instantiates a new Timeline object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimelineWithDefaults ¶

func NewTimelineWithDefaults() *Timeline

NewTimelineWithDefaults instantiates a new Timeline object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Timeline) GetInstructions ¶

func (o *Timeline) GetInstructions() []InstructionUnion

GetInstructions returns the Instructions field value

func (*Timeline) GetInstructionsOk ¶

func (o *Timeline) GetInstructionsOk() ([]InstructionUnion, bool)

GetInstructionsOk returns a tuple with the Instructions field value and a boolean to check if the value has been set.

func (*Timeline) GetMetadata ¶

func (o *Timeline) GetMetadata() map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Timeline) GetMetadataOk ¶

func (o *Timeline) GetMetadataOk() (map[string]interface{}, bool)

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 (*Timeline) GetResponseObjects ¶

func (o *Timeline) GetResponseObjects() map[string]interface{}

GetResponseObjects returns the ResponseObjects field value if set, zero value otherwise.

func (*Timeline) GetResponseObjectsOk ¶

func (o *Timeline) GetResponseObjectsOk() (map[string]interface{}, bool)

GetResponseObjectsOk returns a tuple with the ResponseObjects field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Timeline) HasMetadata ¶

func (o *Timeline) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Timeline) HasResponseObjects ¶

func (o *Timeline) HasResponseObjects() bool

HasResponseObjects returns a boolean if a field has been set.

func (Timeline) MarshalJSON ¶

func (o Timeline) MarshalJSON() ([]byte, error)

func (*Timeline) SetInstructions ¶

func (o *Timeline) SetInstructions(v []InstructionUnion)

SetInstructions sets field value

func (*Timeline) SetMetadata ¶

func (o *Timeline) SetMetadata(v map[string]interface{})

SetMetadata gets a reference to the given map[string]interface{} and assigns it to the Metadata field.

func (*Timeline) SetResponseObjects ¶

func (o *Timeline) SetResponseObjects(v map[string]interface{})

SetResponseObjects gets a reference to the given map[string]interface{} and assigns it to the ResponseObjects field.

func (Timeline) ToMap ¶

func (o Timeline) ToMap() (map[string]interface{}, error)

func (*Timeline) UnmarshalJSON ¶

func (o *Timeline) UnmarshalJSON(data []byte) (err error)

type TimelineAddEntries ¶

type TimelineAddEntries struct {
	Entries []TimelineAddEntry `json:"entries"`
	Type    InstructionType    `json:"type"`
}

TimelineAddEntries struct for TimelineAddEntries

func NewTimelineAddEntries ¶

func NewTimelineAddEntries(entries []TimelineAddEntry, type_ InstructionType) *TimelineAddEntries

NewTimelineAddEntries instantiates a new TimelineAddEntries object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimelineAddEntriesWithDefaults ¶

func NewTimelineAddEntriesWithDefaults() *TimelineAddEntries

NewTimelineAddEntriesWithDefaults instantiates a new TimelineAddEntries object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimelineAddEntries) GetEntries ¶

func (o *TimelineAddEntries) GetEntries() []TimelineAddEntry

GetEntries returns the Entries field value

func (*TimelineAddEntries) GetEntriesOk ¶

func (o *TimelineAddEntries) GetEntriesOk() ([]TimelineAddEntry, bool)

GetEntriesOk returns a tuple with the Entries field value and a boolean to check if the value has been set.

func (*TimelineAddEntries) GetType ¶

func (o *TimelineAddEntries) GetType() InstructionType

GetType returns the Type field value

func (*TimelineAddEntries) GetTypeOk ¶

func (o *TimelineAddEntries) GetTypeOk() (*InstructionType, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (TimelineAddEntries) MarshalJSON ¶

func (o TimelineAddEntries) MarshalJSON() ([]byte, error)

func (*TimelineAddEntries) SetEntries ¶

func (o *TimelineAddEntries) SetEntries(v []TimelineAddEntry)

SetEntries sets field value

func (*TimelineAddEntries) SetType ¶

func (o *TimelineAddEntries) SetType(v InstructionType)

SetType sets field value

func (TimelineAddEntries) ToMap ¶

func (o TimelineAddEntries) ToMap() (map[string]interface{}, error)

func (*TimelineAddEntries) UnmarshalJSON ¶

func (o *TimelineAddEntries) UnmarshalJSON(data []byte) (err error)

type TimelineAddEntry ¶

type TimelineAddEntry struct {
	Content   ContentUnion `json:"content"`
	EntryId   string       `json:"entryId" validate:"regexp=^(([a-z]+|[0-9]+|[0-9a-f]+)(-|$))+"`
	SortIndex string       `json:"sortIndex" validate:"regexp=[0-9]+$"`
}

TimelineAddEntry struct for TimelineAddEntry

func NewTimelineAddEntry ¶

func NewTimelineAddEntry(content ContentUnion, entryId string, sortIndex string) *TimelineAddEntry

NewTimelineAddEntry instantiates a new TimelineAddEntry object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimelineAddEntryWithDefaults ¶

func NewTimelineAddEntryWithDefaults() *TimelineAddEntry

NewTimelineAddEntryWithDefaults instantiates a new TimelineAddEntry object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimelineAddEntry) GetContent ¶

func (o *TimelineAddEntry) GetContent() ContentUnion

GetContent returns the Content field value

func (*TimelineAddEntry) GetContentOk ¶

func (o *TimelineAddEntry) GetContentOk() (*ContentUnion, bool)

GetContentOk returns a tuple with the Content field value and a boolean to check if the value has been set.

func (*TimelineAddEntry) GetEntryId ¶

func (o *TimelineAddEntry) GetEntryId() string

GetEntryId returns the EntryId field value

func (*TimelineAddEntry) GetEntryIdOk ¶

func (o *TimelineAddEntry) GetEntryIdOk() (*string, bool)

GetEntryIdOk returns a tuple with the EntryId field value and a boolean to check if the value has been set.

func (*TimelineAddEntry) GetSortIndex ¶

func (o *TimelineAddEntry) GetSortIndex() string

GetSortIndex returns the SortIndex field value

func (*TimelineAddEntry) GetSortIndexOk ¶

func (o *TimelineAddEntry) GetSortIndexOk() (*string, bool)

GetSortIndexOk returns a tuple with the SortIndex field value and a boolean to check if the value has been set.

func (TimelineAddEntry) MarshalJSON ¶

func (o TimelineAddEntry) MarshalJSON() ([]byte, error)

func (*TimelineAddEntry) SetContent ¶

func (o *TimelineAddEntry) SetContent(v ContentUnion)

SetContent sets field value

func (*TimelineAddEntry) SetEntryId ¶

func (o *TimelineAddEntry) SetEntryId(v string)

SetEntryId sets field value

func (*TimelineAddEntry) SetSortIndex ¶

func (o *TimelineAddEntry) SetSortIndex(v string)

SetSortIndex sets field value

func (TimelineAddEntry) ToMap ¶

func (o TimelineAddEntry) ToMap() (map[string]interface{}, error)

func (*TimelineAddEntry) UnmarshalJSON ¶

func (o *TimelineAddEntry) UnmarshalJSON(data []byte) (err error)

type TimelineAddToModule ¶

type TimelineAddToModule struct {
	ModuleEntryId string          `json:"moduleEntryId"`
	ModuleItems   []ModuleItem    `json:"moduleItems"`
	Prepend       *bool           `json:"prepend,omitempty"`
	Type          InstructionType `json:"type"`
}

TimelineAddToModule struct for TimelineAddToModule

func NewTimelineAddToModule ¶

func NewTimelineAddToModule(moduleEntryId string, moduleItems []ModuleItem, type_ InstructionType) *TimelineAddToModule

NewTimelineAddToModule instantiates a new TimelineAddToModule object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimelineAddToModuleWithDefaults ¶

func NewTimelineAddToModuleWithDefaults() *TimelineAddToModule

NewTimelineAddToModuleWithDefaults instantiates a new TimelineAddToModule object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimelineAddToModule) GetModuleEntryId ¶

func (o *TimelineAddToModule) GetModuleEntryId() string

GetModuleEntryId returns the ModuleEntryId field value

func (*TimelineAddToModule) GetModuleEntryIdOk ¶

func (o *TimelineAddToModule) GetModuleEntryIdOk() (*string, bool)

GetModuleEntryIdOk returns a tuple with the ModuleEntryId field value and a boolean to check if the value has been set.

func (*TimelineAddToModule) GetModuleItems ¶

func (o *TimelineAddToModule) GetModuleItems() []ModuleItem

GetModuleItems returns the ModuleItems field value

func (*TimelineAddToModule) GetModuleItemsOk ¶

func (o *TimelineAddToModule) GetModuleItemsOk() ([]ModuleItem, bool)

GetModuleItemsOk returns a tuple with the ModuleItems field value and a boolean to check if the value has been set.

func (*TimelineAddToModule) GetPrepend ¶

func (o *TimelineAddToModule) GetPrepend() bool

GetPrepend returns the Prepend field value if set, zero value otherwise.

func (*TimelineAddToModule) GetPrependOk ¶

func (o *TimelineAddToModule) GetPrependOk() (*bool, bool)

GetPrependOk returns a tuple with the Prepend field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelineAddToModule) GetType ¶

func (o *TimelineAddToModule) GetType() InstructionType

GetType returns the Type field value

func (*TimelineAddToModule) GetTypeOk ¶

func (o *TimelineAddToModule) GetTypeOk() (*InstructionType, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*TimelineAddToModule) HasPrepend ¶

func (o *TimelineAddToModule) HasPrepend() bool

HasPrepend returns a boolean if a field has been set.

func (TimelineAddToModule) MarshalJSON ¶

func (o TimelineAddToModule) MarshalJSON() ([]byte, error)

func (*TimelineAddToModule) SetModuleEntryId ¶

func (o *TimelineAddToModule) SetModuleEntryId(v string)

SetModuleEntryId sets field value

func (*TimelineAddToModule) SetModuleItems ¶

func (o *TimelineAddToModule) SetModuleItems(v []ModuleItem)

SetModuleItems sets field value

func (*TimelineAddToModule) SetPrepend ¶

func (o *TimelineAddToModule) SetPrepend(v bool)

SetPrepend gets a reference to the given bool and assigns it to the Prepend field.

func (*TimelineAddToModule) SetType ¶

func (o *TimelineAddToModule) SetType(v InstructionType)

SetType sets field value

func (TimelineAddToModule) ToMap ¶

func (o TimelineAddToModule) ToMap() (map[string]interface{}, error)

func (*TimelineAddToModule) UnmarshalJSON ¶

func (o *TimelineAddToModule) UnmarshalJSON(data []byte) (err error)

type TimelineClearCache ¶

type TimelineClearCache struct {
	Type InstructionType `json:"type"`
}

TimelineClearCache struct for TimelineClearCache

func NewTimelineClearCache ¶

func NewTimelineClearCache(type_ InstructionType) *TimelineClearCache

NewTimelineClearCache instantiates a new TimelineClearCache object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimelineClearCacheWithDefaults ¶

func NewTimelineClearCacheWithDefaults() *TimelineClearCache

NewTimelineClearCacheWithDefaults instantiates a new TimelineClearCache object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimelineClearCache) GetType ¶

func (o *TimelineClearCache) GetType() InstructionType

GetType returns the Type field value

func (*TimelineClearCache) GetTypeOk ¶

func (o *TimelineClearCache) GetTypeOk() (*InstructionType, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (TimelineClearCache) MarshalJSON ¶

func (o TimelineClearCache) MarshalJSON() ([]byte, error)

func (*TimelineClearCache) SetType ¶

func (o *TimelineClearCache) SetType(v InstructionType)

SetType sets field value

func (TimelineClearCache) ToMap ¶

func (o TimelineClearCache) ToMap() (map[string]interface{}, error)

func (*TimelineClearCache) UnmarshalJSON ¶

func (o *TimelineClearCache) UnmarshalJSON(data []byte) (err error)

type TimelineCommunity ¶

type TimelineCommunity struct {
	Typename             *TypeName `json:"__typename,omitempty"`
	AdditionalProperties map[string]interface{}
}

TimelineCommunity struct for TimelineCommunity

func NewTimelineCommunity ¶

func NewTimelineCommunity() *TimelineCommunity

NewTimelineCommunity instantiates a new TimelineCommunity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimelineCommunityWithDefaults ¶

func NewTimelineCommunityWithDefaults() *TimelineCommunity

NewTimelineCommunityWithDefaults instantiates a new TimelineCommunity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimelineCommunity) GetTypename ¶

func (o *TimelineCommunity) GetTypename() TypeName

GetTypename returns the Typename field value if set, zero value otherwise.

func (*TimelineCommunity) GetTypenameOk ¶

func (o *TimelineCommunity) GetTypenameOk() (*TypeName, bool)

GetTypenameOk returns a tuple with the Typename field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelineCommunity) HasTypename ¶

func (o *TimelineCommunity) HasTypename() bool

HasTypename returns a boolean if a field has been set.

func (TimelineCommunity) MarshalJSON ¶

func (o TimelineCommunity) MarshalJSON() ([]byte, error)

func (*TimelineCommunity) SetTypename ¶

func (o *TimelineCommunity) SetTypename(v TypeName)

SetTypename gets a reference to the given TypeName and assigns it to the Typename field.

func (TimelineCommunity) ToMap ¶

func (o TimelineCommunity) ToMap() (map[string]interface{}, error)

func (*TimelineCommunity) UnmarshalJSON ¶

func (o *TimelineCommunity) UnmarshalJSON(data []byte) (err error)

type TimelineCoverBehavior ¶

type TimelineCoverBehavior struct {
	Type string                    `json:"type"`
	Url  *TimelineCoverBehaviorUrl `json:"url,omitempty"`
}

TimelineCoverBehavior struct for TimelineCoverBehavior

func NewTimelineCoverBehavior ¶

func NewTimelineCoverBehavior(type_ string) *TimelineCoverBehavior

NewTimelineCoverBehavior instantiates a new TimelineCoverBehavior object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimelineCoverBehaviorWithDefaults ¶

func NewTimelineCoverBehaviorWithDefaults() *TimelineCoverBehavior

NewTimelineCoverBehaviorWithDefaults instantiates a new TimelineCoverBehavior object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimelineCoverBehavior) GetType ¶

func (o *TimelineCoverBehavior) GetType() string

GetType returns the Type field value

func (*TimelineCoverBehavior) GetTypeOk ¶

func (o *TimelineCoverBehavior) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*TimelineCoverBehavior) GetUrl ¶

GetUrl returns the Url field value if set, zero value otherwise.

func (*TimelineCoverBehavior) 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 (*TimelineCoverBehavior) HasUrl ¶

func (o *TimelineCoverBehavior) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (TimelineCoverBehavior) MarshalJSON ¶

func (o TimelineCoverBehavior) MarshalJSON() ([]byte, error)

func (*TimelineCoverBehavior) SetType ¶

func (o *TimelineCoverBehavior) SetType(v string)

SetType sets field value

func (*TimelineCoverBehavior) SetUrl ¶

SetUrl gets a reference to the given TimelineCoverBehaviorUrl and assigns it to the Url field.

func (TimelineCoverBehavior) ToMap ¶

func (o TimelineCoverBehavior) ToMap() (map[string]interface{}, error)

func (*TimelineCoverBehavior) UnmarshalJSON ¶

func (o *TimelineCoverBehavior) UnmarshalJSON(data []byte) (err error)

type TimelineCoverBehaviorUrl ¶

type TimelineCoverBehaviorUrl struct {
	Url     string `json:"url"`
	UrlType string `json:"url_type"`
}

TimelineCoverBehaviorUrl struct for TimelineCoverBehaviorUrl

func NewTimelineCoverBehaviorUrl ¶

func NewTimelineCoverBehaviorUrl(url string, urlType string) *TimelineCoverBehaviorUrl

NewTimelineCoverBehaviorUrl instantiates a new TimelineCoverBehaviorUrl object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimelineCoverBehaviorUrlWithDefaults ¶

func NewTimelineCoverBehaviorUrlWithDefaults() *TimelineCoverBehaviorUrl

NewTimelineCoverBehaviorUrlWithDefaults instantiates a new TimelineCoverBehaviorUrl object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimelineCoverBehaviorUrl) GetUrl ¶

func (o *TimelineCoverBehaviorUrl) GetUrl() string

GetUrl returns the Url field value

func (*TimelineCoverBehaviorUrl) GetUrlOk ¶

func (o *TimelineCoverBehaviorUrl) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value and a boolean to check if the value has been set.

func (*TimelineCoverBehaviorUrl) GetUrlType ¶

func (o *TimelineCoverBehaviorUrl) GetUrlType() string

GetUrlType returns the UrlType field value

func (*TimelineCoverBehaviorUrl) GetUrlTypeOk ¶

func (o *TimelineCoverBehaviorUrl) GetUrlTypeOk() (*string, bool)

GetUrlTypeOk returns a tuple with the UrlType field value and a boolean to check if the value has been set.

func (TimelineCoverBehaviorUrl) MarshalJSON ¶

func (o TimelineCoverBehaviorUrl) MarshalJSON() ([]byte, error)

func (*TimelineCoverBehaviorUrl) SetUrl ¶

func (o *TimelineCoverBehaviorUrl) SetUrl(v string)

SetUrl sets field value

func (*TimelineCoverBehaviorUrl) SetUrlType ¶

func (o *TimelineCoverBehaviorUrl) SetUrlType(v string)

SetUrlType sets field value

func (TimelineCoverBehaviorUrl) ToMap ¶

func (o TimelineCoverBehaviorUrl) ToMap() (map[string]interface{}, error)

func (*TimelineCoverBehaviorUrl) UnmarshalJSON ¶

func (o *TimelineCoverBehaviorUrl) UnmarshalJSON(data []byte) (err error)

type TimelineGeneralContext ¶

type TimelineGeneralContext struct {
	ContextType *string                  `json:"contextType,omitempty"`
	LandingUrl  *SocialContextLandingUrl `json:"landingUrl,omitempty"`
	Text        *string                  `json:"text,omitempty"`
	Type        *SocialContextUnionType  `json:"type,omitempty"`
}

TimelineGeneralContext struct for TimelineGeneralContext

func NewTimelineGeneralContext ¶

func NewTimelineGeneralContext() *TimelineGeneralContext

NewTimelineGeneralContext instantiates a new TimelineGeneralContext object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimelineGeneralContextWithDefaults ¶

func NewTimelineGeneralContextWithDefaults() *TimelineGeneralContext

NewTimelineGeneralContextWithDefaults instantiates a new TimelineGeneralContext object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimelineGeneralContext) GetContextType ¶

func (o *TimelineGeneralContext) GetContextType() string

GetContextType returns the ContextType field value if set, zero value otherwise.

func (*TimelineGeneralContext) GetContextTypeOk ¶

func (o *TimelineGeneralContext) GetContextTypeOk() (*string, bool)

GetContextTypeOk returns a tuple with the ContextType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelineGeneralContext) GetLandingUrl ¶

GetLandingUrl returns the LandingUrl field value if set, zero value otherwise.

func (*TimelineGeneralContext) GetLandingUrlOk ¶

func (o *TimelineGeneralContext) GetLandingUrlOk() (*SocialContextLandingUrl, bool)

GetLandingUrlOk returns a tuple with the LandingUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelineGeneralContext) GetText ¶

func (o *TimelineGeneralContext) GetText() string

GetText returns the Text field value if set, zero value otherwise.

func (*TimelineGeneralContext) GetTextOk ¶

func (o *TimelineGeneralContext) GetTextOk() (*string, bool)

GetTextOk returns a tuple with the Text field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelineGeneralContext) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*TimelineGeneralContext) GetTypeOk ¶

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 (*TimelineGeneralContext) HasContextType ¶

func (o *TimelineGeneralContext) HasContextType() bool

HasContextType returns a boolean if a field has been set.

func (*TimelineGeneralContext) HasLandingUrl ¶

func (o *TimelineGeneralContext) HasLandingUrl() bool

HasLandingUrl returns a boolean if a field has been set.

func (*TimelineGeneralContext) HasText ¶

func (o *TimelineGeneralContext) HasText() bool

HasText returns a boolean if a field has been set.

func (*TimelineGeneralContext) HasType ¶

func (o *TimelineGeneralContext) HasType() bool

HasType returns a boolean if a field has been set.

func (TimelineGeneralContext) MarshalJSON ¶

func (o TimelineGeneralContext) MarshalJSON() ([]byte, error)

func (*TimelineGeneralContext) SetContextType ¶

func (o *TimelineGeneralContext) SetContextType(v string)

SetContextType gets a reference to the given string and assigns it to the ContextType field.

func (*TimelineGeneralContext) SetLandingUrl ¶

func (o *TimelineGeneralContext) SetLandingUrl(v SocialContextLandingUrl)

SetLandingUrl gets a reference to the given SocialContextLandingUrl and assigns it to the LandingUrl field.

func (*TimelineGeneralContext) SetText ¶

func (o *TimelineGeneralContext) SetText(v string)

SetText gets a reference to the given string and assigns it to the Text field.

func (*TimelineGeneralContext) SetType ¶

SetType gets a reference to the given SocialContextUnionType and assigns it to the Type field.

func (TimelineGeneralContext) ToMap ¶

func (o TimelineGeneralContext) ToMap() (map[string]interface{}, error)

type TimelineHalfCover ¶

type TimelineHalfCover struct {
	Dismissible          bool       `json:"dismissible"`
	HalfCoverDisplayType string     `json:"halfCoverDisplayType"`
	ImpressionCallbacks  []Callback `json:"impressionCallbacks"`
	PrimaryCoverCta      CoverCta   `json:"primaryCoverCta"`
	PrimaryText          Text       `json:"primaryText"`
	SecondaryText        Text       `json:"secondaryText"`
	Type                 string     `json:"type"`
}

TimelineHalfCover struct for TimelineHalfCover

func NewTimelineHalfCover ¶

func NewTimelineHalfCover(dismissible bool, halfCoverDisplayType string, impressionCallbacks []Callback, primaryCoverCta CoverCta, primaryText Text, secondaryText Text, type_ string) *TimelineHalfCover

NewTimelineHalfCover instantiates a new TimelineHalfCover object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimelineHalfCoverWithDefaults ¶

func NewTimelineHalfCoverWithDefaults() *TimelineHalfCover

NewTimelineHalfCoverWithDefaults instantiates a new TimelineHalfCover object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimelineHalfCover) GetDismissible ¶

func (o *TimelineHalfCover) GetDismissible() bool

GetDismissible returns the Dismissible field value

func (*TimelineHalfCover) GetDismissibleOk ¶

func (o *TimelineHalfCover) GetDismissibleOk() (*bool, bool)

GetDismissibleOk returns a tuple with the Dismissible field value and a boolean to check if the value has been set.

func (*TimelineHalfCover) GetHalfCoverDisplayType ¶

func (o *TimelineHalfCover) GetHalfCoverDisplayType() string

GetHalfCoverDisplayType returns the HalfCoverDisplayType field value

func (*TimelineHalfCover) GetHalfCoverDisplayTypeOk ¶

func (o *TimelineHalfCover) GetHalfCoverDisplayTypeOk() (*string, bool)

GetHalfCoverDisplayTypeOk returns a tuple with the HalfCoverDisplayType field value and a boolean to check if the value has been set.

func (*TimelineHalfCover) GetImpressionCallbacks ¶

func (o *TimelineHalfCover) GetImpressionCallbacks() []Callback

GetImpressionCallbacks returns the ImpressionCallbacks field value

func (*TimelineHalfCover) GetImpressionCallbacksOk ¶

func (o *TimelineHalfCover) GetImpressionCallbacksOk() ([]Callback, bool)

GetImpressionCallbacksOk returns a tuple with the ImpressionCallbacks field value and a boolean to check if the value has been set.

func (*TimelineHalfCover) GetPrimaryCoverCta ¶

func (o *TimelineHalfCover) GetPrimaryCoverCta() CoverCta

GetPrimaryCoverCta returns the PrimaryCoverCta field value

func (*TimelineHalfCover) GetPrimaryCoverCtaOk ¶

func (o *TimelineHalfCover) GetPrimaryCoverCtaOk() (*CoverCta, bool)

GetPrimaryCoverCtaOk returns a tuple with the PrimaryCoverCta field value and a boolean to check if the value has been set.

func (*TimelineHalfCover) GetPrimaryText ¶

func (o *TimelineHalfCover) GetPrimaryText() Text

GetPrimaryText returns the PrimaryText field value

func (*TimelineHalfCover) GetPrimaryTextOk ¶

func (o *TimelineHalfCover) GetPrimaryTextOk() (*Text, bool)

GetPrimaryTextOk returns a tuple with the PrimaryText field value and a boolean to check if the value has been set.

func (*TimelineHalfCover) GetSecondaryText ¶

func (o *TimelineHalfCover) GetSecondaryText() Text

GetSecondaryText returns the SecondaryText field value

func (*TimelineHalfCover) GetSecondaryTextOk ¶

func (o *TimelineHalfCover) GetSecondaryTextOk() (*Text, bool)

GetSecondaryTextOk returns a tuple with the SecondaryText field value and a boolean to check if the value has been set.

func (*TimelineHalfCover) GetType ¶

func (o *TimelineHalfCover) GetType() string

GetType returns the Type field value

func (*TimelineHalfCover) GetTypeOk ¶

func (o *TimelineHalfCover) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (TimelineHalfCover) MarshalJSON ¶

func (o TimelineHalfCover) MarshalJSON() ([]byte, error)

func (*TimelineHalfCover) SetDismissible ¶

func (o *TimelineHalfCover) SetDismissible(v bool)

SetDismissible sets field value

func (*TimelineHalfCover) SetHalfCoverDisplayType ¶

func (o *TimelineHalfCover) SetHalfCoverDisplayType(v string)

SetHalfCoverDisplayType sets field value

func (*TimelineHalfCover) SetImpressionCallbacks ¶

func (o *TimelineHalfCover) SetImpressionCallbacks(v []Callback)

SetImpressionCallbacks sets field value

func (*TimelineHalfCover) SetPrimaryCoverCta ¶

func (o *TimelineHalfCover) SetPrimaryCoverCta(v CoverCta)

SetPrimaryCoverCta sets field value

func (*TimelineHalfCover) SetPrimaryText ¶

func (o *TimelineHalfCover) SetPrimaryText(v Text)

SetPrimaryText sets field value

func (*TimelineHalfCover) SetSecondaryText ¶

func (o *TimelineHalfCover) SetSecondaryText(v Text)

SetSecondaryText sets field value

func (*TimelineHalfCover) SetType ¶

func (o *TimelineHalfCover) SetType(v string)

SetType sets field value

func (TimelineHalfCover) ToMap ¶

func (o TimelineHalfCover) ToMap() (map[string]interface{}, error)

func (*TimelineHalfCover) UnmarshalJSON ¶

func (o *TimelineHalfCover) UnmarshalJSON(data []byte) (err error)

type TimelineMessagePrompt ¶

type TimelineMessagePrompt struct {
	Typename             *TypeName `json:"__typename,omitempty"`
	AdditionalProperties map[string]interface{}
}

TimelineMessagePrompt struct for TimelineMessagePrompt

func NewTimelineMessagePrompt ¶

func NewTimelineMessagePrompt() *TimelineMessagePrompt

NewTimelineMessagePrompt instantiates a new TimelineMessagePrompt object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimelineMessagePromptWithDefaults ¶

func NewTimelineMessagePromptWithDefaults() *TimelineMessagePrompt

NewTimelineMessagePromptWithDefaults instantiates a new TimelineMessagePrompt object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimelineMessagePrompt) GetTypename ¶

func (o *TimelineMessagePrompt) GetTypename() TypeName

GetTypename returns the Typename field value if set, zero value otherwise.

func (*TimelineMessagePrompt) GetTypenameOk ¶

func (o *TimelineMessagePrompt) GetTypenameOk() (*TypeName, bool)

GetTypenameOk returns a tuple with the Typename field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelineMessagePrompt) HasTypename ¶

func (o *TimelineMessagePrompt) HasTypename() bool

HasTypename returns a boolean if a field has been set.

func (TimelineMessagePrompt) MarshalJSON ¶

func (o TimelineMessagePrompt) MarshalJSON() ([]byte, error)

func (*TimelineMessagePrompt) SetTypename ¶

func (o *TimelineMessagePrompt) SetTypename(v TypeName)

SetTypename gets a reference to the given TypeName and assigns it to the Typename field.

func (TimelineMessagePrompt) ToMap ¶

func (o TimelineMessagePrompt) ToMap() (map[string]interface{}, error)

func (*TimelineMessagePrompt) UnmarshalJSON ¶

func (o *TimelineMessagePrompt) UnmarshalJSON(data []byte) (err error)

type TimelinePinEntry ¶

type TimelinePinEntry struct {
	Entry TimelineAddEntry `json:"entry"`
	Type  InstructionType  `json:"type"`
}

TimelinePinEntry struct for TimelinePinEntry

func NewTimelinePinEntry ¶

func NewTimelinePinEntry(entry TimelineAddEntry, type_ InstructionType) *TimelinePinEntry

NewTimelinePinEntry instantiates a new TimelinePinEntry object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimelinePinEntryWithDefaults ¶

func NewTimelinePinEntryWithDefaults() *TimelinePinEntry

NewTimelinePinEntryWithDefaults instantiates a new TimelinePinEntry object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimelinePinEntry) GetEntry ¶

func (o *TimelinePinEntry) GetEntry() TimelineAddEntry

GetEntry returns the Entry field value

func (*TimelinePinEntry) GetEntryOk ¶

func (o *TimelinePinEntry) GetEntryOk() (*TimelineAddEntry, bool)

GetEntryOk returns a tuple with the Entry field value and a boolean to check if the value has been set.

func (*TimelinePinEntry) GetType ¶

func (o *TimelinePinEntry) GetType() InstructionType

GetType returns the Type field value

func (*TimelinePinEntry) GetTypeOk ¶

func (o *TimelinePinEntry) GetTypeOk() (*InstructionType, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (TimelinePinEntry) MarshalJSON ¶

func (o TimelinePinEntry) MarshalJSON() ([]byte, error)

func (*TimelinePinEntry) SetEntry ¶

func (o *TimelinePinEntry) SetEntry(v TimelineAddEntry)

SetEntry sets field value

func (*TimelinePinEntry) SetType ¶

func (o *TimelinePinEntry) SetType(v InstructionType)

SetType sets field value

func (TimelinePinEntry) ToMap ¶

func (o TimelinePinEntry) ToMap() (map[string]interface{}, error)

func (*TimelinePinEntry) UnmarshalJSON ¶

func (o *TimelinePinEntry) UnmarshalJSON(data []byte) (err error)

type TimelinePrompt ¶

type TimelinePrompt struct {
	Typename             *TypeName `json:"__typename,omitempty"`
	AdditionalProperties map[string]interface{}
}

TimelinePrompt struct for TimelinePrompt

func NewTimelinePrompt ¶

func NewTimelinePrompt() *TimelinePrompt

NewTimelinePrompt instantiates a new TimelinePrompt object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimelinePromptWithDefaults ¶

func NewTimelinePromptWithDefaults() *TimelinePrompt

NewTimelinePromptWithDefaults instantiates a new TimelinePrompt object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimelinePrompt) GetTypename ¶

func (o *TimelinePrompt) GetTypename() TypeName

GetTypename returns the Typename field value if set, zero value otherwise.

func (*TimelinePrompt) GetTypenameOk ¶

func (o *TimelinePrompt) GetTypenameOk() (*TypeName, bool)

GetTypenameOk returns a tuple with the Typename field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelinePrompt) HasTypename ¶

func (o *TimelinePrompt) HasTypename() bool

HasTypename returns a boolean if a field has been set.

func (TimelinePrompt) MarshalJSON ¶

func (o TimelinePrompt) MarshalJSON() ([]byte, error)

func (*TimelinePrompt) SetTypename ¶

func (o *TimelinePrompt) SetTypename(v TypeName)

SetTypename gets a reference to the given TypeName and assigns it to the Typename field.

func (TimelinePrompt) ToMap ¶

func (o TimelinePrompt) ToMap() (map[string]interface{}, error)

func (*TimelinePrompt) UnmarshalJSON ¶

func (o *TimelinePrompt) UnmarshalJSON(data []byte) (err error)

type TimelineReplaceEntry ¶

type TimelineReplaceEntry struct {
	Entry            TimelineAddEntry `json:"entry"`
	EntryIdToReplace string           `json:"entry_id_to_replace"`
	Type             InstructionType  `json:"type"`
}

TimelineReplaceEntry struct for TimelineReplaceEntry

func NewTimelineReplaceEntry ¶

func NewTimelineReplaceEntry(entry TimelineAddEntry, entryIdToReplace string, type_ InstructionType) *TimelineReplaceEntry

NewTimelineReplaceEntry instantiates a new TimelineReplaceEntry object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimelineReplaceEntryWithDefaults ¶

func NewTimelineReplaceEntryWithDefaults() *TimelineReplaceEntry

NewTimelineReplaceEntryWithDefaults instantiates a new TimelineReplaceEntry object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimelineReplaceEntry) GetEntry ¶

func (o *TimelineReplaceEntry) GetEntry() TimelineAddEntry

GetEntry returns the Entry field value

func (*TimelineReplaceEntry) GetEntryIdToReplace ¶

func (o *TimelineReplaceEntry) GetEntryIdToReplace() string

GetEntryIdToReplace returns the EntryIdToReplace field value

func (*TimelineReplaceEntry) GetEntryIdToReplaceOk ¶

func (o *TimelineReplaceEntry) GetEntryIdToReplaceOk() (*string, bool)

GetEntryIdToReplaceOk returns a tuple with the EntryIdToReplace field value and a boolean to check if the value has been set.

func (*TimelineReplaceEntry) GetEntryOk ¶

func (o *TimelineReplaceEntry) GetEntryOk() (*TimelineAddEntry, bool)

GetEntryOk returns a tuple with the Entry field value and a boolean to check if the value has been set.

func (*TimelineReplaceEntry) GetType ¶

GetType returns the Type field value

func (*TimelineReplaceEntry) GetTypeOk ¶

func (o *TimelineReplaceEntry) GetTypeOk() (*InstructionType, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (TimelineReplaceEntry) MarshalJSON ¶

func (o TimelineReplaceEntry) MarshalJSON() ([]byte, error)

func (*TimelineReplaceEntry) SetEntry ¶

func (o *TimelineReplaceEntry) SetEntry(v TimelineAddEntry)

SetEntry sets field value

func (*TimelineReplaceEntry) SetEntryIdToReplace ¶

func (o *TimelineReplaceEntry) SetEntryIdToReplace(v string)

SetEntryIdToReplace sets field value

func (*TimelineReplaceEntry) SetType ¶

func (o *TimelineReplaceEntry) SetType(v InstructionType)

SetType sets field value

func (TimelineReplaceEntry) ToMap ¶

func (o TimelineReplaceEntry) ToMap() (map[string]interface{}, error)

func (*TimelineReplaceEntry) UnmarshalJSON ¶

func (o *TimelineReplaceEntry) UnmarshalJSON(data []byte) (err error)

type TimelineResponse ¶

type TimelineResponse struct {
	Data HomeTimelineResponseData `json:"data"`
}

TimelineResponse struct for TimelineResponse

func NewTimelineResponse ¶

func NewTimelineResponse(data HomeTimelineResponseData) *TimelineResponse

NewTimelineResponse instantiates a new TimelineResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimelineResponseWithDefaults ¶

func NewTimelineResponseWithDefaults() *TimelineResponse

NewTimelineResponseWithDefaults instantiates a new TimelineResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimelineResponse) GetData ¶

GetData returns the Data field value

func (*TimelineResponse) GetDataOk ¶

func (o *TimelineResponse) GetDataOk() (*HomeTimelineResponseData, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (TimelineResponse) MarshalJSON ¶

func (o TimelineResponse) MarshalJSON() ([]byte, error)

func (*TimelineResponse) SetData ¶

SetData sets field value

func (TimelineResponse) ToMap ¶

func (o TimelineResponse) ToMap() (map[string]interface{}, error)

func (*TimelineResponse) UnmarshalJSON ¶

func (o *TimelineResponse) UnmarshalJSON(data []byte) (err error)

type TimelineShowAlert ¶

type TimelineShowAlert struct {
	AlertType         *string                   `json:"alertType,omitempty"`
	ColorConfig       map[string]interface{}    `json:"colorConfig,omitempty"`
	DisplayDurationMs *int32                    `json:"displayDurationMs,omitempty"`
	DisplayLocation   *string                   `json:"displayLocation,omitempty"`
	IconDisplayInfo   map[string]interface{}    `json:"iconDisplayInfo,omitempty"`
	RichText          TimelineShowAlertRichText `json:"richText"`
	TriggerDelayMs    *int32                    `json:"triggerDelayMs,omitempty"`
	Type              InstructionType           `json:"type"`
	UsersResults      []UserResults             `json:"usersResults"`
}

TimelineShowAlert struct for TimelineShowAlert

func NewTimelineShowAlert ¶

func NewTimelineShowAlert(richText TimelineShowAlertRichText, type_ InstructionType, usersResults []UserResults) *TimelineShowAlert

NewTimelineShowAlert instantiates a new TimelineShowAlert object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimelineShowAlertWithDefaults ¶

func NewTimelineShowAlertWithDefaults() *TimelineShowAlert

NewTimelineShowAlertWithDefaults instantiates a new TimelineShowAlert object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimelineShowAlert) GetAlertType ¶

func (o *TimelineShowAlert) GetAlertType() string

GetAlertType returns the AlertType field value if set, zero value otherwise.

func (*TimelineShowAlert) GetAlertTypeOk ¶

func (o *TimelineShowAlert) GetAlertTypeOk() (*string, bool)

GetAlertTypeOk returns a tuple with the AlertType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelineShowAlert) GetColorConfig ¶

func (o *TimelineShowAlert) GetColorConfig() map[string]interface{}

GetColorConfig returns the ColorConfig field value if set, zero value otherwise.

func (*TimelineShowAlert) GetColorConfigOk ¶

func (o *TimelineShowAlert) GetColorConfigOk() (map[string]interface{}, bool)

GetColorConfigOk returns a tuple with the ColorConfig field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelineShowAlert) GetDisplayDurationMs ¶

func (o *TimelineShowAlert) GetDisplayDurationMs() int32

GetDisplayDurationMs returns the DisplayDurationMs field value if set, zero value otherwise.

func (*TimelineShowAlert) GetDisplayDurationMsOk ¶

func (o *TimelineShowAlert) GetDisplayDurationMsOk() (*int32, bool)

GetDisplayDurationMsOk returns a tuple with the DisplayDurationMs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelineShowAlert) GetDisplayLocation ¶

func (o *TimelineShowAlert) GetDisplayLocation() string

GetDisplayLocation returns the DisplayLocation field value if set, zero value otherwise.

func (*TimelineShowAlert) GetDisplayLocationOk ¶

func (o *TimelineShowAlert) GetDisplayLocationOk() (*string, bool)

GetDisplayLocationOk returns a tuple with the DisplayLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelineShowAlert) GetIconDisplayInfo ¶

func (o *TimelineShowAlert) GetIconDisplayInfo() map[string]interface{}

GetIconDisplayInfo returns the IconDisplayInfo field value if set, zero value otherwise.

func (*TimelineShowAlert) GetIconDisplayInfoOk ¶

func (o *TimelineShowAlert) GetIconDisplayInfoOk() (map[string]interface{}, bool)

GetIconDisplayInfoOk returns a tuple with the IconDisplayInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelineShowAlert) GetRichText ¶

GetRichText returns the RichText field value

func (*TimelineShowAlert) GetRichTextOk ¶

func (o *TimelineShowAlert) GetRichTextOk() (*TimelineShowAlertRichText, bool)

GetRichTextOk returns a tuple with the RichText field value and a boolean to check if the value has been set.

func (*TimelineShowAlert) GetTriggerDelayMs ¶

func (o *TimelineShowAlert) GetTriggerDelayMs() int32

GetTriggerDelayMs returns the TriggerDelayMs field value if set, zero value otherwise.

func (*TimelineShowAlert) GetTriggerDelayMsOk ¶

func (o *TimelineShowAlert) GetTriggerDelayMsOk() (*int32, bool)

GetTriggerDelayMsOk returns a tuple with the TriggerDelayMs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelineShowAlert) GetType ¶

func (o *TimelineShowAlert) GetType() InstructionType

GetType returns the Type field value

func (*TimelineShowAlert) GetTypeOk ¶

func (o *TimelineShowAlert) GetTypeOk() (*InstructionType, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*TimelineShowAlert) GetUsersResults ¶

func (o *TimelineShowAlert) GetUsersResults() []UserResults

GetUsersResults returns the UsersResults field value

func (*TimelineShowAlert) GetUsersResultsOk ¶

func (o *TimelineShowAlert) GetUsersResultsOk() ([]UserResults, bool)

GetUsersResultsOk returns a tuple with the UsersResults field value and a boolean to check if the value has been set.

func (*TimelineShowAlert) HasAlertType ¶

func (o *TimelineShowAlert) HasAlertType() bool

HasAlertType returns a boolean if a field has been set.

func (*TimelineShowAlert) HasColorConfig ¶

func (o *TimelineShowAlert) HasColorConfig() bool

HasColorConfig returns a boolean if a field has been set.

func (*TimelineShowAlert) HasDisplayDurationMs ¶

func (o *TimelineShowAlert) HasDisplayDurationMs() bool

HasDisplayDurationMs returns a boolean if a field has been set.

func (*TimelineShowAlert) HasDisplayLocation ¶

func (o *TimelineShowAlert) HasDisplayLocation() bool

HasDisplayLocation returns a boolean if a field has been set.

func (*TimelineShowAlert) HasIconDisplayInfo ¶

func (o *TimelineShowAlert) HasIconDisplayInfo() bool

HasIconDisplayInfo returns a boolean if a field has been set.

func (*TimelineShowAlert) HasTriggerDelayMs ¶

func (o *TimelineShowAlert) HasTriggerDelayMs() bool

HasTriggerDelayMs returns a boolean if a field has been set.

func (TimelineShowAlert) MarshalJSON ¶

func (o TimelineShowAlert) MarshalJSON() ([]byte, error)

func (*TimelineShowAlert) SetAlertType ¶

func (o *TimelineShowAlert) SetAlertType(v string)

SetAlertType gets a reference to the given string and assigns it to the AlertType field.

func (*TimelineShowAlert) SetColorConfig ¶

func (o *TimelineShowAlert) SetColorConfig(v map[string]interface{})

SetColorConfig gets a reference to the given map[string]interface{} and assigns it to the ColorConfig field.

func (*TimelineShowAlert) SetDisplayDurationMs ¶

func (o *TimelineShowAlert) SetDisplayDurationMs(v int32)

SetDisplayDurationMs gets a reference to the given int32 and assigns it to the DisplayDurationMs field.

func (*TimelineShowAlert) SetDisplayLocation ¶

func (o *TimelineShowAlert) SetDisplayLocation(v string)

SetDisplayLocation gets a reference to the given string and assigns it to the DisplayLocation field.

func (*TimelineShowAlert) SetIconDisplayInfo ¶

func (o *TimelineShowAlert) SetIconDisplayInfo(v map[string]interface{})

SetIconDisplayInfo gets a reference to the given map[string]interface{} and assigns it to the IconDisplayInfo field.

func (*TimelineShowAlert) SetRichText ¶

func (o *TimelineShowAlert) SetRichText(v TimelineShowAlertRichText)

SetRichText sets field value

func (*TimelineShowAlert) SetTriggerDelayMs ¶

func (o *TimelineShowAlert) SetTriggerDelayMs(v int32)

SetTriggerDelayMs gets a reference to the given int32 and assigns it to the TriggerDelayMs field.

func (*TimelineShowAlert) SetType ¶

func (o *TimelineShowAlert) SetType(v InstructionType)

SetType sets field value

func (*TimelineShowAlert) SetUsersResults ¶

func (o *TimelineShowAlert) SetUsersResults(v []UserResults)

SetUsersResults sets field value

func (TimelineShowAlert) ToMap ¶

func (o TimelineShowAlert) ToMap() (map[string]interface{}, error)

func (*TimelineShowAlert) UnmarshalJSON ¶

func (o *TimelineShowAlert) UnmarshalJSON(data []byte) (err error)

type TimelineShowAlertRichText ¶

type TimelineShowAlertRichText struct {
	Entities []map[string]interface{} `json:"entities,omitempty"`
	Text     *string                  `json:"text,omitempty"`
}

TimelineShowAlertRichText struct for TimelineShowAlertRichText

func NewTimelineShowAlertRichText ¶

func NewTimelineShowAlertRichText() *TimelineShowAlertRichText

NewTimelineShowAlertRichText instantiates a new TimelineShowAlertRichText object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimelineShowAlertRichTextWithDefaults ¶

func NewTimelineShowAlertRichTextWithDefaults() *TimelineShowAlertRichText

NewTimelineShowAlertRichTextWithDefaults instantiates a new TimelineShowAlertRichText object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimelineShowAlertRichText) GetEntities ¶

func (o *TimelineShowAlertRichText) GetEntities() []map[string]interface{}

GetEntities returns the Entities field value if set, zero value otherwise.

func (*TimelineShowAlertRichText) GetEntitiesOk ¶

func (o *TimelineShowAlertRichText) GetEntitiesOk() ([]map[string]interface{}, bool)

GetEntitiesOk returns a tuple with the Entities field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelineShowAlertRichText) GetText ¶

func (o *TimelineShowAlertRichText) GetText() string

GetText returns the Text field value if set, zero value otherwise.

func (*TimelineShowAlertRichText) GetTextOk ¶

func (o *TimelineShowAlertRichText) GetTextOk() (*string, bool)

GetTextOk returns a tuple with the Text field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelineShowAlertRichText) HasEntities ¶

func (o *TimelineShowAlertRichText) HasEntities() bool

HasEntities returns a boolean if a field has been set.

func (*TimelineShowAlertRichText) HasText ¶

func (o *TimelineShowAlertRichText) HasText() bool

HasText returns a boolean if a field has been set.

func (TimelineShowAlertRichText) MarshalJSON ¶

func (o TimelineShowAlertRichText) MarshalJSON() ([]byte, error)

func (*TimelineShowAlertRichText) SetEntities ¶

func (o *TimelineShowAlertRichText) SetEntities(v []map[string]interface{})

SetEntities gets a reference to the given []map[string]interface{} and assigns it to the Entities field.

func (*TimelineShowAlertRichText) SetText ¶

func (o *TimelineShowAlertRichText) SetText(v string)

SetText gets a reference to the given string and assigns it to the Text field.

func (TimelineShowAlertRichText) ToMap ¶

func (o TimelineShowAlertRichText) ToMap() (map[string]interface{}, error)

type TimelineShowCover ¶

type TimelineShowCover struct {
	ClientEventInfo ClientEventInfo   `json:"clientEventInfo"`
	Cover           TimelineHalfCover `json:"cover"`
	Type            InstructionType   `json:"type"`
}

TimelineShowCover struct for TimelineShowCover

func NewTimelineShowCover ¶

func NewTimelineShowCover(clientEventInfo ClientEventInfo, cover TimelineHalfCover, type_ InstructionType) *TimelineShowCover

NewTimelineShowCover instantiates a new TimelineShowCover object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimelineShowCoverWithDefaults ¶

func NewTimelineShowCoverWithDefaults() *TimelineShowCover

NewTimelineShowCoverWithDefaults instantiates a new TimelineShowCover object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimelineShowCover) GetClientEventInfo ¶

func (o *TimelineShowCover) GetClientEventInfo() ClientEventInfo

GetClientEventInfo returns the ClientEventInfo field value

func (*TimelineShowCover) GetClientEventInfoOk ¶

func (o *TimelineShowCover) GetClientEventInfoOk() (*ClientEventInfo, bool)

GetClientEventInfoOk returns a tuple with the ClientEventInfo field value and a boolean to check if the value has been set.

func (*TimelineShowCover) GetCover ¶

func (o *TimelineShowCover) GetCover() TimelineHalfCover

GetCover returns the Cover field value

func (*TimelineShowCover) GetCoverOk ¶

func (o *TimelineShowCover) GetCoverOk() (*TimelineHalfCover, bool)

GetCoverOk returns a tuple with the Cover field value and a boolean to check if the value has been set.

func (*TimelineShowCover) GetType ¶

func (o *TimelineShowCover) GetType() InstructionType

GetType returns the Type field value

func (*TimelineShowCover) GetTypeOk ¶

func (o *TimelineShowCover) GetTypeOk() (*InstructionType, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (TimelineShowCover) MarshalJSON ¶

func (o TimelineShowCover) MarshalJSON() ([]byte, error)

func (*TimelineShowCover) SetClientEventInfo ¶

func (o *TimelineShowCover) SetClientEventInfo(v ClientEventInfo)

SetClientEventInfo sets field value

func (*TimelineShowCover) SetCover ¶

func (o *TimelineShowCover) SetCover(v TimelineHalfCover)

SetCover sets field value

func (*TimelineShowCover) SetType ¶

func (o *TimelineShowCover) SetType(v InstructionType)

SetType sets field value

func (TimelineShowCover) ToMap ¶

func (o TimelineShowCover) ToMap() (map[string]interface{}, error)

func (*TimelineShowCover) UnmarshalJSON ¶

func (o *TimelineShowCover) UnmarshalJSON(data []byte) (err error)

type TimelineTerminateTimeline ¶

type TimelineTerminateTimeline struct {
	Direction string          `json:"direction"`
	Type      InstructionType `json:"type"`
}

TimelineTerminateTimeline struct for TimelineTerminateTimeline

func NewTimelineTerminateTimeline ¶

func NewTimelineTerminateTimeline(direction string, type_ InstructionType) *TimelineTerminateTimeline

NewTimelineTerminateTimeline instantiates a new TimelineTerminateTimeline object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimelineTerminateTimelineWithDefaults ¶

func NewTimelineTerminateTimelineWithDefaults() *TimelineTerminateTimeline

NewTimelineTerminateTimelineWithDefaults instantiates a new TimelineTerminateTimeline object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimelineTerminateTimeline) GetDirection ¶

func (o *TimelineTerminateTimeline) GetDirection() string

GetDirection returns the Direction field value

func (*TimelineTerminateTimeline) GetDirectionOk ¶

func (o *TimelineTerminateTimeline) GetDirectionOk() (*string, bool)

GetDirectionOk returns a tuple with the Direction field value and a boolean to check if the value has been set.

func (*TimelineTerminateTimeline) GetType ¶

GetType returns the Type field value

func (*TimelineTerminateTimeline) GetTypeOk ¶

func (o *TimelineTerminateTimeline) GetTypeOk() (*InstructionType, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (TimelineTerminateTimeline) MarshalJSON ¶

func (o TimelineTerminateTimeline) MarshalJSON() ([]byte, error)

func (*TimelineTerminateTimeline) SetDirection ¶

func (o *TimelineTerminateTimeline) SetDirection(v string)

SetDirection sets field value

func (*TimelineTerminateTimeline) SetType ¶

SetType sets field value

func (TimelineTerminateTimeline) ToMap ¶

func (o TimelineTerminateTimeline) ToMap() (map[string]interface{}, error)

func (*TimelineTerminateTimeline) UnmarshalJSON ¶

func (o *TimelineTerminateTimeline) UnmarshalJSON(data []byte) (err error)

type TimelineTimelineCursor ¶

type TimelineTimelineCursor struct {
	Typename            TypeName          `json:"__typename"`
	CursorType          CursorType        `json:"cursorType"`
	DisplayTreatment    *DisplayTreatment `json:"displayTreatment,omitempty"`
	EntryType           *ContentEntryType `json:"entryType,omitempty"`
	ItemType            *ContentEntryType `json:"itemType,omitempty"`
	StopOnEmptyResponse *bool             `json:"stopOnEmptyResponse,omitempty"`
	Value               string            `json:"value"`
}

TimelineTimelineCursor struct for TimelineTimelineCursor

func NewTimelineTimelineCursor ¶

func NewTimelineTimelineCursor(typename TypeName, cursorType CursorType, value string) *TimelineTimelineCursor

NewTimelineTimelineCursor instantiates a new TimelineTimelineCursor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimelineTimelineCursorWithDefaults ¶

func NewTimelineTimelineCursorWithDefaults() *TimelineTimelineCursor

NewTimelineTimelineCursorWithDefaults instantiates a new TimelineTimelineCursor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimelineTimelineCursor) GetCursorType ¶

func (o *TimelineTimelineCursor) GetCursorType() CursorType

GetCursorType returns the CursorType field value

func (*TimelineTimelineCursor) GetCursorTypeOk ¶

func (o *TimelineTimelineCursor) GetCursorTypeOk() (*CursorType, bool)

GetCursorTypeOk returns a tuple with the CursorType field value and a boolean to check if the value has been set.

func (*TimelineTimelineCursor) GetDisplayTreatment ¶

func (o *TimelineTimelineCursor) GetDisplayTreatment() DisplayTreatment

GetDisplayTreatment returns the DisplayTreatment field value if set, zero value otherwise.

func (*TimelineTimelineCursor) GetDisplayTreatmentOk ¶

func (o *TimelineTimelineCursor) GetDisplayTreatmentOk() (*DisplayTreatment, bool)

GetDisplayTreatmentOk returns a tuple with the DisplayTreatment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelineTimelineCursor) GetEntryType ¶

func (o *TimelineTimelineCursor) GetEntryType() ContentEntryType

GetEntryType returns the EntryType field value if set, zero value otherwise.

func (*TimelineTimelineCursor) GetEntryTypeOk ¶

func (o *TimelineTimelineCursor) GetEntryTypeOk() (*ContentEntryType, bool)

GetEntryTypeOk returns a tuple with the EntryType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelineTimelineCursor) GetItemType ¶

func (o *TimelineTimelineCursor) GetItemType() ContentEntryType

GetItemType returns the ItemType field value if set, zero value otherwise.

func (*TimelineTimelineCursor) GetItemTypeOk ¶

func (o *TimelineTimelineCursor) GetItemTypeOk() (*ContentEntryType, bool)

GetItemTypeOk returns a tuple with the ItemType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelineTimelineCursor) GetStopOnEmptyResponse ¶

func (o *TimelineTimelineCursor) GetStopOnEmptyResponse() bool

GetStopOnEmptyResponse returns the StopOnEmptyResponse field value if set, zero value otherwise.

func (*TimelineTimelineCursor) GetStopOnEmptyResponseOk ¶

func (o *TimelineTimelineCursor) GetStopOnEmptyResponseOk() (*bool, bool)

GetStopOnEmptyResponseOk returns a tuple with the StopOnEmptyResponse field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelineTimelineCursor) GetTypename ¶

func (o *TimelineTimelineCursor) GetTypename() TypeName

GetTypename returns the Typename field value

func (*TimelineTimelineCursor) GetTypenameOk ¶

func (o *TimelineTimelineCursor) GetTypenameOk() (*TypeName, bool)

GetTypenameOk returns a tuple with the Typename field value and a boolean to check if the value has been set.

func (*TimelineTimelineCursor) GetValue ¶

func (o *TimelineTimelineCursor) GetValue() string

GetValue returns the Value field value

func (*TimelineTimelineCursor) GetValueOk ¶

func (o *TimelineTimelineCursor) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value and a boolean to check if the value has been set.

func (*TimelineTimelineCursor) HasDisplayTreatment ¶

func (o *TimelineTimelineCursor) HasDisplayTreatment() bool

HasDisplayTreatment returns a boolean if a field has been set.

func (*TimelineTimelineCursor) HasEntryType ¶

func (o *TimelineTimelineCursor) HasEntryType() bool

HasEntryType returns a boolean if a field has been set.

func (*TimelineTimelineCursor) HasItemType ¶

func (o *TimelineTimelineCursor) HasItemType() bool

HasItemType returns a boolean if a field has been set.

func (*TimelineTimelineCursor) HasStopOnEmptyResponse ¶

func (o *TimelineTimelineCursor) HasStopOnEmptyResponse() bool

HasStopOnEmptyResponse returns a boolean if a field has been set.

func (TimelineTimelineCursor) MarshalJSON ¶

func (o TimelineTimelineCursor) MarshalJSON() ([]byte, error)

func (*TimelineTimelineCursor) SetCursorType ¶

func (o *TimelineTimelineCursor) SetCursorType(v CursorType)

SetCursorType sets field value

func (*TimelineTimelineCursor) SetDisplayTreatment ¶

func (o *TimelineTimelineCursor) SetDisplayTreatment(v DisplayTreatment)

SetDisplayTreatment gets a reference to the given DisplayTreatment and assigns it to the DisplayTreatment field.

func (*TimelineTimelineCursor) SetEntryType ¶

func (o *TimelineTimelineCursor) SetEntryType(v ContentEntryType)

SetEntryType gets a reference to the given ContentEntryType and assigns it to the EntryType field.

func (*TimelineTimelineCursor) SetItemType ¶

func (o *TimelineTimelineCursor) SetItemType(v ContentEntryType)

SetItemType gets a reference to the given ContentEntryType and assigns it to the ItemType field.

func (*TimelineTimelineCursor) SetStopOnEmptyResponse ¶

func (o *TimelineTimelineCursor) SetStopOnEmptyResponse(v bool)

SetStopOnEmptyResponse gets a reference to the given bool and assigns it to the StopOnEmptyResponse field.

func (*TimelineTimelineCursor) SetTypename ¶

func (o *TimelineTimelineCursor) SetTypename(v TypeName)

SetTypename sets field value

func (*TimelineTimelineCursor) SetValue ¶

func (o *TimelineTimelineCursor) SetValue(v string)

SetValue sets field value

func (TimelineTimelineCursor) ToMap ¶

func (o TimelineTimelineCursor) ToMap() (map[string]interface{}, error)

func (*TimelineTimelineCursor) UnmarshalJSON ¶

func (o *TimelineTimelineCursor) UnmarshalJSON(data []byte) (err error)

type TimelineTimelineItem ¶

type TimelineTimelineItem struct {
	Typename        TypeName               `json:"__typename"`
	ClientEventInfo *ClientEventInfo       `json:"clientEventInfo,omitempty"`
	EntryType       ContentEntryType       `json:"entryType"`
	FeedbackInfo    map[string]interface{} `json:"feedbackInfo,omitempty"`
	ItemContent     ItemContentUnion       `json:"itemContent"`
}

TimelineTimelineItem struct for TimelineTimelineItem

func NewTimelineTimelineItem ¶

func NewTimelineTimelineItem(typename TypeName, entryType ContentEntryType, itemContent ItemContentUnion) *TimelineTimelineItem

NewTimelineTimelineItem instantiates a new TimelineTimelineItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimelineTimelineItemWithDefaults ¶

func NewTimelineTimelineItemWithDefaults() *TimelineTimelineItem

NewTimelineTimelineItemWithDefaults instantiates a new TimelineTimelineItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimelineTimelineItem) GetClientEventInfo ¶

func (o *TimelineTimelineItem) GetClientEventInfo() ClientEventInfo

GetClientEventInfo returns the ClientEventInfo field value if set, zero value otherwise.

func (*TimelineTimelineItem) GetClientEventInfoOk ¶

func (o *TimelineTimelineItem) GetClientEventInfoOk() (*ClientEventInfo, bool)

GetClientEventInfoOk returns a tuple with the ClientEventInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelineTimelineItem) GetEntryType ¶

func (o *TimelineTimelineItem) GetEntryType() ContentEntryType

GetEntryType returns the EntryType field value

func (*TimelineTimelineItem) GetEntryTypeOk ¶

func (o *TimelineTimelineItem) GetEntryTypeOk() (*ContentEntryType, bool)

GetEntryTypeOk returns a tuple with the EntryType field value and a boolean to check if the value has been set.

func (*TimelineTimelineItem) GetFeedbackInfo ¶

func (o *TimelineTimelineItem) GetFeedbackInfo() map[string]interface{}

GetFeedbackInfo returns the FeedbackInfo field value if set, zero value otherwise.

func (*TimelineTimelineItem) GetFeedbackInfoOk ¶

func (o *TimelineTimelineItem) GetFeedbackInfoOk() (map[string]interface{}, bool)

GetFeedbackInfoOk returns a tuple with the FeedbackInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelineTimelineItem) GetItemContent ¶

func (o *TimelineTimelineItem) GetItemContent() ItemContentUnion

GetItemContent returns the ItemContent field value

func (*TimelineTimelineItem) GetItemContentOk ¶

func (o *TimelineTimelineItem) GetItemContentOk() (*ItemContentUnion, bool)

GetItemContentOk returns a tuple with the ItemContent field value and a boolean to check if the value has been set.

func (*TimelineTimelineItem) GetTypename ¶

func (o *TimelineTimelineItem) GetTypename() TypeName

GetTypename returns the Typename field value

func (*TimelineTimelineItem) GetTypenameOk ¶

func (o *TimelineTimelineItem) GetTypenameOk() (*TypeName, bool)

GetTypenameOk returns a tuple with the Typename field value and a boolean to check if the value has been set.

func (*TimelineTimelineItem) HasClientEventInfo ¶

func (o *TimelineTimelineItem) HasClientEventInfo() bool

HasClientEventInfo returns a boolean if a field has been set.

func (*TimelineTimelineItem) HasFeedbackInfo ¶

func (o *TimelineTimelineItem) HasFeedbackInfo() bool

HasFeedbackInfo returns a boolean if a field has been set.

func (TimelineTimelineItem) MarshalJSON ¶

func (o TimelineTimelineItem) MarshalJSON() ([]byte, error)

func (*TimelineTimelineItem) SetClientEventInfo ¶

func (o *TimelineTimelineItem) SetClientEventInfo(v ClientEventInfo)

SetClientEventInfo gets a reference to the given ClientEventInfo and assigns it to the ClientEventInfo field.

func (*TimelineTimelineItem) SetEntryType ¶

func (o *TimelineTimelineItem) SetEntryType(v ContentEntryType)

SetEntryType sets field value

func (*TimelineTimelineItem) SetFeedbackInfo ¶

func (o *TimelineTimelineItem) SetFeedbackInfo(v map[string]interface{})

SetFeedbackInfo gets a reference to the given map[string]interface{} and assigns it to the FeedbackInfo field.

func (*TimelineTimelineItem) SetItemContent ¶

func (o *TimelineTimelineItem) SetItemContent(v ItemContentUnion)

SetItemContent sets field value

func (*TimelineTimelineItem) SetTypename ¶

func (o *TimelineTimelineItem) SetTypename(v TypeName)

SetTypename sets field value

func (TimelineTimelineItem) ToMap ¶

func (o TimelineTimelineItem) ToMap() (map[string]interface{}, error)

func (*TimelineTimelineItem) UnmarshalJSON ¶

func (o *TimelineTimelineItem) UnmarshalJSON(data []byte) (err error)

type TimelineTimelineModule ¶

type TimelineTimelineModule struct {
	Typename        TypeName               `json:"__typename"`
	ClientEventInfo map[string]interface{} `json:"clientEventInfo"`
	DisplayType     DisplayType            `json:"displayType"`
	EntryType       ContentEntryType       `json:"entryType"`
	FeedbackInfo    *FeedbackInfo          `json:"feedbackInfo,omitempty"`
	Footer          map[string]interface{} `json:"footer,omitempty"`
	Header          map[string]interface{} `json:"header,omitempty"`
	Items           []ModuleItem           `json:"items,omitempty"`
	Metadata        map[string]interface{} `json:"metadata,omitempty"`
}

TimelineTimelineModule struct for TimelineTimelineModule

func NewTimelineTimelineModule ¶

func NewTimelineTimelineModule(typename TypeName, clientEventInfo map[string]interface{}, displayType DisplayType, entryType ContentEntryType) *TimelineTimelineModule

NewTimelineTimelineModule instantiates a new TimelineTimelineModule object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimelineTimelineModuleWithDefaults ¶

func NewTimelineTimelineModuleWithDefaults() *TimelineTimelineModule

NewTimelineTimelineModuleWithDefaults instantiates a new TimelineTimelineModule object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimelineTimelineModule) GetClientEventInfo ¶

func (o *TimelineTimelineModule) GetClientEventInfo() map[string]interface{}

GetClientEventInfo returns the ClientEventInfo field value

func (*TimelineTimelineModule) GetClientEventInfoOk ¶

func (o *TimelineTimelineModule) GetClientEventInfoOk() (map[string]interface{}, bool)

GetClientEventInfoOk returns a tuple with the ClientEventInfo field value and a boolean to check if the value has been set.

func (*TimelineTimelineModule) GetDisplayType ¶

func (o *TimelineTimelineModule) GetDisplayType() DisplayType

GetDisplayType returns the DisplayType field value

func (*TimelineTimelineModule) GetDisplayTypeOk ¶

func (o *TimelineTimelineModule) GetDisplayTypeOk() (*DisplayType, bool)

GetDisplayTypeOk returns a tuple with the DisplayType field value and a boolean to check if the value has been set.

func (*TimelineTimelineModule) GetEntryType ¶

func (o *TimelineTimelineModule) GetEntryType() ContentEntryType

GetEntryType returns the EntryType field value

func (*TimelineTimelineModule) GetEntryTypeOk ¶

func (o *TimelineTimelineModule) GetEntryTypeOk() (*ContentEntryType, bool)

GetEntryTypeOk returns a tuple with the EntryType field value and a boolean to check if the value has been set.

func (*TimelineTimelineModule) GetFeedbackInfo ¶

func (o *TimelineTimelineModule) GetFeedbackInfo() FeedbackInfo

GetFeedbackInfo returns the FeedbackInfo field value if set, zero value otherwise.

func (*TimelineTimelineModule) GetFeedbackInfoOk ¶

func (o *TimelineTimelineModule) GetFeedbackInfoOk() (*FeedbackInfo, bool)

GetFeedbackInfoOk returns a tuple with the FeedbackInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelineTimelineModule) GetFooter ¶

func (o *TimelineTimelineModule) GetFooter() map[string]interface{}

GetFooter returns the Footer field value if set, zero value otherwise.

func (*TimelineTimelineModule) GetFooterOk ¶

func (o *TimelineTimelineModule) GetFooterOk() (map[string]interface{}, bool)

GetFooterOk returns a tuple with the Footer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelineTimelineModule) GetHeader ¶

func (o *TimelineTimelineModule) GetHeader() map[string]interface{}

GetHeader returns the Header field value if set, zero value otherwise.

func (*TimelineTimelineModule) GetHeaderOk ¶

func (o *TimelineTimelineModule) GetHeaderOk() (map[string]interface{}, bool)

GetHeaderOk returns a tuple with the Header field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelineTimelineModule) GetItems ¶

func (o *TimelineTimelineModule) GetItems() []ModuleItem

GetItems returns the Items field value if set, zero value otherwise.

func (*TimelineTimelineModule) GetItemsOk ¶

func (o *TimelineTimelineModule) GetItemsOk() ([]ModuleItem, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelineTimelineModule) GetMetadata ¶

func (o *TimelineTimelineModule) GetMetadata() map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*TimelineTimelineModule) GetMetadataOk ¶

func (o *TimelineTimelineModule) GetMetadataOk() (map[string]interface{}, bool)

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 (*TimelineTimelineModule) GetTypename ¶

func (o *TimelineTimelineModule) GetTypename() TypeName

GetTypename returns the Typename field value

func (*TimelineTimelineModule) GetTypenameOk ¶

func (o *TimelineTimelineModule) GetTypenameOk() (*TypeName, bool)

GetTypenameOk returns a tuple with the Typename field value and a boolean to check if the value has been set.

func (*TimelineTimelineModule) HasFeedbackInfo ¶

func (o *TimelineTimelineModule) HasFeedbackInfo() bool

HasFeedbackInfo returns a boolean if a field has been set.

func (*TimelineTimelineModule) HasFooter ¶

func (o *TimelineTimelineModule) HasFooter() bool

HasFooter returns a boolean if a field has been set.

func (*TimelineTimelineModule) HasHeader ¶

func (o *TimelineTimelineModule) HasHeader() bool

HasHeader returns a boolean if a field has been set.

func (*TimelineTimelineModule) HasItems ¶

func (o *TimelineTimelineModule) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*TimelineTimelineModule) HasMetadata ¶

func (o *TimelineTimelineModule) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (TimelineTimelineModule) MarshalJSON ¶

func (o TimelineTimelineModule) MarshalJSON() ([]byte, error)

func (*TimelineTimelineModule) SetClientEventInfo ¶

func (o *TimelineTimelineModule) SetClientEventInfo(v map[string]interface{})

SetClientEventInfo sets field value

func (*TimelineTimelineModule) SetDisplayType ¶

func (o *TimelineTimelineModule) SetDisplayType(v DisplayType)

SetDisplayType sets field value

func (*TimelineTimelineModule) SetEntryType ¶

func (o *TimelineTimelineModule) SetEntryType(v ContentEntryType)

SetEntryType sets field value

func (*TimelineTimelineModule) SetFeedbackInfo ¶

func (o *TimelineTimelineModule) SetFeedbackInfo(v FeedbackInfo)

SetFeedbackInfo gets a reference to the given FeedbackInfo and assigns it to the FeedbackInfo field.

func (*TimelineTimelineModule) SetFooter ¶

func (o *TimelineTimelineModule) SetFooter(v map[string]interface{})

SetFooter gets a reference to the given map[string]interface{} and assigns it to the Footer field.

func (*TimelineTimelineModule) SetHeader ¶

func (o *TimelineTimelineModule) SetHeader(v map[string]interface{})

SetHeader gets a reference to the given map[string]interface{} and assigns it to the Header field.

func (*TimelineTimelineModule) SetItems ¶

func (o *TimelineTimelineModule) SetItems(v []ModuleItem)

SetItems gets a reference to the given []ModuleItem and assigns it to the Items field.

func (*TimelineTimelineModule) SetMetadata ¶

func (o *TimelineTimelineModule) SetMetadata(v map[string]interface{})

SetMetadata gets a reference to the given map[string]interface{} and assigns it to the Metadata field.

func (*TimelineTimelineModule) SetTypename ¶

func (o *TimelineTimelineModule) SetTypename(v TypeName)

SetTypename sets field value

func (TimelineTimelineModule) ToMap ¶

func (o TimelineTimelineModule) ToMap() (map[string]interface{}, error)

func (*TimelineTimelineModule) UnmarshalJSON ¶

func (o *TimelineTimelineModule) UnmarshalJSON(data []byte) (err error)

type TimelineTopicContext ¶

type TimelineTopicContext struct {
	FunctionalityType *string                 `json:"functionalityType,omitempty"`
	Topic             *TopicContext           `json:"topic,omitempty"`
	Type              *SocialContextUnionType `json:"type,omitempty"`
}

TimelineTopicContext struct for TimelineTopicContext

func NewTimelineTopicContext ¶

func NewTimelineTopicContext() *TimelineTopicContext

NewTimelineTopicContext instantiates a new TimelineTopicContext object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimelineTopicContextWithDefaults ¶

func NewTimelineTopicContextWithDefaults() *TimelineTopicContext

NewTimelineTopicContextWithDefaults instantiates a new TimelineTopicContext object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimelineTopicContext) GetFunctionalityType ¶

func (o *TimelineTopicContext) GetFunctionalityType() string

GetFunctionalityType returns the FunctionalityType field value if set, zero value otherwise.

func (*TimelineTopicContext) GetFunctionalityTypeOk ¶

func (o *TimelineTopicContext) GetFunctionalityTypeOk() (*string, bool)

GetFunctionalityTypeOk returns a tuple with the FunctionalityType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelineTopicContext) GetTopic ¶

func (o *TimelineTopicContext) GetTopic() TopicContext

GetTopic returns the Topic field value if set, zero value otherwise.

func (*TimelineTopicContext) GetTopicOk ¶

func (o *TimelineTopicContext) GetTopicOk() (*TopicContext, 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 (*TimelineTopicContext) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*TimelineTopicContext) GetTypeOk ¶

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 (*TimelineTopicContext) HasFunctionalityType ¶

func (o *TimelineTopicContext) HasFunctionalityType() bool

HasFunctionalityType returns a boolean if a field has been set.

func (*TimelineTopicContext) HasTopic ¶

func (o *TimelineTopicContext) HasTopic() bool

HasTopic returns a boolean if a field has been set.

func (*TimelineTopicContext) HasType ¶

func (o *TimelineTopicContext) HasType() bool

HasType returns a boolean if a field has been set.

func (TimelineTopicContext) MarshalJSON ¶

func (o TimelineTopicContext) MarshalJSON() ([]byte, error)

func (*TimelineTopicContext) SetFunctionalityType ¶

func (o *TimelineTopicContext) SetFunctionalityType(v string)

SetFunctionalityType gets a reference to the given string and assigns it to the FunctionalityType field.

func (*TimelineTopicContext) SetTopic ¶

func (o *TimelineTopicContext) SetTopic(v TopicContext)

SetTopic gets a reference to the given TopicContext and assigns it to the Topic field.

func (*TimelineTopicContext) SetType ¶

SetType gets a reference to the given SocialContextUnionType and assigns it to the Type field.

func (TimelineTopicContext) ToMap ¶

func (o TimelineTopicContext) ToMap() (map[string]interface{}, error)

type TimelineTweet ¶

type TimelineTweet struct {
	Typename         TypeName               `json:"__typename"`
	Highlights       *Highlight             `json:"highlights,omitempty"`
	ItemType         ContentItemType        `json:"itemType"`
	PromotedMetadata map[string]interface{} `json:"promotedMetadata,omitempty"`
	SocialContext    *SocialContextUnion    `json:"socialContext,omitempty"`
	TweetDisplayType string                 `json:"tweetDisplayType"`
	TweetResults     ItemResult             `json:"tweet_results"`
}

TimelineTweet struct for TimelineTweet

func NewTimelineTweet ¶

func NewTimelineTweet(typename TypeName, itemType ContentItemType, tweetDisplayType string, tweetResults ItemResult) *TimelineTweet

NewTimelineTweet instantiates a new TimelineTweet object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimelineTweetWithDefaults ¶

func NewTimelineTweetWithDefaults() *TimelineTweet

NewTimelineTweetWithDefaults instantiates a new TimelineTweet object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimelineTweet) GetHighlights ¶

func (o *TimelineTweet) GetHighlights() Highlight

GetHighlights returns the Highlights field value if set, zero value otherwise.

func (*TimelineTweet) GetHighlightsOk ¶

func (o *TimelineTweet) GetHighlightsOk() (*Highlight, 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 (*TimelineTweet) GetItemType ¶

func (o *TimelineTweet) GetItemType() ContentItemType

GetItemType returns the ItemType field value

func (*TimelineTweet) GetItemTypeOk ¶

func (o *TimelineTweet) GetItemTypeOk() (*ContentItemType, bool)

GetItemTypeOk returns a tuple with the ItemType field value and a boolean to check if the value has been set.

func (*TimelineTweet) GetPromotedMetadata ¶

func (o *TimelineTweet) GetPromotedMetadata() map[string]interface{}

GetPromotedMetadata returns the PromotedMetadata field value if set, zero value otherwise.

func (*TimelineTweet) GetPromotedMetadataOk ¶

func (o *TimelineTweet) GetPromotedMetadataOk() (map[string]interface{}, bool)

GetPromotedMetadataOk returns a tuple with the PromotedMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelineTweet) GetSocialContext ¶

func (o *TimelineTweet) GetSocialContext() SocialContextUnion

GetSocialContext returns the SocialContext field value if set, zero value otherwise.

func (*TimelineTweet) GetSocialContextOk ¶

func (o *TimelineTweet) GetSocialContextOk() (*SocialContextUnion, bool)

GetSocialContextOk returns a tuple with the SocialContext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelineTweet) GetTweetDisplayType ¶

func (o *TimelineTweet) GetTweetDisplayType() string

GetTweetDisplayType returns the TweetDisplayType field value

func (*TimelineTweet) GetTweetDisplayTypeOk ¶

func (o *TimelineTweet) GetTweetDisplayTypeOk() (*string, bool)

GetTweetDisplayTypeOk returns a tuple with the TweetDisplayType field value and a boolean to check if the value has been set.

func (*TimelineTweet) GetTweetResults ¶

func (o *TimelineTweet) GetTweetResults() ItemResult

GetTweetResults returns the TweetResults field value

func (*TimelineTweet) GetTweetResultsOk ¶

func (o *TimelineTweet) GetTweetResultsOk() (*ItemResult, bool)

GetTweetResultsOk returns a tuple with the TweetResults field value and a boolean to check if the value has been set.

func (*TimelineTweet) GetTypename ¶

func (o *TimelineTweet) GetTypename() TypeName

GetTypename returns the Typename field value

func (*TimelineTweet) GetTypenameOk ¶

func (o *TimelineTweet) GetTypenameOk() (*TypeName, bool)

GetTypenameOk returns a tuple with the Typename field value and a boolean to check if the value has been set.

func (*TimelineTweet) HasHighlights ¶

func (o *TimelineTweet) HasHighlights() bool

HasHighlights returns a boolean if a field has been set.

func (*TimelineTweet) HasPromotedMetadata ¶

func (o *TimelineTweet) HasPromotedMetadata() bool

HasPromotedMetadata returns a boolean if a field has been set.

func (*TimelineTweet) HasSocialContext ¶

func (o *TimelineTweet) HasSocialContext() bool

HasSocialContext returns a boolean if a field has been set.

func (TimelineTweet) MarshalJSON ¶

func (o TimelineTweet) MarshalJSON() ([]byte, error)

func (*TimelineTweet) SetHighlights ¶

func (o *TimelineTweet) SetHighlights(v Highlight)

SetHighlights gets a reference to the given Highlight and assigns it to the Highlights field.

func (*TimelineTweet) SetItemType ¶

func (o *TimelineTweet) SetItemType(v ContentItemType)

SetItemType sets field value

func (*TimelineTweet) SetPromotedMetadata ¶

func (o *TimelineTweet) SetPromotedMetadata(v map[string]interface{})

SetPromotedMetadata gets a reference to the given map[string]interface{} and assigns it to the PromotedMetadata field.

func (*TimelineTweet) SetSocialContext ¶

func (o *TimelineTweet) SetSocialContext(v SocialContextUnion)

SetSocialContext gets a reference to the given SocialContextUnion and assigns it to the SocialContext field.

func (*TimelineTweet) SetTweetDisplayType ¶

func (o *TimelineTweet) SetTweetDisplayType(v string)

SetTweetDisplayType sets field value

func (*TimelineTweet) SetTweetResults ¶

func (o *TimelineTweet) SetTweetResults(v ItemResult)

SetTweetResults sets field value

func (*TimelineTweet) SetTypename ¶

func (o *TimelineTweet) SetTypename(v TypeName)

SetTypename sets field value

func (TimelineTweet) ToMap ¶

func (o TimelineTweet) ToMap() (map[string]interface{}, error)

func (*TimelineTweet) UnmarshalJSON ¶

func (o *TimelineTweet) UnmarshalJSON(data []byte) (err error)

type TimelineUser ¶

type TimelineUser struct {
	Typename        TypeName            `json:"__typename"`
	ItemType        ContentItemType     `json:"itemType"`
	SocialContext   *SocialContextUnion `json:"socialContext,omitempty"`
	UserDisplayType string              `json:"userDisplayType"`
	UserResults     UserResults         `json:"user_results"`
}

TimelineUser struct for TimelineUser

func NewTimelineUser ¶

func NewTimelineUser(typename TypeName, itemType ContentItemType, userDisplayType string, userResults UserResults) *TimelineUser

NewTimelineUser instantiates a new TimelineUser object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimelineUserWithDefaults ¶

func NewTimelineUserWithDefaults() *TimelineUser

NewTimelineUserWithDefaults instantiates a new TimelineUser object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimelineUser) GetItemType ¶

func (o *TimelineUser) GetItemType() ContentItemType

GetItemType returns the ItemType field value

func (*TimelineUser) GetItemTypeOk ¶

func (o *TimelineUser) GetItemTypeOk() (*ContentItemType, bool)

GetItemTypeOk returns a tuple with the ItemType field value and a boolean to check if the value has been set.

func (*TimelineUser) GetSocialContext ¶

func (o *TimelineUser) GetSocialContext() SocialContextUnion

GetSocialContext returns the SocialContext field value if set, zero value otherwise.

func (*TimelineUser) GetSocialContextOk ¶

func (o *TimelineUser) GetSocialContextOk() (*SocialContextUnion, bool)

GetSocialContextOk returns a tuple with the SocialContext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelineUser) GetTypename ¶

func (o *TimelineUser) GetTypename() TypeName

GetTypename returns the Typename field value

func (*TimelineUser) GetTypenameOk ¶

func (o *TimelineUser) GetTypenameOk() (*TypeName, bool)

GetTypenameOk returns a tuple with the Typename field value and a boolean to check if the value has been set.

func (*TimelineUser) GetUserDisplayType ¶

func (o *TimelineUser) GetUserDisplayType() string

GetUserDisplayType returns the UserDisplayType field value

func (*TimelineUser) GetUserDisplayTypeOk ¶

func (o *TimelineUser) GetUserDisplayTypeOk() (*string, bool)

GetUserDisplayTypeOk returns a tuple with the UserDisplayType field value and a boolean to check if the value has been set.

func (*TimelineUser) GetUserResults ¶

func (o *TimelineUser) GetUserResults() UserResults

GetUserResults returns the UserResults field value

func (*TimelineUser) GetUserResultsOk ¶

func (o *TimelineUser) GetUserResultsOk() (*UserResults, bool)

GetUserResultsOk returns a tuple with the UserResults field value and a boolean to check if the value has been set.

func (*TimelineUser) HasSocialContext ¶

func (o *TimelineUser) HasSocialContext() bool

HasSocialContext returns a boolean if a field has been set.

func (TimelineUser) MarshalJSON ¶

func (o TimelineUser) MarshalJSON() ([]byte, error)

func (*TimelineUser) SetItemType ¶

func (o *TimelineUser) SetItemType(v ContentItemType)

SetItemType sets field value

func (*TimelineUser) SetSocialContext ¶

func (o *TimelineUser) SetSocialContext(v SocialContextUnion)

SetSocialContext gets a reference to the given SocialContextUnion and assigns it to the SocialContext field.

func (*TimelineUser) SetTypename ¶

func (o *TimelineUser) SetTypename(v TypeName)

SetTypename sets field value

func (*TimelineUser) SetUserDisplayType ¶

func (o *TimelineUser) SetUserDisplayType(v string)

SetUserDisplayType sets field value

func (*TimelineUser) SetUserResults ¶

func (o *TimelineUser) SetUserResults(v UserResults)

SetUserResults sets field value

func (TimelineUser) ToMap ¶

func (o TimelineUser) ToMap() (map[string]interface{}, error)

func (*TimelineUser) UnmarshalJSON ¶

func (o *TimelineUser) UnmarshalJSON(data []byte) (err error)

type TimelineV2 ¶

type TimelineV2 struct {
	Timeline *Timeline `json:"timeline,omitempty"`
}

TimelineV2 struct for TimelineV2

func NewTimelineV2 ¶

func NewTimelineV2() *TimelineV2

NewTimelineV2 instantiates a new TimelineV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimelineV2WithDefaults ¶

func NewTimelineV2WithDefaults() *TimelineV2

NewTimelineV2WithDefaults instantiates a new TimelineV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimelineV2) GetTimeline ¶

func (o *TimelineV2) GetTimeline() Timeline

GetTimeline returns the Timeline field value if set, zero value otherwise.

func (*TimelineV2) GetTimelineOk ¶

func (o *TimelineV2) GetTimelineOk() (*Timeline, bool)

GetTimelineOk returns a tuple with the Timeline field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TimelineV2) HasTimeline ¶

func (o *TimelineV2) HasTimeline() bool

HasTimeline returns a boolean if a field has been set.

func (TimelineV2) MarshalJSON ¶

func (o TimelineV2) MarshalJSON() ([]byte, error)

func (*TimelineV2) SetTimeline ¶

func (o *TimelineV2) SetTimeline(v Timeline)

SetTimeline gets a reference to the given Timeline and assigns it to the Timeline field.

func (TimelineV2) ToMap ¶

func (o TimelineV2) ToMap() (map[string]interface{}, error)

type Timestamp ¶

type Timestamp struct {
	Indices []int32 `json:"indices"`
	Seconds int32   `json:"seconds"`
	Text    string  `json:"text"`
}

Timestamp struct for Timestamp

func NewTimestamp ¶

func NewTimestamp(indices []int32, seconds int32, text string) *Timestamp

NewTimestamp instantiates a new Timestamp object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimestampWithDefaults ¶

func NewTimestampWithDefaults() *Timestamp

NewTimestampWithDefaults instantiates a new Timestamp object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Timestamp) GetIndices ¶

func (o *Timestamp) GetIndices() []int32

GetIndices returns the Indices field value

func (*Timestamp) GetIndicesOk ¶

func (o *Timestamp) GetIndicesOk() ([]int32, bool)

GetIndicesOk returns a tuple with the Indices field value and a boolean to check if the value has been set.

func (*Timestamp) GetSeconds ¶

func (o *Timestamp) GetSeconds() int32

GetSeconds returns the Seconds field value

func (*Timestamp) GetSecondsOk ¶

func (o *Timestamp) GetSecondsOk() (*int32, bool)

GetSecondsOk returns a tuple with the Seconds field value and a boolean to check if the value has been set.

func (*Timestamp) GetText ¶

func (o *Timestamp) GetText() string

GetText returns the Text field value

func (*Timestamp) GetTextOk ¶

func (o *Timestamp) GetTextOk() (*string, bool)

GetTextOk returns a tuple with the Text field value and a boolean to check if the value has been set.

func (Timestamp) MarshalJSON ¶

func (o Timestamp) MarshalJSON() ([]byte, error)

func (*Timestamp) SetIndices ¶

func (o *Timestamp) SetIndices(v []int32)

SetIndices sets field value

func (*Timestamp) SetSeconds ¶

func (o *Timestamp) SetSeconds(v int32)

SetSeconds sets field value

func (*Timestamp) SetText ¶

func (o *Timestamp) SetText(v string)

SetText sets field value

func (Timestamp) ToMap ¶

func (o Timestamp) ToMap() (map[string]interface{}, error)

func (*Timestamp) UnmarshalJSON ¶

func (o *Timestamp) UnmarshalJSON(data []byte) (err error)

type TopicContext ¶

type TopicContext struct {
	Description   *string `json:"description,omitempty"`
	Following     *bool   `json:"following,omitempty"`
	IconUrl       *string `json:"icon_url,omitempty"`
	Id            *string `json:"id,omitempty"`
	Name          *string `json:"name,omitempty"`
	NotInterested *bool   `json:"not_interested,omitempty"`
	TopicId       *string `json:"topic_id,omitempty"`
}

TopicContext struct for TopicContext

func NewTopicContext ¶

func NewTopicContext() *TopicContext

NewTopicContext instantiates a new TopicContext object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTopicContextWithDefaults ¶

func NewTopicContextWithDefaults() *TopicContext

NewTopicContextWithDefaults instantiates a new TopicContext object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TopicContext) GetDescription ¶

func (o *TopicContext) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*TopicContext) GetDescriptionOk ¶

func (o *TopicContext) 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 (*TopicContext) GetFollowing ¶

func (o *TopicContext) GetFollowing() bool

GetFollowing returns the Following field value if set, zero value otherwise.

func (*TopicContext) GetFollowingOk ¶

func (o *TopicContext) GetFollowingOk() (*bool, bool)

GetFollowingOk returns a tuple with the Following field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TopicContext) GetIconUrl ¶

func (o *TopicContext) GetIconUrl() string

GetIconUrl returns the IconUrl field value if set, zero value otherwise.

func (*TopicContext) GetIconUrlOk ¶

func (o *TopicContext) GetIconUrlOk() (*string, bool)

GetIconUrlOk returns a tuple with the IconUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TopicContext) GetId ¶

func (o *TopicContext) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*TopicContext) GetIdOk ¶

func (o *TopicContext) 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 (*TopicContext) GetName ¶

func (o *TopicContext) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*TopicContext) GetNameOk ¶

func (o *TopicContext) 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 (*TopicContext) GetNotInterested ¶

func (o *TopicContext) GetNotInterested() bool

GetNotInterested returns the NotInterested field value if set, zero value otherwise.

func (*TopicContext) GetNotInterestedOk ¶

func (o *TopicContext) GetNotInterestedOk() (*bool, bool)

GetNotInterestedOk returns a tuple with the NotInterested field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TopicContext) GetTopicId ¶

func (o *TopicContext) GetTopicId() string

GetTopicId returns the TopicId field value if set, zero value otherwise.

func (*TopicContext) GetTopicIdOk ¶

func (o *TopicContext) GetTopicIdOk() (*string, 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 (*TopicContext) HasDescription ¶

func (o *TopicContext) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*TopicContext) HasFollowing ¶

func (o *TopicContext) HasFollowing() bool

HasFollowing returns a boolean if a field has been set.

func (*TopicContext) HasIconUrl ¶

func (o *TopicContext) HasIconUrl() bool

HasIconUrl returns a boolean if a field has been set.

func (*TopicContext) HasId ¶

func (o *TopicContext) HasId() bool

HasId returns a boolean if a field has been set.

func (*TopicContext) HasName ¶

func (o *TopicContext) HasName() bool

HasName returns a boolean if a field has been set.

func (*TopicContext) HasNotInterested ¶

func (o *TopicContext) HasNotInterested() bool

HasNotInterested returns a boolean if a field has been set.

func (*TopicContext) HasTopicId ¶

func (o *TopicContext) HasTopicId() bool

HasTopicId returns a boolean if a field has been set.

func (TopicContext) MarshalJSON ¶

func (o TopicContext) MarshalJSON() ([]byte, error)

func (*TopicContext) SetDescription ¶

func (o *TopicContext) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*TopicContext) SetFollowing ¶

func (o *TopicContext) SetFollowing(v bool)

SetFollowing gets a reference to the given bool and assigns it to the Following field.

func (*TopicContext) SetIconUrl ¶

func (o *TopicContext) SetIconUrl(v string)

SetIconUrl gets a reference to the given string and assigns it to the IconUrl field.

func (*TopicContext) SetId ¶

func (o *TopicContext) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*TopicContext) SetName ¶

func (o *TopicContext) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*TopicContext) SetNotInterested ¶

func (o *TopicContext) SetNotInterested(v bool)

SetNotInterested gets a reference to the given bool and assigns it to the NotInterested field.

func (*TopicContext) SetTopicId ¶

func (o *TopicContext) SetTopicId(v string)

SetTopicId gets a reference to the given string and assigns it to the TopicId field.

func (TopicContext) ToMap ¶

func (o TopicContext) ToMap() (map[string]interface{}, error)

type Tracing ¶

type Tracing struct {
	TraceId string `json:"trace_id" validate:"regexp=^[0-9a-f]{16}$"`
}

Tracing struct for Tracing

func NewTracing ¶

func NewTracing(traceId string) *Tracing

NewTracing instantiates a new Tracing object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTracingWithDefaults ¶

func NewTracingWithDefaults() *Tracing

NewTracingWithDefaults instantiates a new Tracing object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Tracing) GetTraceId ¶

func (o *Tracing) GetTraceId() string

GetTraceId returns the TraceId field value

func (*Tracing) GetTraceIdOk ¶

func (o *Tracing) GetTraceIdOk() (*string, bool)

GetTraceIdOk returns a tuple with the TraceId field value and a boolean to check if the value has been set.

func (Tracing) MarshalJSON ¶

func (o Tracing) MarshalJSON() ([]byte, error)

func (*Tracing) SetTraceId ¶

func (o *Tracing) SetTraceId(v string)

SetTraceId sets field value

func (Tracing) ToMap ¶

func (o Tracing) ToMap() (map[string]interface{}, error)

func (*Tracing) UnmarshalJSON ¶

func (o *Tracing) UnmarshalJSON(data []byte) (err error)

type Tweet ¶

type Tweet struct {
	Typename                    *TypeName                    `json:"__typename,omitempty"`
	Article                     *Article                     `json:"article,omitempty"`
	AuthorCommunityRelationship *AuthorCommunityRelationship `json:"author_community_relationship,omitempty"`
	BirdwatchPivot              *BirdwatchPivot              `json:"birdwatch_pivot,omitempty"`
	Card                        *TweetCard                   `json:"card,omitempty"`
	CommunityRelationship       *CommunityRelationship       `json:"community_relationship,omitempty"`
	CommunityResults            *Community                   `json:"community_results,omitempty"`
	Core                        *UserResultCore              `json:"core,omitempty"`
	EditControl                 *TweetEditControl            `json:"edit_control,omitempty"`
	EditPrespective             *TweetEditPrespective        `json:"edit_prespective,omitempty"`
	HasBirdwatchNotes           *bool                        `json:"has_birdwatch_notes,omitempty"`
	IsTranslatable              *bool                        `json:"is_translatable,omitempty"`
	Legacy                      *TweetLegacy                 `json:"legacy,omitempty"`
	NoteTweet                   *NoteTweet                   `json:"note_tweet,omitempty"`
	PreviousCounts              *TweetPreviousCounts         `json:"previous_counts,omitempty"`
	QuickPromoteEligibility     map[string]interface{}       `json:"quick_promote_eligibility,omitempty"`
	QuotedRefResult             *QuotedRefResult             `json:"quotedRefResult,omitempty"`
	QuotedStatusResult          *ItemResult                  `json:"quoted_status_result,omitempty"`
	RestId                      string                       `json:"rest_id" validate:"regexp=^[0-9]+$"`
	Source                      *string                      `json:"source,omitempty"`
	SuperFollowsReplyUserResult *SuperFollowsReplyUserResult `json:"superFollowsReplyUserResult,omitempty"`
	UnifiedCard                 *UnifiedCard                 `json:"unified_card,omitempty"`
	UnmentionData               map[string]interface{}       `json:"unmention_data,omitempty"`
	Views                       *TweetView                   `json:"views,omitempty"`
}

Tweet struct for Tweet

func NewTweet ¶

func NewTweet(restId string) *Tweet

NewTweet instantiates a new Tweet object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetWithDefaults ¶

func NewTweetWithDefaults() *Tweet

NewTweetWithDefaults instantiates a new Tweet object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Tweet) GetArticle ¶

func (o *Tweet) GetArticle() Article

GetArticle returns the Article field value if set, zero value otherwise.

func (*Tweet) GetArticleOk ¶

func (o *Tweet) GetArticleOk() (*Article, bool)

GetArticleOk returns a tuple with the Article field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tweet) GetAuthorCommunityRelationship ¶

func (o *Tweet) GetAuthorCommunityRelationship() AuthorCommunityRelationship

GetAuthorCommunityRelationship returns the AuthorCommunityRelationship field value if set, zero value otherwise.

func (*Tweet) GetAuthorCommunityRelationshipOk ¶

func (o *Tweet) GetAuthorCommunityRelationshipOk() (*AuthorCommunityRelationship, bool)

GetAuthorCommunityRelationshipOk returns a tuple with the AuthorCommunityRelationship field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tweet) GetBirdwatchPivot ¶

func (o *Tweet) GetBirdwatchPivot() BirdwatchPivot

GetBirdwatchPivot returns the BirdwatchPivot field value if set, zero value otherwise.

func (*Tweet) GetBirdwatchPivotOk ¶

func (o *Tweet) GetBirdwatchPivotOk() (*BirdwatchPivot, bool)

GetBirdwatchPivotOk returns a tuple with the BirdwatchPivot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tweet) GetCard ¶

func (o *Tweet) GetCard() TweetCard

GetCard returns the Card field value if set, zero value otherwise.

func (*Tweet) GetCardOk ¶

func (o *Tweet) GetCardOk() (*TweetCard, bool)

GetCardOk returns a tuple with the Card field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tweet) GetCommunityRelationship ¶

func (o *Tweet) GetCommunityRelationship() CommunityRelationship

GetCommunityRelationship returns the CommunityRelationship field value if set, zero value otherwise.

func (*Tweet) GetCommunityRelationshipOk ¶

func (o *Tweet) GetCommunityRelationshipOk() (*CommunityRelationship, bool)

GetCommunityRelationshipOk returns a tuple with the CommunityRelationship field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tweet) GetCommunityResults ¶

func (o *Tweet) GetCommunityResults() Community

GetCommunityResults returns the CommunityResults field value if set, zero value otherwise.

func (*Tweet) GetCommunityResultsOk ¶

func (o *Tweet) GetCommunityResultsOk() (*Community, bool)

GetCommunityResultsOk returns a tuple with the CommunityResults field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tweet) GetCore ¶

func (o *Tweet) GetCore() UserResultCore

GetCore returns the Core field value if set, zero value otherwise.

func (*Tweet) GetCoreOk ¶

func (o *Tweet) GetCoreOk() (*UserResultCore, bool)

GetCoreOk returns a tuple with the Core field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tweet) GetEditControl ¶

func (o *Tweet) GetEditControl() TweetEditControl

GetEditControl returns the EditControl field value if set, zero value otherwise.

func (*Tweet) GetEditControlOk ¶

func (o *Tweet) GetEditControlOk() (*TweetEditControl, bool)

GetEditControlOk returns a tuple with the EditControl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tweet) GetEditPrespective ¶

func (o *Tweet) GetEditPrespective() TweetEditPrespective

GetEditPrespective returns the EditPrespective field value if set, zero value otherwise.

func (*Tweet) GetEditPrespectiveOk ¶

func (o *Tweet) GetEditPrespectiveOk() (*TweetEditPrespective, bool)

GetEditPrespectiveOk returns a tuple with the EditPrespective field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tweet) GetHasBirdwatchNotes ¶

func (o *Tweet) GetHasBirdwatchNotes() bool

GetHasBirdwatchNotes returns the HasBirdwatchNotes field value if set, zero value otherwise.

func (*Tweet) GetHasBirdwatchNotesOk ¶

func (o *Tweet) GetHasBirdwatchNotesOk() (*bool, bool)

GetHasBirdwatchNotesOk returns a tuple with the HasBirdwatchNotes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tweet) GetIsTranslatable ¶

func (o *Tweet) GetIsTranslatable() bool

GetIsTranslatable returns the IsTranslatable field value if set, zero value otherwise.

func (*Tweet) GetIsTranslatableOk ¶

func (o *Tweet) GetIsTranslatableOk() (*bool, bool)

GetIsTranslatableOk returns a tuple with the IsTranslatable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tweet) GetLegacy ¶

func (o *Tweet) GetLegacy() TweetLegacy

GetLegacy returns the Legacy field value if set, zero value otherwise.

func (*Tweet) GetLegacyOk ¶

func (o *Tweet) GetLegacyOk() (*TweetLegacy, bool)

GetLegacyOk returns a tuple with the Legacy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tweet) GetNoteTweet ¶

func (o *Tweet) GetNoteTweet() NoteTweet

GetNoteTweet returns the NoteTweet field value if set, zero value otherwise.

func (*Tweet) GetNoteTweetOk ¶

func (o *Tweet) GetNoteTweetOk() (*NoteTweet, bool)

GetNoteTweetOk returns a tuple with the NoteTweet field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tweet) GetPreviousCounts ¶

func (o *Tweet) GetPreviousCounts() TweetPreviousCounts

GetPreviousCounts returns the PreviousCounts field value if set, zero value otherwise.

func (*Tweet) GetPreviousCountsOk ¶

func (o *Tweet) GetPreviousCountsOk() (*TweetPreviousCounts, bool)

GetPreviousCountsOk returns a tuple with the PreviousCounts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tweet) GetQuickPromoteEligibility ¶

func (o *Tweet) GetQuickPromoteEligibility() map[string]interface{}

GetQuickPromoteEligibility returns the QuickPromoteEligibility field value if set, zero value otherwise.

func (*Tweet) GetQuickPromoteEligibilityOk ¶

func (o *Tweet) GetQuickPromoteEligibilityOk() (map[string]interface{}, bool)

GetQuickPromoteEligibilityOk returns a tuple with the QuickPromoteEligibility field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tweet) GetQuotedRefResult ¶

func (o *Tweet) GetQuotedRefResult() QuotedRefResult

GetQuotedRefResult returns the QuotedRefResult field value if set, zero value otherwise.

func (*Tweet) GetQuotedRefResultOk ¶

func (o *Tweet) GetQuotedRefResultOk() (*QuotedRefResult, bool)

GetQuotedRefResultOk returns a tuple with the QuotedRefResult field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tweet) GetQuotedStatusResult ¶

func (o *Tweet) GetQuotedStatusResult() ItemResult

GetQuotedStatusResult returns the QuotedStatusResult field value if set, zero value otherwise.

func (*Tweet) GetQuotedStatusResultOk ¶

func (o *Tweet) GetQuotedStatusResultOk() (*ItemResult, bool)

GetQuotedStatusResultOk returns a tuple with the QuotedStatusResult field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tweet) GetRestId ¶

func (o *Tweet) GetRestId() string

GetRestId returns the RestId field value

func (*Tweet) GetRestIdOk ¶

func (o *Tweet) GetRestIdOk() (*string, bool)

GetRestIdOk returns a tuple with the RestId field value and a boolean to check if the value has been set.

func (*Tweet) GetSource ¶

func (o *Tweet) GetSource() string

GetSource returns the Source field value if set, zero value otherwise.

func (*Tweet) GetSourceOk ¶

func (o *Tweet) GetSourceOk() (*string, bool)

GetSourceOk returns a tuple with the Source field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tweet) GetSuperFollowsReplyUserResult ¶

func (o *Tweet) GetSuperFollowsReplyUserResult() SuperFollowsReplyUserResult

GetSuperFollowsReplyUserResult returns the SuperFollowsReplyUserResult field value if set, zero value otherwise.

func (*Tweet) GetSuperFollowsReplyUserResultOk ¶

func (o *Tweet) GetSuperFollowsReplyUserResultOk() (*SuperFollowsReplyUserResult, bool)

GetSuperFollowsReplyUserResultOk returns a tuple with the SuperFollowsReplyUserResult field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tweet) GetTypename ¶

func (o *Tweet) GetTypename() TypeName

GetTypename returns the Typename field value if set, zero value otherwise.

func (*Tweet) GetTypenameOk ¶

func (o *Tweet) GetTypenameOk() (*TypeName, bool)

GetTypenameOk returns a tuple with the Typename field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tweet) GetUnifiedCard ¶

func (o *Tweet) GetUnifiedCard() UnifiedCard

GetUnifiedCard returns the UnifiedCard field value if set, zero value otherwise.

func (*Tweet) GetUnifiedCardOk ¶

func (o *Tweet) GetUnifiedCardOk() (*UnifiedCard, bool)

GetUnifiedCardOk returns a tuple with the UnifiedCard field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tweet) GetUnmentionData ¶

func (o *Tweet) GetUnmentionData() map[string]interface{}

GetUnmentionData returns the UnmentionData field value if set, zero value otherwise.

func (*Tweet) GetUnmentionDataOk ¶

func (o *Tweet) GetUnmentionDataOk() (map[string]interface{}, bool)

GetUnmentionDataOk returns a tuple with the UnmentionData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tweet) GetViews ¶

func (o *Tweet) GetViews() TweetView

GetViews returns the Views field value if set, zero value otherwise.

func (*Tweet) GetViewsOk ¶

func (o *Tweet) GetViewsOk() (*TweetView, 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 (*Tweet) HasArticle ¶

func (o *Tweet) HasArticle() bool

HasArticle returns a boolean if a field has been set.

func (*Tweet) HasAuthorCommunityRelationship ¶

func (o *Tweet) HasAuthorCommunityRelationship() bool

HasAuthorCommunityRelationship returns a boolean if a field has been set.

func (*Tweet) HasBirdwatchPivot ¶

func (o *Tweet) HasBirdwatchPivot() bool

HasBirdwatchPivot returns a boolean if a field has been set.

func (*Tweet) HasCard ¶

func (o *Tweet) HasCard() bool

HasCard returns a boolean if a field has been set.

func (*Tweet) HasCommunityRelationship ¶

func (o *Tweet) HasCommunityRelationship() bool

HasCommunityRelationship returns a boolean if a field has been set.

func (*Tweet) HasCommunityResults ¶

func (o *Tweet) HasCommunityResults() bool

HasCommunityResults returns a boolean if a field has been set.

func (*Tweet) HasCore ¶

func (o *Tweet) HasCore() bool

HasCore returns a boolean if a field has been set.

func (*Tweet) HasEditControl ¶

func (o *Tweet) HasEditControl() bool

HasEditControl returns a boolean if a field has been set.

func (*Tweet) HasEditPrespective ¶

func (o *Tweet) HasEditPrespective() bool

HasEditPrespective returns a boolean if a field has been set.

func (*Tweet) HasHasBirdwatchNotes ¶

func (o *Tweet) HasHasBirdwatchNotes() bool

HasHasBirdwatchNotes returns a boolean if a field has been set.

func (*Tweet) HasIsTranslatable ¶

func (o *Tweet) HasIsTranslatable() bool

HasIsTranslatable returns a boolean if a field has been set.

func (*Tweet) HasLegacy ¶

func (o *Tweet) HasLegacy() bool

HasLegacy returns a boolean if a field has been set.

func (*Tweet) HasNoteTweet ¶

func (o *Tweet) HasNoteTweet() bool

HasNoteTweet returns a boolean if a field has been set.

func (*Tweet) HasPreviousCounts ¶

func (o *Tweet) HasPreviousCounts() bool

HasPreviousCounts returns a boolean if a field has been set.

func (*Tweet) HasQuickPromoteEligibility ¶

func (o *Tweet) HasQuickPromoteEligibility() bool

HasQuickPromoteEligibility returns a boolean if a field has been set.

func (*Tweet) HasQuotedRefResult ¶

func (o *Tweet) HasQuotedRefResult() bool

HasQuotedRefResult returns a boolean if a field has been set.

func (*Tweet) HasQuotedStatusResult ¶

func (o *Tweet) HasQuotedStatusResult() bool

HasQuotedStatusResult returns a boolean if a field has been set.

func (*Tweet) HasSource ¶

func (o *Tweet) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*Tweet) HasSuperFollowsReplyUserResult ¶

func (o *Tweet) HasSuperFollowsReplyUserResult() bool

HasSuperFollowsReplyUserResult returns a boolean if a field has been set.

func (*Tweet) HasTypename ¶

func (o *Tweet) HasTypename() bool

HasTypename returns a boolean if a field has been set.

func (*Tweet) HasUnifiedCard ¶

func (o *Tweet) HasUnifiedCard() bool

HasUnifiedCard returns a boolean if a field has been set.

func (*Tweet) HasUnmentionData ¶

func (o *Tweet) HasUnmentionData() bool

HasUnmentionData returns a boolean if a field has been set.

func (*Tweet) HasViews ¶

func (o *Tweet) HasViews() bool

HasViews returns a boolean if a field has been set.

func (Tweet) MarshalJSON ¶

func (o Tweet) MarshalJSON() ([]byte, error)

func (*Tweet) SetArticle ¶

func (o *Tweet) SetArticle(v Article)

SetArticle gets a reference to the given Article and assigns it to the Article field.

func (*Tweet) SetAuthorCommunityRelationship ¶

func (o *Tweet) SetAuthorCommunityRelationship(v AuthorCommunityRelationship)

SetAuthorCommunityRelationship gets a reference to the given AuthorCommunityRelationship and assigns it to the AuthorCommunityRelationship field.

func (*Tweet) SetBirdwatchPivot ¶

func (o *Tweet) SetBirdwatchPivot(v BirdwatchPivot)

SetBirdwatchPivot gets a reference to the given BirdwatchPivot and assigns it to the BirdwatchPivot field.

func (*Tweet) SetCard ¶

func (o *Tweet) SetCard(v TweetCard)

SetCard gets a reference to the given TweetCard and assigns it to the Card field.

func (*Tweet) SetCommunityRelationship ¶

func (o *Tweet) SetCommunityRelationship(v CommunityRelationship)

SetCommunityRelationship gets a reference to the given CommunityRelationship and assigns it to the CommunityRelationship field.

func (*Tweet) SetCommunityResults ¶

func (o *Tweet) SetCommunityResults(v Community)

SetCommunityResults gets a reference to the given Community and assigns it to the CommunityResults field.

func (*Tweet) SetCore ¶

func (o *Tweet) SetCore(v UserResultCore)

SetCore gets a reference to the given UserResultCore and assigns it to the Core field.

func (*Tweet) SetEditControl ¶

func (o *Tweet) SetEditControl(v TweetEditControl)

SetEditControl gets a reference to the given TweetEditControl and assigns it to the EditControl field.

func (*Tweet) SetEditPrespective ¶

func (o *Tweet) SetEditPrespective(v TweetEditPrespective)

SetEditPrespective gets a reference to the given TweetEditPrespective and assigns it to the EditPrespective field.

func (*Tweet) SetHasBirdwatchNotes ¶

func (o *Tweet) SetHasBirdwatchNotes(v bool)

SetHasBirdwatchNotes gets a reference to the given bool and assigns it to the HasBirdwatchNotes field.

func (*Tweet) SetIsTranslatable ¶

func (o *Tweet) SetIsTranslatable(v bool)

SetIsTranslatable gets a reference to the given bool and assigns it to the IsTranslatable field.

func (*Tweet) SetLegacy ¶

func (o *Tweet) SetLegacy(v TweetLegacy)

SetLegacy gets a reference to the given TweetLegacy and assigns it to the Legacy field.

func (*Tweet) SetNoteTweet ¶

func (o *Tweet) SetNoteTweet(v NoteTweet)

SetNoteTweet gets a reference to the given NoteTweet and assigns it to the NoteTweet field.

func (*Tweet) SetPreviousCounts ¶

func (o *Tweet) SetPreviousCounts(v TweetPreviousCounts)

SetPreviousCounts gets a reference to the given TweetPreviousCounts and assigns it to the PreviousCounts field.

func (*Tweet) SetQuickPromoteEligibility ¶

func (o *Tweet) SetQuickPromoteEligibility(v map[string]interface{})

SetQuickPromoteEligibility gets a reference to the given map[string]interface{} and assigns it to the QuickPromoteEligibility field.

func (*Tweet) SetQuotedRefResult ¶

func (o *Tweet) SetQuotedRefResult(v QuotedRefResult)

SetQuotedRefResult gets a reference to the given QuotedRefResult and assigns it to the QuotedRefResult field.

func (*Tweet) SetQuotedStatusResult ¶

func (o *Tweet) SetQuotedStatusResult(v ItemResult)

SetQuotedStatusResult gets a reference to the given ItemResult and assigns it to the QuotedStatusResult field.

func (*Tweet) SetRestId ¶

func (o *Tweet) SetRestId(v string)

SetRestId sets field value

func (*Tweet) SetSource ¶

func (o *Tweet) SetSource(v string)

SetSource gets a reference to the given string and assigns it to the Source field.

func (*Tweet) SetSuperFollowsReplyUserResult ¶

func (o *Tweet) SetSuperFollowsReplyUserResult(v SuperFollowsReplyUserResult)

SetSuperFollowsReplyUserResult gets a reference to the given SuperFollowsReplyUserResult and assigns it to the SuperFollowsReplyUserResult field.

func (*Tweet) SetTypename ¶

func (o *Tweet) SetTypename(v TypeName)

SetTypename gets a reference to the given TypeName and assigns it to the Typename field.

func (*Tweet) SetUnifiedCard ¶

func (o *Tweet) SetUnifiedCard(v UnifiedCard)

SetUnifiedCard gets a reference to the given UnifiedCard and assigns it to the UnifiedCard field.

func (*Tweet) SetUnmentionData ¶

func (o *Tweet) SetUnmentionData(v map[string]interface{})

SetUnmentionData gets a reference to the given map[string]interface{} and assigns it to the UnmentionData field.

func (*Tweet) SetViews ¶

func (o *Tweet) SetViews(v TweetView)

SetViews gets a reference to the given TweetView and assigns it to the Views field.

func (Tweet) ToMap ¶

func (o Tweet) ToMap() (map[string]interface{}, error)

func (*Tweet) UnmarshalJSON ¶

func (o *Tweet) UnmarshalJSON(data []byte) (err error)

type TweetAPIService ¶

type TweetAPIService service

TweetAPIService TweetAPI service

func (*TweetAPIService) GetBookmarks ¶

func (a *TweetAPIService) GetBookmarks(ctx context.Context, pathQueryId string) ApiGetBookmarksRequest

GetBookmarks Method for GetBookmarks

get bookmarks

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param pathQueryId
@return ApiGetBookmarksRequest

func (*TweetAPIService) GetBookmarksExecute ¶

Execute executes the request

@return GetBookmarks200Response

func (*TweetAPIService) GetHomeLatestTimeline ¶

func (a *TweetAPIService) GetHomeLatestTimeline(ctx context.Context, pathQueryId string) ApiGetHomeLatestTimelineRequest

GetHomeLatestTimeline Method for GetHomeLatestTimeline

get tweet list of timeline

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param pathQueryId
@return ApiGetHomeLatestTimelineRequest

func (*TweetAPIService) GetHomeLatestTimelineExecute ¶

Execute executes the request

@return GetHomeLatestTimeline200Response

func (*TweetAPIService) GetHomeTimeline ¶

func (a *TweetAPIService) GetHomeTimeline(ctx context.Context, pathQueryId string) ApiGetHomeTimelineRequest

GetHomeTimeline Method for GetHomeTimeline

get tweet list of timeline

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param pathQueryId
@return ApiGetHomeTimelineRequest

func (*TweetAPIService) GetHomeTimelineExecute ¶

Execute executes the request

@return GetHomeLatestTimeline200Response

func (*TweetAPIService) GetLikes ¶

func (a *TweetAPIService) GetLikes(ctx context.Context, pathQueryId string) ApiGetLikesRequest

GetLikes Method for GetLikes

get user likes tweets

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param pathQueryId
@return ApiGetLikesRequest

func (*TweetAPIService) GetLikesExecute ¶

Execute executes the request

@return GetLikes200Response

func (*TweetAPIService) GetListLatestTweetsTimeline ¶

func (a *TweetAPIService) GetListLatestTweetsTimeline(ctx context.Context, pathQueryId string) ApiGetListLatestTweetsTimelineRequest

GetListLatestTweetsTimeline Method for GetListLatestTweetsTimeline

get tweet list of timeline

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param pathQueryId
@return ApiGetListLatestTweetsTimelineRequest

func (*TweetAPIService) GetListLatestTweetsTimelineExecute ¶

Execute executes the request

@return GetListLatestTweetsTimeline200Response

func (*TweetAPIService) GetSearchTimeline ¶

func (a *TweetAPIService) GetSearchTimeline(ctx context.Context, pathQueryId string) ApiGetSearchTimelineRequest

GetSearchTimeline Method for GetSearchTimeline

search tweet list. product:[Top, Latest, People, Photos, Videos]

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param pathQueryId
@return ApiGetSearchTimelineRequest

func (*TweetAPIService) GetSearchTimelineExecute ¶

Execute executes the request

@return GetSearchTimeline200Response

func (*TweetAPIService) GetTweetDetail ¶

func (a *TweetAPIService) GetTweetDetail(ctx context.Context, pathQueryId string) ApiGetTweetDetailRequest

GetTweetDetail Method for GetTweetDetail

get TweetDetail

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param pathQueryId
@return ApiGetTweetDetailRequest

func (*TweetAPIService) GetTweetDetailExecute ¶

Execute executes the request

@return GetTweetDetail200Response

func (*TweetAPIService) GetUserHighlightsTweets ¶

func (a *TweetAPIService) GetUserHighlightsTweets(ctx context.Context, pathQueryId string) ApiGetUserHighlightsTweetsRequest

GetUserHighlightsTweets Method for GetUserHighlightsTweets

get user highlights tweets

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param pathQueryId
@return ApiGetUserHighlightsTweetsRequest

func (*TweetAPIService) GetUserHighlightsTweetsExecute ¶

Execute executes the request

@return GetUserHighlightsTweets200Response

func (*TweetAPIService) GetUserMedia ¶

func (a *TweetAPIService) GetUserMedia(ctx context.Context, pathQueryId string) ApiGetUserMediaRequest

GetUserMedia Method for GetUserMedia

get user media tweets

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param pathQueryId
@return ApiGetUserMediaRequest

func (*TweetAPIService) GetUserMediaExecute ¶

Execute executes the request

@return GetLikes200Response

func (*TweetAPIService) GetUserTweets ¶

func (a *TweetAPIService) GetUserTweets(ctx context.Context, pathQueryId string) ApiGetUserTweetsRequest

GetUserTweets Method for GetUserTweets

get user tweets

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param pathQueryId
@return ApiGetUserTweetsRequest

func (*TweetAPIService) GetUserTweetsAndReplies ¶

func (a *TweetAPIService) GetUserTweetsAndReplies(ctx context.Context, pathQueryId string) ApiGetUserTweetsAndRepliesRequest

GetUserTweetsAndReplies Method for GetUserTweetsAndReplies

get user replies tweets

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param pathQueryId
@return ApiGetUserTweetsAndRepliesRequest

func (*TweetAPIService) GetUserTweetsAndRepliesExecute ¶

func (a *TweetAPIService) GetUserTweetsAndRepliesExecute(r ApiGetUserTweetsAndRepliesRequest) (*GetLikes200Response, *http.Response, error)

Execute executes the request

@return GetLikes200Response

func (*TweetAPIService) GetUserTweetsExecute ¶

Execute executes the request

@return GetLikes200Response

type TweetCard ¶

type TweetCard struct {
	Legacy *TweetCardLegacy `json:"legacy,omitempty"`
	RestId *string          `json:"rest_id,omitempty"`
}

TweetCard struct for TweetCard

func NewTweetCard ¶

func NewTweetCard() *TweetCard

NewTweetCard instantiates a new TweetCard object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetCardWithDefaults ¶

func NewTweetCardWithDefaults() *TweetCard

NewTweetCardWithDefaults instantiates a new TweetCard object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetCard) GetLegacy ¶

func (o *TweetCard) GetLegacy() TweetCardLegacy

GetLegacy returns the Legacy field value if set, zero value otherwise.

func (*TweetCard) GetLegacyOk ¶

func (o *TweetCard) GetLegacyOk() (*TweetCardLegacy, bool)

GetLegacyOk returns a tuple with the Legacy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetCard) GetRestId ¶

func (o *TweetCard) GetRestId() string

GetRestId returns the RestId field value if set, zero value otherwise.

func (*TweetCard) GetRestIdOk ¶

func (o *TweetCard) GetRestIdOk() (*string, bool)

GetRestIdOk returns a tuple with the RestId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetCard) HasLegacy ¶

func (o *TweetCard) HasLegacy() bool

HasLegacy returns a boolean if a field has been set.

func (*TweetCard) HasRestId ¶

func (o *TweetCard) HasRestId() bool

HasRestId returns a boolean if a field has been set.

func (TweetCard) MarshalJSON ¶

func (o TweetCard) MarshalJSON() ([]byte, error)

func (*TweetCard) SetLegacy ¶

func (o *TweetCard) SetLegacy(v TweetCardLegacy)

SetLegacy gets a reference to the given TweetCardLegacy and assigns it to the Legacy field.

func (*TweetCard) SetRestId ¶

func (o *TweetCard) SetRestId(v string)

SetRestId gets a reference to the given string and assigns it to the RestId field.

func (TweetCard) ToMap ¶

func (o TweetCard) ToMap() (map[string]interface{}, error)

type TweetCardLegacy ¶

type TweetCardLegacy struct {
	BindingValues   []TweetCardLegacyBindingValue `json:"binding_values"`
	CardPlatform    *TweetCardPlatformData        `json:"card_platform,omitempty"`
	Name            string                        `json:"name"`
	Url             string                        `json:"url"`
	UserRefsResults []UserResults                 `json:"user_refs_results,omitempty"`
}

TweetCardLegacy struct for TweetCardLegacy

func NewTweetCardLegacy ¶

func NewTweetCardLegacy(bindingValues []TweetCardLegacyBindingValue, name string, url string) *TweetCardLegacy

NewTweetCardLegacy instantiates a new TweetCardLegacy object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetCardLegacyWithDefaults ¶

func NewTweetCardLegacyWithDefaults() *TweetCardLegacy

NewTweetCardLegacyWithDefaults instantiates a new TweetCardLegacy object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetCardLegacy) GetBindingValues ¶

func (o *TweetCardLegacy) GetBindingValues() []TweetCardLegacyBindingValue

GetBindingValues returns the BindingValues field value

func (*TweetCardLegacy) GetBindingValuesOk ¶

func (o *TweetCardLegacy) GetBindingValuesOk() ([]TweetCardLegacyBindingValue, bool)

GetBindingValuesOk returns a tuple with the BindingValues field value and a boolean to check if the value has been set.

func (*TweetCardLegacy) GetCardPlatform ¶

func (o *TweetCardLegacy) GetCardPlatform() TweetCardPlatformData

GetCardPlatform returns the CardPlatform field value if set, zero value otherwise.

func (*TweetCardLegacy) GetCardPlatformOk ¶

func (o *TweetCardLegacy) GetCardPlatformOk() (*TweetCardPlatformData, bool)

GetCardPlatformOk returns a tuple with the CardPlatform field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetCardLegacy) GetName ¶

func (o *TweetCardLegacy) GetName() string

GetName returns the Name field value

func (*TweetCardLegacy) GetNameOk ¶

func (o *TweetCardLegacy) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*TweetCardLegacy) GetUrl ¶

func (o *TweetCardLegacy) GetUrl() string

GetUrl returns the Url field value

func (*TweetCardLegacy) GetUrlOk ¶

func (o *TweetCardLegacy) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value and a boolean to check if the value has been set.

func (*TweetCardLegacy) GetUserRefsResults ¶

func (o *TweetCardLegacy) GetUserRefsResults() []UserResults

GetUserRefsResults returns the UserRefsResults field value if set, zero value otherwise.

func (*TweetCardLegacy) GetUserRefsResultsOk ¶

func (o *TweetCardLegacy) GetUserRefsResultsOk() ([]UserResults, bool)

GetUserRefsResultsOk returns a tuple with the UserRefsResults field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetCardLegacy) HasCardPlatform ¶

func (o *TweetCardLegacy) HasCardPlatform() bool

HasCardPlatform returns a boolean if a field has been set.

func (*TweetCardLegacy) HasUserRefsResults ¶

func (o *TweetCardLegacy) HasUserRefsResults() bool

HasUserRefsResults returns a boolean if a field has been set.

func (TweetCardLegacy) MarshalJSON ¶

func (o TweetCardLegacy) MarshalJSON() ([]byte, error)

func (*TweetCardLegacy) SetBindingValues ¶

func (o *TweetCardLegacy) SetBindingValues(v []TweetCardLegacyBindingValue)

SetBindingValues sets field value

func (*TweetCardLegacy) SetCardPlatform ¶

func (o *TweetCardLegacy) SetCardPlatform(v TweetCardPlatformData)

SetCardPlatform gets a reference to the given TweetCardPlatformData and assigns it to the CardPlatform field.

func (*TweetCardLegacy) SetName ¶

func (o *TweetCardLegacy) SetName(v string)

SetName sets field value

func (*TweetCardLegacy) SetUrl ¶

func (o *TweetCardLegacy) SetUrl(v string)

SetUrl sets field value

func (*TweetCardLegacy) SetUserRefsResults ¶

func (o *TweetCardLegacy) SetUserRefsResults(v []UserResults)

SetUserRefsResults gets a reference to the given []UserResults and assigns it to the UserRefsResults field.

func (TweetCardLegacy) ToMap ¶

func (o TweetCardLegacy) ToMap() (map[string]interface{}, error)

func (*TweetCardLegacy) UnmarshalJSON ¶

func (o *TweetCardLegacy) UnmarshalJSON(data []byte) (err error)

type TweetCardLegacyBindingValue ¶

type TweetCardLegacyBindingValue struct {
	Key   string                          `json:"key"`
	Value TweetCardLegacyBindingValueData `json:"value"`
}

TweetCardLegacyBindingValue struct for TweetCardLegacyBindingValue

func NewTweetCardLegacyBindingValue ¶

func NewTweetCardLegacyBindingValue(key string, value TweetCardLegacyBindingValueData) *TweetCardLegacyBindingValue

NewTweetCardLegacyBindingValue instantiates a new TweetCardLegacyBindingValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetCardLegacyBindingValueWithDefaults ¶

func NewTweetCardLegacyBindingValueWithDefaults() *TweetCardLegacyBindingValue

NewTweetCardLegacyBindingValueWithDefaults instantiates a new TweetCardLegacyBindingValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetCardLegacyBindingValue) GetKey ¶

func (o *TweetCardLegacyBindingValue) GetKey() string

GetKey returns the Key field value

func (*TweetCardLegacyBindingValue) GetKeyOk ¶

func (o *TweetCardLegacyBindingValue) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field value and a boolean to check if the value has been set.

func (*TweetCardLegacyBindingValue) GetValue ¶

GetValue returns the Value field value

func (*TweetCardLegacyBindingValue) GetValueOk ¶

GetValueOk returns a tuple with the Value field value and a boolean to check if the value has been set.

func (TweetCardLegacyBindingValue) MarshalJSON ¶

func (o TweetCardLegacyBindingValue) MarshalJSON() ([]byte, error)

func (*TweetCardLegacyBindingValue) SetKey ¶

func (o *TweetCardLegacyBindingValue) SetKey(v string)

SetKey sets field value

func (*TweetCardLegacyBindingValue) SetValue ¶

SetValue sets field value

func (TweetCardLegacyBindingValue) ToMap ¶

func (o TweetCardLegacyBindingValue) ToMap() (map[string]interface{}, error)

func (*TweetCardLegacyBindingValue) UnmarshalJSON ¶

func (o *TweetCardLegacyBindingValue) UnmarshalJSON(data []byte) (err error)

type TweetCardLegacyBindingValueData ¶

type TweetCardLegacyBindingValueData struct {
	BooleanValue    *bool                                 `json:"boolean_value,omitempty"`
	ImageColorValue map[string]interface{}                `json:"image_color_value,omitempty"`
	ImageValue      *TweetCardLegacyBindingValueDataImage `json:"image_value,omitempty"`
	ScribeKey       *string                               `json:"scribe_key,omitempty"`
	StringValue     *string                               `json:"string_value,omitempty"`
	Type            string                                `json:"type"`
	UserValue       *UserValue                            `json:"user_value,omitempty"`
}

TweetCardLegacyBindingValueData struct for TweetCardLegacyBindingValueData

func NewTweetCardLegacyBindingValueData ¶

func NewTweetCardLegacyBindingValueData(type_ string) *TweetCardLegacyBindingValueData

NewTweetCardLegacyBindingValueData instantiates a new TweetCardLegacyBindingValueData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetCardLegacyBindingValueDataWithDefaults ¶

func NewTweetCardLegacyBindingValueDataWithDefaults() *TweetCardLegacyBindingValueData

NewTweetCardLegacyBindingValueDataWithDefaults instantiates a new TweetCardLegacyBindingValueData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetCardLegacyBindingValueData) GetBooleanValue ¶

func (o *TweetCardLegacyBindingValueData) GetBooleanValue() bool

GetBooleanValue returns the BooleanValue field value if set, zero value otherwise.

func (*TweetCardLegacyBindingValueData) GetBooleanValueOk ¶

func (o *TweetCardLegacyBindingValueData) GetBooleanValueOk() (*bool, bool)

GetBooleanValueOk returns a tuple with the BooleanValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetCardLegacyBindingValueData) GetImageColorValue ¶

func (o *TweetCardLegacyBindingValueData) GetImageColorValue() map[string]interface{}

GetImageColorValue returns the ImageColorValue field value if set, zero value otherwise.

func (*TweetCardLegacyBindingValueData) GetImageColorValueOk ¶

func (o *TweetCardLegacyBindingValueData) GetImageColorValueOk() (map[string]interface{}, bool)

GetImageColorValueOk returns a tuple with the ImageColorValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetCardLegacyBindingValueData) GetImageValue ¶

GetImageValue returns the ImageValue field value if set, zero value otherwise.

func (*TweetCardLegacyBindingValueData) GetImageValueOk ¶

GetImageValueOk returns a tuple with the ImageValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetCardLegacyBindingValueData) GetScribeKey ¶

func (o *TweetCardLegacyBindingValueData) GetScribeKey() string

GetScribeKey returns the ScribeKey field value if set, zero value otherwise.

func (*TweetCardLegacyBindingValueData) GetScribeKeyOk ¶

func (o *TweetCardLegacyBindingValueData) GetScribeKeyOk() (*string, bool)

GetScribeKeyOk returns a tuple with the ScribeKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetCardLegacyBindingValueData) GetStringValue ¶

func (o *TweetCardLegacyBindingValueData) GetStringValue() string

GetStringValue returns the StringValue field value if set, zero value otherwise.

func (*TweetCardLegacyBindingValueData) GetStringValueOk ¶

func (o *TweetCardLegacyBindingValueData) GetStringValueOk() (*string, bool)

GetStringValueOk returns a tuple with the StringValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetCardLegacyBindingValueData) GetType ¶

GetType returns the Type field value

func (*TweetCardLegacyBindingValueData) GetTypeOk ¶

func (o *TweetCardLegacyBindingValueData) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*TweetCardLegacyBindingValueData) GetUserValue ¶

func (o *TweetCardLegacyBindingValueData) GetUserValue() UserValue

GetUserValue returns the UserValue field value if set, zero value otherwise.

func (*TweetCardLegacyBindingValueData) GetUserValueOk ¶

func (o *TweetCardLegacyBindingValueData) GetUserValueOk() (*UserValue, bool)

GetUserValueOk returns a tuple with the UserValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetCardLegacyBindingValueData) HasBooleanValue ¶

func (o *TweetCardLegacyBindingValueData) HasBooleanValue() bool

HasBooleanValue returns a boolean if a field has been set.

func (*TweetCardLegacyBindingValueData) HasImageColorValue ¶

func (o *TweetCardLegacyBindingValueData) HasImageColorValue() bool

HasImageColorValue returns a boolean if a field has been set.

func (*TweetCardLegacyBindingValueData) HasImageValue ¶

func (o *TweetCardLegacyBindingValueData) HasImageValue() bool

HasImageValue returns a boolean if a field has been set.

func (*TweetCardLegacyBindingValueData) HasScribeKey ¶

func (o *TweetCardLegacyBindingValueData) HasScribeKey() bool

HasScribeKey returns a boolean if a field has been set.

func (*TweetCardLegacyBindingValueData) HasStringValue ¶

func (o *TweetCardLegacyBindingValueData) HasStringValue() bool

HasStringValue returns a boolean if a field has been set.

func (*TweetCardLegacyBindingValueData) HasUserValue ¶

func (o *TweetCardLegacyBindingValueData) HasUserValue() bool

HasUserValue returns a boolean if a field has been set.

func (TweetCardLegacyBindingValueData) MarshalJSON ¶

func (o TweetCardLegacyBindingValueData) MarshalJSON() ([]byte, error)

func (*TweetCardLegacyBindingValueData) SetBooleanValue ¶

func (o *TweetCardLegacyBindingValueData) SetBooleanValue(v bool)

SetBooleanValue gets a reference to the given bool and assigns it to the BooleanValue field.

func (*TweetCardLegacyBindingValueData) SetImageColorValue ¶

func (o *TweetCardLegacyBindingValueData) SetImageColorValue(v map[string]interface{})

SetImageColorValue gets a reference to the given map[string]interface{} and assigns it to the ImageColorValue field.

func (*TweetCardLegacyBindingValueData) SetImageValue ¶

SetImageValue gets a reference to the given TweetCardLegacyBindingValueDataImage and assigns it to the ImageValue field.

func (*TweetCardLegacyBindingValueData) SetScribeKey ¶

func (o *TweetCardLegacyBindingValueData) SetScribeKey(v string)

SetScribeKey gets a reference to the given string and assigns it to the ScribeKey field.

func (*TweetCardLegacyBindingValueData) SetStringValue ¶

func (o *TweetCardLegacyBindingValueData) SetStringValue(v string)

SetStringValue gets a reference to the given string and assigns it to the StringValue field.

func (*TweetCardLegacyBindingValueData) SetType ¶

SetType sets field value

func (*TweetCardLegacyBindingValueData) SetUserValue ¶

func (o *TweetCardLegacyBindingValueData) SetUserValue(v UserValue)

SetUserValue gets a reference to the given UserValue and assigns it to the UserValue field.

func (TweetCardLegacyBindingValueData) ToMap ¶

func (o TweetCardLegacyBindingValueData) ToMap() (map[string]interface{}, error)

func (*TweetCardLegacyBindingValueData) UnmarshalJSON ¶

func (o *TweetCardLegacyBindingValueData) UnmarshalJSON(data []byte) (err error)

type TweetCardLegacyBindingValueDataImage ¶

type TweetCardLegacyBindingValueDataImage struct {
	Alt    *string `json:"alt,omitempty"`
	Height int32   `json:"height"`
	Url    string  `json:"url"`
	Width  int32   `json:"width"`
}

TweetCardLegacyBindingValueDataImage struct for TweetCardLegacyBindingValueDataImage

func NewTweetCardLegacyBindingValueDataImage ¶

func NewTweetCardLegacyBindingValueDataImage(height int32, url string, width int32) *TweetCardLegacyBindingValueDataImage

NewTweetCardLegacyBindingValueDataImage instantiates a new TweetCardLegacyBindingValueDataImage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetCardLegacyBindingValueDataImageWithDefaults ¶

func NewTweetCardLegacyBindingValueDataImageWithDefaults() *TweetCardLegacyBindingValueDataImage

NewTweetCardLegacyBindingValueDataImageWithDefaults instantiates a new TweetCardLegacyBindingValueDataImage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetCardLegacyBindingValueDataImage) GetAlt ¶

GetAlt returns the Alt field value if set, zero value otherwise.

func (*TweetCardLegacyBindingValueDataImage) GetAltOk ¶

GetAltOk returns a tuple with the Alt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetCardLegacyBindingValueDataImage) GetHeight ¶

GetHeight returns the Height field value

func (*TweetCardLegacyBindingValueDataImage) GetHeightOk ¶

func (o *TweetCardLegacyBindingValueDataImage) GetHeightOk() (*int32, bool)

GetHeightOk returns a tuple with the Height field value and a boolean to check if the value has been set.

func (*TweetCardLegacyBindingValueDataImage) GetUrl ¶

GetUrl returns the Url field value

func (*TweetCardLegacyBindingValueDataImage) GetUrlOk ¶

GetUrlOk returns a tuple with the Url field value and a boolean to check if the value has been set.

func (*TweetCardLegacyBindingValueDataImage) GetWidth ¶

GetWidth returns the Width field value

func (*TweetCardLegacyBindingValueDataImage) GetWidthOk ¶

func (o *TweetCardLegacyBindingValueDataImage) GetWidthOk() (*int32, bool)

GetWidthOk returns a tuple with the Width field value and a boolean to check if the value has been set.

func (*TweetCardLegacyBindingValueDataImage) HasAlt ¶

HasAlt returns a boolean if a field has been set.

func (TweetCardLegacyBindingValueDataImage) MarshalJSON ¶

func (o TweetCardLegacyBindingValueDataImage) MarshalJSON() ([]byte, error)

func (*TweetCardLegacyBindingValueDataImage) SetAlt ¶

SetAlt gets a reference to the given string and assigns it to the Alt field.

func (*TweetCardLegacyBindingValueDataImage) SetHeight ¶

SetHeight sets field value

func (*TweetCardLegacyBindingValueDataImage) SetUrl ¶

SetUrl sets field value

func (*TweetCardLegacyBindingValueDataImage) SetWidth ¶

SetWidth sets field value

func (TweetCardLegacyBindingValueDataImage) ToMap ¶

func (o TweetCardLegacyBindingValueDataImage) ToMap() (map[string]interface{}, error)

func (*TweetCardLegacyBindingValueDataImage) UnmarshalJSON ¶

func (o *TweetCardLegacyBindingValueDataImage) UnmarshalJSON(data []byte) (err error)

type TweetCardPlatform ¶

type TweetCardPlatform struct {
	Audience TweetCardPlatformAudience `json:"audience"`
	Device   TweetCardPlatformDevice   `json:"device"`
}

TweetCardPlatform struct for TweetCardPlatform

func NewTweetCardPlatform ¶

func NewTweetCardPlatform(audience TweetCardPlatformAudience, device TweetCardPlatformDevice) *TweetCardPlatform

NewTweetCardPlatform instantiates a new TweetCardPlatform object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetCardPlatformWithDefaults ¶

func NewTweetCardPlatformWithDefaults() *TweetCardPlatform

NewTweetCardPlatformWithDefaults instantiates a new TweetCardPlatform object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetCardPlatform) GetAudience ¶

GetAudience returns the Audience field value

func (*TweetCardPlatform) GetAudienceOk ¶

func (o *TweetCardPlatform) GetAudienceOk() (*TweetCardPlatformAudience, bool)

GetAudienceOk returns a tuple with the Audience field value and a boolean to check if the value has been set.

func (*TweetCardPlatform) GetDevice ¶

GetDevice returns the Device field value

func (*TweetCardPlatform) GetDeviceOk ¶

func (o *TweetCardPlatform) GetDeviceOk() (*TweetCardPlatformDevice, bool)

GetDeviceOk returns a tuple with the Device field value and a boolean to check if the value has been set.

func (TweetCardPlatform) MarshalJSON ¶

func (o TweetCardPlatform) MarshalJSON() ([]byte, error)

func (*TweetCardPlatform) SetAudience ¶

func (o *TweetCardPlatform) SetAudience(v TweetCardPlatformAudience)

SetAudience sets field value

func (*TweetCardPlatform) SetDevice ¶

SetDevice sets field value

func (TweetCardPlatform) ToMap ¶

func (o TweetCardPlatform) ToMap() (map[string]interface{}, error)

func (*TweetCardPlatform) UnmarshalJSON ¶

func (o *TweetCardPlatform) UnmarshalJSON(data []byte) (err error)

type TweetCardPlatformAudience ¶

type TweetCardPlatformAudience struct {
	Name string `json:"name"`
}

TweetCardPlatformAudience struct for TweetCardPlatformAudience

func NewTweetCardPlatformAudience ¶

func NewTweetCardPlatformAudience(name string) *TweetCardPlatformAudience

NewTweetCardPlatformAudience instantiates a new TweetCardPlatformAudience object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetCardPlatformAudienceWithDefaults ¶

func NewTweetCardPlatformAudienceWithDefaults() *TweetCardPlatformAudience

NewTweetCardPlatformAudienceWithDefaults instantiates a new TweetCardPlatformAudience object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetCardPlatformAudience) GetName ¶

func (o *TweetCardPlatformAudience) GetName() string

GetName returns the Name field value

func (*TweetCardPlatformAudience) GetNameOk ¶

func (o *TweetCardPlatformAudience) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (TweetCardPlatformAudience) MarshalJSON ¶

func (o TweetCardPlatformAudience) MarshalJSON() ([]byte, error)

func (*TweetCardPlatformAudience) SetName ¶

func (o *TweetCardPlatformAudience) SetName(v string)

SetName sets field value

func (TweetCardPlatformAudience) ToMap ¶

func (o TweetCardPlatformAudience) ToMap() (map[string]interface{}, error)

func (*TweetCardPlatformAudience) UnmarshalJSON ¶

func (o *TweetCardPlatformAudience) UnmarshalJSON(data []byte) (err error)

type TweetCardPlatformData ¶

type TweetCardPlatformData struct {
	Platform TweetCardPlatform `json:"platform"`
}

TweetCardPlatformData struct for TweetCardPlatformData

func NewTweetCardPlatformData ¶

func NewTweetCardPlatformData(platform TweetCardPlatform) *TweetCardPlatformData

NewTweetCardPlatformData instantiates a new TweetCardPlatformData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetCardPlatformDataWithDefaults ¶

func NewTweetCardPlatformDataWithDefaults() *TweetCardPlatformData

NewTweetCardPlatformDataWithDefaults instantiates a new TweetCardPlatformData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetCardPlatformData) GetPlatform ¶

func (o *TweetCardPlatformData) GetPlatform() TweetCardPlatform

GetPlatform returns the Platform field value

func (*TweetCardPlatformData) GetPlatformOk ¶

func (o *TweetCardPlatformData) GetPlatformOk() (*TweetCardPlatform, bool)

GetPlatformOk returns a tuple with the Platform field value and a boolean to check if the value has been set.

func (TweetCardPlatformData) MarshalJSON ¶

func (o TweetCardPlatformData) MarshalJSON() ([]byte, error)

func (*TweetCardPlatformData) SetPlatform ¶

func (o *TweetCardPlatformData) SetPlatform(v TweetCardPlatform)

SetPlatform sets field value

func (TweetCardPlatformData) ToMap ¶

func (o TweetCardPlatformData) ToMap() (map[string]interface{}, error)

func (*TweetCardPlatformData) UnmarshalJSON ¶

func (o *TweetCardPlatformData) UnmarshalJSON(data []byte) (err error)

type TweetCardPlatformDevice ¶

type TweetCardPlatformDevice struct {
	Name    string `json:"name"`
	Version string `json:"version" validate:"regexp=^[0-9]+$"`
}

TweetCardPlatformDevice struct for TweetCardPlatformDevice

func NewTweetCardPlatformDevice ¶

func NewTweetCardPlatformDevice(name string, version string) *TweetCardPlatformDevice

NewTweetCardPlatformDevice instantiates a new TweetCardPlatformDevice object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetCardPlatformDeviceWithDefaults ¶

func NewTweetCardPlatformDeviceWithDefaults() *TweetCardPlatformDevice

NewTweetCardPlatformDeviceWithDefaults instantiates a new TweetCardPlatformDevice object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetCardPlatformDevice) GetName ¶

func (o *TweetCardPlatformDevice) GetName() string

GetName returns the Name field value

func (*TweetCardPlatformDevice) GetNameOk ¶

func (o *TweetCardPlatformDevice) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*TweetCardPlatformDevice) GetVersion ¶

func (o *TweetCardPlatformDevice) GetVersion() string

GetVersion returns the Version field value

func (*TweetCardPlatformDevice) GetVersionOk ¶

func (o *TweetCardPlatformDevice) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value and a boolean to check if the value has been set.

func (TweetCardPlatformDevice) MarshalJSON ¶

func (o TweetCardPlatformDevice) MarshalJSON() ([]byte, error)

func (*TweetCardPlatformDevice) SetName ¶

func (o *TweetCardPlatformDevice) SetName(v string)

SetName sets field value

func (*TweetCardPlatformDevice) SetVersion ¶

func (o *TweetCardPlatformDevice) SetVersion(v string)

SetVersion sets field value

func (TweetCardPlatformDevice) ToMap ¶

func (o TweetCardPlatformDevice) ToMap() (map[string]interface{}, error)

func (*TweetCardPlatformDevice) UnmarshalJSON ¶

func (o *TweetCardPlatformDevice) UnmarshalJSON(data []byte) (err error)

type TweetDetailResponse ¶

type TweetDetailResponse struct {
	Data TweetDetailResponseData `json:"data"`
}

TweetDetailResponse struct for TweetDetailResponse

func NewTweetDetailResponse ¶

func NewTweetDetailResponse(data TweetDetailResponseData) *TweetDetailResponse

NewTweetDetailResponse instantiates a new TweetDetailResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetDetailResponseWithDefaults ¶

func NewTweetDetailResponseWithDefaults() *TweetDetailResponse

NewTweetDetailResponseWithDefaults instantiates a new TweetDetailResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetDetailResponse) GetData ¶

GetData returns the Data field value

func (*TweetDetailResponse) GetDataOk ¶

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (TweetDetailResponse) MarshalJSON ¶

func (o TweetDetailResponse) MarshalJSON() ([]byte, error)

func (*TweetDetailResponse) SetData ¶

SetData sets field value

func (TweetDetailResponse) ToMap ¶

func (o TweetDetailResponse) ToMap() (map[string]interface{}, error)

func (*TweetDetailResponse) UnmarshalJSON ¶

func (o *TweetDetailResponse) UnmarshalJSON(data []byte) (err error)

type TweetDetailResponseData ¶

type TweetDetailResponseData struct {
	ThreadedConversationWithInjectionsV2 Timeline `json:"threaded_conversation_with_injections_v2"`
}

TweetDetailResponseData struct for TweetDetailResponseData

func NewTweetDetailResponseData ¶

func NewTweetDetailResponseData(threadedConversationWithInjectionsV2 Timeline) *TweetDetailResponseData

NewTweetDetailResponseData instantiates a new TweetDetailResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetDetailResponseDataWithDefaults ¶

func NewTweetDetailResponseDataWithDefaults() *TweetDetailResponseData

NewTweetDetailResponseDataWithDefaults instantiates a new TweetDetailResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetDetailResponseData) GetThreadedConversationWithInjectionsV2 ¶

func (o *TweetDetailResponseData) GetThreadedConversationWithInjectionsV2() Timeline

GetThreadedConversationWithInjectionsV2 returns the ThreadedConversationWithInjectionsV2 field value

func (*TweetDetailResponseData) GetThreadedConversationWithInjectionsV2Ok ¶

func (o *TweetDetailResponseData) GetThreadedConversationWithInjectionsV2Ok() (*Timeline, bool)

GetThreadedConversationWithInjectionsV2Ok returns a tuple with the ThreadedConversationWithInjectionsV2 field value and a boolean to check if the value has been set.

func (TweetDetailResponseData) MarshalJSON ¶

func (o TweetDetailResponseData) MarshalJSON() ([]byte, error)

func (*TweetDetailResponseData) SetThreadedConversationWithInjectionsV2 ¶

func (o *TweetDetailResponseData) SetThreadedConversationWithInjectionsV2(v Timeline)

SetThreadedConversationWithInjectionsV2 sets field value

func (TweetDetailResponseData) ToMap ¶

func (o TweetDetailResponseData) ToMap() (map[string]interface{}, error)

func (*TweetDetailResponseData) UnmarshalJSON ¶

func (o *TweetDetailResponseData) UnmarshalJSON(data []byte) (err error)

type TweetEditControl ¶

type TweetEditControl struct {
	EditControlInitial *TweetEditControlInitial `json:"edit_control_initial,omitempty"`
	EditTweetIds       []string                 `json:"edit_tweet_ids,omitempty"`
	EditableUntilMsecs *string                  `json:"editable_until_msecs,omitempty" validate:"regexp=^[0-9]+$"`
	EditsRemaining     *string                  `json:"edits_remaining,omitempty" validate:"regexp=^[0-9]+$"`
	InitialTweetId     *string                  `json:"initial_tweet_id,omitempty" validate:"regexp=^[0-9]+$"`
	IsEditEligible     *bool                    `json:"is_edit_eligible,omitempty"`
}

TweetEditControl struct for TweetEditControl

func NewTweetEditControl ¶

func NewTweetEditControl() *TweetEditControl

NewTweetEditControl instantiates a new TweetEditControl object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetEditControlWithDefaults ¶

func NewTweetEditControlWithDefaults() *TweetEditControl

NewTweetEditControlWithDefaults instantiates a new TweetEditControl object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetEditControl) GetEditControlInitial ¶

func (o *TweetEditControl) GetEditControlInitial() TweetEditControlInitial

GetEditControlInitial returns the EditControlInitial field value if set, zero value otherwise.

func (*TweetEditControl) GetEditControlInitialOk ¶

func (o *TweetEditControl) GetEditControlInitialOk() (*TweetEditControlInitial, bool)

GetEditControlInitialOk returns a tuple with the EditControlInitial field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetEditControl) GetEditTweetIds ¶

func (o *TweetEditControl) GetEditTweetIds() []string

GetEditTweetIds returns the EditTweetIds field value if set, zero value otherwise.

func (*TweetEditControl) GetEditTweetIdsOk ¶

func (o *TweetEditControl) GetEditTweetIdsOk() ([]string, bool)

GetEditTweetIdsOk returns a tuple with the EditTweetIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetEditControl) GetEditableUntilMsecs ¶

func (o *TweetEditControl) GetEditableUntilMsecs() string

GetEditableUntilMsecs returns the EditableUntilMsecs field value if set, zero value otherwise.

func (*TweetEditControl) GetEditableUntilMsecsOk ¶

func (o *TweetEditControl) GetEditableUntilMsecsOk() (*string, bool)

GetEditableUntilMsecsOk returns a tuple with the EditableUntilMsecs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetEditControl) GetEditsRemaining ¶

func (o *TweetEditControl) GetEditsRemaining() string

GetEditsRemaining returns the EditsRemaining field value if set, zero value otherwise.

func (*TweetEditControl) GetEditsRemainingOk ¶

func (o *TweetEditControl) GetEditsRemainingOk() (*string, bool)

GetEditsRemainingOk returns a tuple with the EditsRemaining field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetEditControl) GetInitialTweetId ¶

func (o *TweetEditControl) GetInitialTweetId() string

GetInitialTweetId returns the InitialTweetId field value if set, zero value otherwise.

func (*TweetEditControl) GetInitialTweetIdOk ¶

func (o *TweetEditControl) GetInitialTweetIdOk() (*string, bool)

GetInitialTweetIdOk returns a tuple with the InitialTweetId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetEditControl) GetIsEditEligible ¶

func (o *TweetEditControl) GetIsEditEligible() bool

GetIsEditEligible returns the IsEditEligible field value if set, zero value otherwise.

func (*TweetEditControl) GetIsEditEligibleOk ¶

func (o *TweetEditControl) GetIsEditEligibleOk() (*bool, bool)

GetIsEditEligibleOk returns a tuple with the IsEditEligible field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetEditControl) HasEditControlInitial ¶

func (o *TweetEditControl) HasEditControlInitial() bool

HasEditControlInitial returns a boolean if a field has been set.

func (*TweetEditControl) HasEditTweetIds ¶

func (o *TweetEditControl) HasEditTweetIds() bool

HasEditTweetIds returns a boolean if a field has been set.

func (*TweetEditControl) HasEditableUntilMsecs ¶

func (o *TweetEditControl) HasEditableUntilMsecs() bool

HasEditableUntilMsecs returns a boolean if a field has been set.

func (*TweetEditControl) HasEditsRemaining ¶

func (o *TweetEditControl) HasEditsRemaining() bool

HasEditsRemaining returns a boolean if a field has been set.

func (*TweetEditControl) HasInitialTweetId ¶

func (o *TweetEditControl) HasInitialTweetId() bool

HasInitialTweetId returns a boolean if a field has been set.

func (*TweetEditControl) HasIsEditEligible ¶

func (o *TweetEditControl) HasIsEditEligible() bool

HasIsEditEligible returns a boolean if a field has been set.

func (TweetEditControl) MarshalJSON ¶

func (o TweetEditControl) MarshalJSON() ([]byte, error)

func (*TweetEditControl) SetEditControlInitial ¶

func (o *TweetEditControl) SetEditControlInitial(v TweetEditControlInitial)

SetEditControlInitial gets a reference to the given TweetEditControlInitial and assigns it to the EditControlInitial field.

func (*TweetEditControl) SetEditTweetIds ¶

func (o *TweetEditControl) SetEditTweetIds(v []string)

SetEditTweetIds gets a reference to the given []string and assigns it to the EditTweetIds field.

func (*TweetEditControl) SetEditableUntilMsecs ¶

func (o *TweetEditControl) SetEditableUntilMsecs(v string)

SetEditableUntilMsecs gets a reference to the given string and assigns it to the EditableUntilMsecs field.

func (*TweetEditControl) SetEditsRemaining ¶

func (o *TweetEditControl) SetEditsRemaining(v string)

SetEditsRemaining gets a reference to the given string and assigns it to the EditsRemaining field.

func (*TweetEditControl) SetInitialTweetId ¶

func (o *TweetEditControl) SetInitialTweetId(v string)

SetInitialTweetId gets a reference to the given string and assigns it to the InitialTweetId field.

func (*TweetEditControl) SetIsEditEligible ¶

func (o *TweetEditControl) SetIsEditEligible(v bool)

SetIsEditEligible gets a reference to the given bool and assigns it to the IsEditEligible field.

func (TweetEditControl) ToMap ¶

func (o TweetEditControl) ToMap() (map[string]interface{}, error)

type TweetEditControlInitial ¶

type TweetEditControlInitial struct {
	EditTweetIds       []string `json:"edit_tweet_ids"`
	EditableUntilMsecs string   `json:"editable_until_msecs" validate:"regexp=^[0-9]+$"`
	EditsRemaining     string   `json:"edits_remaining" validate:"regexp=^[0-9]+$"`
	IsEditEligible     bool     `json:"is_edit_eligible"`
}

TweetEditControlInitial struct for TweetEditControlInitial

func NewTweetEditControlInitial ¶

func NewTweetEditControlInitial(editTweetIds []string, editableUntilMsecs string, editsRemaining string, isEditEligible bool) *TweetEditControlInitial

NewTweetEditControlInitial instantiates a new TweetEditControlInitial object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetEditControlInitialWithDefaults ¶

func NewTweetEditControlInitialWithDefaults() *TweetEditControlInitial

NewTweetEditControlInitialWithDefaults instantiates a new TweetEditControlInitial object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetEditControlInitial) GetEditTweetIds ¶

func (o *TweetEditControlInitial) GetEditTweetIds() []string

GetEditTweetIds returns the EditTweetIds field value

func (*TweetEditControlInitial) GetEditTweetIdsOk ¶

func (o *TweetEditControlInitial) GetEditTweetIdsOk() ([]string, bool)

GetEditTweetIdsOk returns a tuple with the EditTweetIds field value and a boolean to check if the value has been set.

func (*TweetEditControlInitial) GetEditableUntilMsecs ¶

func (o *TweetEditControlInitial) GetEditableUntilMsecs() string

GetEditableUntilMsecs returns the EditableUntilMsecs field value

func (*TweetEditControlInitial) GetEditableUntilMsecsOk ¶

func (o *TweetEditControlInitial) GetEditableUntilMsecsOk() (*string, bool)

GetEditableUntilMsecsOk returns a tuple with the EditableUntilMsecs field value and a boolean to check if the value has been set.

func (*TweetEditControlInitial) GetEditsRemaining ¶

func (o *TweetEditControlInitial) GetEditsRemaining() string

GetEditsRemaining returns the EditsRemaining field value

func (*TweetEditControlInitial) GetEditsRemainingOk ¶

func (o *TweetEditControlInitial) GetEditsRemainingOk() (*string, bool)

GetEditsRemainingOk returns a tuple with the EditsRemaining field value and a boolean to check if the value has been set.

func (*TweetEditControlInitial) GetIsEditEligible ¶

func (o *TweetEditControlInitial) GetIsEditEligible() bool

GetIsEditEligible returns the IsEditEligible field value

func (*TweetEditControlInitial) GetIsEditEligibleOk ¶

func (o *TweetEditControlInitial) GetIsEditEligibleOk() (*bool, bool)

GetIsEditEligibleOk returns a tuple with the IsEditEligible field value and a boolean to check if the value has been set.

func (TweetEditControlInitial) MarshalJSON ¶

func (o TweetEditControlInitial) MarshalJSON() ([]byte, error)

func (*TweetEditControlInitial) SetEditTweetIds ¶

func (o *TweetEditControlInitial) SetEditTweetIds(v []string)

SetEditTweetIds sets field value

func (*TweetEditControlInitial) SetEditableUntilMsecs ¶

func (o *TweetEditControlInitial) SetEditableUntilMsecs(v string)

SetEditableUntilMsecs sets field value

func (*TweetEditControlInitial) SetEditsRemaining ¶

func (o *TweetEditControlInitial) SetEditsRemaining(v string)

SetEditsRemaining sets field value

func (*TweetEditControlInitial) SetIsEditEligible ¶

func (o *TweetEditControlInitial) SetIsEditEligible(v bool)

SetIsEditEligible sets field value

func (TweetEditControlInitial) ToMap ¶

func (o TweetEditControlInitial) ToMap() (map[string]interface{}, error)

func (*TweetEditControlInitial) UnmarshalJSON ¶

func (o *TweetEditControlInitial) UnmarshalJSON(data []byte) (err error)

type TweetEditPrespective ¶

type TweetEditPrespective struct {
	Favorited *bool `json:"favorited,omitempty"`
	Retweeted *bool `json:"retweeted,omitempty"`
}

TweetEditPrespective struct for TweetEditPrespective

func NewTweetEditPrespective ¶

func NewTweetEditPrespective() *TweetEditPrespective

NewTweetEditPrespective instantiates a new TweetEditPrespective object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetEditPrespectiveWithDefaults ¶

func NewTweetEditPrespectiveWithDefaults() *TweetEditPrespective

NewTweetEditPrespectiveWithDefaults instantiates a new TweetEditPrespective object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetEditPrespective) GetFavorited ¶

func (o *TweetEditPrespective) GetFavorited() bool

GetFavorited returns the Favorited field value if set, zero value otherwise.

func (*TweetEditPrespective) GetFavoritedOk ¶

func (o *TweetEditPrespective) GetFavoritedOk() (*bool, bool)

GetFavoritedOk returns a tuple with the Favorited field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetEditPrespective) GetRetweeted ¶

func (o *TweetEditPrespective) GetRetweeted() bool

GetRetweeted returns the Retweeted field value if set, zero value otherwise.

func (*TweetEditPrespective) GetRetweetedOk ¶

func (o *TweetEditPrespective) GetRetweetedOk() (*bool, bool)

GetRetweetedOk returns a tuple with the Retweeted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetEditPrespective) HasFavorited ¶

func (o *TweetEditPrespective) HasFavorited() bool

HasFavorited returns a boolean if a field has been set.

func (*TweetEditPrespective) HasRetweeted ¶

func (o *TweetEditPrespective) HasRetweeted() bool

HasRetweeted returns a boolean if a field has been set.

func (TweetEditPrespective) MarshalJSON ¶

func (o TweetEditPrespective) MarshalJSON() ([]byte, error)

func (*TweetEditPrespective) SetFavorited ¶

func (o *TweetEditPrespective) SetFavorited(v bool)

SetFavorited gets a reference to the given bool and assigns it to the Favorited field.

func (*TweetEditPrespective) SetRetweeted ¶

func (o *TweetEditPrespective) SetRetweeted(v bool)

SetRetweeted gets a reference to the given bool and assigns it to the Retweeted field.

func (TweetEditPrespective) ToMap ¶

func (o TweetEditPrespective) ToMap() (map[string]interface{}, error)

type TweetFavoritersResponse ¶

type TweetFavoritersResponse struct {
	Data TweetFavoritersResponseData `json:"data"`
}

TweetFavoritersResponse struct for TweetFavoritersResponse

func NewTweetFavoritersResponse ¶

func NewTweetFavoritersResponse(data TweetFavoritersResponseData) *TweetFavoritersResponse

NewTweetFavoritersResponse instantiates a new TweetFavoritersResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetFavoritersResponseWithDefaults ¶

func NewTweetFavoritersResponseWithDefaults() *TweetFavoritersResponse

NewTweetFavoritersResponseWithDefaults instantiates a new TweetFavoritersResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetFavoritersResponse) GetData ¶

GetData returns the Data field value

func (*TweetFavoritersResponse) GetDataOk ¶

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (TweetFavoritersResponse) MarshalJSON ¶

func (o TweetFavoritersResponse) MarshalJSON() ([]byte, error)

func (*TweetFavoritersResponse) SetData ¶

SetData sets field value

func (TweetFavoritersResponse) ToMap ¶

func (o TweetFavoritersResponse) ToMap() (map[string]interface{}, error)

func (*TweetFavoritersResponse) UnmarshalJSON ¶

func (o *TweetFavoritersResponse) UnmarshalJSON(data []byte) (err error)

type TweetFavoritersResponseData ¶

type TweetFavoritersResponseData struct {
	FavoritersTimeline TimelineV2 `json:"favoriters_timeline"`
}

TweetFavoritersResponseData struct for TweetFavoritersResponseData

func NewTweetFavoritersResponseData ¶

func NewTweetFavoritersResponseData(favoritersTimeline TimelineV2) *TweetFavoritersResponseData

NewTweetFavoritersResponseData instantiates a new TweetFavoritersResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetFavoritersResponseDataWithDefaults ¶

func NewTweetFavoritersResponseDataWithDefaults() *TweetFavoritersResponseData

NewTweetFavoritersResponseDataWithDefaults instantiates a new TweetFavoritersResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetFavoritersResponseData) GetFavoritersTimeline ¶

func (o *TweetFavoritersResponseData) GetFavoritersTimeline() TimelineV2

GetFavoritersTimeline returns the FavoritersTimeline field value

func (*TweetFavoritersResponseData) GetFavoritersTimelineOk ¶

func (o *TweetFavoritersResponseData) GetFavoritersTimelineOk() (*TimelineV2, bool)

GetFavoritersTimelineOk returns a tuple with the FavoritersTimeline field value and a boolean to check if the value has been set.

func (TweetFavoritersResponseData) MarshalJSON ¶

func (o TweetFavoritersResponseData) MarshalJSON() ([]byte, error)

func (*TweetFavoritersResponseData) SetFavoritersTimeline ¶

func (o *TweetFavoritersResponseData) SetFavoritersTimeline(v TimelineV2)

SetFavoritersTimeline sets field value

func (TweetFavoritersResponseData) ToMap ¶

func (o TweetFavoritersResponseData) ToMap() (map[string]interface{}, error)

func (*TweetFavoritersResponseData) UnmarshalJSON ¶

func (o *TweetFavoritersResponseData) UnmarshalJSON(data []byte) (err error)

type TweetInterstitial ¶

type TweetInterstitial struct {
	Typename    TypeName                    `json:"__typename"`
	DisplayType string                      `json:"displayType"`
	RevealText  TweetInterstitialRevealText `json:"revealText"`
	Text        TweetInterstitialText       `json:"text"`
}

TweetInterstitial struct for TweetInterstitial

func NewTweetInterstitial ¶

func NewTweetInterstitial(typename TypeName, displayType string, revealText TweetInterstitialRevealText, text TweetInterstitialText) *TweetInterstitial

NewTweetInterstitial instantiates a new TweetInterstitial object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetInterstitialWithDefaults ¶

func NewTweetInterstitialWithDefaults() *TweetInterstitial

NewTweetInterstitialWithDefaults instantiates a new TweetInterstitial object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetInterstitial) GetDisplayType ¶

func (o *TweetInterstitial) GetDisplayType() string

GetDisplayType returns the DisplayType field value

func (*TweetInterstitial) GetDisplayTypeOk ¶

func (o *TweetInterstitial) GetDisplayTypeOk() (*string, bool)

GetDisplayTypeOk returns a tuple with the DisplayType field value and a boolean to check if the value has been set.

func (*TweetInterstitial) GetRevealText ¶

GetRevealText returns the RevealText field value

func (*TweetInterstitial) GetRevealTextOk ¶

func (o *TweetInterstitial) GetRevealTextOk() (*TweetInterstitialRevealText, bool)

GetRevealTextOk returns a tuple with the RevealText field value and a boolean to check if the value has been set.

func (*TweetInterstitial) GetText ¶

GetText returns the Text field value

func (*TweetInterstitial) GetTextOk ¶

func (o *TweetInterstitial) GetTextOk() (*TweetInterstitialText, bool)

GetTextOk returns a tuple with the Text field value and a boolean to check if the value has been set.

func (*TweetInterstitial) GetTypename ¶

func (o *TweetInterstitial) GetTypename() TypeName

GetTypename returns the Typename field value

func (*TweetInterstitial) GetTypenameOk ¶

func (o *TweetInterstitial) GetTypenameOk() (*TypeName, bool)

GetTypenameOk returns a tuple with the Typename field value and a boolean to check if the value has been set.

func (TweetInterstitial) MarshalJSON ¶

func (o TweetInterstitial) MarshalJSON() ([]byte, error)

func (*TweetInterstitial) SetDisplayType ¶

func (o *TweetInterstitial) SetDisplayType(v string)

SetDisplayType sets field value

func (*TweetInterstitial) SetRevealText ¶

func (o *TweetInterstitial) SetRevealText(v TweetInterstitialRevealText)

SetRevealText sets field value

func (*TweetInterstitial) SetText ¶

SetText sets field value

func (*TweetInterstitial) SetTypename ¶

func (o *TweetInterstitial) SetTypename(v TypeName)

SetTypename sets field value

func (TweetInterstitial) ToMap ¶

func (o TweetInterstitial) ToMap() (map[string]interface{}, error)

func (*TweetInterstitial) UnmarshalJSON ¶

func (o *TweetInterstitial) UnmarshalJSON(data []byte) (err error)

type TweetInterstitialRevealText ¶

type TweetInterstitialRevealText struct {
	Entities []TweetInterstitialTextEntity `json:"entities"`
	Rtl      bool                          `json:"rtl"`
	Text     string                        `json:"text"`
}

TweetInterstitialRevealText struct for TweetInterstitialRevealText

func NewTweetInterstitialRevealText ¶

func NewTweetInterstitialRevealText(entities []TweetInterstitialTextEntity, rtl bool, text string) *TweetInterstitialRevealText

NewTweetInterstitialRevealText instantiates a new TweetInterstitialRevealText object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetInterstitialRevealTextWithDefaults ¶

func NewTweetInterstitialRevealTextWithDefaults() *TweetInterstitialRevealText

NewTweetInterstitialRevealTextWithDefaults instantiates a new TweetInterstitialRevealText object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetInterstitialRevealText) GetEntities ¶

GetEntities returns the Entities field value

func (*TweetInterstitialRevealText) GetEntitiesOk ¶

GetEntitiesOk returns a tuple with the Entities field value and a boolean to check if the value has been set.

func (*TweetInterstitialRevealText) GetRtl ¶

func (o *TweetInterstitialRevealText) GetRtl() bool

GetRtl returns the Rtl field value

func (*TweetInterstitialRevealText) GetRtlOk ¶

func (o *TweetInterstitialRevealText) GetRtlOk() (*bool, bool)

GetRtlOk returns a tuple with the Rtl field value and a boolean to check if the value has been set.

func (*TweetInterstitialRevealText) GetText ¶

func (o *TweetInterstitialRevealText) GetText() string

GetText returns the Text field value

func (*TweetInterstitialRevealText) GetTextOk ¶

func (o *TweetInterstitialRevealText) GetTextOk() (*string, bool)

GetTextOk returns a tuple with the Text field value and a boolean to check if the value has been set.

func (TweetInterstitialRevealText) MarshalJSON ¶

func (o TweetInterstitialRevealText) MarshalJSON() ([]byte, error)

func (*TweetInterstitialRevealText) SetEntities ¶

SetEntities sets field value

func (*TweetInterstitialRevealText) SetRtl ¶

func (o *TweetInterstitialRevealText) SetRtl(v bool)

SetRtl sets field value

func (*TweetInterstitialRevealText) SetText ¶

func (o *TweetInterstitialRevealText) SetText(v string)

SetText sets field value

func (TweetInterstitialRevealText) ToMap ¶

func (o TweetInterstitialRevealText) ToMap() (map[string]interface{}, error)

func (*TweetInterstitialRevealText) UnmarshalJSON ¶

func (o *TweetInterstitialRevealText) UnmarshalJSON(data []byte) (err error)

type TweetInterstitialText ¶

type TweetInterstitialText struct {
	Entities []TweetInterstitialTextEntity `json:"entities"`
	Rtl      bool                          `json:"rtl"`
	Text     string                        `json:"text"`
}

TweetInterstitialText struct for TweetInterstitialText

func NewTweetInterstitialText ¶

func NewTweetInterstitialText(entities []TweetInterstitialTextEntity, rtl bool, text string) *TweetInterstitialText

NewTweetInterstitialText instantiates a new TweetInterstitialText object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetInterstitialTextWithDefaults ¶

func NewTweetInterstitialTextWithDefaults() *TweetInterstitialText

NewTweetInterstitialTextWithDefaults instantiates a new TweetInterstitialText object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetInterstitialText) GetEntities ¶

GetEntities returns the Entities field value

func (*TweetInterstitialText) GetEntitiesOk ¶

func (o *TweetInterstitialText) GetEntitiesOk() ([]TweetInterstitialTextEntity, bool)

GetEntitiesOk returns a tuple with the Entities field value and a boolean to check if the value has been set.

func (*TweetInterstitialText) GetRtl ¶

func (o *TweetInterstitialText) GetRtl() bool

GetRtl returns the Rtl field value

func (*TweetInterstitialText) GetRtlOk ¶

func (o *TweetInterstitialText) GetRtlOk() (*bool, bool)

GetRtlOk returns a tuple with the Rtl field value and a boolean to check if the value has been set.

func (*TweetInterstitialText) GetText ¶

func (o *TweetInterstitialText) GetText() string

GetText returns the Text field value

func (*TweetInterstitialText) GetTextOk ¶

func (o *TweetInterstitialText) GetTextOk() (*string, bool)

GetTextOk returns a tuple with the Text field value and a boolean to check if the value has been set.

func (TweetInterstitialText) MarshalJSON ¶

func (o TweetInterstitialText) MarshalJSON() ([]byte, error)

func (*TweetInterstitialText) SetEntities ¶

SetEntities sets field value

func (*TweetInterstitialText) SetRtl ¶

func (o *TweetInterstitialText) SetRtl(v bool)

SetRtl sets field value

func (*TweetInterstitialText) SetText ¶

func (o *TweetInterstitialText) SetText(v string)

SetText sets field value

func (TweetInterstitialText) ToMap ¶

func (o TweetInterstitialText) ToMap() (map[string]interface{}, error)

func (*TweetInterstitialText) UnmarshalJSON ¶

func (o *TweetInterstitialText) UnmarshalJSON(data []byte) (err error)

type TweetInterstitialTextEntity ¶

type TweetInterstitialTextEntity struct {
	FromIndex int32                          `json:"fromIndex"`
	Ref       TweetInterstitialTextEntityRef `json:"ref"`
	ToIndex   int32                          `json:"toIndex"`
}

TweetInterstitialTextEntity struct for TweetInterstitialTextEntity

func NewTweetInterstitialTextEntity ¶

func NewTweetInterstitialTextEntity(fromIndex int32, ref TweetInterstitialTextEntityRef, toIndex int32) *TweetInterstitialTextEntity

NewTweetInterstitialTextEntity instantiates a new TweetInterstitialTextEntity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetInterstitialTextEntityWithDefaults ¶

func NewTweetInterstitialTextEntityWithDefaults() *TweetInterstitialTextEntity

NewTweetInterstitialTextEntityWithDefaults instantiates a new TweetInterstitialTextEntity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetInterstitialTextEntity) GetFromIndex ¶

func (o *TweetInterstitialTextEntity) GetFromIndex() int32

GetFromIndex returns the FromIndex field value

func (*TweetInterstitialTextEntity) GetFromIndexOk ¶

func (o *TweetInterstitialTextEntity) GetFromIndexOk() (*int32, bool)

GetFromIndexOk returns a tuple with the FromIndex field value and a boolean to check if the value has been set.

func (*TweetInterstitialTextEntity) GetRef ¶

GetRef returns the Ref field value

func (*TweetInterstitialTextEntity) GetRefOk ¶

GetRefOk returns a tuple with the Ref field value and a boolean to check if the value has been set.

func (*TweetInterstitialTextEntity) GetToIndex ¶

func (o *TweetInterstitialTextEntity) GetToIndex() int32

GetToIndex returns the ToIndex field value

func (*TweetInterstitialTextEntity) GetToIndexOk ¶

func (o *TweetInterstitialTextEntity) GetToIndexOk() (*int32, bool)

GetToIndexOk returns a tuple with the ToIndex field value and a boolean to check if the value has been set.

func (TweetInterstitialTextEntity) MarshalJSON ¶

func (o TweetInterstitialTextEntity) MarshalJSON() ([]byte, error)

func (*TweetInterstitialTextEntity) SetFromIndex ¶

func (o *TweetInterstitialTextEntity) SetFromIndex(v int32)

SetFromIndex sets field value

func (*TweetInterstitialTextEntity) SetRef ¶

SetRef sets field value

func (*TweetInterstitialTextEntity) SetToIndex ¶

func (o *TweetInterstitialTextEntity) SetToIndex(v int32)

SetToIndex sets field value

func (TweetInterstitialTextEntity) ToMap ¶

func (o TweetInterstitialTextEntity) ToMap() (map[string]interface{}, error)

func (*TweetInterstitialTextEntity) UnmarshalJSON ¶

func (o *TweetInterstitialTextEntity) UnmarshalJSON(data []byte) (err error)

type TweetInterstitialTextEntityRef ¶

type TweetInterstitialTextEntityRef struct {
	Type    string `json:"type"`
	Url     string `json:"url"`
	UrlType string `json:"urlType"`
}

TweetInterstitialTextEntityRef struct for TweetInterstitialTextEntityRef

func NewTweetInterstitialTextEntityRef ¶

func NewTweetInterstitialTextEntityRef(type_ string, url string, urlType string) *TweetInterstitialTextEntityRef

NewTweetInterstitialTextEntityRef instantiates a new TweetInterstitialTextEntityRef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetInterstitialTextEntityRefWithDefaults ¶

func NewTweetInterstitialTextEntityRefWithDefaults() *TweetInterstitialTextEntityRef

NewTweetInterstitialTextEntityRefWithDefaults instantiates a new TweetInterstitialTextEntityRef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetInterstitialTextEntityRef) GetType ¶

GetType returns the Type field value

func (*TweetInterstitialTextEntityRef) GetTypeOk ¶

func (o *TweetInterstitialTextEntityRef) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*TweetInterstitialTextEntityRef) GetUrl ¶

GetUrl returns the Url field value

func (*TweetInterstitialTextEntityRef) GetUrlOk ¶

func (o *TweetInterstitialTextEntityRef) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value and a boolean to check if the value has been set.

func (*TweetInterstitialTextEntityRef) GetUrlType ¶

func (o *TweetInterstitialTextEntityRef) GetUrlType() string

GetUrlType returns the UrlType field value

func (*TweetInterstitialTextEntityRef) GetUrlTypeOk ¶

func (o *TweetInterstitialTextEntityRef) GetUrlTypeOk() (*string, bool)

GetUrlTypeOk returns a tuple with the UrlType field value and a boolean to check if the value has been set.

func (TweetInterstitialTextEntityRef) MarshalJSON ¶

func (o TweetInterstitialTextEntityRef) MarshalJSON() ([]byte, error)

func (*TweetInterstitialTextEntityRef) SetType ¶

func (o *TweetInterstitialTextEntityRef) SetType(v string)

SetType sets field value

func (*TweetInterstitialTextEntityRef) SetUrl ¶

SetUrl sets field value

func (*TweetInterstitialTextEntityRef) SetUrlType ¶

func (o *TweetInterstitialTextEntityRef) SetUrlType(v string)

SetUrlType sets field value

func (TweetInterstitialTextEntityRef) ToMap ¶

func (o TweetInterstitialTextEntityRef) ToMap() (map[string]interface{}, error)

func (*TweetInterstitialTextEntityRef) UnmarshalJSON ¶

func (o *TweetInterstitialTextEntityRef) UnmarshalJSON(data []byte) (err error)

type TweetLegacy ¶

type TweetLegacy struct {
	BookmarkCount             int32                  `json:"bookmark_count"`
	Bookmarked                bool                   `json:"bookmarked"`
	ConversationControl       map[string]interface{} `json:"conversation_control,omitempty"`
	ConversationIdStr         string                 `json:"conversation_id_str" validate:"regexp=^[0-9]+$"`
	CreatedAt                 string                 `` /* 225-byte string literal not displayed */
	DisplayTextRange          []int32                `json:"display_text_range"`
	Entities                  Entities               `json:"entities"`
	ExtendedEntities          *ExtendedEntities      `json:"extended_entities,omitempty"`
	FavoriteCount             int32                  `json:"favorite_count"`
	Favorited                 bool                   `json:"favorited"`
	FullText                  string                 `json:"full_text"`
	IdStr                     string                 `json:"id_str" validate:"regexp=^[0-9]+$"`
	InReplyToScreenName       *string                `json:"in_reply_to_screen_name,omitempty"`
	InReplyToStatusIdStr      *string                `json:"in_reply_to_status_id_str,omitempty" validate:"regexp=^[0-9]+$"`
	InReplyToUserIdStr        *string                `json:"in_reply_to_user_id_str,omitempty" validate:"regexp=^[0-9]+$"`
	IsQuoteStatus             bool                   `json:"is_quote_status"`
	Lang                      string                 `json:"lang"`
	LimitedActions            *string                `json:"limited_actions,omitempty"`
	Place                     map[string]interface{} `json:"place,omitempty"`
	PossiblySensitive         *bool                  `json:"possibly_sensitive,omitempty"`
	PossiblySensitiveEditable *bool                  `json:"possibly_sensitive_editable,omitempty"`
	QuoteCount                int32                  `json:"quote_count"`
	QuotedStatusIdStr         *string                `json:"quoted_status_id_str,omitempty" validate:"regexp=^[0-9]+$"`
	QuotedStatusPermalink     *QuotedStatusPermalink `json:"quoted_status_permalink,omitempty"`
	ReplyCount                int32                  `json:"reply_count"`
	RetweetCount              int32                  `json:"retweet_count"`
	Retweeted                 bool                   `json:"retweeted"`
	RetweetedStatusResult     *ItemResult            `json:"retweeted_status_result,omitempty"`
	Scopes                    *TweetLegacyScopes     `json:"scopes,omitempty"`
	SelfThread                *SelfThread            `json:"self_thread,omitempty"`
	UserIdStr                 string                 `json:"user_id_str" validate:"regexp=^[0-9]+$"`
}

TweetLegacy struct for TweetLegacy

func NewTweetLegacy ¶

func NewTweetLegacy(bookmarkCount int32, bookmarked bool, conversationIdStr string, createdAt string, displayTextRange []int32, entities Entities, favoriteCount int32, favorited bool, fullText string, idStr string, isQuoteStatus bool, lang string, quoteCount int32, replyCount int32, retweetCount int32, retweeted bool, userIdStr string) *TweetLegacy

NewTweetLegacy instantiates a new TweetLegacy object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetLegacyWithDefaults ¶

func NewTweetLegacyWithDefaults() *TweetLegacy

NewTweetLegacyWithDefaults instantiates a new TweetLegacy object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetLegacy) GetBookmarkCount ¶

func (o *TweetLegacy) GetBookmarkCount() int32

GetBookmarkCount returns the BookmarkCount field value

func (*TweetLegacy) GetBookmarkCountOk ¶

func (o *TweetLegacy) GetBookmarkCountOk() (*int32, bool)

GetBookmarkCountOk returns a tuple with the BookmarkCount field value and a boolean to check if the value has been set.

func (*TweetLegacy) GetBookmarked ¶

func (o *TweetLegacy) GetBookmarked() bool

GetBookmarked returns the Bookmarked field value

func (*TweetLegacy) GetBookmarkedOk ¶

func (o *TweetLegacy) GetBookmarkedOk() (*bool, bool)

GetBookmarkedOk returns a tuple with the Bookmarked field value and a boolean to check if the value has been set.

func (*TweetLegacy) GetConversationControl ¶

func (o *TweetLegacy) GetConversationControl() map[string]interface{}

GetConversationControl returns the ConversationControl field value if set, zero value otherwise.

func (*TweetLegacy) GetConversationControlOk ¶

func (o *TweetLegacy) GetConversationControlOk() (map[string]interface{}, bool)

GetConversationControlOk returns a tuple with the ConversationControl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetLegacy) GetConversationIdStr ¶

func (o *TweetLegacy) GetConversationIdStr() string

GetConversationIdStr returns the ConversationIdStr field value

func (*TweetLegacy) GetConversationIdStrOk ¶

func (o *TweetLegacy) GetConversationIdStrOk() (*string, bool)

GetConversationIdStrOk returns a tuple with the ConversationIdStr field value and a boolean to check if the value has been set.

func (*TweetLegacy) GetCreatedAt ¶

func (o *TweetLegacy) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*TweetLegacy) GetCreatedAtOk ¶

func (o *TweetLegacy) GetCreatedAtOk() (*string, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*TweetLegacy) GetDisplayTextRange ¶

func (o *TweetLegacy) GetDisplayTextRange() []int32

GetDisplayTextRange returns the DisplayTextRange field value

func (*TweetLegacy) GetDisplayTextRangeOk ¶

func (o *TweetLegacy) GetDisplayTextRangeOk() ([]int32, bool)

GetDisplayTextRangeOk returns a tuple with the DisplayTextRange field value and a boolean to check if the value has been set.

func (*TweetLegacy) GetEntities ¶

func (o *TweetLegacy) GetEntities() Entities

GetEntities returns the Entities field value

func (*TweetLegacy) GetEntitiesOk ¶

func (o *TweetLegacy) GetEntitiesOk() (*Entities, bool)

GetEntitiesOk returns a tuple with the Entities field value and a boolean to check if the value has been set.

func (*TweetLegacy) GetExtendedEntities ¶

func (o *TweetLegacy) GetExtendedEntities() ExtendedEntities

GetExtendedEntities returns the ExtendedEntities field value if set, zero value otherwise.

func (*TweetLegacy) GetExtendedEntitiesOk ¶

func (o *TweetLegacy) GetExtendedEntitiesOk() (*ExtendedEntities, bool)

GetExtendedEntitiesOk returns a tuple with the ExtendedEntities field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetLegacy) GetFavoriteCount ¶

func (o *TweetLegacy) GetFavoriteCount() int32

GetFavoriteCount returns the FavoriteCount field value

func (*TweetLegacy) GetFavoriteCountOk ¶

func (o *TweetLegacy) GetFavoriteCountOk() (*int32, bool)

GetFavoriteCountOk returns a tuple with the FavoriteCount field value and a boolean to check if the value has been set.

func (*TweetLegacy) GetFavorited ¶

func (o *TweetLegacy) GetFavorited() bool

GetFavorited returns the Favorited field value

func (*TweetLegacy) GetFavoritedOk ¶

func (o *TweetLegacy) GetFavoritedOk() (*bool, bool)

GetFavoritedOk returns a tuple with the Favorited field value and a boolean to check if the value has been set.

func (*TweetLegacy) GetFullText ¶

func (o *TweetLegacy) GetFullText() string

GetFullText returns the FullText field value

func (*TweetLegacy) GetFullTextOk ¶

func (o *TweetLegacy) GetFullTextOk() (*string, bool)

GetFullTextOk returns a tuple with the FullText field value and a boolean to check if the value has been set.

func (*TweetLegacy) GetIdStr ¶

func (o *TweetLegacy) GetIdStr() string

GetIdStr returns the IdStr field value

func (*TweetLegacy) GetIdStrOk ¶

func (o *TweetLegacy) GetIdStrOk() (*string, bool)

GetIdStrOk returns a tuple with the IdStr field value and a boolean to check if the value has been set.

func (*TweetLegacy) GetInReplyToScreenName ¶

func (o *TweetLegacy) GetInReplyToScreenName() string

GetInReplyToScreenName returns the InReplyToScreenName field value if set, zero value otherwise.

func (*TweetLegacy) GetInReplyToScreenNameOk ¶

func (o *TweetLegacy) GetInReplyToScreenNameOk() (*string, bool)

GetInReplyToScreenNameOk returns a tuple with the InReplyToScreenName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetLegacy) GetInReplyToStatusIdStr ¶

func (o *TweetLegacy) GetInReplyToStatusIdStr() string

GetInReplyToStatusIdStr returns the InReplyToStatusIdStr field value if set, zero value otherwise.

func (*TweetLegacy) GetInReplyToStatusIdStrOk ¶

func (o *TweetLegacy) GetInReplyToStatusIdStrOk() (*string, bool)

GetInReplyToStatusIdStrOk returns a tuple with the InReplyToStatusIdStr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetLegacy) GetInReplyToUserIdStr ¶

func (o *TweetLegacy) GetInReplyToUserIdStr() string

GetInReplyToUserIdStr returns the InReplyToUserIdStr field value if set, zero value otherwise.

func (*TweetLegacy) GetInReplyToUserIdStrOk ¶

func (o *TweetLegacy) GetInReplyToUserIdStrOk() (*string, bool)

GetInReplyToUserIdStrOk returns a tuple with the InReplyToUserIdStr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetLegacy) GetIsQuoteStatus ¶

func (o *TweetLegacy) GetIsQuoteStatus() bool

GetIsQuoteStatus returns the IsQuoteStatus field value

func (*TweetLegacy) GetIsQuoteStatusOk ¶

func (o *TweetLegacy) GetIsQuoteStatusOk() (*bool, bool)

GetIsQuoteStatusOk returns a tuple with the IsQuoteStatus field value and a boolean to check if the value has been set.

func (*TweetLegacy) GetLang ¶

func (o *TweetLegacy) GetLang() string

GetLang returns the Lang field value

func (*TweetLegacy) GetLangOk ¶

func (o *TweetLegacy) GetLangOk() (*string, bool)

GetLangOk returns a tuple with the Lang field value and a boolean to check if the value has been set.

func (*TweetLegacy) GetLimitedActions ¶

func (o *TweetLegacy) GetLimitedActions() string

GetLimitedActions returns the LimitedActions field value if set, zero value otherwise.

func (*TweetLegacy) GetLimitedActionsOk ¶

func (o *TweetLegacy) GetLimitedActionsOk() (*string, bool)

GetLimitedActionsOk returns a tuple with the LimitedActions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetLegacy) GetPlace ¶

func (o *TweetLegacy) GetPlace() map[string]interface{}

GetPlace returns the Place field value if set, zero value otherwise.

func (*TweetLegacy) GetPlaceOk ¶

func (o *TweetLegacy) GetPlaceOk() (map[string]interface{}, bool)

GetPlaceOk returns a tuple with the Place field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetLegacy) GetPossiblySensitive ¶

func (o *TweetLegacy) GetPossiblySensitive() bool

GetPossiblySensitive returns the PossiblySensitive field value if set, zero value otherwise.

func (*TweetLegacy) GetPossiblySensitiveEditable ¶

func (o *TweetLegacy) GetPossiblySensitiveEditable() bool

GetPossiblySensitiveEditable returns the PossiblySensitiveEditable field value if set, zero value otherwise.

func (*TweetLegacy) GetPossiblySensitiveEditableOk ¶

func (o *TweetLegacy) GetPossiblySensitiveEditableOk() (*bool, bool)

GetPossiblySensitiveEditableOk returns a tuple with the PossiblySensitiveEditable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetLegacy) GetPossiblySensitiveOk ¶

func (o *TweetLegacy) GetPossiblySensitiveOk() (*bool, bool)

GetPossiblySensitiveOk returns a tuple with the PossiblySensitive field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetLegacy) GetQuoteCount ¶

func (o *TweetLegacy) GetQuoteCount() int32

GetQuoteCount returns the QuoteCount field value

func (*TweetLegacy) GetQuoteCountOk ¶

func (o *TweetLegacy) GetQuoteCountOk() (*int32, bool)

GetQuoteCountOk returns a tuple with the QuoteCount field value and a boolean to check if the value has been set.

func (*TweetLegacy) GetQuotedStatusIdStr ¶

func (o *TweetLegacy) GetQuotedStatusIdStr() string

GetQuotedStatusIdStr returns the QuotedStatusIdStr field value if set, zero value otherwise.

func (*TweetLegacy) GetQuotedStatusIdStrOk ¶

func (o *TweetLegacy) GetQuotedStatusIdStrOk() (*string, bool)

GetQuotedStatusIdStrOk returns a tuple with the QuotedStatusIdStr field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *TweetLegacy) GetQuotedStatusPermalink() QuotedStatusPermalink

GetQuotedStatusPermalink returns the QuotedStatusPermalink field value if set, zero value otherwise.

func (*TweetLegacy) GetQuotedStatusPermalinkOk ¶

func (o *TweetLegacy) GetQuotedStatusPermalinkOk() (*QuotedStatusPermalink, bool)

GetQuotedStatusPermalinkOk returns a tuple with the QuotedStatusPermalink field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetLegacy) GetReplyCount ¶

func (o *TweetLegacy) GetReplyCount() int32

GetReplyCount returns the ReplyCount field value

func (*TweetLegacy) GetReplyCountOk ¶

func (o *TweetLegacy) GetReplyCountOk() (*int32, bool)

GetReplyCountOk returns a tuple with the ReplyCount field value and a boolean to check if the value has been set.

func (*TweetLegacy) GetRetweetCount ¶

func (o *TweetLegacy) GetRetweetCount() int32

GetRetweetCount returns the RetweetCount field value

func (*TweetLegacy) GetRetweetCountOk ¶

func (o *TweetLegacy) GetRetweetCountOk() (*int32, bool)

GetRetweetCountOk returns a tuple with the RetweetCount field value and a boolean to check if the value has been set.

func (*TweetLegacy) GetRetweeted ¶

func (o *TweetLegacy) GetRetweeted() bool

GetRetweeted returns the Retweeted field value

func (*TweetLegacy) GetRetweetedOk ¶

func (o *TweetLegacy) GetRetweetedOk() (*bool, bool)

GetRetweetedOk returns a tuple with the Retweeted field value and a boolean to check if the value has been set.

func (*TweetLegacy) GetRetweetedStatusResult ¶

func (o *TweetLegacy) GetRetweetedStatusResult() ItemResult

GetRetweetedStatusResult returns the RetweetedStatusResult field value if set, zero value otherwise.

func (*TweetLegacy) GetRetweetedStatusResultOk ¶

func (o *TweetLegacy) GetRetweetedStatusResultOk() (*ItemResult, bool)

GetRetweetedStatusResultOk returns a tuple with the RetweetedStatusResult field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetLegacy) GetScopes ¶

func (o *TweetLegacy) GetScopes() TweetLegacyScopes

GetScopes returns the Scopes field value if set, zero value otherwise.

func (*TweetLegacy) GetScopesOk ¶

func (o *TweetLegacy) GetScopesOk() (*TweetLegacyScopes, bool)

GetScopesOk returns a tuple with the Scopes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetLegacy) GetSelfThread ¶

func (o *TweetLegacy) GetSelfThread() SelfThread

GetSelfThread returns the SelfThread field value if set, zero value otherwise.

func (*TweetLegacy) GetSelfThreadOk ¶

func (o *TweetLegacy) GetSelfThreadOk() (*SelfThread, bool)

GetSelfThreadOk returns a tuple with the SelfThread field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetLegacy) GetUserIdStr ¶

func (o *TweetLegacy) GetUserIdStr() string

GetUserIdStr returns the UserIdStr field value

func (*TweetLegacy) GetUserIdStrOk ¶

func (o *TweetLegacy) GetUserIdStrOk() (*string, bool)

GetUserIdStrOk returns a tuple with the UserIdStr field value and a boolean to check if the value has been set.

func (*TweetLegacy) HasConversationControl ¶

func (o *TweetLegacy) HasConversationControl() bool

HasConversationControl returns a boolean if a field has been set.

func (*TweetLegacy) HasExtendedEntities ¶

func (o *TweetLegacy) HasExtendedEntities() bool

HasExtendedEntities returns a boolean if a field has been set.

func (*TweetLegacy) HasInReplyToScreenName ¶

func (o *TweetLegacy) HasInReplyToScreenName() bool

HasInReplyToScreenName returns a boolean if a field has been set.

func (*TweetLegacy) HasInReplyToStatusIdStr ¶

func (o *TweetLegacy) HasInReplyToStatusIdStr() bool

HasInReplyToStatusIdStr returns a boolean if a field has been set.

func (*TweetLegacy) HasInReplyToUserIdStr ¶

func (o *TweetLegacy) HasInReplyToUserIdStr() bool

HasInReplyToUserIdStr returns a boolean if a field has been set.

func (*TweetLegacy) HasLimitedActions ¶

func (o *TweetLegacy) HasLimitedActions() bool

HasLimitedActions returns a boolean if a field has been set.

func (*TweetLegacy) HasPlace ¶

func (o *TweetLegacy) HasPlace() bool

HasPlace returns a boolean if a field has been set.

func (*TweetLegacy) HasPossiblySensitive ¶

func (o *TweetLegacy) HasPossiblySensitive() bool

HasPossiblySensitive returns a boolean if a field has been set.

func (*TweetLegacy) HasPossiblySensitiveEditable ¶

func (o *TweetLegacy) HasPossiblySensitiveEditable() bool

HasPossiblySensitiveEditable returns a boolean if a field has been set.

func (*TweetLegacy) HasQuotedStatusIdStr ¶

func (o *TweetLegacy) HasQuotedStatusIdStr() bool

HasQuotedStatusIdStr returns a boolean if a field has been set.

func (o *TweetLegacy) HasQuotedStatusPermalink() bool

HasQuotedStatusPermalink returns a boolean if a field has been set.

func (*TweetLegacy) HasRetweetedStatusResult ¶

func (o *TweetLegacy) HasRetweetedStatusResult() bool

HasRetweetedStatusResult returns a boolean if a field has been set.

func (*TweetLegacy) HasScopes ¶

func (o *TweetLegacy) HasScopes() bool

HasScopes returns a boolean if a field has been set.

func (*TweetLegacy) HasSelfThread ¶

func (o *TweetLegacy) HasSelfThread() bool

HasSelfThread returns a boolean if a field has been set.

func (TweetLegacy) MarshalJSON ¶

func (o TweetLegacy) MarshalJSON() ([]byte, error)

func (*TweetLegacy) SetBookmarkCount ¶

func (o *TweetLegacy) SetBookmarkCount(v int32)

SetBookmarkCount sets field value

func (*TweetLegacy) SetBookmarked ¶

func (o *TweetLegacy) SetBookmarked(v bool)

SetBookmarked sets field value

func (*TweetLegacy) SetConversationControl ¶

func (o *TweetLegacy) SetConversationControl(v map[string]interface{})

SetConversationControl gets a reference to the given map[string]interface{} and assigns it to the ConversationControl field.

func (*TweetLegacy) SetConversationIdStr ¶

func (o *TweetLegacy) SetConversationIdStr(v string)

SetConversationIdStr sets field value

func (*TweetLegacy) SetCreatedAt ¶

func (o *TweetLegacy) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*TweetLegacy) SetDisplayTextRange ¶

func (o *TweetLegacy) SetDisplayTextRange(v []int32)

SetDisplayTextRange sets field value

func (*TweetLegacy) SetEntities ¶

func (o *TweetLegacy) SetEntities(v Entities)

SetEntities sets field value

func (*TweetLegacy) SetExtendedEntities ¶

func (o *TweetLegacy) SetExtendedEntities(v ExtendedEntities)

SetExtendedEntities gets a reference to the given ExtendedEntities and assigns it to the ExtendedEntities field.

func (*TweetLegacy) SetFavoriteCount ¶

func (o *TweetLegacy) SetFavoriteCount(v int32)

SetFavoriteCount sets field value

func (*TweetLegacy) SetFavorited ¶

func (o *TweetLegacy) SetFavorited(v bool)

SetFavorited sets field value

func (*TweetLegacy) SetFullText ¶

func (o *TweetLegacy) SetFullText(v string)

SetFullText sets field value

func (*TweetLegacy) SetIdStr ¶

func (o *TweetLegacy) SetIdStr(v string)

SetIdStr sets field value

func (*TweetLegacy) SetInReplyToScreenName ¶

func (o *TweetLegacy) SetInReplyToScreenName(v string)

SetInReplyToScreenName gets a reference to the given string and assigns it to the InReplyToScreenName field.

func (*TweetLegacy) SetInReplyToStatusIdStr ¶

func (o *TweetLegacy) SetInReplyToStatusIdStr(v string)

SetInReplyToStatusIdStr gets a reference to the given string and assigns it to the InReplyToStatusIdStr field.

func (*TweetLegacy) SetInReplyToUserIdStr ¶

func (o *TweetLegacy) SetInReplyToUserIdStr(v string)

SetInReplyToUserIdStr gets a reference to the given string and assigns it to the InReplyToUserIdStr field.

func (*TweetLegacy) SetIsQuoteStatus ¶

func (o *TweetLegacy) SetIsQuoteStatus(v bool)

SetIsQuoteStatus sets field value

func (*TweetLegacy) SetLang ¶

func (o *TweetLegacy) SetLang(v string)

SetLang sets field value

func (*TweetLegacy) SetLimitedActions ¶

func (o *TweetLegacy) SetLimitedActions(v string)

SetLimitedActions gets a reference to the given string and assigns it to the LimitedActions field.

func (*TweetLegacy) SetPlace ¶

func (o *TweetLegacy) SetPlace(v map[string]interface{})

SetPlace gets a reference to the given map[string]interface{} and assigns it to the Place field.

func (*TweetLegacy) SetPossiblySensitive ¶

func (o *TweetLegacy) SetPossiblySensitive(v bool)

SetPossiblySensitive gets a reference to the given bool and assigns it to the PossiblySensitive field.

func (*TweetLegacy) SetPossiblySensitiveEditable ¶

func (o *TweetLegacy) SetPossiblySensitiveEditable(v bool)

SetPossiblySensitiveEditable gets a reference to the given bool and assigns it to the PossiblySensitiveEditable field.

func (*TweetLegacy) SetQuoteCount ¶

func (o *TweetLegacy) SetQuoteCount(v int32)

SetQuoteCount sets field value

func (*TweetLegacy) SetQuotedStatusIdStr ¶

func (o *TweetLegacy) SetQuotedStatusIdStr(v string)

SetQuotedStatusIdStr gets a reference to the given string and assigns it to the QuotedStatusIdStr field.

func (o *TweetLegacy) SetQuotedStatusPermalink(v QuotedStatusPermalink)

SetQuotedStatusPermalink gets a reference to the given QuotedStatusPermalink and assigns it to the QuotedStatusPermalink field.

func (*TweetLegacy) SetReplyCount ¶

func (o *TweetLegacy) SetReplyCount(v int32)

SetReplyCount sets field value

func (*TweetLegacy) SetRetweetCount ¶

func (o *TweetLegacy) SetRetweetCount(v int32)

SetRetweetCount sets field value

func (*TweetLegacy) SetRetweeted ¶

func (o *TweetLegacy) SetRetweeted(v bool)

SetRetweeted sets field value

func (*TweetLegacy) SetRetweetedStatusResult ¶

func (o *TweetLegacy) SetRetweetedStatusResult(v ItemResult)

SetRetweetedStatusResult gets a reference to the given ItemResult and assigns it to the RetweetedStatusResult field.

func (*TweetLegacy) SetScopes ¶

func (o *TweetLegacy) SetScopes(v TweetLegacyScopes)

SetScopes gets a reference to the given TweetLegacyScopes and assigns it to the Scopes field.

func (*TweetLegacy) SetSelfThread ¶

func (o *TweetLegacy) SetSelfThread(v SelfThread)

SetSelfThread gets a reference to the given SelfThread and assigns it to the SelfThread field.

func (*TweetLegacy) SetUserIdStr ¶

func (o *TweetLegacy) SetUserIdStr(v string)

SetUserIdStr sets field value

func (TweetLegacy) ToMap ¶

func (o TweetLegacy) ToMap() (map[string]interface{}, error)

func (*TweetLegacy) UnmarshalJSON ¶

func (o *TweetLegacy) UnmarshalJSON(data []byte) (err error)

type TweetLegacyScopes ¶

type TweetLegacyScopes struct {
	Followers bool `json:"followers"`
}

TweetLegacyScopes struct for TweetLegacyScopes

func NewTweetLegacyScopes ¶

func NewTweetLegacyScopes(followers bool) *TweetLegacyScopes

NewTweetLegacyScopes instantiates a new TweetLegacyScopes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetLegacyScopesWithDefaults ¶

func NewTweetLegacyScopesWithDefaults() *TweetLegacyScopes

NewTweetLegacyScopesWithDefaults instantiates a new TweetLegacyScopes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetLegacyScopes) GetFollowers ¶

func (o *TweetLegacyScopes) GetFollowers() bool

GetFollowers returns the Followers field value

func (*TweetLegacyScopes) GetFollowersOk ¶

func (o *TweetLegacyScopes) GetFollowersOk() (*bool, bool)

GetFollowersOk returns a tuple with the Followers field value and a boolean to check if the value has been set.

func (TweetLegacyScopes) MarshalJSON ¶

func (o TweetLegacyScopes) MarshalJSON() ([]byte, error)

func (*TweetLegacyScopes) SetFollowers ¶

func (o *TweetLegacyScopes) SetFollowers(v bool)

SetFollowers sets field value

func (TweetLegacyScopes) ToMap ¶

func (o TweetLegacyScopes) ToMap() (map[string]interface{}, error)

func (*TweetLegacyScopes) UnmarshalJSON ¶

func (o *TweetLegacyScopes) UnmarshalJSON(data []byte) (err error)

type TweetPreviousCounts ¶

type TweetPreviousCounts struct {
	BookmarkCount int32 `json:"bookmark_count"`
	FavoriteCount int32 `json:"favorite_count"`
	QuoteCount    int32 `json:"quote_count"`
	ReplyCount    int32 `json:"reply_count"`
	RetweetCount  int32 `json:"retweet_count"`
}

TweetPreviousCounts struct for TweetPreviousCounts

func NewTweetPreviousCounts ¶

func NewTweetPreviousCounts(bookmarkCount int32, favoriteCount int32, quoteCount int32, replyCount int32, retweetCount int32) *TweetPreviousCounts

NewTweetPreviousCounts instantiates a new TweetPreviousCounts object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetPreviousCountsWithDefaults ¶

func NewTweetPreviousCountsWithDefaults() *TweetPreviousCounts

NewTweetPreviousCountsWithDefaults instantiates a new TweetPreviousCounts object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetPreviousCounts) GetBookmarkCount ¶

func (o *TweetPreviousCounts) GetBookmarkCount() int32

GetBookmarkCount returns the BookmarkCount field value

func (*TweetPreviousCounts) GetBookmarkCountOk ¶

func (o *TweetPreviousCounts) GetBookmarkCountOk() (*int32, bool)

GetBookmarkCountOk returns a tuple with the BookmarkCount field value and a boolean to check if the value has been set.

func (*TweetPreviousCounts) GetFavoriteCount ¶

func (o *TweetPreviousCounts) GetFavoriteCount() int32

GetFavoriteCount returns the FavoriteCount field value

func (*TweetPreviousCounts) GetFavoriteCountOk ¶

func (o *TweetPreviousCounts) GetFavoriteCountOk() (*int32, bool)

GetFavoriteCountOk returns a tuple with the FavoriteCount field value and a boolean to check if the value has been set.

func (*TweetPreviousCounts) GetQuoteCount ¶

func (o *TweetPreviousCounts) GetQuoteCount() int32

GetQuoteCount returns the QuoteCount field value

func (*TweetPreviousCounts) GetQuoteCountOk ¶

func (o *TweetPreviousCounts) GetQuoteCountOk() (*int32, bool)

GetQuoteCountOk returns a tuple with the QuoteCount field value and a boolean to check if the value has been set.

func (*TweetPreviousCounts) GetReplyCount ¶

func (o *TweetPreviousCounts) GetReplyCount() int32

GetReplyCount returns the ReplyCount field value

func (*TweetPreviousCounts) GetReplyCountOk ¶

func (o *TweetPreviousCounts) GetReplyCountOk() (*int32, bool)

GetReplyCountOk returns a tuple with the ReplyCount field value and a boolean to check if the value has been set.

func (*TweetPreviousCounts) GetRetweetCount ¶

func (o *TweetPreviousCounts) GetRetweetCount() int32

GetRetweetCount returns the RetweetCount field value

func (*TweetPreviousCounts) GetRetweetCountOk ¶

func (o *TweetPreviousCounts) GetRetweetCountOk() (*int32, bool)

GetRetweetCountOk returns a tuple with the RetweetCount field value and a boolean to check if the value has been set.

func (TweetPreviousCounts) MarshalJSON ¶

func (o TweetPreviousCounts) MarshalJSON() ([]byte, error)

func (*TweetPreviousCounts) SetBookmarkCount ¶

func (o *TweetPreviousCounts) SetBookmarkCount(v int32)

SetBookmarkCount sets field value

func (*TweetPreviousCounts) SetFavoriteCount ¶

func (o *TweetPreviousCounts) SetFavoriteCount(v int32)

SetFavoriteCount sets field value

func (*TweetPreviousCounts) SetQuoteCount ¶

func (o *TweetPreviousCounts) SetQuoteCount(v int32)

SetQuoteCount sets field value

func (*TweetPreviousCounts) SetReplyCount ¶

func (o *TweetPreviousCounts) SetReplyCount(v int32)

SetReplyCount sets field value

func (*TweetPreviousCounts) SetRetweetCount ¶

func (o *TweetPreviousCounts) SetRetweetCount(v int32)

SetRetweetCount sets field value

func (TweetPreviousCounts) ToMap ¶

func (o TweetPreviousCounts) ToMap() (map[string]interface{}, error)

func (*TweetPreviousCounts) UnmarshalJSON ¶

func (o *TweetPreviousCounts) UnmarshalJSON(data []byte) (err error)

type TweetResultByRestIdData ¶

type TweetResultByRestIdData struct {
	TweetResult ItemResult `json:"tweetResult"`
}

TweetResultByRestIdData struct for TweetResultByRestIdData

func NewTweetResultByRestIdData ¶

func NewTweetResultByRestIdData(tweetResult ItemResult) *TweetResultByRestIdData

NewTweetResultByRestIdData instantiates a new TweetResultByRestIdData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetResultByRestIdDataWithDefaults ¶

func NewTweetResultByRestIdDataWithDefaults() *TweetResultByRestIdData

NewTweetResultByRestIdDataWithDefaults instantiates a new TweetResultByRestIdData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetResultByRestIdData) GetTweetResult ¶

func (o *TweetResultByRestIdData) GetTweetResult() ItemResult

GetTweetResult returns the TweetResult field value

func (*TweetResultByRestIdData) GetTweetResultOk ¶

func (o *TweetResultByRestIdData) GetTweetResultOk() (*ItemResult, bool)

GetTweetResultOk returns a tuple with the TweetResult field value and a boolean to check if the value has been set.

func (TweetResultByRestIdData) MarshalJSON ¶

func (o TweetResultByRestIdData) MarshalJSON() ([]byte, error)

func (*TweetResultByRestIdData) SetTweetResult ¶

func (o *TweetResultByRestIdData) SetTweetResult(v ItemResult)

SetTweetResult sets field value

func (TweetResultByRestIdData) ToMap ¶

func (o TweetResultByRestIdData) ToMap() (map[string]interface{}, error)

func (*TweetResultByRestIdData) UnmarshalJSON ¶

func (o *TweetResultByRestIdData) UnmarshalJSON(data []byte) (err error)

type TweetResultByRestIdResponse ¶

type TweetResultByRestIdResponse struct {
	Data TweetResultByRestIdData `json:"data"`
}

TweetResultByRestIdResponse struct for TweetResultByRestIdResponse

func NewTweetResultByRestIdResponse ¶

func NewTweetResultByRestIdResponse(data TweetResultByRestIdData) *TweetResultByRestIdResponse

NewTweetResultByRestIdResponse instantiates a new TweetResultByRestIdResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetResultByRestIdResponseWithDefaults ¶

func NewTweetResultByRestIdResponseWithDefaults() *TweetResultByRestIdResponse

NewTweetResultByRestIdResponseWithDefaults instantiates a new TweetResultByRestIdResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetResultByRestIdResponse) GetData ¶

GetData returns the Data field value

func (*TweetResultByRestIdResponse) GetDataOk ¶

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (TweetResultByRestIdResponse) MarshalJSON ¶

func (o TweetResultByRestIdResponse) MarshalJSON() ([]byte, error)

func (*TweetResultByRestIdResponse) SetData ¶

SetData sets field value

func (TweetResultByRestIdResponse) ToMap ¶

func (o TweetResultByRestIdResponse) ToMap() (map[string]interface{}, error)

func (*TweetResultByRestIdResponse) UnmarshalJSON ¶

func (o *TweetResultByRestIdResponse) UnmarshalJSON(data []byte) (err error)

type TweetRetweetersResponse ¶

type TweetRetweetersResponse struct {
	Data TweetRetweetersResponseData `json:"data"`
}

TweetRetweetersResponse struct for TweetRetweetersResponse

func NewTweetRetweetersResponse ¶

func NewTweetRetweetersResponse(data TweetRetweetersResponseData) *TweetRetweetersResponse

NewTweetRetweetersResponse instantiates a new TweetRetweetersResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetRetweetersResponseWithDefaults ¶

func NewTweetRetweetersResponseWithDefaults() *TweetRetweetersResponse

NewTweetRetweetersResponseWithDefaults instantiates a new TweetRetweetersResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetRetweetersResponse) GetData ¶

GetData returns the Data field value

func (*TweetRetweetersResponse) GetDataOk ¶

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (TweetRetweetersResponse) MarshalJSON ¶

func (o TweetRetweetersResponse) MarshalJSON() ([]byte, error)

func (*TweetRetweetersResponse) SetData ¶

SetData sets field value

func (TweetRetweetersResponse) ToMap ¶

func (o TweetRetweetersResponse) ToMap() (map[string]interface{}, error)

func (*TweetRetweetersResponse) UnmarshalJSON ¶

func (o *TweetRetweetersResponse) UnmarshalJSON(data []byte) (err error)

type TweetRetweetersResponseData ¶

type TweetRetweetersResponseData struct {
	RetweetersTimeline TimelineV2 `json:"retweeters_timeline"`
}

TweetRetweetersResponseData struct for TweetRetweetersResponseData

func NewTweetRetweetersResponseData ¶

func NewTweetRetweetersResponseData(retweetersTimeline TimelineV2) *TweetRetweetersResponseData

NewTweetRetweetersResponseData instantiates a new TweetRetweetersResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetRetweetersResponseDataWithDefaults ¶

func NewTweetRetweetersResponseDataWithDefaults() *TweetRetweetersResponseData

NewTweetRetweetersResponseDataWithDefaults instantiates a new TweetRetweetersResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetRetweetersResponseData) GetRetweetersTimeline ¶

func (o *TweetRetweetersResponseData) GetRetweetersTimeline() TimelineV2

GetRetweetersTimeline returns the RetweetersTimeline field value

func (*TweetRetweetersResponseData) GetRetweetersTimelineOk ¶

func (o *TweetRetweetersResponseData) GetRetweetersTimelineOk() (*TimelineV2, bool)

GetRetweetersTimelineOk returns a tuple with the RetweetersTimeline field value and a boolean to check if the value has been set.

func (TweetRetweetersResponseData) MarshalJSON ¶

func (o TweetRetweetersResponseData) MarshalJSON() ([]byte, error)

func (*TweetRetweetersResponseData) SetRetweetersTimeline ¶

func (o *TweetRetweetersResponseData) SetRetweetersTimeline(v TimelineV2)

SetRetweetersTimeline sets field value

func (TweetRetweetersResponseData) ToMap ¶

func (o TweetRetweetersResponseData) ToMap() (map[string]interface{}, error)

func (*TweetRetweetersResponseData) UnmarshalJSON ¶

func (o *TweetRetweetersResponseData) UnmarshalJSON(data []byte) (err error)

type TweetTombstone ¶

type TweetTombstone struct {
	Typename             *TypeName `json:"__typename,omitempty"`
	AdditionalProperties map[string]interface{}
}

TweetTombstone struct for TweetTombstone

func NewTweetTombstone ¶

func NewTweetTombstone() *TweetTombstone

NewTweetTombstone instantiates a new TweetTombstone object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetTombstoneWithDefaults ¶

func NewTweetTombstoneWithDefaults() *TweetTombstone

NewTweetTombstoneWithDefaults instantiates a new TweetTombstone object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetTombstone) GetTypename ¶

func (o *TweetTombstone) GetTypename() TypeName

GetTypename returns the Typename field value if set, zero value otherwise.

func (*TweetTombstone) GetTypenameOk ¶

func (o *TweetTombstone) GetTypenameOk() (*TypeName, bool)

GetTypenameOk returns a tuple with the Typename field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetTombstone) HasTypename ¶

func (o *TweetTombstone) HasTypename() bool

HasTypename returns a boolean if a field has been set.

func (TweetTombstone) MarshalJSON ¶

func (o TweetTombstone) MarshalJSON() ([]byte, error)

func (*TweetTombstone) SetTypename ¶

func (o *TweetTombstone) SetTypename(v TypeName)

SetTypename gets a reference to the given TypeName and assigns it to the Typename field.

func (TweetTombstone) ToMap ¶

func (o TweetTombstone) ToMap() (map[string]interface{}, error)

func (*TweetTombstone) UnmarshalJSON ¶

func (o *TweetTombstone) UnmarshalJSON(data []byte) (err error)

type TweetUnavailable ¶

type TweetUnavailable struct {
	Typename *TypeName `json:"__typename,omitempty"`
	Reason   *string   `json:"reason,omitempty"`
}

TweetUnavailable struct for TweetUnavailable

func NewTweetUnavailable ¶

func NewTweetUnavailable() *TweetUnavailable

NewTweetUnavailable instantiates a new TweetUnavailable object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetUnavailableWithDefaults ¶

func NewTweetUnavailableWithDefaults() *TweetUnavailable

NewTweetUnavailableWithDefaults instantiates a new TweetUnavailable object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetUnavailable) GetReason ¶

func (o *TweetUnavailable) GetReason() string

GetReason returns the Reason field value if set, zero value otherwise.

func (*TweetUnavailable) GetReasonOk ¶

func (o *TweetUnavailable) 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 (*TweetUnavailable) GetTypename ¶

func (o *TweetUnavailable) GetTypename() TypeName

GetTypename returns the Typename field value if set, zero value otherwise.

func (*TweetUnavailable) GetTypenameOk ¶

func (o *TweetUnavailable) GetTypenameOk() (*TypeName, bool)

GetTypenameOk returns a tuple with the Typename field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetUnavailable) HasReason ¶

func (o *TweetUnavailable) HasReason() bool

HasReason returns a boolean if a field has been set.

func (*TweetUnavailable) HasTypename ¶

func (o *TweetUnavailable) HasTypename() bool

HasTypename returns a boolean if a field has been set.

func (TweetUnavailable) MarshalJSON ¶

func (o TweetUnavailable) MarshalJSON() ([]byte, error)

func (*TweetUnavailable) SetReason ¶

func (o *TweetUnavailable) SetReason(v string)

SetReason gets a reference to the given string and assigns it to the Reason field.

func (*TweetUnavailable) SetTypename ¶

func (o *TweetUnavailable) SetTypename(v TypeName)

SetTypename gets a reference to the given TypeName and assigns it to the Typename field.

func (TweetUnavailable) ToMap ¶

func (o TweetUnavailable) ToMap() (map[string]interface{}, error)

type TweetUnion ¶

type TweetUnion struct {
	Tweet                      *Tweet
	TweetTombstone             *TweetTombstone
	TweetUnavailable           *TweetUnavailable
	TweetWithVisibilityResults *TweetWithVisibilityResults
}

TweetUnion - struct for TweetUnion

func TweetAsTweetUnion ¶

func TweetAsTweetUnion(v *Tweet) TweetUnion

TweetAsTweetUnion is a convenience function that returns Tweet wrapped in TweetUnion

func TweetTombstoneAsTweetUnion ¶

func TweetTombstoneAsTweetUnion(v *TweetTombstone) TweetUnion

TweetTombstoneAsTweetUnion is a convenience function that returns TweetTombstone wrapped in TweetUnion

func TweetUnavailableAsTweetUnion ¶

func TweetUnavailableAsTweetUnion(v *TweetUnavailable) TweetUnion

TweetUnavailableAsTweetUnion is a convenience function that returns TweetUnavailable wrapped in TweetUnion

func TweetWithVisibilityResultsAsTweetUnion ¶

func TweetWithVisibilityResultsAsTweetUnion(v *TweetWithVisibilityResults) TweetUnion

TweetWithVisibilityResultsAsTweetUnion is a convenience function that returns TweetWithVisibilityResults wrapped in TweetUnion

func (*TweetUnion) GetActualInstance ¶

func (obj *TweetUnion) GetActualInstance() interface{}

Get the actual instance

func (TweetUnion) MarshalJSON ¶

func (src TweetUnion) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TweetUnion) UnmarshalJSON ¶

func (dst *TweetUnion) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type TweetView ¶

type TweetView struct {
	Count *string `json:"count,omitempty" validate:"regexp=^[0-9]+$"`
	State string  `json:"state"`
}

TweetView struct for TweetView

func NewTweetView ¶

func NewTweetView(state string) *TweetView

NewTweetView instantiates a new TweetView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetViewWithDefaults ¶

func NewTweetViewWithDefaults() *TweetView

NewTweetViewWithDefaults instantiates a new TweetView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetView) GetCount ¶

func (o *TweetView) GetCount() string

GetCount returns the Count field value if set, zero value otherwise.

func (*TweetView) GetCountOk ¶

func (o *TweetView) GetCountOk() (*string, 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 (*TweetView) GetState ¶

func (o *TweetView) GetState() string

GetState returns the State field value

func (*TweetView) GetStateOk ¶

func (o *TweetView) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value and a boolean to check if the value has been set.

func (*TweetView) HasCount ¶

func (o *TweetView) HasCount() bool

HasCount returns a boolean if a field has been set.

func (TweetView) MarshalJSON ¶

func (o TweetView) MarshalJSON() ([]byte, error)

func (*TweetView) SetCount ¶

func (o *TweetView) SetCount(v string)

SetCount gets a reference to the given string and assigns it to the Count field.

func (*TweetView) SetState ¶

func (o *TweetView) SetState(v string)

SetState sets field value

func (TweetView) ToMap ¶

func (o TweetView) ToMap() (map[string]interface{}, error)

func (*TweetView) UnmarshalJSON ¶

func (o *TweetView) UnmarshalJSON(data []byte) (err error)

type TweetWithVisibilityResults ¶

type TweetWithVisibilityResults struct {
	Typename               TypeName                `json:"__typename"`
	LimitedActionResults   map[string]interface{}  `json:"limitedActionResults,omitempty"`
	MediaVisibilityResults *MediaVisibilityResults `json:"mediaVisibilityResults,omitempty"`
	Tweet                  Tweet                   `json:"tweet"`
	TweetInterstitial      *TweetInterstitial      `json:"tweetInterstitial,omitempty"`
}

TweetWithVisibilityResults struct for TweetWithVisibilityResults

func NewTweetWithVisibilityResults ¶

func NewTweetWithVisibilityResults(typename TypeName, tweet Tweet) *TweetWithVisibilityResults

NewTweetWithVisibilityResults instantiates a new TweetWithVisibilityResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTweetWithVisibilityResultsWithDefaults ¶

func NewTweetWithVisibilityResultsWithDefaults() *TweetWithVisibilityResults

NewTweetWithVisibilityResultsWithDefaults instantiates a new TweetWithVisibilityResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TweetWithVisibilityResults) GetLimitedActionResults ¶

func (o *TweetWithVisibilityResults) GetLimitedActionResults() map[string]interface{}

GetLimitedActionResults returns the LimitedActionResults field value if set, zero value otherwise.

func (*TweetWithVisibilityResults) GetLimitedActionResultsOk ¶

func (o *TweetWithVisibilityResults) GetLimitedActionResultsOk() (map[string]interface{}, bool)

GetLimitedActionResultsOk returns a tuple with the LimitedActionResults field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetWithVisibilityResults) GetMediaVisibilityResults ¶

func (o *TweetWithVisibilityResults) GetMediaVisibilityResults() MediaVisibilityResults

GetMediaVisibilityResults returns the MediaVisibilityResults field value if set, zero value otherwise.

func (*TweetWithVisibilityResults) GetMediaVisibilityResultsOk ¶

func (o *TweetWithVisibilityResults) GetMediaVisibilityResultsOk() (*MediaVisibilityResults, bool)

GetMediaVisibilityResultsOk returns a tuple with the MediaVisibilityResults field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetWithVisibilityResults) GetTweet ¶

func (o *TweetWithVisibilityResults) GetTweet() Tweet

GetTweet returns the Tweet field value

func (*TweetWithVisibilityResults) GetTweetInterstitial ¶

func (o *TweetWithVisibilityResults) GetTweetInterstitial() TweetInterstitial

GetTweetInterstitial returns the TweetInterstitial field value if set, zero value otherwise.

func (*TweetWithVisibilityResults) GetTweetInterstitialOk ¶

func (o *TweetWithVisibilityResults) GetTweetInterstitialOk() (*TweetInterstitial, bool)

GetTweetInterstitialOk returns a tuple with the TweetInterstitial field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TweetWithVisibilityResults) GetTweetOk ¶

func (o *TweetWithVisibilityResults) GetTweetOk() (*Tweet, bool)

GetTweetOk returns a tuple with the Tweet field value and a boolean to check if the value has been set.

func (*TweetWithVisibilityResults) GetTypename ¶

func (o *TweetWithVisibilityResults) GetTypename() TypeName

GetTypename returns the Typename field value

func (*TweetWithVisibilityResults) GetTypenameOk ¶

func (o *TweetWithVisibilityResults) GetTypenameOk() (*TypeName, bool)

GetTypenameOk returns a tuple with the Typename field value and a boolean to check if the value has been set.

func (*TweetWithVisibilityResults) HasLimitedActionResults ¶

func (o *TweetWithVisibilityResults) HasLimitedActionResults() bool

HasLimitedActionResults returns a boolean if a field has been set.

func (*TweetWithVisibilityResults) HasMediaVisibilityResults ¶

func (o *TweetWithVisibilityResults) HasMediaVisibilityResults() bool

HasMediaVisibilityResults returns a boolean if a field has been set.

func (*TweetWithVisibilityResults) HasTweetInterstitial ¶

func (o *TweetWithVisibilityResults) HasTweetInterstitial() bool

HasTweetInterstitial returns a boolean if a field has been set.

func (TweetWithVisibilityResults) MarshalJSON ¶

func (o TweetWithVisibilityResults) MarshalJSON() ([]byte, error)

func (*TweetWithVisibilityResults) SetLimitedActionResults ¶

func (o *TweetWithVisibilityResults) SetLimitedActionResults(v map[string]interface{})

SetLimitedActionResults gets a reference to the given map[string]interface{} and assigns it to the LimitedActionResults field.

func (*TweetWithVisibilityResults) SetMediaVisibilityResults ¶

func (o *TweetWithVisibilityResults) SetMediaVisibilityResults(v MediaVisibilityResults)

SetMediaVisibilityResults gets a reference to the given MediaVisibilityResults and assigns it to the MediaVisibilityResults field.

func (*TweetWithVisibilityResults) SetTweet ¶

func (o *TweetWithVisibilityResults) SetTweet(v Tweet)

SetTweet sets field value

func (*TweetWithVisibilityResults) SetTweetInterstitial ¶

func (o *TweetWithVisibilityResults) SetTweetInterstitial(v TweetInterstitial)

SetTweetInterstitial gets a reference to the given TweetInterstitial and assigns it to the TweetInterstitial field.

func (*TweetWithVisibilityResults) SetTypename ¶

func (o *TweetWithVisibilityResults) SetTypename(v TypeName)

SetTypename sets field value

func (TweetWithVisibilityResults) ToMap ¶

func (o TweetWithVisibilityResults) ToMap() (map[string]interface{}, error)

func (*TweetWithVisibilityResults) UnmarshalJSON ¶

func (o *TweetWithVisibilityResults) UnmarshalJSON(data []byte) (err error)

type TypeName ¶

type TypeName string

TypeName the model 'TypeName'

const (
	TIMELINE_TWEET                           TypeName = "TimelineTweet"
	TIMELINE_TIMELINE_ITEM                   TypeName = "TimelineTimelineItem"
	TIMELINE_USER                            TypeName = "TimelineUser"
	TIMELINE_TIMELINE_CURSOR                 TypeName = "TimelineTimelineCursor"
	TWEET_WITH_VISIBILITY_RESULTS            TypeName = "TweetWithVisibilityResults"
	CONTEXTUAL_TWEET_INTERSTITIAL            TypeName = "ContextualTweetInterstitial"
	TIMELINE_TIMELINE_MODULE                 TypeName = "TimelineTimelineModule"
	TWEET_TOMBSTONE                          TypeName = "TweetTombstone"
	TIMELINE_PROMPT                          TypeName = "TimelinePrompt"
	TIMELINE_MESSAGE_PROMPT                  TypeName = "TimelineMessagePrompt"
	TIMELINE_COMMUNITY                       TypeName = "TimelineCommunity"
	TWEET_UNAVAILABLE                        TypeName = "TweetUnavailable"
	TWEET                                    TypeName = "Tweet"
	USER                                     TypeName = "User"
	USER_UNAVAILABLE                         TypeName = "UserUnavailable"
	COMMUNITY                                TypeName = "Community"
	COMMUNITY_DELETE_ACTION_UNAVAILABLE      TypeName = "CommunityDeleteActionUnavailable"
	COMMUNITY_JOIN_ACTION                    TypeName = "CommunityJoinAction"
	COMMUNITY_LEAVE_ACTION_UNAVAILABLE       TypeName = "CommunityLeaveActionUnavailable"
	COMMUNITY_TWEET_PIN_ACTION_UNAVAILABLE   TypeName = "CommunityTweetPinActionUnavailable"
	COMMUNITY_TWEET_UNPIN_ACTION_UNAVAILABLE TypeName = "CommunityTweetUnpinActionUnavailable"
	COMMUNITY_INVITES_UNAVAILABLE            TypeName = "CommunityInvitesUnavailable"
	COMMUNITY_JOIN_REQUESTS_UNAVAILABLE      TypeName = "CommunityJoinRequestsUnavailable"
	API_IMAGE                                TypeName = "ApiImage"
)

List of TypeName

func NewTypeNameFromValue ¶

func NewTypeNameFromValue(v string) (*TypeName, error)

NewTypeNameFromValue returns a pointer to a valid TypeName for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TypeName) IsValid ¶

func (v TypeName) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (TypeName) Ptr ¶

func (v TypeName) Ptr() *TypeName

Ptr returns reference to TypeName value

func (*TypeName) UnmarshalJSON ¶

func (v *TypeName) UnmarshalJSON(src []byte) error

type UnfavoriteTweet ¶

type UnfavoriteTweet struct {
	UnfavoriteTweet string `json:"unfavorite_tweet"`
}

UnfavoriteTweet struct for UnfavoriteTweet

func NewUnfavoriteTweet ¶

func NewUnfavoriteTweet(unfavoriteTweet string) *UnfavoriteTweet

NewUnfavoriteTweet instantiates a new UnfavoriteTweet object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUnfavoriteTweetWithDefaults ¶

func NewUnfavoriteTweetWithDefaults() *UnfavoriteTweet

NewUnfavoriteTweetWithDefaults instantiates a new UnfavoriteTweet object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UnfavoriteTweet) GetUnfavoriteTweet ¶

func (o *UnfavoriteTweet) GetUnfavoriteTweet() string

GetUnfavoriteTweet returns the UnfavoriteTweet field value

func (*UnfavoriteTweet) GetUnfavoriteTweetOk ¶

func (o *UnfavoriteTweet) GetUnfavoriteTweetOk() (*string, bool)

GetUnfavoriteTweetOk returns a tuple with the UnfavoriteTweet field value and a boolean to check if the value has been set.

func (UnfavoriteTweet) MarshalJSON ¶

func (o UnfavoriteTweet) MarshalJSON() ([]byte, error)

func (*UnfavoriteTweet) SetUnfavoriteTweet ¶

func (o *UnfavoriteTweet) SetUnfavoriteTweet(v string)

SetUnfavoriteTweet sets field value

func (UnfavoriteTweet) ToMap ¶

func (o UnfavoriteTweet) ToMap() (map[string]interface{}, error)

func (*UnfavoriteTweet) UnmarshalJSON ¶

func (o *UnfavoriteTweet) UnmarshalJSON(data []byte) (err error)

type UnfavoriteTweetResponseData ¶

type UnfavoriteTweetResponseData struct {
	Data UnfavoriteTweet `json:"data"`
}

UnfavoriteTweetResponseData struct for UnfavoriteTweetResponseData

func NewUnfavoriteTweetResponseData ¶

func NewUnfavoriteTweetResponseData(data UnfavoriteTweet) *UnfavoriteTweetResponseData

NewUnfavoriteTweetResponseData instantiates a new UnfavoriteTweetResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUnfavoriteTweetResponseDataWithDefaults ¶

func NewUnfavoriteTweetResponseDataWithDefaults() *UnfavoriteTweetResponseData

NewUnfavoriteTweetResponseDataWithDefaults instantiates a new UnfavoriteTweetResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UnfavoriteTweetResponseData) GetData ¶

GetData returns the Data field value

func (*UnfavoriteTweetResponseData) GetDataOk ¶

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (UnfavoriteTweetResponseData) MarshalJSON ¶

func (o UnfavoriteTweetResponseData) MarshalJSON() ([]byte, error)

func (*UnfavoriteTweetResponseData) SetData ¶

SetData sets field value

func (UnfavoriteTweetResponseData) ToMap ¶

func (o UnfavoriteTweetResponseData) ToMap() (map[string]interface{}, error)

func (*UnfavoriteTweetResponseData) UnmarshalJSON ¶

func (o *UnfavoriteTweetResponseData) UnmarshalJSON(data []byte) (err error)

type UnifiedCard ¶

type UnifiedCard struct {
	CardFetchState string `json:"card_fetch_state"`
}

UnifiedCard struct for UnifiedCard

func NewUnifiedCard ¶

func NewUnifiedCard(cardFetchState string) *UnifiedCard

NewUnifiedCard instantiates a new UnifiedCard object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUnifiedCardWithDefaults ¶

func NewUnifiedCardWithDefaults() *UnifiedCard

NewUnifiedCardWithDefaults instantiates a new UnifiedCard object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UnifiedCard) GetCardFetchState ¶

func (o *UnifiedCard) GetCardFetchState() string

GetCardFetchState returns the CardFetchState field value

func (*UnifiedCard) GetCardFetchStateOk ¶

func (o *UnifiedCard) GetCardFetchStateOk() (*string, bool)

GetCardFetchStateOk returns a tuple with the CardFetchState field value and a boolean to check if the value has been set.

func (UnifiedCard) MarshalJSON ¶

func (o UnifiedCard) MarshalJSON() ([]byte, error)

func (*UnifiedCard) SetCardFetchState ¶

func (o *UnifiedCard) SetCardFetchState(v string)

SetCardFetchState sets field value

func (UnifiedCard) ToMap ¶

func (o UnifiedCard) ToMap() (map[string]interface{}, error)

func (*UnifiedCard) UnmarshalJSON ¶

func (o *UnifiedCard) UnmarshalJSON(data []byte) (err error)

type Url ¶

type Url struct {
	DisplayUrl  string  `json:"display_url"`
	ExpandedUrl *string `json:"expanded_url,omitempty"`
	Indices     []int32 `json:"indices"`
	Url         string  `json:"url"`
}

Url struct for Url

func NewUrl ¶

func NewUrl(displayUrl string, indices []int32, url string) *Url

NewUrl instantiates a new Url object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUrlWithDefaults ¶

func NewUrlWithDefaults() *Url

NewUrlWithDefaults instantiates a new Url object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Url) GetDisplayUrl ¶

func (o *Url) GetDisplayUrl() string

GetDisplayUrl returns the DisplayUrl field value

func (*Url) GetDisplayUrlOk ¶

func (o *Url) GetDisplayUrlOk() (*string, bool)

GetDisplayUrlOk returns a tuple with the DisplayUrl field value and a boolean to check if the value has been set.

func (*Url) GetExpandedUrl ¶

func (o *Url) GetExpandedUrl() string

GetExpandedUrl returns the ExpandedUrl field value if set, zero value otherwise.

func (*Url) GetExpandedUrlOk ¶

func (o *Url) GetExpandedUrlOk() (*string, bool)

GetExpandedUrlOk returns a tuple with the ExpandedUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Url) GetIndices ¶

func (o *Url) GetIndices() []int32

GetIndices returns the Indices field value

func (*Url) GetIndicesOk ¶

func (o *Url) GetIndicesOk() ([]int32, bool)

GetIndicesOk returns a tuple with the Indices field value and a boolean to check if the value has been set.

func (*Url) GetUrl ¶

func (o *Url) GetUrl() string

GetUrl returns the Url field value

func (*Url) GetUrlOk ¶

func (o *Url) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value and a boolean to check if the value has been set.

func (*Url) HasExpandedUrl ¶

func (o *Url) HasExpandedUrl() bool

HasExpandedUrl returns a boolean if a field has been set.

func (Url) MarshalJSON ¶

func (o Url) MarshalJSON() ([]byte, error)

func (*Url) SetDisplayUrl ¶

func (o *Url) SetDisplayUrl(v string)

SetDisplayUrl sets field value

func (*Url) SetExpandedUrl ¶

func (o *Url) SetExpandedUrl(v string)

SetExpandedUrl gets a reference to the given string and assigns it to the ExpandedUrl field.

func (*Url) SetIndices ¶

func (o *Url) SetIndices(v []int32)

SetIndices sets field value

func (*Url) SetUrl ¶

func (o *Url) SetUrl(v string)

SetUrl sets field value

func (Url) ToMap ¶

func (o Url) ToMap() (map[string]interface{}, error)

func (*Url) UnmarshalJSON ¶

func (o *Url) UnmarshalJSON(data []byte) (err error)

type UrtEndpointOptions ¶

type UrtEndpointOptions struct {
	RequestParams []UrtEndpointRequestParams `json:"requestParams"`
	Title         string                     `json:"title"`
}

UrtEndpointOptions struct for UrtEndpointOptions

func NewUrtEndpointOptions ¶

func NewUrtEndpointOptions(requestParams []UrtEndpointRequestParams, title string) *UrtEndpointOptions

NewUrtEndpointOptions instantiates a new UrtEndpointOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUrtEndpointOptionsWithDefaults ¶

func NewUrtEndpointOptionsWithDefaults() *UrtEndpointOptions

NewUrtEndpointOptionsWithDefaults instantiates a new UrtEndpointOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UrtEndpointOptions) GetRequestParams ¶

func (o *UrtEndpointOptions) GetRequestParams() []UrtEndpointRequestParams

GetRequestParams returns the RequestParams field value

func (*UrtEndpointOptions) GetRequestParamsOk ¶

func (o *UrtEndpointOptions) GetRequestParamsOk() ([]UrtEndpointRequestParams, bool)

GetRequestParamsOk returns a tuple with the RequestParams field value and a boolean to check if the value has been set.

func (*UrtEndpointOptions) GetTitle ¶

func (o *UrtEndpointOptions) GetTitle() string

GetTitle returns the Title field value

func (*UrtEndpointOptions) GetTitleOk ¶

func (o *UrtEndpointOptions) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value and a boolean to check if the value has been set.

func (UrtEndpointOptions) MarshalJSON ¶

func (o UrtEndpointOptions) MarshalJSON() ([]byte, error)

func (*UrtEndpointOptions) SetRequestParams ¶

func (o *UrtEndpointOptions) SetRequestParams(v []UrtEndpointRequestParams)

SetRequestParams sets field value

func (*UrtEndpointOptions) SetTitle ¶

func (o *UrtEndpointOptions) SetTitle(v string)

SetTitle sets field value

func (UrtEndpointOptions) ToMap ¶

func (o UrtEndpointOptions) ToMap() (map[string]interface{}, error)

func (*UrtEndpointOptions) UnmarshalJSON ¶

func (o *UrtEndpointOptions) UnmarshalJSON(data []byte) (err error)

type UrtEndpointRequestParams ¶

type UrtEndpointRequestParams struct {
	Key   string `json:"key"`
	Value string `json:"value"`
}

UrtEndpointRequestParams struct for UrtEndpointRequestParams

func NewUrtEndpointRequestParams ¶

func NewUrtEndpointRequestParams(key string, value string) *UrtEndpointRequestParams

NewUrtEndpointRequestParams instantiates a new UrtEndpointRequestParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUrtEndpointRequestParamsWithDefaults ¶

func NewUrtEndpointRequestParamsWithDefaults() *UrtEndpointRequestParams

NewUrtEndpointRequestParamsWithDefaults instantiates a new UrtEndpointRequestParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UrtEndpointRequestParams) GetKey ¶

func (o *UrtEndpointRequestParams) GetKey() string

GetKey returns the Key field value

func (*UrtEndpointRequestParams) GetKeyOk ¶

func (o *UrtEndpointRequestParams) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field value and a boolean to check if the value has been set.

func (*UrtEndpointRequestParams) GetValue ¶

func (o *UrtEndpointRequestParams) GetValue() string

GetValue returns the Value field value

func (*UrtEndpointRequestParams) GetValueOk ¶

func (o *UrtEndpointRequestParams) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value and a boolean to check if the value has been set.

func (UrtEndpointRequestParams) MarshalJSON ¶

func (o UrtEndpointRequestParams) MarshalJSON() ([]byte, error)

func (*UrtEndpointRequestParams) SetKey ¶

func (o *UrtEndpointRequestParams) SetKey(v string)

SetKey sets field value

func (*UrtEndpointRequestParams) SetValue ¶

func (o *UrtEndpointRequestParams) SetValue(v string)

SetValue sets field value

func (UrtEndpointRequestParams) ToMap ¶

func (o UrtEndpointRequestParams) ToMap() (map[string]interface{}, error)

func (*UrtEndpointRequestParams) UnmarshalJSON ¶

func (o *UrtEndpointRequestParams) UnmarshalJSON(data []byte) (err error)

type User ¶

type User struct {
	Typename                   TypeName                   `json:"__typename"`
	AffiliatesHighlightedLabel map[string]interface{}     `json:"affiliates_highlighted_label"`
	BusinessAccount            map[string]interface{}     `json:"business_account,omitempty"`
	CreatorSubscriptionsCount  *int32                     `json:"creator_subscriptions_count,omitempty"`
	HasGraduatedAccess         *bool                      `json:"has_graduated_access,omitempty"`
	HasHiddenLikesOnProfile    *bool                      `json:"has_hidden_likes_on_profile,omitempty"`
	HasNftAvatar               *bool                      `json:"has_nft_avatar,omitempty"`
	HighlightsInfo             *UserHighlightsInfo        `json:"highlights_info,omitempty"`
	Id                         string                     `json:"id" validate:"regexp=^([A-Za-z0-9+\\/]{4})*([A-Za-z0-9+\\/]{3}=|[A-Za-z0-9+\\/]{2}==)?$"`
	IsBlueVerified             bool                       `json:"is_blue_verified"`
	IsProfileTranslatable      *bool                      `json:"is_profile_translatable,omitempty"`
	Legacy                     UserLegacy                 `json:"legacy"`
	LegacyExtendedProfile      *UserLegacyExtendedProfile `json:"legacy_extended_profile,omitempty"`
	PremiumGiftingEligible     *bool                      `json:"premium_gifting_eligible,omitempty"`
	Professional               *UserProfessional          `json:"professional,omitempty"`
	ProfileImageShape          string                     `json:"profile_image_shape"`
	RestId                     string                     `json:"rest_id" validate:"regexp=^[0-9]+$"`
	SuperFollowEligible        *bool                      `json:"super_follow_eligible,omitempty"`
	SuperFollowedBy            *bool                      `json:"super_followed_by,omitempty"`
	SuperFollowing             *bool                      `json:"super_following,omitempty"`
	TipjarSettings             *UserTipJarSettings        `json:"tipjar_settings,omitempty"`
	UserSeedTweetCount         *int32                     `json:"user_seed_tweet_count,omitempty"`
	VerificationInfo           *UserVerificationInfo      `json:"verification_info,omitempty"`
}

User struct for User

func NewUser ¶

func NewUser(typename TypeName, affiliatesHighlightedLabel map[string]interface{}, id string, isBlueVerified bool, legacy UserLegacy, profileImageShape string, restId string) *User

NewUser instantiates a new User object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserWithDefaults ¶

func NewUserWithDefaults() *User

NewUserWithDefaults instantiates a new User object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*User) GetAffiliatesHighlightedLabel ¶

func (o *User) GetAffiliatesHighlightedLabel() map[string]interface{}

GetAffiliatesHighlightedLabel returns the AffiliatesHighlightedLabel field value

func (*User) GetAffiliatesHighlightedLabelOk ¶

func (o *User) GetAffiliatesHighlightedLabelOk() (map[string]interface{}, bool)

GetAffiliatesHighlightedLabelOk returns a tuple with the AffiliatesHighlightedLabel field value and a boolean to check if the value has been set.

func (*User) GetBusinessAccount ¶

func (o *User) GetBusinessAccount() map[string]interface{}

GetBusinessAccount returns the BusinessAccount field value if set, zero value otherwise.

func (*User) GetBusinessAccountOk ¶

func (o *User) GetBusinessAccountOk() (map[string]interface{}, bool)

GetBusinessAccountOk returns a tuple with the BusinessAccount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetCreatorSubscriptionsCount ¶

func (o *User) GetCreatorSubscriptionsCount() int32

GetCreatorSubscriptionsCount returns the CreatorSubscriptionsCount field value if set, zero value otherwise.

func (*User) GetCreatorSubscriptionsCountOk ¶

func (o *User) GetCreatorSubscriptionsCountOk() (*int32, bool)

GetCreatorSubscriptionsCountOk returns a tuple with the CreatorSubscriptionsCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetHasGraduatedAccess ¶

func (o *User) GetHasGraduatedAccess() bool

GetHasGraduatedAccess returns the HasGraduatedAccess field value if set, zero value otherwise.

func (*User) GetHasGraduatedAccessOk ¶

func (o *User) GetHasGraduatedAccessOk() (*bool, bool)

GetHasGraduatedAccessOk returns a tuple with the HasGraduatedAccess field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetHasHiddenLikesOnProfile ¶

func (o *User) GetHasHiddenLikesOnProfile() bool

GetHasHiddenLikesOnProfile returns the HasHiddenLikesOnProfile field value if set, zero value otherwise.

func (*User) GetHasHiddenLikesOnProfileOk ¶

func (o *User) GetHasHiddenLikesOnProfileOk() (*bool, bool)

GetHasHiddenLikesOnProfileOk returns a tuple with the HasHiddenLikesOnProfile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetHasNftAvatar ¶

func (o *User) GetHasNftAvatar() bool

GetHasNftAvatar returns the HasNftAvatar field value if set, zero value otherwise.

func (*User) GetHasNftAvatarOk ¶

func (o *User) GetHasNftAvatarOk() (*bool, bool)

GetHasNftAvatarOk returns a tuple with the HasNftAvatar field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetHighlightsInfo ¶

func (o *User) GetHighlightsInfo() UserHighlightsInfo

GetHighlightsInfo returns the HighlightsInfo field value if set, zero value otherwise.

func (*User) GetHighlightsInfoOk ¶

func (o *User) GetHighlightsInfoOk() (*UserHighlightsInfo, bool)

GetHighlightsInfoOk returns a tuple with the HighlightsInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetId ¶

func (o *User) GetId() string

GetId returns the Id field value

func (*User) GetIdOk ¶

func (o *User) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*User) GetIsBlueVerified ¶

func (o *User) GetIsBlueVerified() bool

GetIsBlueVerified returns the IsBlueVerified field value

func (*User) GetIsBlueVerifiedOk ¶

func (o *User) GetIsBlueVerifiedOk() (*bool, bool)

GetIsBlueVerifiedOk returns a tuple with the IsBlueVerified field value and a boolean to check if the value has been set.

func (*User) GetIsProfileTranslatable ¶

func (o *User) GetIsProfileTranslatable() bool

GetIsProfileTranslatable returns the IsProfileTranslatable field value if set, zero value otherwise.

func (*User) GetIsProfileTranslatableOk ¶

func (o *User) GetIsProfileTranslatableOk() (*bool, bool)

GetIsProfileTranslatableOk returns a tuple with the IsProfileTranslatable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetLegacy ¶

func (o *User) GetLegacy() UserLegacy

GetLegacy returns the Legacy field value

func (*User) GetLegacyExtendedProfile ¶

func (o *User) GetLegacyExtendedProfile() UserLegacyExtendedProfile

GetLegacyExtendedProfile returns the LegacyExtendedProfile field value if set, zero value otherwise.

func (*User) GetLegacyExtendedProfileOk ¶

func (o *User) GetLegacyExtendedProfileOk() (*UserLegacyExtendedProfile, bool)

GetLegacyExtendedProfileOk returns a tuple with the LegacyExtendedProfile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetLegacyOk ¶

func (o *User) GetLegacyOk() (*UserLegacy, bool)

GetLegacyOk returns a tuple with the Legacy field value and a boolean to check if the value has been set.

func (*User) GetPremiumGiftingEligible ¶

func (o *User) GetPremiumGiftingEligible() bool

GetPremiumGiftingEligible returns the PremiumGiftingEligible field value if set, zero value otherwise.

func (*User) GetPremiumGiftingEligibleOk ¶

func (o *User) GetPremiumGiftingEligibleOk() (*bool, bool)

GetPremiumGiftingEligibleOk returns a tuple with the PremiumGiftingEligible field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetProfessional ¶

func (o *User) GetProfessional() UserProfessional

GetProfessional returns the Professional field value if set, zero value otherwise.

func (*User) GetProfessionalOk ¶

func (o *User) GetProfessionalOk() (*UserProfessional, bool)

GetProfessionalOk returns a tuple with the Professional field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetProfileImageShape ¶

func (o *User) GetProfileImageShape() string

GetProfileImageShape returns the ProfileImageShape field value

func (*User) GetProfileImageShapeOk ¶

func (o *User) GetProfileImageShapeOk() (*string, bool)

GetProfileImageShapeOk returns a tuple with the ProfileImageShape field value and a boolean to check if the value has been set.

func (*User) GetRestId ¶

func (o *User) GetRestId() string

GetRestId returns the RestId field value

func (*User) GetRestIdOk ¶

func (o *User) GetRestIdOk() (*string, bool)

GetRestIdOk returns a tuple with the RestId field value and a boolean to check if the value has been set.

func (*User) GetSuperFollowEligible ¶

func (o *User) GetSuperFollowEligible() bool

GetSuperFollowEligible returns the SuperFollowEligible field value if set, zero value otherwise.

func (*User) GetSuperFollowEligibleOk ¶

func (o *User) GetSuperFollowEligibleOk() (*bool, bool)

GetSuperFollowEligibleOk returns a tuple with the SuperFollowEligible field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetSuperFollowedBy ¶

func (o *User) GetSuperFollowedBy() bool

GetSuperFollowedBy returns the SuperFollowedBy field value if set, zero value otherwise.

func (*User) GetSuperFollowedByOk ¶

func (o *User) GetSuperFollowedByOk() (*bool, bool)

GetSuperFollowedByOk returns a tuple with the SuperFollowedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetSuperFollowing ¶

func (o *User) GetSuperFollowing() bool

GetSuperFollowing returns the SuperFollowing field value if set, zero value otherwise.

func (*User) GetSuperFollowingOk ¶

func (o *User) GetSuperFollowingOk() (*bool, bool)

GetSuperFollowingOk returns a tuple with the SuperFollowing field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetTipjarSettings ¶

func (o *User) GetTipjarSettings() UserTipJarSettings

GetTipjarSettings returns the TipjarSettings field value if set, zero value otherwise.

func (*User) GetTipjarSettingsOk ¶

func (o *User) GetTipjarSettingsOk() (*UserTipJarSettings, bool)

GetTipjarSettingsOk returns a tuple with the TipjarSettings field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetTypename ¶

func (o *User) GetTypename() TypeName

GetTypename returns the Typename field value

func (*User) GetTypenameOk ¶

func (o *User) GetTypenameOk() (*TypeName, bool)

GetTypenameOk returns a tuple with the Typename field value and a boolean to check if the value has been set.

func (*User) GetUserSeedTweetCount ¶

func (o *User) GetUserSeedTweetCount() int32

GetUserSeedTweetCount returns the UserSeedTweetCount field value if set, zero value otherwise.

func (*User) GetUserSeedTweetCountOk ¶

func (o *User) GetUserSeedTweetCountOk() (*int32, bool)

GetUserSeedTweetCountOk returns a tuple with the UserSeedTweetCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetVerificationInfo ¶

func (o *User) GetVerificationInfo() UserVerificationInfo

GetVerificationInfo returns the VerificationInfo field value if set, zero value otherwise.

func (*User) GetVerificationInfoOk ¶

func (o *User) GetVerificationInfoOk() (*UserVerificationInfo, bool)

GetVerificationInfoOk returns a tuple with the VerificationInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) HasBusinessAccount ¶

func (o *User) HasBusinessAccount() bool

HasBusinessAccount returns a boolean if a field has been set.

func (*User) HasCreatorSubscriptionsCount ¶

func (o *User) HasCreatorSubscriptionsCount() bool

HasCreatorSubscriptionsCount returns a boolean if a field has been set.

func (*User) HasHasGraduatedAccess ¶

func (o *User) HasHasGraduatedAccess() bool

HasHasGraduatedAccess returns a boolean if a field has been set.

func (*User) HasHasHiddenLikesOnProfile ¶

func (o *User) HasHasHiddenLikesOnProfile() bool

HasHasHiddenLikesOnProfile returns a boolean if a field has been set.

func (*User) HasHasNftAvatar ¶

func (o *User) HasHasNftAvatar() bool

HasHasNftAvatar returns a boolean if a field has been set.

func (*User) HasHighlightsInfo ¶

func (o *User) HasHighlightsInfo() bool

HasHighlightsInfo returns a boolean if a field has been set.

func (*User) HasIsProfileTranslatable ¶

func (o *User) HasIsProfileTranslatable() bool

HasIsProfileTranslatable returns a boolean if a field has been set.

func (*User) HasLegacyExtendedProfile ¶

func (o *User) HasLegacyExtendedProfile() bool

HasLegacyExtendedProfile returns a boolean if a field has been set.

func (*User) HasPremiumGiftingEligible ¶

func (o *User) HasPremiumGiftingEligible() bool

HasPremiumGiftingEligible returns a boolean if a field has been set.

func (*User) HasProfessional ¶

func (o *User) HasProfessional() bool

HasProfessional returns a boolean if a field has been set.

func (*User) HasSuperFollowEligible ¶

func (o *User) HasSuperFollowEligible() bool

HasSuperFollowEligible returns a boolean if a field has been set.

func (*User) HasSuperFollowedBy ¶

func (o *User) HasSuperFollowedBy() bool

HasSuperFollowedBy returns a boolean if a field has been set.

func (*User) HasSuperFollowing ¶

func (o *User) HasSuperFollowing() bool

HasSuperFollowing returns a boolean if a field has been set.

func (*User) HasTipjarSettings ¶

func (o *User) HasTipjarSettings() bool

HasTipjarSettings returns a boolean if a field has been set.

func (*User) HasUserSeedTweetCount ¶

func (o *User) HasUserSeedTweetCount() bool

HasUserSeedTweetCount returns a boolean if a field has been set.

func (*User) HasVerificationInfo ¶

func (o *User) HasVerificationInfo() bool

HasVerificationInfo returns a boolean if a field has been set.

func (User) MarshalJSON ¶

func (o User) MarshalJSON() ([]byte, error)

func (*User) SetAffiliatesHighlightedLabel ¶

func (o *User) SetAffiliatesHighlightedLabel(v map[string]interface{})

SetAffiliatesHighlightedLabel sets field value

func (*User) SetBusinessAccount ¶

func (o *User) SetBusinessAccount(v map[string]interface{})

SetBusinessAccount gets a reference to the given map[string]interface{} and assigns it to the BusinessAccount field.

func (*User) SetCreatorSubscriptionsCount ¶

func (o *User) SetCreatorSubscriptionsCount(v int32)

SetCreatorSubscriptionsCount gets a reference to the given int32 and assigns it to the CreatorSubscriptionsCount field.

func (*User) SetHasGraduatedAccess ¶

func (o *User) SetHasGraduatedAccess(v bool)

SetHasGraduatedAccess gets a reference to the given bool and assigns it to the HasGraduatedAccess field.

func (*User) SetHasHiddenLikesOnProfile ¶

func (o *User) SetHasHiddenLikesOnProfile(v bool)

SetHasHiddenLikesOnProfile gets a reference to the given bool and assigns it to the HasHiddenLikesOnProfile field.

func (*User) SetHasNftAvatar ¶

func (o *User) SetHasNftAvatar(v bool)

SetHasNftAvatar gets a reference to the given bool and assigns it to the HasNftAvatar field.

func (*User) SetHighlightsInfo ¶

func (o *User) SetHighlightsInfo(v UserHighlightsInfo)

SetHighlightsInfo gets a reference to the given UserHighlightsInfo and assigns it to the HighlightsInfo field.

func (*User) SetId ¶

func (o *User) SetId(v string)

SetId sets field value

func (*User) SetIsBlueVerified ¶

func (o *User) SetIsBlueVerified(v bool)

SetIsBlueVerified sets field value

func (*User) SetIsProfileTranslatable ¶

func (o *User) SetIsProfileTranslatable(v bool)

SetIsProfileTranslatable gets a reference to the given bool and assigns it to the IsProfileTranslatable field.

func (*User) SetLegacy ¶

func (o *User) SetLegacy(v UserLegacy)

SetLegacy sets field value

func (*User) SetLegacyExtendedProfile ¶

func (o *User) SetLegacyExtendedProfile(v UserLegacyExtendedProfile)

SetLegacyExtendedProfile gets a reference to the given UserLegacyExtendedProfile and assigns it to the LegacyExtendedProfile field.

func (*User) SetPremiumGiftingEligible ¶

func (o *User) SetPremiumGiftingEligible(v bool)

SetPremiumGiftingEligible gets a reference to the given bool and assigns it to the PremiumGiftingEligible field.

func (*User) SetProfessional ¶

func (o *User) SetProfessional(v UserProfessional)

SetProfessional gets a reference to the given UserProfessional and assigns it to the Professional field.

func (*User) SetProfileImageShape ¶

func (o *User) SetProfileImageShape(v string)

SetProfileImageShape sets field value

func (*User) SetRestId ¶

func (o *User) SetRestId(v string)

SetRestId sets field value

func (*User) SetSuperFollowEligible ¶

func (o *User) SetSuperFollowEligible(v bool)

SetSuperFollowEligible gets a reference to the given bool and assigns it to the SuperFollowEligible field.

func (*User) SetSuperFollowedBy ¶

func (o *User) SetSuperFollowedBy(v bool)

SetSuperFollowedBy gets a reference to the given bool and assigns it to the SuperFollowedBy field.

func (*User) SetSuperFollowing ¶

func (o *User) SetSuperFollowing(v bool)

SetSuperFollowing gets a reference to the given bool and assigns it to the SuperFollowing field.

func (*User) SetTipjarSettings ¶

func (o *User) SetTipjarSettings(v UserTipJarSettings)

SetTipjarSettings gets a reference to the given UserTipJarSettings and assigns it to the TipjarSettings field.

func (*User) SetTypename ¶

func (o *User) SetTypename(v TypeName)

SetTypename sets field value

func (*User) SetUserSeedTweetCount ¶

func (o *User) SetUserSeedTweetCount(v int32)

SetUserSeedTweetCount gets a reference to the given int32 and assigns it to the UserSeedTweetCount field.

func (*User) SetVerificationInfo ¶

func (o *User) SetVerificationInfo(v UserVerificationInfo)

SetVerificationInfo gets a reference to the given UserVerificationInfo and assigns it to the VerificationInfo field.

func (User) ToMap ¶

func (o User) ToMap() (map[string]interface{}, error)

func (*User) UnmarshalJSON ¶

func (o *User) UnmarshalJSON(data []byte) (err error)

type UserAPIService ¶

type UserAPIService service

UserAPIService UserAPI service

func (*UserAPIService) GetUserByRestId ¶

func (a *UserAPIService) GetUserByRestId(ctx context.Context, pathQueryId string) ApiGetUserByRestIdRequest

GetUserByRestId Method for GetUserByRestId

get user by rest id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param pathQueryId
@return ApiGetUserByRestIdRequest

func (*UserAPIService) GetUserByRestIdExecute ¶

Execute executes the request

@return GetUserByRestId200Response

func (*UserAPIService) GetUserByScreenName ¶

func (a *UserAPIService) GetUserByScreenName(ctx context.Context, pathQueryId string) ApiGetUserByScreenNameRequest

GetUserByScreenName Method for GetUserByScreenName

get user by screen name

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param pathQueryId
@return ApiGetUserByScreenNameRequest

func (*UserAPIService) GetUserByScreenNameExecute ¶

Execute executes the request

@return GetUserByRestId200Response

type UserFeatures ¶

type UserFeatures struct {
	MediatoolStudioLibrary bool `json:"mediatool_studio_library"`
}

UserFeatures struct for UserFeatures

func NewUserFeatures ¶

func NewUserFeatures(mediatoolStudioLibrary bool) *UserFeatures

NewUserFeatures instantiates a new UserFeatures object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserFeaturesWithDefaults ¶

func NewUserFeaturesWithDefaults() *UserFeatures

NewUserFeaturesWithDefaults instantiates a new UserFeatures object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserFeatures) GetMediatoolStudioLibrary ¶

func (o *UserFeatures) GetMediatoolStudioLibrary() bool

GetMediatoolStudioLibrary returns the MediatoolStudioLibrary field value

func (*UserFeatures) GetMediatoolStudioLibraryOk ¶

func (o *UserFeatures) GetMediatoolStudioLibraryOk() (*bool, bool)

GetMediatoolStudioLibraryOk returns a tuple with the MediatoolStudioLibrary field value and a boolean to check if the value has been set.

func (UserFeatures) MarshalJSON ¶

func (o UserFeatures) MarshalJSON() ([]byte, error)

func (*UserFeatures) SetMediatoolStudioLibrary ¶

func (o *UserFeatures) SetMediatoolStudioLibrary(v bool)

SetMediatoolStudioLibrary sets field value

func (UserFeatures) ToMap ¶

func (o UserFeatures) ToMap() (map[string]interface{}, error)

func (*UserFeatures) UnmarshalJSON ¶

func (o *UserFeatures) UnmarshalJSON(data []byte) (err error)

type UserHighlightsInfo ¶

type UserHighlightsInfo struct {
	CanHighlightTweets bool   `json:"can_highlight_tweets"`
	HighlightedTweets  string `json:"highlighted_tweets"`
}

UserHighlightsInfo struct for UserHighlightsInfo

func NewUserHighlightsInfo ¶

func NewUserHighlightsInfo(canHighlightTweets bool, highlightedTweets string) *UserHighlightsInfo

NewUserHighlightsInfo instantiates a new UserHighlightsInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserHighlightsInfoWithDefaults ¶

func NewUserHighlightsInfoWithDefaults() *UserHighlightsInfo

NewUserHighlightsInfoWithDefaults instantiates a new UserHighlightsInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserHighlightsInfo) GetCanHighlightTweets ¶

func (o *UserHighlightsInfo) GetCanHighlightTweets() bool

GetCanHighlightTweets returns the CanHighlightTweets field value

func (*UserHighlightsInfo) GetCanHighlightTweetsOk ¶

func (o *UserHighlightsInfo) GetCanHighlightTweetsOk() (*bool, bool)

GetCanHighlightTweetsOk returns a tuple with the CanHighlightTweets field value and a boolean to check if the value has been set.

func (*UserHighlightsInfo) GetHighlightedTweets ¶

func (o *UserHighlightsInfo) GetHighlightedTweets() string

GetHighlightedTweets returns the HighlightedTweets field value

func (*UserHighlightsInfo) GetHighlightedTweetsOk ¶

func (o *UserHighlightsInfo) GetHighlightedTweetsOk() (*string, bool)

GetHighlightedTweetsOk returns a tuple with the HighlightedTweets field value and a boolean to check if the value has been set.

func (UserHighlightsInfo) MarshalJSON ¶

func (o UserHighlightsInfo) MarshalJSON() ([]byte, error)

func (*UserHighlightsInfo) SetCanHighlightTweets ¶

func (o *UserHighlightsInfo) SetCanHighlightTweets(v bool)

SetCanHighlightTweets sets field value

func (*UserHighlightsInfo) SetHighlightedTweets ¶

func (o *UserHighlightsInfo) SetHighlightedTweets(v string)

SetHighlightedTweets sets field value

func (UserHighlightsInfo) ToMap ¶

func (o UserHighlightsInfo) ToMap() (map[string]interface{}, error)

func (*UserHighlightsInfo) UnmarshalJSON ¶

func (o *UserHighlightsInfo) UnmarshalJSON(data []byte) (err error)

type UserHighlightsTweetsData ¶

type UserHighlightsTweetsData struct {
	User UserHighlightsTweetsUser `json:"user"`
}

UserHighlightsTweetsData struct for UserHighlightsTweetsData

func NewUserHighlightsTweetsData ¶

func NewUserHighlightsTweetsData(user UserHighlightsTweetsUser) *UserHighlightsTweetsData

NewUserHighlightsTweetsData instantiates a new UserHighlightsTweetsData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserHighlightsTweetsDataWithDefaults ¶

func NewUserHighlightsTweetsDataWithDefaults() *UserHighlightsTweetsData

NewUserHighlightsTweetsDataWithDefaults instantiates a new UserHighlightsTweetsData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserHighlightsTweetsData) GetUser ¶

GetUser returns the User field value

func (*UserHighlightsTweetsData) GetUserOk ¶

GetUserOk returns a tuple with the User field value and a boolean to check if the value has been set.

func (UserHighlightsTweetsData) MarshalJSON ¶

func (o UserHighlightsTweetsData) MarshalJSON() ([]byte, error)

func (*UserHighlightsTweetsData) SetUser ¶

SetUser sets field value

func (UserHighlightsTweetsData) ToMap ¶

func (o UserHighlightsTweetsData) ToMap() (map[string]interface{}, error)

func (*UserHighlightsTweetsData) UnmarshalJSON ¶

func (o *UserHighlightsTweetsData) UnmarshalJSON(data []byte) (err error)

type UserHighlightsTweetsResponse ¶

type UserHighlightsTweetsResponse struct {
	Data UserHighlightsTweetsData `json:"data"`
}

UserHighlightsTweetsResponse struct for UserHighlightsTweetsResponse

func NewUserHighlightsTweetsResponse ¶

func NewUserHighlightsTweetsResponse(data UserHighlightsTweetsData) *UserHighlightsTweetsResponse

NewUserHighlightsTweetsResponse instantiates a new UserHighlightsTweetsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserHighlightsTweetsResponseWithDefaults ¶

func NewUserHighlightsTweetsResponseWithDefaults() *UserHighlightsTweetsResponse

NewUserHighlightsTweetsResponseWithDefaults instantiates a new UserHighlightsTweetsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserHighlightsTweetsResponse) GetData ¶

GetData returns the Data field value

func (*UserHighlightsTweetsResponse) GetDataOk ¶

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (UserHighlightsTweetsResponse) MarshalJSON ¶

func (o UserHighlightsTweetsResponse) MarshalJSON() ([]byte, error)

func (*UserHighlightsTweetsResponse) SetData ¶

SetData sets field value

func (UserHighlightsTweetsResponse) ToMap ¶

func (o UserHighlightsTweetsResponse) ToMap() (map[string]interface{}, error)

func (*UserHighlightsTweetsResponse) UnmarshalJSON ¶

func (o *UserHighlightsTweetsResponse) UnmarshalJSON(data []byte) (err error)

type UserHighlightsTweetsResult ¶

type UserHighlightsTweetsResult struct {
	Typename TypeName                     `json:"__typename"`
	Timeline UserHighlightsTweetsTimeline `json:"timeline"`
}

UserHighlightsTweetsResult struct for UserHighlightsTweetsResult

func NewUserHighlightsTweetsResult ¶

func NewUserHighlightsTweetsResult(typename TypeName, timeline UserHighlightsTweetsTimeline) *UserHighlightsTweetsResult

NewUserHighlightsTweetsResult instantiates a new UserHighlightsTweetsResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserHighlightsTweetsResultWithDefaults ¶

func NewUserHighlightsTweetsResultWithDefaults() *UserHighlightsTweetsResult

NewUserHighlightsTweetsResultWithDefaults instantiates a new UserHighlightsTweetsResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserHighlightsTweetsResult) GetTimeline ¶

GetTimeline returns the Timeline field value

func (*UserHighlightsTweetsResult) GetTimelineOk ¶

GetTimelineOk returns a tuple with the Timeline field value and a boolean to check if the value has been set.

func (*UserHighlightsTweetsResult) GetTypename ¶

func (o *UserHighlightsTweetsResult) GetTypename() TypeName

GetTypename returns the Typename field value

func (*UserHighlightsTweetsResult) GetTypenameOk ¶

func (o *UserHighlightsTweetsResult) GetTypenameOk() (*TypeName, bool)

GetTypenameOk returns a tuple with the Typename field value and a boolean to check if the value has been set.

func (UserHighlightsTweetsResult) MarshalJSON ¶

func (o UserHighlightsTweetsResult) MarshalJSON() ([]byte, error)

func (*UserHighlightsTweetsResult) SetTimeline ¶

SetTimeline sets field value

func (*UserHighlightsTweetsResult) SetTypename ¶

func (o *UserHighlightsTweetsResult) SetTypename(v TypeName)

SetTypename sets field value

func (UserHighlightsTweetsResult) ToMap ¶

func (o UserHighlightsTweetsResult) ToMap() (map[string]interface{}, error)

func (*UserHighlightsTweetsResult) UnmarshalJSON ¶

func (o *UserHighlightsTweetsResult) UnmarshalJSON(data []byte) (err error)

type UserHighlightsTweetsTimeline ¶

type UserHighlightsTweetsTimeline struct {
	Timeline Timeline `json:"timeline"`
}

UserHighlightsTweetsTimeline struct for UserHighlightsTweetsTimeline

func NewUserHighlightsTweetsTimeline ¶

func NewUserHighlightsTweetsTimeline(timeline Timeline) *UserHighlightsTweetsTimeline

NewUserHighlightsTweetsTimeline instantiates a new UserHighlightsTweetsTimeline object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserHighlightsTweetsTimelineWithDefaults ¶

func NewUserHighlightsTweetsTimelineWithDefaults() *UserHighlightsTweetsTimeline

NewUserHighlightsTweetsTimelineWithDefaults instantiates a new UserHighlightsTweetsTimeline object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserHighlightsTweetsTimeline) GetTimeline ¶

func (o *UserHighlightsTweetsTimeline) GetTimeline() Timeline

GetTimeline returns the Timeline field value

func (*UserHighlightsTweetsTimeline) GetTimelineOk ¶

func (o *UserHighlightsTweetsTimeline) GetTimelineOk() (*Timeline, bool)

GetTimelineOk returns a tuple with the Timeline field value and a boolean to check if the value has been set.

func (UserHighlightsTweetsTimeline) MarshalJSON ¶

func (o UserHighlightsTweetsTimeline) MarshalJSON() ([]byte, error)

func (*UserHighlightsTweetsTimeline) SetTimeline ¶

func (o *UserHighlightsTweetsTimeline) SetTimeline(v Timeline)

SetTimeline sets field value

func (UserHighlightsTweetsTimeline) ToMap ¶

func (o UserHighlightsTweetsTimeline) ToMap() (map[string]interface{}, error)

func (*UserHighlightsTweetsTimeline) UnmarshalJSON ¶

func (o *UserHighlightsTweetsTimeline) UnmarshalJSON(data []byte) (err error)

type UserHighlightsTweetsUser ¶

type UserHighlightsTweetsUser struct {
	Result UserHighlightsTweetsResult `json:"result"`
}

UserHighlightsTweetsUser struct for UserHighlightsTweetsUser

func NewUserHighlightsTweetsUser ¶

func NewUserHighlightsTweetsUser(result UserHighlightsTweetsResult) *UserHighlightsTweetsUser

NewUserHighlightsTweetsUser instantiates a new UserHighlightsTweetsUser object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserHighlightsTweetsUserWithDefaults ¶

func NewUserHighlightsTweetsUserWithDefaults() *UserHighlightsTweetsUser

NewUserHighlightsTweetsUserWithDefaults instantiates a new UserHighlightsTweetsUser object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserHighlightsTweetsUser) GetResult ¶

GetResult returns the Result field value

func (*UserHighlightsTweetsUser) GetResultOk ¶

GetResultOk returns a tuple with the Result field value and a boolean to check if the value has been set.

func (UserHighlightsTweetsUser) MarshalJSON ¶

func (o UserHighlightsTweetsUser) MarshalJSON() ([]byte, error)

func (*UserHighlightsTweetsUser) SetResult ¶

SetResult sets field value

func (UserHighlightsTweetsUser) ToMap ¶

func (o UserHighlightsTweetsUser) ToMap() (map[string]interface{}, error)

func (*UserHighlightsTweetsUser) UnmarshalJSON ¶

func (o *UserHighlightsTweetsUser) UnmarshalJSON(data []byte) (err error)

type UserLegacy ¶

type UserLegacy struct {
	BlockedBy               *bool                  `json:"blocked_by,omitempty"`
	Blocking                *bool                  `json:"blocking,omitempty"`
	CanDm                   *bool                  `json:"can_dm,omitempty"`
	CanMediaTag             *bool                  `json:"can_media_tag,omitempty"`
	CreatedAt               string                 `` /* 225-byte string literal not displayed */
	DefaultProfile          bool                   `json:"default_profile"`
	DefaultProfileImage     bool                   `json:"default_profile_image"`
	Description             string                 `json:"description"`
	Entities                map[string]interface{} `json:"entities"`
	FastFollowersCount      int32                  `json:"fast_followers_count"`
	FavouritesCount         int32                  `json:"favourites_count"`
	FollowRequestSent       *bool                  `json:"follow_request_sent,omitempty"`
	FollowedBy              *bool                  `json:"followed_by,omitempty"`
	FollowersCount          int32                  `json:"followers_count"`
	Following               *bool                  `json:"following,omitempty"`
	FriendsCount            int32                  `json:"friends_count"`
	HasCustomTimelines      bool                   `json:"has_custom_timelines"`
	IsTranslator            bool                   `json:"is_translator"`
	ListedCount             int32                  `json:"listed_count"`
	Location                string                 `json:"location"`
	MediaCount              int32                  `json:"media_count"`
	Muting                  *bool                  `json:"muting,omitempty"`
	Name                    string                 `json:"name"`
	NormalFollowersCount    int32                  `json:"normal_followers_count"`
	Notifications           *bool                  `json:"notifications,omitempty"`
	PinnedTweetIdsStr       []string               `json:"pinned_tweet_ids_str"`
	PossiblySensitive       bool                   `json:"possibly_sensitive"`
	ProfileBannerExtensions map[string]interface{} `json:"profile_banner_extensions,omitempty"`
	ProfileBannerUrl        *string                `json:"profile_banner_url,omitempty"`
	ProfileImageExtensions  map[string]interface{} `json:"profile_image_extensions,omitempty"`
	ProfileImageUrlHttps    string                 `json:"profile_image_url_https"`
	ProfileInterstitialType string                 `json:"profile_interstitial_type"`
	Protected               *bool                  `json:"protected,omitempty"`
	ScreenName              string                 `json:"screen_name"`
	StatusesCount           int32                  `json:"statuses_count"`
	TranslatorType          string                 `json:"translator_type"`
	Url                     *string                `json:"url,omitempty"`
	Verified                bool                   `json:"verified"`
	VerifiedType            *string                `json:"verified_type,omitempty"`
	WantRetweets            *bool                  `json:"want_retweets,omitempty"`
	WithheldInCountries     []string               `json:"withheld_in_countries,omitempty"`
}

UserLegacy struct for UserLegacy

func NewUserLegacy ¶

func NewUserLegacy(createdAt string, defaultProfile bool, defaultProfileImage bool, description string, entities map[string]interface{}, fastFollowersCount int32, favouritesCount int32, followersCount int32, friendsCount int32, hasCustomTimelines bool, isTranslator bool, listedCount int32, location string, mediaCount int32, name string, normalFollowersCount int32, pinnedTweetIdsStr []string, possiblySensitive bool, profileImageUrlHttps string, profileInterstitialType string, screenName string, statusesCount int32, translatorType string, verified bool) *UserLegacy

NewUserLegacy instantiates a new UserLegacy object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserLegacyWithDefaults ¶

func NewUserLegacyWithDefaults() *UserLegacy

NewUserLegacyWithDefaults instantiates a new UserLegacy object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserLegacy) GetBlockedBy ¶

func (o *UserLegacy) GetBlockedBy() bool

GetBlockedBy returns the BlockedBy field value if set, zero value otherwise.

func (*UserLegacy) GetBlockedByOk ¶

func (o *UserLegacy) GetBlockedByOk() (*bool, bool)

GetBlockedByOk returns a tuple with the BlockedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLegacy) GetBlocking ¶

func (o *UserLegacy) GetBlocking() bool

GetBlocking returns the Blocking field value if set, zero value otherwise.

func (*UserLegacy) GetBlockingOk ¶

func (o *UserLegacy) GetBlockingOk() (*bool, bool)

GetBlockingOk returns a tuple with the Blocking field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLegacy) GetCanDm ¶

func (o *UserLegacy) GetCanDm() bool

GetCanDm returns the CanDm field value if set, zero value otherwise.

func (*UserLegacy) GetCanDmOk ¶

func (o *UserLegacy) GetCanDmOk() (*bool, bool)

GetCanDmOk returns a tuple with the CanDm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLegacy) GetCanMediaTag ¶

func (o *UserLegacy) GetCanMediaTag() bool

GetCanMediaTag returns the CanMediaTag field value if set, zero value otherwise.

func (*UserLegacy) GetCanMediaTagOk ¶

func (o *UserLegacy) GetCanMediaTagOk() (*bool, bool)

GetCanMediaTagOk returns a tuple with the CanMediaTag field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLegacy) GetCreatedAt ¶

func (o *UserLegacy) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*UserLegacy) GetCreatedAtOk ¶

func (o *UserLegacy) GetCreatedAtOk() (*string, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*UserLegacy) GetDefaultProfile ¶

func (o *UserLegacy) GetDefaultProfile() bool

GetDefaultProfile returns the DefaultProfile field value

func (*UserLegacy) GetDefaultProfileImage ¶

func (o *UserLegacy) GetDefaultProfileImage() bool

GetDefaultProfileImage returns the DefaultProfileImage field value

func (*UserLegacy) GetDefaultProfileImageOk ¶

func (o *UserLegacy) GetDefaultProfileImageOk() (*bool, bool)

GetDefaultProfileImageOk returns a tuple with the DefaultProfileImage field value and a boolean to check if the value has been set.

func (*UserLegacy) GetDefaultProfileOk ¶

func (o *UserLegacy) GetDefaultProfileOk() (*bool, bool)

GetDefaultProfileOk returns a tuple with the DefaultProfile field value and a boolean to check if the value has been set.

func (*UserLegacy) GetDescription ¶

func (o *UserLegacy) GetDescription() string

GetDescription returns the Description field value

func (*UserLegacy) GetDescriptionOk ¶

func (o *UserLegacy) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value and a boolean to check if the value has been set.

func (*UserLegacy) GetEntities ¶

func (o *UserLegacy) GetEntities() map[string]interface{}

GetEntities returns the Entities field value

func (*UserLegacy) GetEntitiesOk ¶

func (o *UserLegacy) GetEntitiesOk() (map[string]interface{}, bool)

GetEntitiesOk returns a tuple with the Entities field value and a boolean to check if the value has been set.

func (*UserLegacy) GetFastFollowersCount ¶

func (o *UserLegacy) GetFastFollowersCount() int32

GetFastFollowersCount returns the FastFollowersCount field value

func (*UserLegacy) GetFastFollowersCountOk ¶

func (o *UserLegacy) GetFastFollowersCountOk() (*int32, bool)

GetFastFollowersCountOk returns a tuple with the FastFollowersCount field value and a boolean to check if the value has been set.

func (*UserLegacy) GetFavouritesCount ¶

func (o *UserLegacy) GetFavouritesCount() int32

GetFavouritesCount returns the FavouritesCount field value

func (*UserLegacy) GetFavouritesCountOk ¶

func (o *UserLegacy) GetFavouritesCountOk() (*int32, bool)

GetFavouritesCountOk returns a tuple with the FavouritesCount field value and a boolean to check if the value has been set.

func (*UserLegacy) GetFollowRequestSent ¶

func (o *UserLegacy) GetFollowRequestSent() bool

GetFollowRequestSent returns the FollowRequestSent field value if set, zero value otherwise.

func (*UserLegacy) GetFollowRequestSentOk ¶

func (o *UserLegacy) GetFollowRequestSentOk() (*bool, bool)

GetFollowRequestSentOk returns a tuple with the FollowRequestSent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLegacy) GetFollowedBy ¶

func (o *UserLegacy) GetFollowedBy() bool

GetFollowedBy returns the FollowedBy field value if set, zero value otherwise.

func (*UserLegacy) GetFollowedByOk ¶

func (o *UserLegacy) GetFollowedByOk() (*bool, bool)

GetFollowedByOk returns a tuple with the FollowedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLegacy) GetFollowersCount ¶

func (o *UserLegacy) GetFollowersCount() int32

GetFollowersCount returns the FollowersCount field value

func (*UserLegacy) GetFollowersCountOk ¶

func (o *UserLegacy) GetFollowersCountOk() (*int32, bool)

GetFollowersCountOk returns a tuple with the FollowersCount field value and a boolean to check if the value has been set.

func (*UserLegacy) GetFollowing ¶

func (o *UserLegacy) GetFollowing() bool

GetFollowing returns the Following field value if set, zero value otherwise.

func (*UserLegacy) GetFollowingOk ¶

func (o *UserLegacy) GetFollowingOk() (*bool, bool)

GetFollowingOk returns a tuple with the Following field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLegacy) GetFriendsCount ¶

func (o *UserLegacy) GetFriendsCount() int32

GetFriendsCount returns the FriendsCount field value

func (*UserLegacy) GetFriendsCountOk ¶

func (o *UserLegacy) GetFriendsCountOk() (*int32, bool)

GetFriendsCountOk returns a tuple with the FriendsCount field value and a boolean to check if the value has been set.

func (*UserLegacy) GetHasCustomTimelines ¶

func (o *UserLegacy) GetHasCustomTimelines() bool

GetHasCustomTimelines returns the HasCustomTimelines field value

func (*UserLegacy) GetHasCustomTimelinesOk ¶

func (o *UserLegacy) GetHasCustomTimelinesOk() (*bool, bool)

GetHasCustomTimelinesOk returns a tuple with the HasCustomTimelines field value and a boolean to check if the value has been set.

func (*UserLegacy) GetIsTranslator ¶

func (o *UserLegacy) GetIsTranslator() bool

GetIsTranslator returns the IsTranslator field value

func (*UserLegacy) GetIsTranslatorOk ¶

func (o *UserLegacy) GetIsTranslatorOk() (*bool, bool)

GetIsTranslatorOk returns a tuple with the IsTranslator field value and a boolean to check if the value has been set.

func (*UserLegacy) GetListedCount ¶

func (o *UserLegacy) GetListedCount() int32

GetListedCount returns the ListedCount field value

func (*UserLegacy) GetListedCountOk ¶

func (o *UserLegacy) GetListedCountOk() (*int32, bool)

GetListedCountOk returns a tuple with the ListedCount field value and a boolean to check if the value has been set.

func (*UserLegacy) GetLocation ¶

func (o *UserLegacy) GetLocation() string

GetLocation returns the Location field value

func (*UserLegacy) GetLocationOk ¶

func (o *UserLegacy) GetLocationOk() (*string, bool)

GetLocationOk returns a tuple with the Location field value and a boolean to check if the value has been set.

func (*UserLegacy) GetMediaCount ¶

func (o *UserLegacy) GetMediaCount() int32

GetMediaCount returns the MediaCount field value

func (*UserLegacy) GetMediaCountOk ¶

func (o *UserLegacy) GetMediaCountOk() (*int32, bool)

GetMediaCountOk returns a tuple with the MediaCount field value and a boolean to check if the value has been set.

func (*UserLegacy) GetMuting ¶

func (o *UserLegacy) GetMuting() bool

GetMuting returns the Muting field value if set, zero value otherwise.

func (*UserLegacy) GetMutingOk ¶

func (o *UserLegacy) GetMutingOk() (*bool, bool)

GetMutingOk returns a tuple with the Muting field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLegacy) GetName ¶

func (o *UserLegacy) GetName() string

GetName returns the Name field value

func (*UserLegacy) GetNameOk ¶

func (o *UserLegacy) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*UserLegacy) GetNormalFollowersCount ¶

func (o *UserLegacy) GetNormalFollowersCount() int32

GetNormalFollowersCount returns the NormalFollowersCount field value

func (*UserLegacy) GetNormalFollowersCountOk ¶

func (o *UserLegacy) GetNormalFollowersCountOk() (*int32, bool)

GetNormalFollowersCountOk returns a tuple with the NormalFollowersCount field value and a boolean to check if the value has been set.

func (*UserLegacy) GetNotifications ¶

func (o *UserLegacy) GetNotifications() bool

GetNotifications returns the Notifications field value if set, zero value otherwise.

func (*UserLegacy) GetNotificationsOk ¶

func (o *UserLegacy) GetNotificationsOk() (*bool, bool)

GetNotificationsOk returns a tuple with the Notifications field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLegacy) GetPinnedTweetIdsStr ¶

func (o *UserLegacy) GetPinnedTweetIdsStr() []string

GetPinnedTweetIdsStr returns the PinnedTweetIdsStr field value

func (*UserLegacy) GetPinnedTweetIdsStrOk ¶

func (o *UserLegacy) GetPinnedTweetIdsStrOk() ([]string, bool)

GetPinnedTweetIdsStrOk returns a tuple with the PinnedTweetIdsStr field value and a boolean to check if the value has been set.

func (*UserLegacy) GetPossiblySensitive ¶

func (o *UserLegacy) GetPossiblySensitive() bool

GetPossiblySensitive returns the PossiblySensitive field value

func (*UserLegacy) GetPossiblySensitiveOk ¶

func (o *UserLegacy) GetPossiblySensitiveOk() (*bool, bool)

GetPossiblySensitiveOk returns a tuple with the PossiblySensitive field value and a boolean to check if the value has been set.

func (*UserLegacy) GetProfileBannerExtensions ¶

func (o *UserLegacy) GetProfileBannerExtensions() map[string]interface{}

GetProfileBannerExtensions returns the ProfileBannerExtensions field value if set, zero value otherwise.

func (*UserLegacy) GetProfileBannerExtensionsOk ¶

func (o *UserLegacy) GetProfileBannerExtensionsOk() (map[string]interface{}, bool)

GetProfileBannerExtensionsOk returns a tuple with the ProfileBannerExtensions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLegacy) GetProfileBannerUrl ¶

func (o *UserLegacy) GetProfileBannerUrl() string

GetProfileBannerUrl returns the ProfileBannerUrl field value if set, zero value otherwise.

func (*UserLegacy) GetProfileBannerUrlOk ¶

func (o *UserLegacy) GetProfileBannerUrlOk() (*string, bool)

GetProfileBannerUrlOk returns a tuple with the ProfileBannerUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLegacy) GetProfileImageExtensions ¶

func (o *UserLegacy) GetProfileImageExtensions() map[string]interface{}

GetProfileImageExtensions returns the ProfileImageExtensions field value if set, zero value otherwise.

func (*UserLegacy) GetProfileImageExtensionsOk ¶

func (o *UserLegacy) GetProfileImageExtensionsOk() (map[string]interface{}, bool)

GetProfileImageExtensionsOk returns a tuple with the ProfileImageExtensions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLegacy) GetProfileImageUrlHttps ¶

func (o *UserLegacy) GetProfileImageUrlHttps() string

GetProfileImageUrlHttps returns the ProfileImageUrlHttps field value

func (*UserLegacy) GetProfileImageUrlHttpsOk ¶

func (o *UserLegacy) GetProfileImageUrlHttpsOk() (*string, bool)

GetProfileImageUrlHttpsOk returns a tuple with the ProfileImageUrlHttps field value and a boolean to check if the value has been set.

func (*UserLegacy) GetProfileInterstitialType ¶

func (o *UserLegacy) GetProfileInterstitialType() string

GetProfileInterstitialType returns the ProfileInterstitialType field value

func (*UserLegacy) GetProfileInterstitialTypeOk ¶

func (o *UserLegacy) GetProfileInterstitialTypeOk() (*string, bool)

GetProfileInterstitialTypeOk returns a tuple with the ProfileInterstitialType field value and a boolean to check if the value has been set.

func (*UserLegacy) GetProtected ¶

func (o *UserLegacy) GetProtected() bool

GetProtected returns the Protected field value if set, zero value otherwise.

func (*UserLegacy) GetProtectedOk ¶

func (o *UserLegacy) GetProtectedOk() (*bool, bool)

GetProtectedOk returns a tuple with the Protected field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLegacy) GetScreenName ¶

func (o *UserLegacy) GetScreenName() string

GetScreenName returns the ScreenName field value

func (*UserLegacy) GetScreenNameOk ¶

func (o *UserLegacy) GetScreenNameOk() (*string, bool)

GetScreenNameOk returns a tuple with the ScreenName field value and a boolean to check if the value has been set.

func (*UserLegacy) GetStatusesCount ¶

func (o *UserLegacy) GetStatusesCount() int32

GetStatusesCount returns the StatusesCount field value

func (*UserLegacy) GetStatusesCountOk ¶

func (o *UserLegacy) GetStatusesCountOk() (*int32, bool)

GetStatusesCountOk returns a tuple with the StatusesCount field value and a boolean to check if the value has been set.

func (*UserLegacy) GetTranslatorType ¶

func (o *UserLegacy) GetTranslatorType() string

GetTranslatorType returns the TranslatorType field value

func (*UserLegacy) GetTranslatorTypeOk ¶

func (o *UserLegacy) GetTranslatorTypeOk() (*string, bool)

GetTranslatorTypeOk returns a tuple with the TranslatorType field value and a boolean to check if the value has been set.

func (*UserLegacy) GetUrl ¶

func (o *UserLegacy) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*UserLegacy) GetUrlOk ¶

func (o *UserLegacy) 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 (*UserLegacy) GetVerified ¶

func (o *UserLegacy) GetVerified() bool

GetVerified returns the Verified field value

func (*UserLegacy) GetVerifiedOk ¶

func (o *UserLegacy) GetVerifiedOk() (*bool, bool)

GetVerifiedOk returns a tuple with the Verified field value and a boolean to check if the value has been set.

func (*UserLegacy) GetVerifiedType ¶

func (o *UserLegacy) GetVerifiedType() string

GetVerifiedType returns the VerifiedType field value if set, zero value otherwise.

func (*UserLegacy) GetVerifiedTypeOk ¶

func (o *UserLegacy) GetVerifiedTypeOk() (*string, bool)

GetVerifiedTypeOk returns a tuple with the VerifiedType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLegacy) GetWantRetweets ¶

func (o *UserLegacy) GetWantRetweets() bool

GetWantRetweets returns the WantRetweets field value if set, zero value otherwise.

func (*UserLegacy) GetWantRetweetsOk ¶

func (o *UserLegacy) GetWantRetweetsOk() (*bool, bool)

GetWantRetweetsOk returns a tuple with the WantRetweets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLegacy) GetWithheldInCountries ¶

func (o *UserLegacy) GetWithheldInCountries() []string

GetWithheldInCountries returns the WithheldInCountries field value if set, zero value otherwise.

func (*UserLegacy) GetWithheldInCountriesOk ¶

func (o *UserLegacy) GetWithheldInCountriesOk() ([]string, bool)

GetWithheldInCountriesOk returns a tuple with the WithheldInCountries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLegacy) HasBlockedBy ¶

func (o *UserLegacy) HasBlockedBy() bool

HasBlockedBy returns a boolean if a field has been set.

func (*UserLegacy) HasBlocking ¶

func (o *UserLegacy) HasBlocking() bool

HasBlocking returns a boolean if a field has been set.

func (*UserLegacy) HasCanDm ¶

func (o *UserLegacy) HasCanDm() bool

HasCanDm returns a boolean if a field has been set.

func (*UserLegacy) HasCanMediaTag ¶

func (o *UserLegacy) HasCanMediaTag() bool

HasCanMediaTag returns a boolean if a field has been set.

func (*UserLegacy) HasFollowRequestSent ¶

func (o *UserLegacy) HasFollowRequestSent() bool

HasFollowRequestSent returns a boolean if a field has been set.

func (*UserLegacy) HasFollowedBy ¶

func (o *UserLegacy) HasFollowedBy() bool

HasFollowedBy returns a boolean if a field has been set.

func (*UserLegacy) HasFollowing ¶

func (o *UserLegacy) HasFollowing() bool

HasFollowing returns a boolean if a field has been set.

func (*UserLegacy) HasMuting ¶

func (o *UserLegacy) HasMuting() bool

HasMuting returns a boolean if a field has been set.

func (*UserLegacy) HasNotifications ¶

func (o *UserLegacy) HasNotifications() bool

HasNotifications returns a boolean if a field has been set.

func (*UserLegacy) HasProfileBannerExtensions ¶

func (o *UserLegacy) HasProfileBannerExtensions() bool

HasProfileBannerExtensions returns a boolean if a field has been set.

func (*UserLegacy) HasProfileBannerUrl ¶

func (o *UserLegacy) HasProfileBannerUrl() bool

HasProfileBannerUrl returns a boolean if a field has been set.

func (*UserLegacy) HasProfileImageExtensions ¶

func (o *UserLegacy) HasProfileImageExtensions() bool

HasProfileImageExtensions returns a boolean if a field has been set.

func (*UserLegacy) HasProtected ¶

func (o *UserLegacy) HasProtected() bool

HasProtected returns a boolean if a field has been set.

func (*UserLegacy) HasUrl ¶

func (o *UserLegacy) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (*UserLegacy) HasVerifiedType ¶

func (o *UserLegacy) HasVerifiedType() bool

HasVerifiedType returns a boolean if a field has been set.

func (*UserLegacy) HasWantRetweets ¶

func (o *UserLegacy) HasWantRetweets() bool

HasWantRetweets returns a boolean if a field has been set.

func (*UserLegacy) HasWithheldInCountries ¶

func (o *UserLegacy) HasWithheldInCountries() bool

HasWithheldInCountries returns a boolean if a field has been set.

func (UserLegacy) MarshalJSON ¶

func (o UserLegacy) MarshalJSON() ([]byte, error)

func (*UserLegacy) SetBlockedBy ¶

func (o *UserLegacy) SetBlockedBy(v bool)

SetBlockedBy gets a reference to the given bool and assigns it to the BlockedBy field.

func (*UserLegacy) SetBlocking ¶

func (o *UserLegacy) SetBlocking(v bool)

SetBlocking gets a reference to the given bool and assigns it to the Blocking field.

func (*UserLegacy) SetCanDm ¶

func (o *UserLegacy) SetCanDm(v bool)

SetCanDm gets a reference to the given bool and assigns it to the CanDm field.

func (*UserLegacy) SetCanMediaTag ¶

func (o *UserLegacy) SetCanMediaTag(v bool)

SetCanMediaTag gets a reference to the given bool and assigns it to the CanMediaTag field.

func (*UserLegacy) SetCreatedAt ¶

func (o *UserLegacy) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*UserLegacy) SetDefaultProfile ¶

func (o *UserLegacy) SetDefaultProfile(v bool)

SetDefaultProfile sets field value

func (*UserLegacy) SetDefaultProfileImage ¶

func (o *UserLegacy) SetDefaultProfileImage(v bool)

SetDefaultProfileImage sets field value

func (*UserLegacy) SetDescription ¶

func (o *UserLegacy) SetDescription(v string)

SetDescription sets field value

func (*UserLegacy) SetEntities ¶

func (o *UserLegacy) SetEntities(v map[string]interface{})

SetEntities sets field value

func (*UserLegacy) SetFastFollowersCount ¶

func (o *UserLegacy) SetFastFollowersCount(v int32)

SetFastFollowersCount sets field value

func (*UserLegacy) SetFavouritesCount ¶

func (o *UserLegacy) SetFavouritesCount(v int32)

SetFavouritesCount sets field value

func (*UserLegacy) SetFollowRequestSent ¶

func (o *UserLegacy) SetFollowRequestSent(v bool)

SetFollowRequestSent gets a reference to the given bool and assigns it to the FollowRequestSent field.

func (*UserLegacy) SetFollowedBy ¶

func (o *UserLegacy) SetFollowedBy(v bool)

SetFollowedBy gets a reference to the given bool and assigns it to the FollowedBy field.

func (*UserLegacy) SetFollowersCount ¶

func (o *UserLegacy) SetFollowersCount(v int32)

SetFollowersCount sets field value

func (*UserLegacy) SetFollowing ¶

func (o *UserLegacy) SetFollowing(v bool)

SetFollowing gets a reference to the given bool and assigns it to the Following field.

func (*UserLegacy) SetFriendsCount ¶

func (o *UserLegacy) SetFriendsCount(v int32)

SetFriendsCount sets field value

func (*UserLegacy) SetHasCustomTimelines ¶

func (o *UserLegacy) SetHasCustomTimelines(v bool)

SetHasCustomTimelines sets field value

func (*UserLegacy) SetIsTranslator ¶

func (o *UserLegacy) SetIsTranslator(v bool)

SetIsTranslator sets field value

func (*UserLegacy) SetListedCount ¶

func (o *UserLegacy) SetListedCount(v int32)

SetListedCount sets field value

func (*UserLegacy) SetLocation ¶

func (o *UserLegacy) SetLocation(v string)

SetLocation sets field value

func (*UserLegacy) SetMediaCount ¶

func (o *UserLegacy) SetMediaCount(v int32)

SetMediaCount sets field value

func (*UserLegacy) SetMuting ¶

func (o *UserLegacy) SetMuting(v bool)

SetMuting gets a reference to the given bool and assigns it to the Muting field.

func (*UserLegacy) SetName ¶

func (o *UserLegacy) SetName(v string)

SetName sets field value

func (*UserLegacy) SetNormalFollowersCount ¶

func (o *UserLegacy) SetNormalFollowersCount(v int32)

SetNormalFollowersCount sets field value

func (*UserLegacy) SetNotifications ¶

func (o *UserLegacy) SetNotifications(v bool)

SetNotifications gets a reference to the given bool and assigns it to the Notifications field.

func (*UserLegacy) SetPinnedTweetIdsStr ¶

func (o *UserLegacy) SetPinnedTweetIdsStr(v []string)

SetPinnedTweetIdsStr sets field value

func (*UserLegacy) SetPossiblySensitive ¶

func (o *UserLegacy) SetPossiblySensitive(v bool)

SetPossiblySensitive sets field value

func (*UserLegacy) SetProfileBannerExtensions ¶

func (o *UserLegacy) SetProfileBannerExtensions(v map[string]interface{})

SetProfileBannerExtensions gets a reference to the given map[string]interface{} and assigns it to the ProfileBannerExtensions field.

func (*UserLegacy) SetProfileBannerUrl ¶

func (o *UserLegacy) SetProfileBannerUrl(v string)

SetProfileBannerUrl gets a reference to the given string and assigns it to the ProfileBannerUrl field.

func (*UserLegacy) SetProfileImageExtensions ¶

func (o *UserLegacy) SetProfileImageExtensions(v map[string]interface{})

SetProfileImageExtensions gets a reference to the given map[string]interface{} and assigns it to the ProfileImageExtensions field.

func (*UserLegacy) SetProfileImageUrlHttps ¶

func (o *UserLegacy) SetProfileImageUrlHttps(v string)

SetProfileImageUrlHttps sets field value

func (*UserLegacy) SetProfileInterstitialType ¶

func (o *UserLegacy) SetProfileInterstitialType(v string)

SetProfileInterstitialType sets field value

func (*UserLegacy) SetProtected ¶

func (o *UserLegacy) SetProtected(v bool)

SetProtected gets a reference to the given bool and assigns it to the Protected field.

func (*UserLegacy) SetScreenName ¶

func (o *UserLegacy) SetScreenName(v string)

SetScreenName sets field value

func (*UserLegacy) SetStatusesCount ¶

func (o *UserLegacy) SetStatusesCount(v int32)

SetStatusesCount sets field value

func (*UserLegacy) SetTranslatorType ¶

func (o *UserLegacy) SetTranslatorType(v string)

SetTranslatorType sets field value

func (*UserLegacy) SetUrl ¶

func (o *UserLegacy) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (*UserLegacy) SetVerified ¶

func (o *UserLegacy) SetVerified(v bool)

SetVerified sets field value

func (*UserLegacy) SetVerifiedType ¶

func (o *UserLegacy) SetVerifiedType(v string)

SetVerifiedType gets a reference to the given string and assigns it to the VerifiedType field.

func (*UserLegacy) SetWantRetweets ¶

func (o *UserLegacy) SetWantRetweets(v bool)

SetWantRetweets gets a reference to the given bool and assigns it to the WantRetweets field.

func (*UserLegacy) SetWithheldInCountries ¶

func (o *UserLegacy) SetWithheldInCountries(v []string)

SetWithheldInCountries gets a reference to the given []string and assigns it to the WithheldInCountries field.

func (UserLegacy) ToMap ¶

func (o UserLegacy) ToMap() (map[string]interface{}, error)

func (*UserLegacy) UnmarshalJSON ¶

func (o *UserLegacy) UnmarshalJSON(data []byte) (err error)

type UserLegacyExtendedProfile ¶

type UserLegacyExtendedProfile struct {
	Birthdate *UserLegacyExtendedProfileBirthdate `json:"birthdate,omitempty"`
}

UserLegacyExtendedProfile struct for UserLegacyExtendedProfile

func NewUserLegacyExtendedProfile ¶

func NewUserLegacyExtendedProfile() *UserLegacyExtendedProfile

NewUserLegacyExtendedProfile instantiates a new UserLegacyExtendedProfile object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserLegacyExtendedProfileWithDefaults ¶

func NewUserLegacyExtendedProfileWithDefaults() *UserLegacyExtendedProfile

NewUserLegacyExtendedProfileWithDefaults instantiates a new UserLegacyExtendedProfile object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserLegacyExtendedProfile) GetBirthdate ¶

GetBirthdate returns the Birthdate field value if set, zero value otherwise.

func (*UserLegacyExtendedProfile) GetBirthdateOk ¶

GetBirthdateOk returns a tuple with the Birthdate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLegacyExtendedProfile) HasBirthdate ¶

func (o *UserLegacyExtendedProfile) HasBirthdate() bool

HasBirthdate returns a boolean if a field has been set.

func (UserLegacyExtendedProfile) MarshalJSON ¶

func (o UserLegacyExtendedProfile) MarshalJSON() ([]byte, error)

func (*UserLegacyExtendedProfile) SetBirthdate ¶

SetBirthdate gets a reference to the given UserLegacyExtendedProfileBirthdate and assigns it to the Birthdate field.

func (UserLegacyExtendedProfile) ToMap ¶

func (o UserLegacyExtendedProfile) ToMap() (map[string]interface{}, error)

type UserLegacyExtendedProfileBirthdate ¶

type UserLegacyExtendedProfileBirthdate struct {
	Day            int32  `json:"day"`
	Month          int32  `json:"month"`
	Visibility     string `json:"visibility"`
	Year           int32  `json:"year"`
	YearVisibility string `json:"year_visibility"`
}

UserLegacyExtendedProfileBirthdate struct for UserLegacyExtendedProfileBirthdate

func NewUserLegacyExtendedProfileBirthdate ¶

func NewUserLegacyExtendedProfileBirthdate(day int32, month int32, visibility string, year int32, yearVisibility string) *UserLegacyExtendedProfileBirthdate

NewUserLegacyExtendedProfileBirthdate instantiates a new UserLegacyExtendedProfileBirthdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserLegacyExtendedProfileBirthdateWithDefaults ¶

func NewUserLegacyExtendedProfileBirthdateWithDefaults() *UserLegacyExtendedProfileBirthdate

NewUserLegacyExtendedProfileBirthdateWithDefaults instantiates a new UserLegacyExtendedProfileBirthdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserLegacyExtendedProfileBirthdate) GetDay ¶

GetDay returns the Day field value

func (*UserLegacyExtendedProfileBirthdate) GetDayOk ¶

func (o *UserLegacyExtendedProfileBirthdate) GetDayOk() (*int32, bool)

GetDayOk returns a tuple with the Day field value and a boolean to check if the value has been set.

func (*UserLegacyExtendedProfileBirthdate) GetMonth ¶

GetMonth returns the Month field value

func (*UserLegacyExtendedProfileBirthdate) GetMonthOk ¶

func (o *UserLegacyExtendedProfileBirthdate) GetMonthOk() (*int32, bool)

GetMonthOk returns a tuple with the Month field value and a boolean to check if the value has been set.

func (*UserLegacyExtendedProfileBirthdate) GetVisibility ¶

func (o *UserLegacyExtendedProfileBirthdate) GetVisibility() string

GetVisibility returns the Visibility field value

func (*UserLegacyExtendedProfileBirthdate) GetVisibilityOk ¶

func (o *UserLegacyExtendedProfileBirthdate) GetVisibilityOk() (*string, bool)

GetVisibilityOk returns a tuple with the Visibility field value and a boolean to check if the value has been set.

func (*UserLegacyExtendedProfileBirthdate) GetYear ¶

GetYear returns the Year field value

func (*UserLegacyExtendedProfileBirthdate) GetYearOk ¶

func (o *UserLegacyExtendedProfileBirthdate) GetYearOk() (*int32, bool)

GetYearOk returns a tuple with the Year field value and a boolean to check if the value has been set.

func (*UserLegacyExtendedProfileBirthdate) GetYearVisibility ¶

func (o *UserLegacyExtendedProfileBirthdate) GetYearVisibility() string

GetYearVisibility returns the YearVisibility field value

func (*UserLegacyExtendedProfileBirthdate) GetYearVisibilityOk ¶

func (o *UserLegacyExtendedProfileBirthdate) GetYearVisibilityOk() (*string, bool)

GetYearVisibilityOk returns a tuple with the YearVisibility field value and a boolean to check if the value has been set.

func (UserLegacyExtendedProfileBirthdate) MarshalJSON ¶

func (o UserLegacyExtendedProfileBirthdate) MarshalJSON() ([]byte, error)

func (*UserLegacyExtendedProfileBirthdate) SetDay ¶

SetDay sets field value

func (*UserLegacyExtendedProfileBirthdate) SetMonth ¶

SetMonth sets field value

func (*UserLegacyExtendedProfileBirthdate) SetVisibility ¶

func (o *UserLegacyExtendedProfileBirthdate) SetVisibility(v string)

SetVisibility sets field value

func (*UserLegacyExtendedProfileBirthdate) SetYear ¶

SetYear sets field value

func (*UserLegacyExtendedProfileBirthdate) SetYearVisibility ¶

func (o *UserLegacyExtendedProfileBirthdate) SetYearVisibility(v string)

SetYearVisibility sets field value

func (UserLegacyExtendedProfileBirthdate) ToMap ¶

func (o UserLegacyExtendedProfileBirthdate) ToMap() (map[string]interface{}, error)

func (*UserLegacyExtendedProfileBirthdate) UnmarshalJSON ¶

func (o *UserLegacyExtendedProfileBirthdate) UnmarshalJSON(data []byte) (err error)

type UserListAPIService ¶

type UserListAPIService service

UserListAPIService UserListAPI service

func (*UserListAPIService) GetFavoriters ¶

func (a *UserListAPIService) GetFavoriters(ctx context.Context, pathQueryId string) ApiGetFavoritersRequest

GetFavoriters Method for GetFavoriters

get tweet favoriters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param pathQueryId
@return ApiGetFavoritersRequest

func (*UserListAPIService) GetFavoritersExecute ¶

Execute executes the request

@return GetFavoriters200Response

func (*UserListAPIService) GetFollowers ¶

func (a *UserListAPIService) GetFollowers(ctx context.Context, pathQueryId string) ApiGetFollowersRequest

GetFollowers Method for GetFollowers

get user list of followers

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param pathQueryId
@return ApiGetFollowersRequest

func (*UserListAPIService) GetFollowersExecute ¶

Execute executes the request

@return GetFollowers200Response

func (*UserListAPIService) GetFollowersYouKnow ¶

func (a *UserListAPIService) GetFollowersYouKnow(ctx context.Context, pathQueryId string) ApiGetFollowersYouKnowRequest

GetFollowersYouKnow Method for GetFollowersYouKnow

get followers you know

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param pathQueryId
@return ApiGetFollowersYouKnowRequest

func (*UserListAPIService) GetFollowersYouKnowExecute ¶

Execute executes the request

@return GetFollowers200Response

func (*UserListAPIService) GetFollowing ¶

func (a *UserListAPIService) GetFollowing(ctx context.Context, pathQueryId string) ApiGetFollowingRequest

GetFollowing Method for GetFollowing

get user list of following

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param pathQueryId
@return ApiGetFollowingRequest

func (*UserListAPIService) GetFollowingExecute ¶

Execute executes the request

@return GetFollowers200Response

func (*UserListAPIService) GetRetweeters ¶

func (a *UserListAPIService) GetRetweeters(ctx context.Context, pathQueryId string) ApiGetRetweetersRequest

GetRetweeters Method for GetRetweeters

get tweet retweeters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param pathQueryId
@return ApiGetRetweetersRequest

func (*UserListAPIService) GetRetweetersExecute ¶

Execute executes the request

@return GetRetweeters200Response

type UserProfessional ¶

type UserProfessional struct {
	Category         []UserProfessionalCategory `json:"category"`
	ProfessionalType string                     `json:"professional_type"`
	RestId           string                     `json:"rest_id" validate:"regexp=^[0-9]+$"`
}

UserProfessional struct for UserProfessional

func NewUserProfessional ¶

func NewUserProfessional(category []UserProfessionalCategory, professionalType string, restId string) *UserProfessional

NewUserProfessional instantiates a new UserProfessional object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserProfessionalWithDefaults ¶

func NewUserProfessionalWithDefaults() *UserProfessional

NewUserProfessionalWithDefaults instantiates a new UserProfessional object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserProfessional) GetCategory ¶

func (o *UserProfessional) GetCategory() []UserProfessionalCategory

GetCategory returns the Category field value

func (*UserProfessional) GetCategoryOk ¶

func (o *UserProfessional) GetCategoryOk() ([]UserProfessionalCategory, bool)

GetCategoryOk returns a tuple with the Category field value and a boolean to check if the value has been set.

func (*UserProfessional) GetProfessionalType ¶

func (o *UserProfessional) GetProfessionalType() string

GetProfessionalType returns the ProfessionalType field value

func (*UserProfessional) GetProfessionalTypeOk ¶

func (o *UserProfessional) GetProfessionalTypeOk() (*string, bool)

GetProfessionalTypeOk returns a tuple with the ProfessionalType field value and a boolean to check if the value has been set.

func (*UserProfessional) GetRestId ¶

func (o *UserProfessional) GetRestId() string

GetRestId returns the RestId field value

func (*UserProfessional) GetRestIdOk ¶

func (o *UserProfessional) GetRestIdOk() (*string, bool)

GetRestIdOk returns a tuple with the RestId field value and a boolean to check if the value has been set.

func (UserProfessional) MarshalJSON ¶

func (o UserProfessional) MarshalJSON() ([]byte, error)

func (*UserProfessional) SetCategory ¶

func (o *UserProfessional) SetCategory(v []UserProfessionalCategory)

SetCategory sets field value

func (*UserProfessional) SetProfessionalType ¶

func (o *UserProfessional) SetProfessionalType(v string)

SetProfessionalType sets field value

func (*UserProfessional) SetRestId ¶

func (o *UserProfessional) SetRestId(v string)

SetRestId sets field value

func (UserProfessional) ToMap ¶

func (o UserProfessional) ToMap() (map[string]interface{}, error)

func (*UserProfessional) UnmarshalJSON ¶

func (o *UserProfessional) UnmarshalJSON(data []byte) (err error)

type UserProfessionalCategory ¶

type UserProfessionalCategory struct {
	IconName string `json:"icon_name"`
	Id       int32  `json:"id"`
	Name     string `json:"name"`
}

UserProfessionalCategory struct for UserProfessionalCategory

func NewUserProfessionalCategory ¶

func NewUserProfessionalCategory(iconName string, id int32, name string) *UserProfessionalCategory

NewUserProfessionalCategory instantiates a new UserProfessionalCategory object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserProfessionalCategoryWithDefaults ¶

func NewUserProfessionalCategoryWithDefaults() *UserProfessionalCategory

NewUserProfessionalCategoryWithDefaults instantiates a new UserProfessionalCategory object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserProfessionalCategory) GetIconName ¶

func (o *UserProfessionalCategory) GetIconName() string

GetIconName returns the IconName field value

func (*UserProfessionalCategory) GetIconNameOk ¶

func (o *UserProfessionalCategory) GetIconNameOk() (*string, bool)

GetIconNameOk returns a tuple with the IconName field value and a boolean to check if the value has been set.

func (*UserProfessionalCategory) GetId ¶

func (o *UserProfessionalCategory) GetId() int32

GetId returns the Id field value

func (*UserProfessionalCategory) GetIdOk ¶

func (o *UserProfessionalCategory) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*UserProfessionalCategory) GetName ¶

func (o *UserProfessionalCategory) GetName() string

GetName returns the Name field value

func (*UserProfessionalCategory) GetNameOk ¶

func (o *UserProfessionalCategory) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (UserProfessionalCategory) MarshalJSON ¶

func (o UserProfessionalCategory) MarshalJSON() ([]byte, error)

func (*UserProfessionalCategory) SetIconName ¶

func (o *UserProfessionalCategory) SetIconName(v string)

SetIconName sets field value

func (*UserProfessionalCategory) SetId ¶

func (o *UserProfessionalCategory) SetId(v int32)

SetId sets field value

func (*UserProfessionalCategory) SetName ¶

func (o *UserProfessionalCategory) SetName(v string)

SetName sets field value

func (UserProfessionalCategory) ToMap ¶

func (o UserProfessionalCategory) ToMap() (map[string]interface{}, error)

func (*UserProfessionalCategory) UnmarshalJSON ¶

func (o *UserProfessionalCategory) UnmarshalJSON(data []byte) (err error)

type UserResponse ¶

type UserResponse struct {
	Data UserResponseData `json:"data"`
}

UserResponse struct for UserResponse

func NewUserResponse ¶

func NewUserResponse(data UserResponseData) *UserResponse

NewUserResponse instantiates a new UserResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserResponseWithDefaults ¶

func NewUserResponseWithDefaults() *UserResponse

NewUserResponseWithDefaults instantiates a new UserResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserResponse) GetData ¶

func (o *UserResponse) GetData() UserResponseData

GetData returns the Data field value

func (*UserResponse) GetDataOk ¶

func (o *UserResponse) GetDataOk() (*UserResponseData, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (UserResponse) MarshalJSON ¶

func (o UserResponse) MarshalJSON() ([]byte, error)

func (*UserResponse) SetData ¶

func (o *UserResponse) SetData(v UserResponseData)

SetData sets field value

func (UserResponse) ToMap ¶

func (o UserResponse) ToMap() (map[string]interface{}, error)

func (*UserResponse) UnmarshalJSON ¶

func (o *UserResponse) UnmarshalJSON(data []byte) (err error)

type UserResponseData ¶

type UserResponseData struct {
	User *UserResults `json:"user,omitempty"`
}

UserResponseData struct for UserResponseData

func NewUserResponseData ¶

func NewUserResponseData() *UserResponseData

NewUserResponseData instantiates a new UserResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserResponseDataWithDefaults ¶

func NewUserResponseDataWithDefaults() *UserResponseData

NewUserResponseDataWithDefaults instantiates a new UserResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserResponseData) GetUser ¶

func (o *UserResponseData) GetUser() UserResults

GetUser returns the User field value if set, zero value otherwise.

func (*UserResponseData) GetUserOk ¶

func (o *UserResponseData) GetUserOk() (*UserResults, 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 (*UserResponseData) HasUser ¶

func (o *UserResponseData) HasUser() bool

HasUser returns a boolean if a field has been set.

func (UserResponseData) MarshalJSON ¶

func (o UserResponseData) MarshalJSON() ([]byte, error)

func (*UserResponseData) SetUser ¶

func (o *UserResponseData) SetUser(v UserResults)

SetUser gets a reference to the given UserResults and assigns it to the User field.

func (UserResponseData) ToMap ¶

func (o UserResponseData) ToMap() (map[string]interface{}, error)

type UserResultByScreenName ¶

type UserResultByScreenName struct {
	Id     string                       `json:"id" validate:"regexp=^([A-Za-z0-9+\\/]{4})*([A-Za-z0-9+\\/]{3}=|[A-Za-z0-9+\\/]{2}==)?$"`
	Result UserResultByScreenNameResult `json:"result"`
}

UserResultByScreenName struct for UserResultByScreenName

func NewUserResultByScreenName ¶

func NewUserResultByScreenName(id string, result UserResultByScreenNameResult) *UserResultByScreenName

NewUserResultByScreenName instantiates a new UserResultByScreenName object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserResultByScreenNameWithDefaults ¶

func NewUserResultByScreenNameWithDefaults() *UserResultByScreenName

NewUserResultByScreenNameWithDefaults instantiates a new UserResultByScreenName object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserResultByScreenName) GetId ¶

func (o *UserResultByScreenName) GetId() string

GetId returns the Id field value

func (*UserResultByScreenName) GetIdOk ¶

func (o *UserResultByScreenName) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*UserResultByScreenName) GetResult ¶

GetResult returns the Result field value

func (*UserResultByScreenName) GetResultOk ¶

GetResultOk returns a tuple with the Result field value and a boolean to check if the value has been set.

func (UserResultByScreenName) MarshalJSON ¶

func (o UserResultByScreenName) MarshalJSON() ([]byte, error)

func (*UserResultByScreenName) SetId ¶

func (o *UserResultByScreenName) SetId(v string)

SetId sets field value

func (*UserResultByScreenName) SetResult ¶

SetResult sets field value

func (UserResultByScreenName) ToMap ¶

func (o UserResultByScreenName) ToMap() (map[string]interface{}, error)

func (*UserResultByScreenName) UnmarshalJSON ¶

func (o *UserResultByScreenName) UnmarshalJSON(data []byte) (err error)

type UserResultByScreenNameLegacy ¶

type UserResultByScreenNameLegacy struct {
	BlockedBy  *bool   `json:"blocked_by,omitempty"`
	Blocking   *bool   `json:"blocking,omitempty"`
	FollowedBy *bool   `json:"followed_by,omitempty"`
	Following  *bool   `json:"following,omitempty"`
	Name       *string `json:"name,omitempty"`
	Protected  *bool   `json:"protected,omitempty"`
	ScreenName *string `json:"screen_name,omitempty"`
}

UserResultByScreenNameLegacy struct for UserResultByScreenNameLegacy

func NewUserResultByScreenNameLegacy ¶

func NewUserResultByScreenNameLegacy() *UserResultByScreenNameLegacy

NewUserResultByScreenNameLegacy instantiates a new UserResultByScreenNameLegacy object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserResultByScreenNameLegacyWithDefaults ¶

func NewUserResultByScreenNameLegacyWithDefaults() *UserResultByScreenNameLegacy

NewUserResultByScreenNameLegacyWithDefaults instantiates a new UserResultByScreenNameLegacy object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserResultByScreenNameLegacy) GetBlockedBy ¶

func (o *UserResultByScreenNameLegacy) GetBlockedBy() bool

GetBlockedBy returns the BlockedBy field value if set, zero value otherwise.

func (*UserResultByScreenNameLegacy) GetBlockedByOk ¶

func (o *UserResultByScreenNameLegacy) GetBlockedByOk() (*bool, bool)

GetBlockedByOk returns a tuple with the BlockedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserResultByScreenNameLegacy) GetBlocking ¶

func (o *UserResultByScreenNameLegacy) GetBlocking() bool

GetBlocking returns the Blocking field value if set, zero value otherwise.

func (*UserResultByScreenNameLegacy) GetBlockingOk ¶

func (o *UserResultByScreenNameLegacy) GetBlockingOk() (*bool, bool)

GetBlockingOk returns a tuple with the Blocking field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserResultByScreenNameLegacy) GetFollowedBy ¶

func (o *UserResultByScreenNameLegacy) GetFollowedBy() bool

GetFollowedBy returns the FollowedBy field value if set, zero value otherwise.

func (*UserResultByScreenNameLegacy) GetFollowedByOk ¶

func (o *UserResultByScreenNameLegacy) GetFollowedByOk() (*bool, bool)

GetFollowedByOk returns a tuple with the FollowedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserResultByScreenNameLegacy) GetFollowing ¶

func (o *UserResultByScreenNameLegacy) GetFollowing() bool

GetFollowing returns the Following field value if set, zero value otherwise.

func (*UserResultByScreenNameLegacy) GetFollowingOk ¶

func (o *UserResultByScreenNameLegacy) GetFollowingOk() (*bool, bool)

GetFollowingOk returns a tuple with the Following field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserResultByScreenNameLegacy) GetName ¶

func (o *UserResultByScreenNameLegacy) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*UserResultByScreenNameLegacy) GetNameOk ¶

func (o *UserResultByScreenNameLegacy) 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 (*UserResultByScreenNameLegacy) GetProtected ¶

func (o *UserResultByScreenNameLegacy) GetProtected() bool

GetProtected returns the Protected field value if set, zero value otherwise.

func (*UserResultByScreenNameLegacy) GetProtectedOk ¶

func (o *UserResultByScreenNameLegacy) GetProtectedOk() (*bool, bool)

GetProtectedOk returns a tuple with the Protected field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserResultByScreenNameLegacy) GetScreenName ¶

func (o *UserResultByScreenNameLegacy) GetScreenName() string

GetScreenName returns the ScreenName field value if set, zero value otherwise.

func (*UserResultByScreenNameLegacy) GetScreenNameOk ¶

func (o *UserResultByScreenNameLegacy) GetScreenNameOk() (*string, bool)

GetScreenNameOk returns a tuple with the ScreenName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserResultByScreenNameLegacy) HasBlockedBy ¶

func (o *UserResultByScreenNameLegacy) HasBlockedBy() bool

HasBlockedBy returns a boolean if a field has been set.

func (*UserResultByScreenNameLegacy) HasBlocking ¶

func (o *UserResultByScreenNameLegacy) HasBlocking() bool

HasBlocking returns a boolean if a field has been set.

func (*UserResultByScreenNameLegacy) HasFollowedBy ¶

func (o *UserResultByScreenNameLegacy) HasFollowedBy() bool

HasFollowedBy returns a boolean if a field has been set.

func (*UserResultByScreenNameLegacy) HasFollowing ¶

func (o *UserResultByScreenNameLegacy) HasFollowing() bool

HasFollowing returns a boolean if a field has been set.

func (*UserResultByScreenNameLegacy) HasName ¶

func (o *UserResultByScreenNameLegacy) HasName() bool

HasName returns a boolean if a field has been set.

func (*UserResultByScreenNameLegacy) HasProtected ¶

func (o *UserResultByScreenNameLegacy) HasProtected() bool

HasProtected returns a boolean if a field has been set.

func (*UserResultByScreenNameLegacy) HasScreenName ¶

func (o *UserResultByScreenNameLegacy) HasScreenName() bool

HasScreenName returns a boolean if a field has been set.

func (UserResultByScreenNameLegacy) MarshalJSON ¶

func (o UserResultByScreenNameLegacy) MarshalJSON() ([]byte, error)

func (*UserResultByScreenNameLegacy) SetBlockedBy ¶

func (o *UserResultByScreenNameLegacy) SetBlockedBy(v bool)

SetBlockedBy gets a reference to the given bool and assigns it to the BlockedBy field.

func (*UserResultByScreenNameLegacy) SetBlocking ¶

func (o *UserResultByScreenNameLegacy) SetBlocking(v bool)

SetBlocking gets a reference to the given bool and assigns it to the Blocking field.

func (*UserResultByScreenNameLegacy) SetFollowedBy ¶

func (o *UserResultByScreenNameLegacy) SetFollowedBy(v bool)

SetFollowedBy gets a reference to the given bool and assigns it to the FollowedBy field.

func (*UserResultByScreenNameLegacy) SetFollowing ¶

func (o *UserResultByScreenNameLegacy) SetFollowing(v bool)

SetFollowing gets a reference to the given bool and assigns it to the Following field.

func (*UserResultByScreenNameLegacy) SetName ¶

func (o *UserResultByScreenNameLegacy) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*UserResultByScreenNameLegacy) SetProtected ¶

func (o *UserResultByScreenNameLegacy) SetProtected(v bool)

SetProtected gets a reference to the given bool and assigns it to the Protected field.

func (*UserResultByScreenNameLegacy) SetScreenName ¶

func (o *UserResultByScreenNameLegacy) SetScreenName(v string)

SetScreenName gets a reference to the given string and assigns it to the ScreenName field.

func (UserResultByScreenNameLegacy) ToMap ¶

func (o UserResultByScreenNameLegacy) ToMap() (map[string]interface{}, error)

type UserResultByScreenNameResult ¶

type UserResultByScreenNameResult struct {
	Typename       TypeName                     `json:"__typename"`
	Id             string                       `json:"id" validate:"regexp=^[0-9a-zA-Z=]+$"`
	Legacy         UserResultByScreenNameLegacy `json:"legacy"`
	Profilemodules map[string]interface{}       `json:"profilemodules"`
	RestId         string                       `json:"rest_id" validate:"regexp=^[0-9]+$"`
}

UserResultByScreenNameResult struct for UserResultByScreenNameResult

func NewUserResultByScreenNameResult ¶

func NewUserResultByScreenNameResult(typename TypeName, id string, legacy UserResultByScreenNameLegacy, profilemodules map[string]interface{}, restId string) *UserResultByScreenNameResult

NewUserResultByScreenNameResult instantiates a new UserResultByScreenNameResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserResultByScreenNameResultWithDefaults ¶

func NewUserResultByScreenNameResultWithDefaults() *UserResultByScreenNameResult

NewUserResultByScreenNameResultWithDefaults instantiates a new UserResultByScreenNameResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserResultByScreenNameResult) GetId ¶

GetId returns the Id field value

func (*UserResultByScreenNameResult) GetIdOk ¶

func (o *UserResultByScreenNameResult) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*UserResultByScreenNameResult) GetLegacy ¶

GetLegacy returns the Legacy field value

func (*UserResultByScreenNameResult) GetLegacyOk ¶

GetLegacyOk returns a tuple with the Legacy field value and a boolean to check if the value has been set.

func (*UserResultByScreenNameResult) GetProfilemodules ¶

func (o *UserResultByScreenNameResult) GetProfilemodules() map[string]interface{}

GetProfilemodules returns the Profilemodules field value

func (*UserResultByScreenNameResult) GetProfilemodulesOk ¶

func (o *UserResultByScreenNameResult) GetProfilemodulesOk() (map[string]interface{}, bool)

GetProfilemodulesOk returns a tuple with the Profilemodules field value and a boolean to check if the value has been set.

func (*UserResultByScreenNameResult) GetRestId ¶

func (o *UserResultByScreenNameResult) GetRestId() string

GetRestId returns the RestId field value

func (*UserResultByScreenNameResult) GetRestIdOk ¶

func (o *UserResultByScreenNameResult) GetRestIdOk() (*string, bool)

GetRestIdOk returns a tuple with the RestId field value and a boolean to check if the value has been set.

func (*UserResultByScreenNameResult) GetTypename ¶

func (o *UserResultByScreenNameResult) GetTypename() TypeName

GetTypename returns the Typename field value

func (*UserResultByScreenNameResult) GetTypenameOk ¶

func (o *UserResultByScreenNameResult) GetTypenameOk() (*TypeName, bool)

GetTypenameOk returns a tuple with the Typename field value and a boolean to check if the value has been set.

func (UserResultByScreenNameResult) MarshalJSON ¶

func (o UserResultByScreenNameResult) MarshalJSON() ([]byte, error)

func (*UserResultByScreenNameResult) SetId ¶

SetId sets field value

func (*UserResultByScreenNameResult) SetLegacy ¶

SetLegacy sets field value

func (*UserResultByScreenNameResult) SetProfilemodules ¶

func (o *UserResultByScreenNameResult) SetProfilemodules(v map[string]interface{})

SetProfilemodules sets field value

func (*UserResultByScreenNameResult) SetRestId ¶

func (o *UserResultByScreenNameResult) SetRestId(v string)

SetRestId sets field value

func (*UserResultByScreenNameResult) SetTypename ¶

func (o *UserResultByScreenNameResult) SetTypename(v TypeName)

SetTypename sets field value

func (UserResultByScreenNameResult) ToMap ¶

func (o UserResultByScreenNameResult) ToMap() (map[string]interface{}, error)

func (*UserResultByScreenNameResult) UnmarshalJSON ¶

func (o *UserResultByScreenNameResult) UnmarshalJSON(data []byte) (err error)

type UserResultCore ¶

type UserResultCore struct {
	UserResults UserResults `json:"user_results"`
}

UserResultCore struct for UserResultCore

func NewUserResultCore ¶

func NewUserResultCore(userResults UserResults) *UserResultCore

NewUserResultCore instantiates a new UserResultCore object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserResultCoreWithDefaults ¶

func NewUserResultCoreWithDefaults() *UserResultCore

NewUserResultCoreWithDefaults instantiates a new UserResultCore object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserResultCore) GetUserResults ¶

func (o *UserResultCore) GetUserResults() UserResults

GetUserResults returns the UserResults field value

func (*UserResultCore) GetUserResultsOk ¶

func (o *UserResultCore) GetUserResultsOk() (*UserResults, bool)

GetUserResultsOk returns a tuple with the UserResults field value and a boolean to check if the value has been set.

func (UserResultCore) MarshalJSON ¶

func (o UserResultCore) MarshalJSON() ([]byte, error)

func (*UserResultCore) SetUserResults ¶

func (o *UserResultCore) SetUserResults(v UserResults)

SetUserResults sets field value

func (UserResultCore) ToMap ¶

func (o UserResultCore) ToMap() (map[string]interface{}, error)

func (*UserResultCore) UnmarshalJSON ¶

func (o *UserResultCore) UnmarshalJSON(data []byte) (err error)

type UserResults ¶

type UserResults struct {
	Result *UserUnion `json:"result,omitempty"`
}

UserResults struct for UserResults

func NewUserResults ¶

func NewUserResults() *UserResults

NewUserResults instantiates a new UserResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserResultsWithDefaults ¶

func NewUserResultsWithDefaults() *UserResults

NewUserResultsWithDefaults instantiates a new UserResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserResults) GetResult ¶

func (o *UserResults) GetResult() UserUnion

GetResult returns the Result field value if set, zero value otherwise.

func (*UserResults) GetResultOk ¶

func (o *UserResults) GetResultOk() (*UserUnion, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserResults) HasResult ¶

func (o *UserResults) HasResult() bool

HasResult returns a boolean if a field has been set.

func (UserResults) MarshalJSON ¶

func (o UserResults) MarshalJSON() ([]byte, error)

func (*UserResults) SetResult ¶

func (o *UserResults) SetResult(v UserUnion)

SetResult gets a reference to the given UserUnion and assigns it to the Result field.

func (UserResults) ToMap ¶

func (o UserResults) ToMap() (map[string]interface{}, error)

type UserTipJarSettings ¶

type UserTipJarSettings struct {
	BandcampHandle *string `json:"bandcamp_handle,omitempty"`
	BitcoinHandle  *string `json:"bitcoin_handle,omitempty"`
	CashAppHandle  *string `json:"cash_app_handle,omitempty"`
	EthereumHandle *string `json:"ethereum_handle,omitempty"`
	GofundmeHandle *string `json:"gofundme_handle,omitempty"`
	IsEnabled      *bool   `json:"is_enabled,omitempty"`
	PatreonHandle  *string `json:"patreon_handle,omitempty"`
	VenmoHandle    *string `json:"venmo_handle,omitempty"`
}

UserTipJarSettings struct for UserTipJarSettings

func NewUserTipJarSettings ¶

func NewUserTipJarSettings() *UserTipJarSettings

NewUserTipJarSettings instantiates a new UserTipJarSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserTipJarSettingsWithDefaults ¶

func NewUserTipJarSettingsWithDefaults() *UserTipJarSettings

NewUserTipJarSettingsWithDefaults instantiates a new UserTipJarSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserTipJarSettings) GetBandcampHandle ¶

func (o *UserTipJarSettings) GetBandcampHandle() string

GetBandcampHandle returns the BandcampHandle field value if set, zero value otherwise.

func (*UserTipJarSettings) GetBandcampHandleOk ¶

func (o *UserTipJarSettings) GetBandcampHandleOk() (*string, bool)

GetBandcampHandleOk returns a tuple with the BandcampHandle field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserTipJarSettings) GetBitcoinHandle ¶

func (o *UserTipJarSettings) GetBitcoinHandle() string

GetBitcoinHandle returns the BitcoinHandle field value if set, zero value otherwise.

func (*UserTipJarSettings) GetBitcoinHandleOk ¶

func (o *UserTipJarSettings) GetBitcoinHandleOk() (*string, bool)

GetBitcoinHandleOk returns a tuple with the BitcoinHandle field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserTipJarSettings) GetCashAppHandle ¶

func (o *UserTipJarSettings) GetCashAppHandle() string

GetCashAppHandle returns the CashAppHandle field value if set, zero value otherwise.

func (*UserTipJarSettings) GetCashAppHandleOk ¶

func (o *UserTipJarSettings) GetCashAppHandleOk() (*string, bool)

GetCashAppHandleOk returns a tuple with the CashAppHandle field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserTipJarSettings) GetEthereumHandle ¶

func (o *UserTipJarSettings) GetEthereumHandle() string

GetEthereumHandle returns the EthereumHandle field value if set, zero value otherwise.

func (*UserTipJarSettings) GetEthereumHandleOk ¶

func (o *UserTipJarSettings) GetEthereumHandleOk() (*string, bool)

GetEthereumHandleOk returns a tuple with the EthereumHandle field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserTipJarSettings) GetGofundmeHandle ¶

func (o *UserTipJarSettings) GetGofundmeHandle() string

GetGofundmeHandle returns the GofundmeHandle field value if set, zero value otherwise.

func (*UserTipJarSettings) GetGofundmeHandleOk ¶

func (o *UserTipJarSettings) GetGofundmeHandleOk() (*string, bool)

GetGofundmeHandleOk returns a tuple with the GofundmeHandle field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserTipJarSettings) GetIsEnabled ¶

func (o *UserTipJarSettings) GetIsEnabled() bool

GetIsEnabled returns the IsEnabled field value if set, zero value otherwise.

func (*UserTipJarSettings) GetIsEnabledOk ¶

func (o *UserTipJarSettings) GetIsEnabledOk() (*bool, bool)

GetIsEnabledOk returns a tuple with the IsEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserTipJarSettings) GetPatreonHandle ¶

func (o *UserTipJarSettings) GetPatreonHandle() string

GetPatreonHandle returns the PatreonHandle field value if set, zero value otherwise.

func (*UserTipJarSettings) GetPatreonHandleOk ¶

func (o *UserTipJarSettings) GetPatreonHandleOk() (*string, bool)

GetPatreonHandleOk returns a tuple with the PatreonHandle field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserTipJarSettings) GetVenmoHandle ¶

func (o *UserTipJarSettings) GetVenmoHandle() string

GetVenmoHandle returns the VenmoHandle field value if set, zero value otherwise.

func (*UserTipJarSettings) GetVenmoHandleOk ¶

func (o *UserTipJarSettings) GetVenmoHandleOk() (*string, bool)

GetVenmoHandleOk returns a tuple with the VenmoHandle field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserTipJarSettings) HasBandcampHandle ¶

func (o *UserTipJarSettings) HasBandcampHandle() bool

HasBandcampHandle returns a boolean if a field has been set.

func (*UserTipJarSettings) HasBitcoinHandle ¶

func (o *UserTipJarSettings) HasBitcoinHandle() bool

HasBitcoinHandle returns a boolean if a field has been set.

func (*UserTipJarSettings) HasCashAppHandle ¶

func (o *UserTipJarSettings) HasCashAppHandle() bool

HasCashAppHandle returns a boolean if a field has been set.

func (*UserTipJarSettings) HasEthereumHandle ¶

func (o *UserTipJarSettings) HasEthereumHandle() bool

HasEthereumHandle returns a boolean if a field has been set.

func (*UserTipJarSettings) HasGofundmeHandle ¶

func (o *UserTipJarSettings) HasGofundmeHandle() bool

HasGofundmeHandle returns a boolean if a field has been set.

func (*UserTipJarSettings) HasIsEnabled ¶

func (o *UserTipJarSettings) HasIsEnabled() bool

HasIsEnabled returns a boolean if a field has been set.

func (*UserTipJarSettings) HasPatreonHandle ¶

func (o *UserTipJarSettings) HasPatreonHandle() bool

HasPatreonHandle returns a boolean if a field has been set.

func (*UserTipJarSettings) HasVenmoHandle ¶

func (o *UserTipJarSettings) HasVenmoHandle() bool

HasVenmoHandle returns a boolean if a field has been set.

func (UserTipJarSettings) MarshalJSON ¶

func (o UserTipJarSettings) MarshalJSON() ([]byte, error)

func (*UserTipJarSettings) SetBandcampHandle ¶

func (o *UserTipJarSettings) SetBandcampHandle(v string)

SetBandcampHandle gets a reference to the given string and assigns it to the BandcampHandle field.

func (*UserTipJarSettings) SetBitcoinHandle ¶

func (o *UserTipJarSettings) SetBitcoinHandle(v string)

SetBitcoinHandle gets a reference to the given string and assigns it to the BitcoinHandle field.

func (*UserTipJarSettings) SetCashAppHandle ¶

func (o *UserTipJarSettings) SetCashAppHandle(v string)

SetCashAppHandle gets a reference to the given string and assigns it to the CashAppHandle field.

func (*UserTipJarSettings) SetEthereumHandle ¶

func (o *UserTipJarSettings) SetEthereumHandle(v string)

SetEthereumHandle gets a reference to the given string and assigns it to the EthereumHandle field.

func (*UserTipJarSettings) SetGofundmeHandle ¶

func (o *UserTipJarSettings) SetGofundmeHandle(v string)

SetGofundmeHandle gets a reference to the given string and assigns it to the GofundmeHandle field.

func (*UserTipJarSettings) SetIsEnabled ¶

func (o *UserTipJarSettings) SetIsEnabled(v bool)

SetIsEnabled gets a reference to the given bool and assigns it to the IsEnabled field.

func (*UserTipJarSettings) SetPatreonHandle ¶

func (o *UserTipJarSettings) SetPatreonHandle(v string)

SetPatreonHandle gets a reference to the given string and assigns it to the PatreonHandle field.

func (*UserTipJarSettings) SetVenmoHandle ¶

func (o *UserTipJarSettings) SetVenmoHandle(v string)

SetVenmoHandle gets a reference to the given string and assigns it to the VenmoHandle field.

func (UserTipJarSettings) ToMap ¶

func (o UserTipJarSettings) ToMap() (map[string]interface{}, error)

type UserTweetsData ¶

type UserTweetsData struct {
	User UserTweetsUser `json:"user"`
}

UserTweetsData struct for UserTweetsData

func NewUserTweetsData ¶

func NewUserTweetsData(user UserTweetsUser) *UserTweetsData

NewUserTweetsData instantiates a new UserTweetsData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserTweetsDataWithDefaults ¶

func NewUserTweetsDataWithDefaults() *UserTweetsData

NewUserTweetsDataWithDefaults instantiates a new UserTweetsData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserTweetsData) GetUser ¶

func (o *UserTweetsData) GetUser() UserTweetsUser

GetUser returns the User field value

func (*UserTweetsData) GetUserOk ¶

func (o *UserTweetsData) GetUserOk() (*UserTweetsUser, bool)

GetUserOk returns a tuple with the User field value and a boolean to check if the value has been set.

func (UserTweetsData) MarshalJSON ¶

func (o UserTweetsData) MarshalJSON() ([]byte, error)

func (*UserTweetsData) SetUser ¶

func (o *UserTweetsData) SetUser(v UserTweetsUser)

SetUser sets field value

func (UserTweetsData) ToMap ¶

func (o UserTweetsData) ToMap() (map[string]interface{}, error)

func (*UserTweetsData) UnmarshalJSON ¶

func (o *UserTweetsData) UnmarshalJSON(data []byte) (err error)

type UserTweetsResponse ¶

type UserTweetsResponse struct {
	Data UserTweetsData `json:"data"`
}

UserTweetsResponse struct for UserTweetsResponse

func NewUserTweetsResponse ¶

func NewUserTweetsResponse(data UserTweetsData) *UserTweetsResponse

NewUserTweetsResponse instantiates a new UserTweetsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserTweetsResponseWithDefaults ¶

func NewUserTweetsResponseWithDefaults() *UserTweetsResponse

NewUserTweetsResponseWithDefaults instantiates a new UserTweetsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserTweetsResponse) GetData ¶

func (o *UserTweetsResponse) GetData() UserTweetsData

GetData returns the Data field value

func (*UserTweetsResponse) GetDataOk ¶

func (o *UserTweetsResponse) GetDataOk() (*UserTweetsData, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (UserTweetsResponse) MarshalJSON ¶

func (o UserTweetsResponse) MarshalJSON() ([]byte, error)

func (*UserTweetsResponse) SetData ¶

func (o *UserTweetsResponse) SetData(v UserTweetsData)

SetData sets field value

func (UserTweetsResponse) ToMap ¶

func (o UserTweetsResponse) ToMap() (map[string]interface{}, error)

func (*UserTweetsResponse) UnmarshalJSON ¶

func (o *UserTweetsResponse) UnmarshalJSON(data []byte) (err error)

type UserTweetsResult ¶

type UserTweetsResult struct {
	Typename   TypeName   `json:"__typename"`
	TimelineV2 TimelineV2 `json:"timeline_v2"`
}

UserTweetsResult struct for UserTweetsResult

func NewUserTweetsResult ¶

func NewUserTweetsResult(typename TypeName, timelineV2 TimelineV2) *UserTweetsResult

NewUserTweetsResult instantiates a new UserTweetsResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserTweetsResultWithDefaults ¶

func NewUserTweetsResultWithDefaults() *UserTweetsResult

NewUserTweetsResultWithDefaults instantiates a new UserTweetsResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserTweetsResult) GetTimelineV2 ¶

func (o *UserTweetsResult) GetTimelineV2() TimelineV2

GetTimelineV2 returns the TimelineV2 field value

func (*UserTweetsResult) GetTimelineV2Ok ¶

func (o *UserTweetsResult) GetTimelineV2Ok() (*TimelineV2, bool)

GetTimelineV2Ok returns a tuple with the TimelineV2 field value and a boolean to check if the value has been set.

func (*UserTweetsResult) GetTypename ¶

func (o *UserTweetsResult) GetTypename() TypeName

GetTypename returns the Typename field value

func (*UserTweetsResult) GetTypenameOk ¶

func (o *UserTweetsResult) GetTypenameOk() (*TypeName, bool)

GetTypenameOk returns a tuple with the Typename field value and a boolean to check if the value has been set.

func (UserTweetsResult) MarshalJSON ¶

func (o UserTweetsResult) MarshalJSON() ([]byte, error)

func (*UserTweetsResult) SetTimelineV2 ¶

func (o *UserTweetsResult) SetTimelineV2(v TimelineV2)

SetTimelineV2 sets field value

func (*UserTweetsResult) SetTypename ¶

func (o *UserTweetsResult) SetTypename(v TypeName)

SetTypename sets field value

func (UserTweetsResult) ToMap ¶

func (o UserTweetsResult) ToMap() (map[string]interface{}, error)

func (*UserTweetsResult) UnmarshalJSON ¶

func (o *UserTweetsResult) UnmarshalJSON(data []byte) (err error)

type UserTweetsUser ¶

type UserTweetsUser struct {
	Result UserTweetsResult `json:"result"`
}

UserTweetsUser struct for UserTweetsUser

func NewUserTweetsUser ¶

func NewUserTweetsUser(result UserTweetsResult) *UserTweetsUser

NewUserTweetsUser instantiates a new UserTweetsUser object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserTweetsUserWithDefaults ¶

func NewUserTweetsUserWithDefaults() *UserTweetsUser

NewUserTweetsUserWithDefaults instantiates a new UserTweetsUser object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserTweetsUser) GetResult ¶

func (o *UserTweetsUser) GetResult() UserTweetsResult

GetResult returns the Result field value

func (*UserTweetsUser) GetResultOk ¶

func (o *UserTweetsUser) GetResultOk() (*UserTweetsResult, bool)

GetResultOk returns a tuple with the Result field value and a boolean to check if the value has been set.

func (UserTweetsUser) MarshalJSON ¶

func (o UserTweetsUser) MarshalJSON() ([]byte, error)

func (*UserTweetsUser) SetResult ¶

func (o *UserTweetsUser) SetResult(v UserTweetsResult)

SetResult sets field value

func (UserTweetsUser) ToMap ¶

func (o UserTweetsUser) ToMap() (map[string]interface{}, error)

func (*UserTweetsUser) UnmarshalJSON ¶

func (o *UserTweetsUser) UnmarshalJSON(data []byte) (err error)

type UserUnavailable ¶

type UserUnavailable struct {
	Typename TypeName `json:"__typename"`
	Message  *string  `json:"message,omitempty"`
	Reason   string   `json:"reason"`
}

UserUnavailable struct for UserUnavailable

func NewUserUnavailable ¶

func NewUserUnavailable(typename TypeName, reason string) *UserUnavailable

NewUserUnavailable instantiates a new UserUnavailable object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserUnavailableWithDefaults ¶

func NewUserUnavailableWithDefaults() *UserUnavailable

NewUserUnavailableWithDefaults instantiates a new UserUnavailable object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserUnavailable) GetMessage ¶

func (o *UserUnavailable) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*UserUnavailable) GetMessageOk ¶

func (o *UserUnavailable) GetMessageOk() (*string, 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 (*UserUnavailable) GetReason ¶

func (o *UserUnavailable) GetReason() string

GetReason returns the Reason field value

func (*UserUnavailable) GetReasonOk ¶

func (o *UserUnavailable) GetReasonOk() (*string, bool)

GetReasonOk returns a tuple with the Reason field value and a boolean to check if the value has been set.

func (*UserUnavailable) GetTypename ¶

func (o *UserUnavailable) GetTypename() TypeName

GetTypename returns the Typename field value

func (*UserUnavailable) GetTypenameOk ¶

func (o *UserUnavailable) GetTypenameOk() (*TypeName, bool)

GetTypenameOk returns a tuple with the Typename field value and a boolean to check if the value has been set.

func (*UserUnavailable) HasMessage ¶

func (o *UserUnavailable) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (UserUnavailable) MarshalJSON ¶

func (o UserUnavailable) MarshalJSON() ([]byte, error)

func (*UserUnavailable) SetMessage ¶

func (o *UserUnavailable) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*UserUnavailable) SetReason ¶

func (o *UserUnavailable) SetReason(v string)

SetReason sets field value

func (*UserUnavailable) SetTypename ¶

func (o *UserUnavailable) SetTypename(v TypeName)

SetTypename sets field value

func (UserUnavailable) ToMap ¶

func (o UserUnavailable) ToMap() (map[string]interface{}, error)

func (*UserUnavailable) UnmarshalJSON ¶

func (o *UserUnavailable) UnmarshalJSON(data []byte) (err error)

type UserUnion ¶

type UserUnion struct {
	User            *User
	UserUnavailable *UserUnavailable
}

UserUnion - struct for UserUnion

func UserAsUserUnion ¶

func UserAsUserUnion(v *User) UserUnion

UserAsUserUnion is a convenience function that returns User wrapped in UserUnion

func UserUnavailableAsUserUnion ¶

func UserUnavailableAsUserUnion(v *UserUnavailable) UserUnion

UserUnavailableAsUserUnion is a convenience function that returns UserUnavailable wrapped in UserUnion

func (*UserUnion) GetActualInstance ¶

func (obj *UserUnion) GetActualInstance() interface{}

Get the actual instance

func (UserUnion) MarshalJSON ¶

func (src UserUnion) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UserUnion) UnmarshalJSON ¶

func (dst *UserUnion) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type UserValue ¶

type UserValue struct {
	IdStr string `json:"id_str" validate:"regexp=^[0-9]+$"`
}

UserValue struct for UserValue

func NewUserValue ¶

func NewUserValue(idStr string) *UserValue

NewUserValue instantiates a new UserValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserValueWithDefaults ¶

func NewUserValueWithDefaults() *UserValue

NewUserValueWithDefaults instantiates a new UserValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserValue) GetIdStr ¶

func (o *UserValue) GetIdStr() string

GetIdStr returns the IdStr field value

func (*UserValue) GetIdStrOk ¶

func (o *UserValue) GetIdStrOk() (*string, bool)

GetIdStrOk returns a tuple with the IdStr field value and a boolean to check if the value has been set.

func (UserValue) MarshalJSON ¶

func (o UserValue) MarshalJSON() ([]byte, error)

func (*UserValue) SetIdStr ¶

func (o *UserValue) SetIdStr(v string)

SetIdStr sets field value

func (UserValue) ToMap ¶

func (o UserValue) ToMap() (map[string]interface{}, error)

func (*UserValue) UnmarshalJSON ¶

func (o *UserValue) UnmarshalJSON(data []byte) (err error)

type UserVerificationInfo ¶

type UserVerificationInfo struct {
	IsIdentityVerified bool                        `json:"is_identity_verified"`
	Reason             *UserVerificationInfoReason `json:"reason,omitempty"`
}

UserVerificationInfo struct for UserVerificationInfo

func NewUserVerificationInfo ¶

func NewUserVerificationInfo(isIdentityVerified bool) *UserVerificationInfo

NewUserVerificationInfo instantiates a new UserVerificationInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserVerificationInfoWithDefaults ¶

func NewUserVerificationInfoWithDefaults() *UserVerificationInfo

NewUserVerificationInfoWithDefaults instantiates a new UserVerificationInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserVerificationInfo) GetIsIdentityVerified ¶

func (o *UserVerificationInfo) GetIsIdentityVerified() bool

GetIsIdentityVerified returns the IsIdentityVerified field value

func (*UserVerificationInfo) GetIsIdentityVerifiedOk ¶

func (o *UserVerificationInfo) GetIsIdentityVerifiedOk() (*bool, bool)

GetIsIdentityVerifiedOk returns a tuple with the IsIdentityVerified field value and a boolean to check if the value has been set.

func (*UserVerificationInfo) GetReason ¶

GetReason returns the Reason field value if set, zero value otherwise.

func (*UserVerificationInfo) GetReasonOk ¶

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 (*UserVerificationInfo) HasReason ¶

func (o *UserVerificationInfo) HasReason() bool

HasReason returns a boolean if a field has been set.

func (UserVerificationInfo) MarshalJSON ¶

func (o UserVerificationInfo) MarshalJSON() ([]byte, error)

func (*UserVerificationInfo) SetIsIdentityVerified ¶

func (o *UserVerificationInfo) SetIsIdentityVerified(v bool)

SetIsIdentityVerified sets field value

func (*UserVerificationInfo) SetReason ¶

SetReason gets a reference to the given UserVerificationInfoReason and assigns it to the Reason field.

func (UserVerificationInfo) ToMap ¶

func (o UserVerificationInfo) ToMap() (map[string]interface{}, error)

func (*UserVerificationInfo) UnmarshalJSON ¶

func (o *UserVerificationInfo) UnmarshalJSON(data []byte) (err error)

type UserVerificationInfoReason ¶

type UserVerificationInfoReason struct {
	Description          UserVerificationInfoReasonDescription `json:"description"`
	OverrideVerifiedYear int32                                 `json:"override_verified_year"`
	VerifiedSinceMsec    string                                `json:"verified_since_msec" validate:"regexp=^-?[0-9]+$"`
}

UserVerificationInfoReason struct for UserVerificationInfoReason

func NewUserVerificationInfoReason ¶

func NewUserVerificationInfoReason(description UserVerificationInfoReasonDescription, overrideVerifiedYear int32, verifiedSinceMsec string) *UserVerificationInfoReason

NewUserVerificationInfoReason instantiates a new UserVerificationInfoReason object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserVerificationInfoReasonWithDefaults ¶

func NewUserVerificationInfoReasonWithDefaults() *UserVerificationInfoReason

NewUserVerificationInfoReasonWithDefaults instantiates a new UserVerificationInfoReason object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserVerificationInfoReason) GetDescription ¶

GetDescription returns the Description field value

func (*UserVerificationInfoReason) GetDescriptionOk ¶

GetDescriptionOk returns a tuple with the Description field value and a boolean to check if the value has been set.

func (*UserVerificationInfoReason) GetOverrideVerifiedYear ¶

func (o *UserVerificationInfoReason) GetOverrideVerifiedYear() int32

GetOverrideVerifiedYear returns the OverrideVerifiedYear field value

func (*UserVerificationInfoReason) GetOverrideVerifiedYearOk ¶

func (o *UserVerificationInfoReason) GetOverrideVerifiedYearOk() (*int32, bool)

GetOverrideVerifiedYearOk returns a tuple with the OverrideVerifiedYear field value and a boolean to check if the value has been set.

func (*UserVerificationInfoReason) GetVerifiedSinceMsec ¶

func (o *UserVerificationInfoReason) GetVerifiedSinceMsec() string

GetVerifiedSinceMsec returns the VerifiedSinceMsec field value

func (*UserVerificationInfoReason) GetVerifiedSinceMsecOk ¶

func (o *UserVerificationInfoReason) GetVerifiedSinceMsecOk() (*string, bool)

GetVerifiedSinceMsecOk returns a tuple with the VerifiedSinceMsec field value and a boolean to check if the value has been set.

func (UserVerificationInfoReason) MarshalJSON ¶

func (o UserVerificationInfoReason) MarshalJSON() ([]byte, error)

func (*UserVerificationInfoReason) SetDescription ¶

SetDescription sets field value

func (*UserVerificationInfoReason) SetOverrideVerifiedYear ¶

func (o *UserVerificationInfoReason) SetOverrideVerifiedYear(v int32)

SetOverrideVerifiedYear sets field value

func (*UserVerificationInfoReason) SetVerifiedSinceMsec ¶

func (o *UserVerificationInfoReason) SetVerifiedSinceMsec(v string)

SetVerifiedSinceMsec sets field value

func (UserVerificationInfoReason) ToMap ¶

func (o UserVerificationInfoReason) ToMap() (map[string]interface{}, error)

func (*UserVerificationInfoReason) UnmarshalJSON ¶

func (o *UserVerificationInfoReason) UnmarshalJSON(data []byte) (err error)

type UserVerificationInfoReasonDescription ¶

type UserVerificationInfoReasonDescription struct {
	Entities []UserVerificationInfoReasonDescriptionEntities `json:"entities"`
	Text     string                                          `json:"text"`
}

UserVerificationInfoReasonDescription struct for UserVerificationInfoReasonDescription

func NewUserVerificationInfoReasonDescription ¶

func NewUserVerificationInfoReasonDescription(entities []UserVerificationInfoReasonDescriptionEntities, text string) *UserVerificationInfoReasonDescription

NewUserVerificationInfoReasonDescription instantiates a new UserVerificationInfoReasonDescription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserVerificationInfoReasonDescriptionWithDefaults ¶

func NewUserVerificationInfoReasonDescriptionWithDefaults() *UserVerificationInfoReasonDescription

NewUserVerificationInfoReasonDescriptionWithDefaults instantiates a new UserVerificationInfoReasonDescription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserVerificationInfoReasonDescription) GetEntities ¶

GetEntities returns the Entities field value

func (*UserVerificationInfoReasonDescription) GetEntitiesOk ¶

GetEntitiesOk returns a tuple with the Entities field value and a boolean to check if the value has been set.

func (*UserVerificationInfoReasonDescription) GetText ¶

GetText returns the Text field value

func (*UserVerificationInfoReasonDescription) GetTextOk ¶

GetTextOk returns a tuple with the Text field value and a boolean to check if the value has been set.

func (UserVerificationInfoReasonDescription) MarshalJSON ¶

func (o UserVerificationInfoReasonDescription) MarshalJSON() ([]byte, error)

func (*UserVerificationInfoReasonDescription) SetEntities ¶

SetEntities sets field value

func (*UserVerificationInfoReasonDescription) SetText ¶

SetText sets field value

func (UserVerificationInfoReasonDescription) ToMap ¶

func (o UserVerificationInfoReasonDescription) ToMap() (map[string]interface{}, error)

func (*UserVerificationInfoReasonDescription) UnmarshalJSON ¶

func (o *UserVerificationInfoReasonDescription) UnmarshalJSON(data []byte) (err error)

type UserVerificationInfoReasonDescriptionEntities ¶

type UserVerificationInfoReasonDescriptionEntities struct {
	FromIndex int32                                            `json:"from_index"`
	Ref       UserVerificationInfoReasonDescriptionEntitiesRef `json:"ref"`
	ToIndex   int32                                            `json:"to_index"`
}

UserVerificationInfoReasonDescriptionEntities struct for UserVerificationInfoReasonDescriptionEntities

func NewUserVerificationInfoReasonDescriptionEntities ¶

func NewUserVerificationInfoReasonDescriptionEntities(fromIndex int32, ref UserVerificationInfoReasonDescriptionEntitiesRef, toIndex int32) *UserVerificationInfoReasonDescriptionEntities

NewUserVerificationInfoReasonDescriptionEntities instantiates a new UserVerificationInfoReasonDescriptionEntities object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserVerificationInfoReasonDescriptionEntitiesWithDefaults ¶

func NewUserVerificationInfoReasonDescriptionEntitiesWithDefaults() *UserVerificationInfoReasonDescriptionEntities

NewUserVerificationInfoReasonDescriptionEntitiesWithDefaults instantiates a new UserVerificationInfoReasonDescriptionEntities object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserVerificationInfoReasonDescriptionEntities) GetFromIndex ¶

GetFromIndex returns the FromIndex field value

func (*UserVerificationInfoReasonDescriptionEntities) GetFromIndexOk ¶

GetFromIndexOk returns a tuple with the FromIndex field value and a boolean to check if the value has been set.

func (*UserVerificationInfoReasonDescriptionEntities) GetRef ¶

GetRef returns the Ref field value

func (*UserVerificationInfoReasonDescriptionEntities) GetRefOk ¶

GetRefOk returns a tuple with the Ref field value and a boolean to check if the value has been set.

func (*UserVerificationInfoReasonDescriptionEntities) GetToIndex ¶

GetToIndex returns the ToIndex field value

func (*UserVerificationInfoReasonDescriptionEntities) GetToIndexOk ¶

GetToIndexOk returns a tuple with the ToIndex field value and a boolean to check if the value has been set.

func (UserVerificationInfoReasonDescriptionEntities) MarshalJSON ¶

func (*UserVerificationInfoReasonDescriptionEntities) SetFromIndex ¶

SetFromIndex sets field value

func (*UserVerificationInfoReasonDescriptionEntities) SetRef ¶

SetRef sets field value

func (*UserVerificationInfoReasonDescriptionEntities) SetToIndex ¶

SetToIndex sets field value

func (UserVerificationInfoReasonDescriptionEntities) ToMap ¶

func (o UserVerificationInfoReasonDescriptionEntities) ToMap() (map[string]interface{}, error)

func (*UserVerificationInfoReasonDescriptionEntities) UnmarshalJSON ¶

func (o *UserVerificationInfoReasonDescriptionEntities) UnmarshalJSON(data []byte) (err error)

type UserVerificationInfoReasonDescriptionEntitiesRef ¶

type UserVerificationInfoReasonDescriptionEntitiesRef struct {
	Url     string `json:"url"`
	UrlType string `json:"url_type"`
}

UserVerificationInfoReasonDescriptionEntitiesRef struct for UserVerificationInfoReasonDescriptionEntitiesRef

func NewUserVerificationInfoReasonDescriptionEntitiesRef ¶

func NewUserVerificationInfoReasonDescriptionEntitiesRef(url string, urlType string) *UserVerificationInfoReasonDescriptionEntitiesRef

NewUserVerificationInfoReasonDescriptionEntitiesRef instantiates a new UserVerificationInfoReasonDescriptionEntitiesRef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserVerificationInfoReasonDescriptionEntitiesRefWithDefaults ¶

func NewUserVerificationInfoReasonDescriptionEntitiesRefWithDefaults() *UserVerificationInfoReasonDescriptionEntitiesRef

NewUserVerificationInfoReasonDescriptionEntitiesRefWithDefaults instantiates a new UserVerificationInfoReasonDescriptionEntitiesRef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserVerificationInfoReasonDescriptionEntitiesRef) GetUrl ¶

GetUrl returns the Url field value

func (*UserVerificationInfoReasonDescriptionEntitiesRef) GetUrlOk ¶

GetUrlOk returns a tuple with the Url field value and a boolean to check if the value has been set.

func (*UserVerificationInfoReasonDescriptionEntitiesRef) GetUrlType ¶

GetUrlType returns the UrlType field value

func (*UserVerificationInfoReasonDescriptionEntitiesRef) GetUrlTypeOk ¶

GetUrlTypeOk returns a tuple with the UrlType field value and a boolean to check if the value has been set.

func (UserVerificationInfoReasonDescriptionEntitiesRef) MarshalJSON ¶

func (*UserVerificationInfoReasonDescriptionEntitiesRef) SetUrl ¶

SetUrl sets field value

func (*UserVerificationInfoReasonDescriptionEntitiesRef) SetUrlType ¶

SetUrlType sets field value

func (UserVerificationInfoReasonDescriptionEntitiesRef) ToMap ¶

func (o UserVerificationInfoReasonDescriptionEntitiesRef) ToMap() (map[string]interface{}, error)

func (*UserVerificationInfoReasonDescriptionEntitiesRef) UnmarshalJSON ¶

func (o *UserVerificationInfoReasonDescriptionEntitiesRef) UnmarshalJSON(data []byte) (err error)

type UsersAPIService ¶

type UsersAPIService service

UsersAPIService UsersAPI service

func (*UsersAPIService) GetUsersByRestIds ¶

func (a *UsersAPIService) GetUsersByRestIds(ctx context.Context, pathQueryId string) ApiGetUsersByRestIdsRequest

GetUsersByRestIds Method for GetUsersByRestIds

get users by rest ids

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param pathQueryId
@return ApiGetUsersByRestIdsRequest

func (*UsersAPIService) GetUsersByRestIdsExecute ¶

Execute executes the request

@return GetUsersByRestIds200Response

type UsersResponse ¶

type UsersResponse struct {
	Data UsersResponseData `json:"data"`
}

UsersResponse struct for UsersResponse

func NewUsersResponse ¶

func NewUsersResponse(data UsersResponseData) *UsersResponse

NewUsersResponse instantiates a new UsersResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUsersResponseWithDefaults ¶

func NewUsersResponseWithDefaults() *UsersResponse

NewUsersResponseWithDefaults instantiates a new UsersResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UsersResponse) GetData ¶

func (o *UsersResponse) GetData() UsersResponseData

GetData returns the Data field value

func (*UsersResponse) GetDataOk ¶

func (o *UsersResponse) GetDataOk() (*UsersResponseData, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (UsersResponse) MarshalJSON ¶

func (o UsersResponse) MarshalJSON() ([]byte, error)

func (*UsersResponse) SetData ¶

func (o *UsersResponse) SetData(v UsersResponseData)

SetData sets field value

func (UsersResponse) ToMap ¶

func (o UsersResponse) ToMap() (map[string]interface{}, error)

func (*UsersResponse) UnmarshalJSON ¶

func (o *UsersResponse) UnmarshalJSON(data []byte) (err error)

type UsersResponseData ¶

type UsersResponseData struct {
	Users []UserResults `json:"users"`
}

UsersResponseData struct for UsersResponseData

func NewUsersResponseData ¶

func NewUsersResponseData(users []UserResults) *UsersResponseData

NewUsersResponseData instantiates a new UsersResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUsersResponseDataWithDefaults ¶

func NewUsersResponseDataWithDefaults() *UsersResponseData

NewUsersResponseDataWithDefaults instantiates a new UsersResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UsersResponseData) GetUsers ¶

func (o *UsersResponseData) GetUsers() []UserResults

GetUsers returns the Users field value

func (*UsersResponseData) GetUsersOk ¶

func (o *UsersResponseData) GetUsersOk() ([]UserResults, bool)

GetUsersOk returns a tuple with the Users field value and a boolean to check if the value has been set.

func (UsersResponseData) MarshalJSON ¶

func (o UsersResponseData) MarshalJSON() ([]byte, error)

func (*UsersResponseData) SetUsers ¶

func (o *UsersResponseData) SetUsers(v []UserResults)

SetUsers sets field value

func (UsersResponseData) ToMap ¶

func (o UsersResponseData) ToMap() (map[string]interface{}, error)

func (*UsersResponseData) UnmarshalJSON ¶

func (o *UsersResponseData) UnmarshalJSON(data []byte) (err error)

type V11GetAPIService ¶

type V11GetAPIService service

V11GetAPIService V11GetAPI service

func (*V11GetAPIService) GetFriendsFollowingList ¶

func (a *V11GetAPIService) GetFriendsFollowingList(ctx context.Context) ApiGetFriendsFollowingListRequest

GetFriendsFollowingList Method for GetFriendsFollowingList

get friends following list

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetFriendsFollowingListRequest

func (*V11GetAPIService) GetFriendsFollowingListExecute ¶

func (a *V11GetAPIService) GetFriendsFollowingListExecute(r ApiGetFriendsFollowingListRequest) (*http.Response, error)

Execute executes the request

func (*V11GetAPIService) GetSearchTypeahead ¶

func (a *V11GetAPIService) GetSearchTypeahead(ctx context.Context) ApiGetSearchTypeaheadRequest

GetSearchTypeahead Method for GetSearchTypeahead

get search typeahead

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetSearchTypeaheadRequest

func (*V11GetAPIService) GetSearchTypeaheadExecute ¶

func (a *V11GetAPIService) GetSearchTypeaheadExecute(r ApiGetSearchTypeaheadRequest) (*http.Response, error)

Execute executes the request

type V11PostAPIService ¶

type V11PostAPIService service

V11PostAPIService V11PostAPI service

func (*V11PostAPIService) PostCreateFriendships ¶

func (a *V11PostAPIService) PostCreateFriendships(ctx context.Context) ApiPostCreateFriendshipsRequest

PostCreateFriendships Method for PostCreateFriendships

post create friendships

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiPostCreateFriendshipsRequest

func (*V11PostAPIService) PostCreateFriendshipsExecute ¶

func (a *V11PostAPIService) PostCreateFriendshipsExecute(r ApiPostCreateFriendshipsRequest) (*http.Response, error)

Execute executes the request

func (*V11PostAPIService) PostDestroyFriendships ¶

func (a *V11PostAPIService) PostDestroyFriendships(ctx context.Context) ApiPostDestroyFriendshipsRequest

PostDestroyFriendships Method for PostDestroyFriendships

post destroy friendships

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiPostDestroyFriendshipsRequest

func (*V11PostAPIService) PostDestroyFriendshipsExecute ¶

func (a *V11PostAPIService) PostDestroyFriendshipsExecute(r ApiPostDestroyFriendshipsRequest) (*http.Response, error)

Execute executes the request

type V20GetAPIService ¶

type V20GetAPIService service

V20GetAPIService V20GetAPI service

func (*V20GetAPIService) GetSearchAdaptive ¶

func (a *V20GetAPIService) GetSearchAdaptive(ctx context.Context) ApiGetSearchAdaptiveRequest

GetSearchAdaptive Method for GetSearchAdaptive

get search adaptive

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetSearchAdaptiveRequest

func (*V20GetAPIService) GetSearchAdaptiveExecute ¶

func (a *V20GetAPIService) GetSearchAdaptiveExecute(r ApiGetSearchAdaptiveRequest) (*http.Response, error)

Execute executes the request

Source Files ¶

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL