resources

package
v0.0.0-...-f6cc6f7 Latest Latest
Warning

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

Go to latest
Published: Dec 26, 2023 License: MIT Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

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 AuthToken

type AuthToken struct {
	Type       string                   `json:"type"`
	Attributes AuthTokenAllOfAttributes `json:"attributes"`
}

AuthToken struct for AuthToken

func NewAuthToken

func NewAuthToken(type_ string, attributes AuthTokenAllOfAttributes) *AuthToken

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

func NewAuthTokenWithDefaults

func NewAuthTokenWithDefaults() *AuthToken

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

func (*AuthToken) GetAttributes

func (o *AuthToken) GetAttributes() AuthTokenAllOfAttributes

GetAttributes returns the Attributes field value

func (*AuthToken) GetAttributesOk

func (o *AuthToken) GetAttributesOk() (*AuthTokenAllOfAttributes, bool)

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

func (*AuthToken) GetType

func (o *AuthToken) GetType() string

GetType returns the Type field value

func (*AuthToken) GetTypeOk

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

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

func (AuthToken) MarshalJSON

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

func (*AuthToken) SetAttributes

func (o *AuthToken) SetAttributes(v AuthTokenAllOfAttributes)

SetAttributes sets field value

func (*AuthToken) SetType

func (o *AuthToken) SetType(v string)

SetType sets field value

func (AuthToken) ToMap

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

func (*AuthToken) UnmarshalJSON

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

type AuthTokenAllOfAttributes

type AuthTokenAllOfAttributes struct {
	Access    string `json:"access"`
	ExpiresAt int64  `json:"expires_at"`
}

AuthTokenAllOfAttributes struct for AuthTokenAllOfAttributes

func NewAuthTokenAllOfAttributes

func NewAuthTokenAllOfAttributes(access string, expiresAt int64) *AuthTokenAllOfAttributes

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

func NewAuthTokenAllOfAttributesWithDefaults

func NewAuthTokenAllOfAttributesWithDefaults() *AuthTokenAllOfAttributes

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

func (*AuthTokenAllOfAttributes) GetAccess

func (o *AuthTokenAllOfAttributes) GetAccess() string

GetAccess returns the Access field value

func (*AuthTokenAllOfAttributes) GetAccessOk

func (o *AuthTokenAllOfAttributes) GetAccessOk() (*string, bool)

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

func (*AuthTokenAllOfAttributes) GetExpiresAt

func (o *AuthTokenAllOfAttributes) GetExpiresAt() int64

GetExpiresAt returns the ExpiresAt field value

func (*AuthTokenAllOfAttributes) GetExpiresAtOk

func (o *AuthTokenAllOfAttributes) GetExpiresAtOk() (*int64, bool)

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

func (AuthTokenAllOfAttributes) MarshalJSON

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

func (*AuthTokenAllOfAttributes) SetAccess

func (o *AuthTokenAllOfAttributes) SetAccess(v string)

SetAccess sets field value

func (*AuthTokenAllOfAttributes) SetExpiresAt

func (o *AuthTokenAllOfAttributes) SetExpiresAt(v int64)

SetExpiresAt sets field value

func (AuthTokenAllOfAttributes) ToMap

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

func (*AuthTokenAllOfAttributes) UnmarshalJSON

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

type AuthTokenKey

type AuthTokenKey struct {
	Type string `json:"type"`
}

AuthTokenKey struct for AuthTokenKey

func NewAuthTokenKey

func NewAuthTokenKey(type_ string) *AuthTokenKey

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

func NewAuthTokenKeyWithDefaults

func NewAuthTokenKeyWithDefaults() *AuthTokenKey

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

func (*AuthTokenKey) GetType

func (o *AuthTokenKey) GetType() string

GetType returns the Type field value

func (*AuthTokenKey) GetTypeOk

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

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

func (AuthTokenKey) MarshalJSON

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

func (*AuthTokenKey) SetType

func (o *AuthTokenKey) SetType(v string)

SetType sets field value

func (AuthTokenKey) ToMap

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

func (*AuthTokenKey) UnmarshalJSON

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

type CreatePost

type CreatePost struct {
	Type       string                    `json:"type"`
	Attributes CreatePostAllOfAttributes `json:"attributes"`
}

CreatePost struct for CreatePost

func NewCreatePost

func NewCreatePost(type_ string, attributes CreatePostAllOfAttributes) *CreatePost

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

func NewCreatePostWithDefaults

func NewCreatePostWithDefaults() *CreatePost

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

func (*CreatePost) GetAttributes

func (o *CreatePost) GetAttributes() CreatePostAllOfAttributes

GetAttributes returns the Attributes field value

func (*CreatePost) GetAttributesOk

func (o *CreatePost) GetAttributesOk() (*CreatePostAllOfAttributes, bool)

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

func (*CreatePost) GetType

func (o *CreatePost) GetType() string

GetType returns the Type field value

func (*CreatePost) GetTypeOk

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

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

func (CreatePost) MarshalJSON

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

func (*CreatePost) SetAttributes

func (o *CreatePost) SetAttributes(v CreatePostAllOfAttributes)

SetAttributes sets field value

func (*CreatePost) SetType

func (o *CreatePost) SetType(v string)

SetType sets field value

func (CreatePost) ToMap

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

func (*CreatePost) UnmarshalJSON

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

type CreatePost201Response

type CreatePost201Response struct {
	Data     Post                                 `json:"data"`
	Included []CreatePost201ResponseIncludedInner `json:"included"`
}

CreatePost201Response struct for CreatePost201Response

func NewCreatePost201Response

func NewCreatePost201Response(data Post, included []CreatePost201ResponseIncludedInner) *CreatePost201Response

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

func NewCreatePost201ResponseWithDefaults

func NewCreatePost201ResponseWithDefaults() *CreatePost201Response

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

func (*CreatePost201Response) GetData

func (o *CreatePost201Response) GetData() Post

GetData returns the Data field value

func (*CreatePost201Response) GetDataOk

func (o *CreatePost201Response) GetDataOk() (*Post, bool)

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

func (*CreatePost201Response) GetIncluded

GetIncluded returns the Included field value

func (*CreatePost201Response) GetIncludedOk

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

func (CreatePost201Response) MarshalJSON

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

func (*CreatePost201Response) SetData

func (o *CreatePost201Response) SetData(v Post)

SetData sets field value

func (*CreatePost201Response) SetIncluded

SetIncluded sets field value

func (CreatePost201Response) ToMap

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

func (*CreatePost201Response) UnmarshalJSON

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

type CreatePost201ResponseIncludedInner

type CreatePost201ResponseIncludedInner struct {
	User *User
}

CreatePost201ResponseIncludedInner struct for CreatePost201ResponseIncludedInner

func (*CreatePost201ResponseIncludedInner) MarshalJSON

func (src *CreatePost201ResponseIncludedInner) MarshalJSON() ([]byte, error)

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

func (*CreatePost201ResponseIncludedInner) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type CreatePostAllOfAttributes

type CreatePostAllOfAttributes struct {
	Title string `json:"title"`
	Body  string `json:"body"`
}

CreatePostAllOfAttributes struct for CreatePostAllOfAttributes

func NewCreatePostAllOfAttributes

func NewCreatePostAllOfAttributes(title string, body string) *CreatePostAllOfAttributes

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

func NewCreatePostAllOfAttributesWithDefaults

func NewCreatePostAllOfAttributesWithDefaults() *CreatePostAllOfAttributes

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

func (*CreatePostAllOfAttributes) GetBody

func (o *CreatePostAllOfAttributes) GetBody() string

GetBody returns the Body field value

func (*CreatePostAllOfAttributes) GetBodyOk

func (o *CreatePostAllOfAttributes) GetBodyOk() (*string, bool)

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

func (*CreatePostAllOfAttributes) GetTitle

func (o *CreatePostAllOfAttributes) GetTitle() string

GetTitle returns the Title field value

func (*CreatePostAllOfAttributes) GetTitleOk

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

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

func (CreatePostAllOfAttributes) MarshalJSON

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

func (*CreatePostAllOfAttributes) SetBody

func (o *CreatePostAllOfAttributes) SetBody(v string)

SetBody sets field value

func (*CreatePostAllOfAttributes) SetTitle

func (o *CreatePostAllOfAttributes) SetTitle(v string)

SetTitle sets field value

func (CreatePostAllOfAttributes) ToMap

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

func (*CreatePostAllOfAttributes) UnmarshalJSON

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

type CreatePostRequest

type CreatePostRequest struct {
	Data CreatePost `json:"data"`
}

CreatePostRequest struct for CreatePostRequest

func NewCreatePostRequest

func NewCreatePostRequest(data CreatePost) *CreatePostRequest

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

func NewCreatePostRequestWithDefaults

func NewCreatePostRequestWithDefaults() *CreatePostRequest

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

func (*CreatePostRequest) GetData

func (o *CreatePostRequest) GetData() CreatePost

GetData returns the Data field value

func (*CreatePostRequest) GetDataOk

func (o *CreatePostRequest) GetDataOk() (*CreatePost, bool)

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

func (CreatePostRequest) MarshalJSON

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

func (*CreatePostRequest) SetData

func (o *CreatePostRequest) SetData(v CreatePost)

SetData sets field value

func (CreatePostRequest) ToMap

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

func (*CreatePostRequest) UnmarshalJSON

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

type CreateStarredPostRequest

type CreateStarredPostRequest struct {
	Data PostKey `json:"data"`
}

CreateStarredPostRequest struct for CreateStarredPostRequest

func NewCreateStarredPostRequest

func NewCreateStarredPostRequest(data PostKey) *CreateStarredPostRequest

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

func NewCreateStarredPostRequestWithDefaults

func NewCreateStarredPostRequestWithDefaults() *CreateStarredPostRequest

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

func (*CreateStarredPostRequest) GetData

func (o *CreateStarredPostRequest) GetData() PostKey

GetData returns the Data field value

func (*CreateStarredPostRequest) GetDataOk

func (o *CreateStarredPostRequest) GetDataOk() (*PostKey, bool)

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

func (CreateStarredPostRequest) MarshalJSON

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

func (*CreateStarredPostRequest) SetData

func (o *CreateStarredPostRequest) SetData(v PostKey)

SetData sets field value

func (CreateStarredPostRequest) ToMap

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

func (*CreateStarredPostRequest) UnmarshalJSON

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

type EditRequest

type EditRequest struct {
	Data EditUser `json:"data"`
}

EditRequest struct for EditRequest

func NewEditRequest

func NewEditRequest(data EditUser) *EditRequest

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

func NewEditRequestWithDefaults

func NewEditRequestWithDefaults() *EditRequest

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

func (*EditRequest) GetData

func (o *EditRequest) GetData() EditUser

GetData returns the Data field value

func (*EditRequest) GetDataOk

func (o *EditRequest) GetDataOk() (*EditUser, bool)

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

func (EditRequest) MarshalJSON

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

func (*EditRequest) SetData

func (o *EditRequest) SetData(v EditUser)

SetData sets field value

func (EditRequest) ToMap

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

func (*EditRequest) UnmarshalJSON

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

type EditUser

type EditUser struct {
	Type       string                  `json:"type"`
	Attributes EditUserAllOfAttributes `json:"attributes"`
}

EditUser struct for EditUser

func NewEditUser

func NewEditUser(type_ string, attributes EditUserAllOfAttributes) *EditUser

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

func NewEditUserWithDefaults

func NewEditUserWithDefaults() *EditUser

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

func (*EditUser) GetAttributes

func (o *EditUser) GetAttributes() EditUserAllOfAttributes

GetAttributes returns the Attributes field value

func (*EditUser) GetAttributesOk

func (o *EditUser) GetAttributesOk() (*EditUserAllOfAttributes, bool)

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

func (*EditUser) GetType

func (o *EditUser) GetType() string

GetType returns the Type field value

func (*EditUser) GetTypeOk

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

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

func (EditUser) MarshalJSON

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

func (*EditUser) SetAttributes

func (o *EditUser) SetAttributes(v EditUserAllOfAttributes)

SetAttributes sets field value

func (*EditUser) SetType

func (o *EditUser) SetType(v string)

SetType sets field value

func (EditUser) ToMap

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

func (*EditUser) UnmarshalJSON

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

type EditUserAllOfAttributes

type EditUserAllOfAttributes struct {
	NewName *string `json:"new_name,omitempty"`
}

EditUserAllOfAttributes struct for EditUserAllOfAttributes

func NewEditUserAllOfAttributes

func NewEditUserAllOfAttributes() *EditUserAllOfAttributes

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

func NewEditUserAllOfAttributesWithDefaults

func NewEditUserAllOfAttributesWithDefaults() *EditUserAllOfAttributes

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

func (*EditUserAllOfAttributes) GetNewName

func (o *EditUserAllOfAttributes) GetNewName() string

GetNewName returns the NewName field value if set, zero value otherwise.

func (*EditUserAllOfAttributes) GetNewNameOk

func (o *EditUserAllOfAttributes) GetNewNameOk() (*string, bool)

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

func (*EditUserAllOfAttributes) HasNewName

func (o *EditUserAllOfAttributes) HasNewName() bool

HasNewName returns a boolean if a field has been set.

func (EditUserAllOfAttributes) MarshalJSON

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

func (*EditUserAllOfAttributes) SetNewName

func (o *EditUserAllOfAttributes) SetNewName(v string)

SetNewName gets a reference to the given string and assigns it to the NewName field.

func (EditUserAllOfAttributes) ToMap

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

type Email

type Email struct {
	Type       string               `json:"type"`
	Attributes EmailAllOfAttributes `json:"attributes"`
}

Email struct for Email

func NewEmail

func NewEmail(type_ string, attributes EmailAllOfAttributes) *Email

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

func NewEmailWithDefaults

func NewEmailWithDefaults() *Email

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

func (*Email) GetAttributes

func (o *Email) GetAttributes() EmailAllOfAttributes

GetAttributes returns the Attributes field value

func (*Email) GetAttributesOk

func (o *Email) GetAttributesOk() (*EmailAllOfAttributes, bool)

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

func (*Email) GetType

func (o *Email) GetType() string

GetType returns the Type field value

func (*Email) GetTypeOk

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

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

func (Email) MarshalJSON

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

func (*Email) SetAttributes

func (o *Email) SetAttributes(v EmailAllOfAttributes)

SetAttributes sets field value

func (*Email) SetType

func (o *Email) SetType(v string)

SetType sets field value

func (Email) ToMap

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

func (*Email) UnmarshalJSON

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

type EmailAllOfAttributes

type EmailAllOfAttributes struct {
	Email string `json:"email"`
}

EmailAllOfAttributes struct for EmailAllOfAttributes

func NewEmailAllOfAttributes

func NewEmailAllOfAttributes(email string) *EmailAllOfAttributes

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

func NewEmailAllOfAttributesWithDefaults

func NewEmailAllOfAttributesWithDefaults() *EmailAllOfAttributes

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

func (*EmailAllOfAttributes) GetEmail

func (o *EmailAllOfAttributes) GetEmail() string

GetEmail returns the Email field value

func (*EmailAllOfAttributes) GetEmailOk

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

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

func (EmailAllOfAttributes) MarshalJSON

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

func (*EmailAllOfAttributes) SetEmail

func (o *EmailAllOfAttributes) SetEmail(v string)

SetEmail sets field value

func (EmailAllOfAttributes) ToMap

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

func (*EmailAllOfAttributes) UnmarshalJSON

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

type EmailToken

type EmailToken struct {
	Type       string                    `json:"type"`
	Attributes EmailTokenAllOfAttributes `json:"attributes"`
}

EmailToken struct for EmailToken

func NewEmailToken

func NewEmailToken(type_ string, attributes EmailTokenAllOfAttributes) *EmailToken

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

func NewEmailTokenWithDefaults

func NewEmailTokenWithDefaults() *EmailToken

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

func (*EmailToken) GetAttributes

func (o *EmailToken) GetAttributes() EmailTokenAllOfAttributes

GetAttributes returns the Attributes field value

func (*EmailToken) GetAttributesOk

func (o *EmailToken) GetAttributesOk() (*EmailTokenAllOfAttributes, bool)

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

func (*EmailToken) GetType

func (o *EmailToken) GetType() string

GetType returns the Type field value

func (*EmailToken) GetTypeOk

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

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

func (EmailToken) MarshalJSON

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

func (*EmailToken) SetAttributes

func (o *EmailToken) SetAttributes(v EmailTokenAllOfAttributes)

SetAttributes sets field value

func (*EmailToken) SetType

func (o *EmailToken) SetType(v string)

SetType sets field value

func (EmailToken) ToMap

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

func (*EmailToken) UnmarshalJSON

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

type EmailTokenAllOfAttributes

type EmailTokenAllOfAttributes struct {
	Token string `json:"token"`
}

EmailTokenAllOfAttributes struct for EmailTokenAllOfAttributes

func NewEmailTokenAllOfAttributes

func NewEmailTokenAllOfAttributes(token string) *EmailTokenAllOfAttributes

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

func NewEmailTokenAllOfAttributesWithDefaults

func NewEmailTokenAllOfAttributesWithDefaults() *EmailTokenAllOfAttributes

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

func (*EmailTokenAllOfAttributes) GetToken

func (o *EmailTokenAllOfAttributes) GetToken() string

GetToken returns the Token field value

func (*EmailTokenAllOfAttributes) GetTokenOk

func (o *EmailTokenAllOfAttributes) GetTokenOk() (*string, bool)

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

func (EmailTokenAllOfAttributes) MarshalJSON

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

func (*EmailTokenAllOfAttributes) SetToken

func (o *EmailTokenAllOfAttributes) SetToken(v string)

SetToken sets field value

func (EmailTokenAllOfAttributes) ToMap

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

func (*EmailTokenAllOfAttributes) UnmarshalJSON

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

type Errors

type Errors struct {
	Errors []ErrorsErrorsInner `json:"errors"`
}

Errors struct for Errors

func NewErrors

func NewErrors(errors []ErrorsErrorsInner) *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) GetErrors

func (o *Errors) GetErrors() []ErrorsErrorsInner

GetErrors returns the Errors field value

func (*Errors) GetErrorsOk

func (o *Errors) GetErrorsOk() ([]ErrorsErrorsInner, bool)

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

func (Errors) MarshalJSON

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

func (*Errors) SetErrors

func (o *Errors) SetErrors(v []ErrorsErrorsInner)

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 ErrorsErrorsInner

type ErrorsErrorsInner struct {
	Title  string  `json:"title"`
	Status int32   `json:"status"`
	Code   *string `json:"code,omitempty"`
}

ErrorsErrorsInner struct for ErrorsErrorsInner

func NewErrorsErrorsInner

func NewErrorsErrorsInner(title string, status int32) *ErrorsErrorsInner

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

func NewErrorsErrorsInnerWithDefaults

func NewErrorsErrorsInnerWithDefaults() *ErrorsErrorsInner

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

func (*ErrorsErrorsInner) GetCode

func (o *ErrorsErrorsInner) GetCode() string

GetCode returns the Code field value if set, zero value otherwise.

func (*ErrorsErrorsInner) GetCodeOk

func (o *ErrorsErrorsInner) GetCodeOk() (*string, bool)

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

func (*ErrorsErrorsInner) GetStatus

func (o *ErrorsErrorsInner) GetStatus() int32

GetStatus returns the Status field value

func (*ErrorsErrorsInner) GetStatusOk

func (o *ErrorsErrorsInner) GetStatusOk() (*int32, bool)

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

func (*ErrorsErrorsInner) GetTitle

func (o *ErrorsErrorsInner) GetTitle() string

GetTitle returns the Title field value

func (*ErrorsErrorsInner) GetTitleOk

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

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

func (*ErrorsErrorsInner) HasCode

func (o *ErrorsErrorsInner) HasCode() bool

HasCode returns a boolean if a field has been set.

func (ErrorsErrorsInner) MarshalJSON

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

func (*ErrorsErrorsInner) SetCode

func (o *ErrorsErrorsInner) SetCode(v string)

SetCode gets a reference to the given string and assigns it to the Code field.

func (*ErrorsErrorsInner) SetStatus

func (o *ErrorsErrorsInner) SetStatus(v int32)

SetStatus sets field value

func (*ErrorsErrorsInner) SetTitle

func (o *ErrorsErrorsInner) SetTitle(v string)

SetTitle sets field value

func (ErrorsErrorsInner) ToMap

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

func (*ErrorsErrorsInner) UnmarshalJSON

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

type GetConfirmedPostsHeaders200Response

type GetConfirmedPostsHeaders200Response struct {
	Data     []PostHeader `json:"data"`
	Included []User       `json:"included,omitempty"`
}

GetConfirmedPostsHeaders200Response struct for GetConfirmedPostsHeaders200Response

func NewGetConfirmedPostsHeaders200Response

func NewGetConfirmedPostsHeaders200Response(data []PostHeader) *GetConfirmedPostsHeaders200Response

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

func NewGetConfirmedPostsHeaders200ResponseWithDefaults

func NewGetConfirmedPostsHeaders200ResponseWithDefaults() *GetConfirmedPostsHeaders200Response

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

func (*GetConfirmedPostsHeaders200Response) GetData

GetData returns the Data field value

func (*GetConfirmedPostsHeaders200Response) GetDataOk

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

func (*GetConfirmedPostsHeaders200Response) GetIncluded

func (o *GetConfirmedPostsHeaders200Response) GetIncluded() []User

GetIncluded returns the Included field value if set, zero value otherwise.

func (*GetConfirmedPostsHeaders200Response) GetIncludedOk

func (o *GetConfirmedPostsHeaders200Response) GetIncludedOk() ([]User, bool)

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

func (*GetConfirmedPostsHeaders200Response) HasIncluded

func (o *GetConfirmedPostsHeaders200Response) HasIncluded() bool

HasIncluded returns a boolean if a field has been set.

func (GetConfirmedPostsHeaders200Response) MarshalJSON

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

func (*GetConfirmedPostsHeaders200Response) SetData

SetData sets field value

func (*GetConfirmedPostsHeaders200Response) SetIncluded

func (o *GetConfirmedPostsHeaders200Response) SetIncluded(v []User)

SetIncluded gets a reference to the given []User and assigns it to the Included field.

func (GetConfirmedPostsHeaders200Response) ToMap

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

func (*GetConfirmedPostsHeaders200Response) UnmarshalJSON

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

type GetPostsAmount200Response

type GetPostsAmount200Response struct {
	Data PostsAmount `json:"data"`
}

GetPostsAmount200Response struct for GetPostsAmount200Response

func NewGetPostsAmount200Response

func NewGetPostsAmount200Response(data PostsAmount) *GetPostsAmount200Response

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

func NewGetPostsAmount200ResponseWithDefaults

func NewGetPostsAmount200ResponseWithDefaults() *GetPostsAmount200Response

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

func (*GetPostsAmount200Response) GetData

GetData returns the Data field value

func (*GetPostsAmount200Response) GetDataOk

func (o *GetPostsAmount200Response) GetDataOk() (*PostsAmount, bool)

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

func (GetPostsAmount200Response) MarshalJSON

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

func (*GetPostsAmount200Response) SetData

func (o *GetPostsAmount200Response) SetData(v PostsAmount)

SetData sets field value

func (GetPostsAmount200Response) ToMap

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

func (*GetPostsAmount200Response) UnmarshalJSON

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

type GetUser200Response

type GetUser200Response struct {
	Data *User `json:"data,omitempty"`
}

GetUser200Response struct for GetUser200Response

func NewGetUser200Response

func NewGetUser200Response() *GetUser200Response

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

func NewGetUser200ResponseWithDefaults

func NewGetUser200ResponseWithDefaults() *GetUser200Response

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

func (*GetUser200Response) GetData

func (o *GetUser200Response) GetData() User

GetData returns the Data field value if set, zero value otherwise.

func (*GetUser200Response) GetDataOk

func (o *GetUser200Response) GetDataOk() (*User, 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 (*GetUser200Response) HasData

func (o *GetUser200Response) HasData() bool

HasData returns a boolean if a field has been set.

func (GetUser200Response) MarshalJSON

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

func (*GetUser200Response) SetData

func (o *GetUser200Response) SetData(v User)

SetData gets a reference to the given User and assigns it to the Data field.

func (GetUser200Response) ToMap

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

type Login200Response

type Login200Response struct {
	Data     User                            `json:"data"`
	Included []Login200ResponseIncludedInner `json:"included,omitempty"`
}

Login200Response User and if email is confirmed, AuthToken.

func NewLogin200Response

func NewLogin200Response(data User) *Login200Response

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

func NewLogin200ResponseWithDefaults

func NewLogin200ResponseWithDefaults() *Login200Response

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

func (*Login200Response) GetData

func (o *Login200Response) GetData() User

GetData returns the Data field value

func (*Login200Response) GetDataOk

func (o *Login200Response) GetDataOk() (*User, bool)

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

func (*Login200Response) GetIncluded

GetIncluded returns the Included field value if set, zero value otherwise.

func (*Login200Response) GetIncludedOk

func (o *Login200Response) GetIncludedOk() ([]Login200ResponseIncludedInner, bool)

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

func (*Login200Response) HasIncluded

func (o *Login200Response) HasIncluded() bool

HasIncluded returns a boolean if a field has been set.

func (Login200Response) MarshalJSON

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

func (*Login200Response) SetData

func (o *Login200Response) SetData(v User)

SetData sets field value

func (*Login200Response) SetIncluded

func (o *Login200Response) SetIncluded(v []Login200ResponseIncludedInner)

SetIncluded gets a reference to the given []Login200ResponseIncludedInner and assigns it to the Included field.

func (Login200Response) ToMap

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

func (*Login200Response) UnmarshalJSON

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

type Login200ResponseIncludedInner

type Login200ResponseIncludedInner struct {
	AuthToken *AuthToken
}

Login200ResponseIncludedInner struct for Login200ResponseIncludedInner

func (*Login200ResponseIncludedInner) MarshalJSON

func (src *Login200ResponseIncludedInner) MarshalJSON() ([]byte, error)

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

func (*Login200ResponseIncludedInner) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type LoginRequest

type LoginRequest struct {
	Data LoginUser `json:"data"`
}

LoginRequest struct for LoginRequest

func NewLoginRequest

func NewLoginRequest(data LoginUser) *LoginRequest

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

func NewLoginRequestWithDefaults

func NewLoginRequestWithDefaults() *LoginRequest

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

func (*LoginRequest) GetData

func (o *LoginRequest) GetData() LoginUser

GetData returns the Data field value

func (*LoginRequest) GetDataOk

func (o *LoginRequest) GetDataOk() (*LoginUser, bool)

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

func (LoginRequest) MarshalJSON

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

func (*LoginRequest) SetData

func (o *LoginRequest) SetData(v LoginUser)

SetData sets field value

func (LoginRequest) ToMap

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

func (*LoginRequest) UnmarshalJSON

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

type LoginUser

type LoginUser struct {
	Type       string                   `json:"type"`
	Attributes LoginUserAllOfAttributes `json:"attributes"`
}

LoginUser struct for LoginUser

func NewLoginUser

func NewLoginUser(type_ string, attributes LoginUserAllOfAttributes) *LoginUser

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

func NewLoginUserWithDefaults

func NewLoginUserWithDefaults() *LoginUser

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

func (*LoginUser) GetAttributes

func (o *LoginUser) GetAttributes() LoginUserAllOfAttributes

GetAttributes returns the Attributes field value

func (*LoginUser) GetAttributesOk

func (o *LoginUser) GetAttributesOk() (*LoginUserAllOfAttributes, bool)

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

func (*LoginUser) GetType

func (o *LoginUser) GetType() string

GetType returns the Type field value

func (*LoginUser) GetTypeOk

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

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

func (LoginUser) MarshalJSON

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

func (*LoginUser) SetAttributes

func (o *LoginUser) SetAttributes(v LoginUserAllOfAttributes)

SetAttributes sets field value

func (*LoginUser) SetType

func (o *LoginUser) SetType(v string)

SetType sets field value

func (LoginUser) ToMap

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

func (*LoginUser) UnmarshalJSON

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

type LoginUserAllOfAttributes

type LoginUserAllOfAttributes struct {
	Email    string `json:"email"`
	Password string `json:"password"`
}

LoginUserAllOfAttributes struct for LoginUserAllOfAttributes

func NewLoginUserAllOfAttributes

func NewLoginUserAllOfAttributes(email string, password string) *LoginUserAllOfAttributes

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

func NewLoginUserAllOfAttributesWithDefaults

func NewLoginUserAllOfAttributesWithDefaults() *LoginUserAllOfAttributes

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

func (*LoginUserAllOfAttributes) GetEmail

func (o *LoginUserAllOfAttributes) GetEmail() string

GetEmail returns the Email field value

func (*LoginUserAllOfAttributes) GetEmailOk

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

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

func (*LoginUserAllOfAttributes) GetPassword

func (o *LoginUserAllOfAttributes) GetPassword() string

GetPassword returns the Password field value

func (*LoginUserAllOfAttributes) GetPasswordOk

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

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

func (LoginUserAllOfAttributes) MarshalJSON

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

func (*LoginUserAllOfAttributes) SetEmail

func (o *LoginUserAllOfAttributes) SetEmail(v string)

SetEmail sets field value

func (*LoginUserAllOfAttributes) SetPassword

func (o *LoginUserAllOfAttributes) SetPassword(v string)

SetPassword sets field value

func (LoginUserAllOfAttributes) ToMap

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

func (*LoginUserAllOfAttributes) UnmarshalJSON

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

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type NullableAuthToken

type NullableAuthToken struct {
	// contains filtered or unexported fields
}

func NewNullableAuthToken

func NewNullableAuthToken(val *AuthToken) *NullableAuthToken

func (NullableAuthToken) Get

func (v NullableAuthToken) Get() *AuthToken

func (NullableAuthToken) IsSet

func (v NullableAuthToken) IsSet() bool

func (NullableAuthToken) MarshalJSON

func (v NullableAuthToken) MarshalJSON() ([]byte, error)

func (*NullableAuthToken) Set

func (v *NullableAuthToken) Set(val *AuthToken)

func (*NullableAuthToken) UnmarshalJSON

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

func (*NullableAuthToken) Unset

func (v *NullableAuthToken) Unset()

type NullableAuthTokenAllOfAttributes

type NullableAuthTokenAllOfAttributes struct {
	// contains filtered or unexported fields
}

func (NullableAuthTokenAllOfAttributes) Get

func (NullableAuthTokenAllOfAttributes) IsSet

func (NullableAuthTokenAllOfAttributes) MarshalJSON

func (v NullableAuthTokenAllOfAttributes) MarshalJSON() ([]byte, error)

func (*NullableAuthTokenAllOfAttributes) Set

func (*NullableAuthTokenAllOfAttributes) UnmarshalJSON

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

func (*NullableAuthTokenAllOfAttributes) Unset

type NullableAuthTokenKey

type NullableAuthTokenKey struct {
	// contains filtered or unexported fields
}

func NewNullableAuthTokenKey

func NewNullableAuthTokenKey(val *AuthTokenKey) *NullableAuthTokenKey

func (NullableAuthTokenKey) Get

func (NullableAuthTokenKey) IsSet

func (v NullableAuthTokenKey) IsSet() bool

func (NullableAuthTokenKey) MarshalJSON

func (v NullableAuthTokenKey) MarshalJSON() ([]byte, error)

func (*NullableAuthTokenKey) Set

func (v *NullableAuthTokenKey) Set(val *AuthTokenKey)

func (*NullableAuthTokenKey) UnmarshalJSON

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

func (*NullableAuthTokenKey) Unset

func (v *NullableAuthTokenKey) 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 NullableCreatePost

type NullableCreatePost struct {
	// contains filtered or unexported fields
}

func NewNullableCreatePost

func NewNullableCreatePost(val *CreatePost) *NullableCreatePost

func (NullableCreatePost) Get

func (v NullableCreatePost) Get() *CreatePost

func (NullableCreatePost) IsSet

func (v NullableCreatePost) IsSet() bool

func (NullableCreatePost) MarshalJSON

func (v NullableCreatePost) MarshalJSON() ([]byte, error)

func (*NullableCreatePost) Set

func (v *NullableCreatePost) Set(val *CreatePost)

func (*NullableCreatePost) UnmarshalJSON

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

func (*NullableCreatePost) Unset

func (v *NullableCreatePost) Unset()

type NullableCreatePost201Response

type NullableCreatePost201Response struct {
	// contains filtered or unexported fields
}

func (NullableCreatePost201Response) Get

func (NullableCreatePost201Response) IsSet

func (NullableCreatePost201Response) MarshalJSON

func (v NullableCreatePost201Response) MarshalJSON() ([]byte, error)

func (*NullableCreatePost201Response) Set

func (*NullableCreatePost201Response) UnmarshalJSON

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

func (*NullableCreatePost201Response) Unset

func (v *NullableCreatePost201Response) Unset()

type NullableCreatePost201ResponseIncludedInner

type NullableCreatePost201ResponseIncludedInner struct {
	// contains filtered or unexported fields
}

func (NullableCreatePost201ResponseIncludedInner) Get

func (NullableCreatePost201ResponseIncludedInner) IsSet

func (NullableCreatePost201ResponseIncludedInner) MarshalJSON

func (*NullableCreatePost201ResponseIncludedInner) Set

func (*NullableCreatePost201ResponseIncludedInner) UnmarshalJSON

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

func (*NullableCreatePost201ResponseIncludedInner) Unset

type NullableCreatePostAllOfAttributes

type NullableCreatePostAllOfAttributes struct {
	// contains filtered or unexported fields
}

func (NullableCreatePostAllOfAttributes) Get

func (NullableCreatePostAllOfAttributes) IsSet

func (NullableCreatePostAllOfAttributes) MarshalJSON

func (v NullableCreatePostAllOfAttributes) MarshalJSON() ([]byte, error)

func (*NullableCreatePostAllOfAttributes) Set

func (*NullableCreatePostAllOfAttributes) UnmarshalJSON

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

func (*NullableCreatePostAllOfAttributes) Unset

type NullableCreatePostRequest

type NullableCreatePostRequest struct {
	// contains filtered or unexported fields
}

func NewNullableCreatePostRequest

func NewNullableCreatePostRequest(val *CreatePostRequest) *NullableCreatePostRequest

func (NullableCreatePostRequest) Get

func (NullableCreatePostRequest) IsSet

func (v NullableCreatePostRequest) IsSet() bool

func (NullableCreatePostRequest) MarshalJSON

func (v NullableCreatePostRequest) MarshalJSON() ([]byte, error)

func (*NullableCreatePostRequest) Set

func (*NullableCreatePostRequest) UnmarshalJSON

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

func (*NullableCreatePostRequest) Unset

func (v *NullableCreatePostRequest) Unset()

type NullableCreateStarredPostRequest

type NullableCreateStarredPostRequest struct {
	// contains filtered or unexported fields
}

func (NullableCreateStarredPostRequest) Get

func (NullableCreateStarredPostRequest) IsSet

func (NullableCreateStarredPostRequest) MarshalJSON

func (v NullableCreateStarredPostRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateStarredPostRequest) Set

func (*NullableCreateStarredPostRequest) UnmarshalJSON

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

func (*NullableCreateStarredPostRequest) Unset

type NullableEditRequest

type NullableEditRequest struct {
	// contains filtered or unexported fields
}

func NewNullableEditRequest

func NewNullableEditRequest(val *EditRequest) *NullableEditRequest

func (NullableEditRequest) Get

func (NullableEditRequest) IsSet

func (v NullableEditRequest) IsSet() bool

func (NullableEditRequest) MarshalJSON

func (v NullableEditRequest) MarshalJSON() ([]byte, error)

func (*NullableEditRequest) Set

func (v *NullableEditRequest) Set(val *EditRequest)

func (*NullableEditRequest) UnmarshalJSON

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

func (*NullableEditRequest) Unset

func (v *NullableEditRequest) Unset()

type NullableEditUser

type NullableEditUser struct {
	// contains filtered or unexported fields
}

func NewNullableEditUser

func NewNullableEditUser(val *EditUser) *NullableEditUser

func (NullableEditUser) Get

func (v NullableEditUser) Get() *EditUser

func (NullableEditUser) IsSet

func (v NullableEditUser) IsSet() bool

func (NullableEditUser) MarshalJSON

func (v NullableEditUser) MarshalJSON() ([]byte, error)

func (*NullableEditUser) Set

func (v *NullableEditUser) Set(val *EditUser)

func (*NullableEditUser) UnmarshalJSON

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

func (*NullableEditUser) Unset

func (v *NullableEditUser) Unset()

type NullableEditUserAllOfAttributes

type NullableEditUserAllOfAttributes struct {
	// contains filtered or unexported fields
}

func (NullableEditUserAllOfAttributes) Get

func (NullableEditUserAllOfAttributes) IsSet

func (NullableEditUserAllOfAttributes) MarshalJSON

func (v NullableEditUserAllOfAttributes) MarshalJSON() ([]byte, error)

func (*NullableEditUserAllOfAttributes) Set

func (*NullableEditUserAllOfAttributes) UnmarshalJSON

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

func (*NullableEditUserAllOfAttributes) Unset

type NullableEmail

type NullableEmail struct {
	// contains filtered or unexported fields
}

func NewNullableEmail

func NewNullableEmail(val *Email) *NullableEmail

func (NullableEmail) Get

func (v NullableEmail) Get() *Email

func (NullableEmail) IsSet

func (v NullableEmail) IsSet() bool

func (NullableEmail) MarshalJSON

func (v NullableEmail) MarshalJSON() ([]byte, error)

func (*NullableEmail) Set

func (v *NullableEmail) Set(val *Email)

func (*NullableEmail) UnmarshalJSON

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

func (*NullableEmail) Unset

func (v *NullableEmail) Unset()

type NullableEmailAllOfAttributes

type NullableEmailAllOfAttributes struct {
	// contains filtered or unexported fields
}

func NewNullableEmailAllOfAttributes

func NewNullableEmailAllOfAttributes(val *EmailAllOfAttributes) *NullableEmailAllOfAttributes

func (NullableEmailAllOfAttributes) Get

func (NullableEmailAllOfAttributes) IsSet

func (NullableEmailAllOfAttributes) MarshalJSON

func (v NullableEmailAllOfAttributes) MarshalJSON() ([]byte, error)

func (*NullableEmailAllOfAttributes) Set

func (*NullableEmailAllOfAttributes) UnmarshalJSON

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

func (*NullableEmailAllOfAttributes) Unset

func (v *NullableEmailAllOfAttributes) Unset()

type NullableEmailToken

type NullableEmailToken struct {
	// contains filtered or unexported fields
}

func NewNullableEmailToken

func NewNullableEmailToken(val *EmailToken) *NullableEmailToken

func (NullableEmailToken) Get

func (v NullableEmailToken) Get() *EmailToken

func (NullableEmailToken) IsSet

func (v NullableEmailToken) IsSet() bool

func (NullableEmailToken) MarshalJSON

func (v NullableEmailToken) MarshalJSON() ([]byte, error)

func (*NullableEmailToken) Set

func (v *NullableEmailToken) Set(val *EmailToken)

func (*NullableEmailToken) UnmarshalJSON

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

func (*NullableEmailToken) Unset

func (v *NullableEmailToken) Unset()

type NullableEmailTokenAllOfAttributes

type NullableEmailTokenAllOfAttributes struct {
	// contains filtered or unexported fields
}

func (NullableEmailTokenAllOfAttributes) Get

func (NullableEmailTokenAllOfAttributes) IsSet

func (NullableEmailTokenAllOfAttributes) MarshalJSON

func (v NullableEmailTokenAllOfAttributes) MarshalJSON() ([]byte, error)

func (*NullableEmailTokenAllOfAttributes) Set

func (*NullableEmailTokenAllOfAttributes) UnmarshalJSON

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

func (*NullableEmailTokenAllOfAttributes) 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 NullableErrorsErrorsInner

type NullableErrorsErrorsInner struct {
	// contains filtered or unexported fields
}

func NewNullableErrorsErrorsInner

func NewNullableErrorsErrorsInner(val *ErrorsErrorsInner) *NullableErrorsErrorsInner

func (NullableErrorsErrorsInner) Get

func (NullableErrorsErrorsInner) IsSet

func (v NullableErrorsErrorsInner) IsSet() bool

func (NullableErrorsErrorsInner) MarshalJSON

func (v NullableErrorsErrorsInner) MarshalJSON() ([]byte, error)

func (*NullableErrorsErrorsInner) Set

func (*NullableErrorsErrorsInner) UnmarshalJSON

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

func (*NullableErrorsErrorsInner) Unset

func (v *NullableErrorsErrorsInner) 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 NullableGetConfirmedPostsHeaders200Response

type NullableGetConfirmedPostsHeaders200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetConfirmedPostsHeaders200Response) Get

func (NullableGetConfirmedPostsHeaders200Response) IsSet

func (NullableGetConfirmedPostsHeaders200Response) MarshalJSON

func (*NullableGetConfirmedPostsHeaders200Response) Set

func (*NullableGetConfirmedPostsHeaders200Response) UnmarshalJSON

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

func (*NullableGetConfirmedPostsHeaders200Response) Unset

type NullableGetPostsAmount200Response

type NullableGetPostsAmount200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetPostsAmount200Response) Get

func (NullableGetPostsAmount200Response) IsSet

func (NullableGetPostsAmount200Response) MarshalJSON

func (v NullableGetPostsAmount200Response) MarshalJSON() ([]byte, error)

func (*NullableGetPostsAmount200Response) Set

func (*NullableGetPostsAmount200Response) UnmarshalJSON

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

func (*NullableGetPostsAmount200Response) Unset

type NullableGetUser200Response

type NullableGetUser200Response struct {
	// contains filtered or unexported fields
}

func NewNullableGetUser200Response

func NewNullableGetUser200Response(val *GetUser200Response) *NullableGetUser200Response

func (NullableGetUser200Response) Get

func (NullableGetUser200Response) IsSet

func (v NullableGetUser200Response) IsSet() bool

func (NullableGetUser200Response) MarshalJSON

func (v NullableGetUser200Response) MarshalJSON() ([]byte, error)

func (*NullableGetUser200Response) Set

func (*NullableGetUser200Response) UnmarshalJSON

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

func (*NullableGetUser200Response) Unset

func (v *NullableGetUser200Response) 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 NullableLogin200Response

type NullableLogin200Response struct {
	// contains filtered or unexported fields
}

func NewNullableLogin200Response

func NewNullableLogin200Response(val *Login200Response) *NullableLogin200Response

func (NullableLogin200Response) Get

func (NullableLogin200Response) IsSet

func (v NullableLogin200Response) IsSet() bool

func (NullableLogin200Response) MarshalJSON

func (v NullableLogin200Response) MarshalJSON() ([]byte, error)

func (*NullableLogin200Response) Set

func (*NullableLogin200Response) UnmarshalJSON

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

func (*NullableLogin200Response) Unset

func (v *NullableLogin200Response) Unset()

type NullableLogin200ResponseIncludedInner

type NullableLogin200ResponseIncludedInner struct {
	// contains filtered or unexported fields
}

func (NullableLogin200ResponseIncludedInner) Get

func (NullableLogin200ResponseIncludedInner) IsSet

func (NullableLogin200ResponseIncludedInner) MarshalJSON

func (v NullableLogin200ResponseIncludedInner) MarshalJSON() ([]byte, error)

func (*NullableLogin200ResponseIncludedInner) Set

func (*NullableLogin200ResponseIncludedInner) UnmarshalJSON

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

func (*NullableLogin200ResponseIncludedInner) Unset

type NullableLoginRequest

type NullableLoginRequest struct {
	// contains filtered or unexported fields
}

func NewNullableLoginRequest

func NewNullableLoginRequest(val *LoginRequest) *NullableLoginRequest

func (NullableLoginRequest) Get

func (NullableLoginRequest) IsSet

func (v NullableLoginRequest) IsSet() bool

func (NullableLoginRequest) MarshalJSON

func (v NullableLoginRequest) MarshalJSON() ([]byte, error)

func (*NullableLoginRequest) Set

func (v *NullableLoginRequest) Set(val *LoginRequest)

func (*NullableLoginRequest) UnmarshalJSON

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

func (*NullableLoginRequest) Unset

func (v *NullableLoginRequest) Unset()

type NullableLoginUser

type NullableLoginUser struct {
	// contains filtered or unexported fields
}

func NewNullableLoginUser

func NewNullableLoginUser(val *LoginUser) *NullableLoginUser

func (NullableLoginUser) Get

func (v NullableLoginUser) Get() *LoginUser

func (NullableLoginUser) IsSet

func (v NullableLoginUser) IsSet() bool

func (NullableLoginUser) MarshalJSON

func (v NullableLoginUser) MarshalJSON() ([]byte, error)

func (*NullableLoginUser) Set

func (v *NullableLoginUser) Set(val *LoginUser)

func (*NullableLoginUser) UnmarshalJSON

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

func (*NullableLoginUser) Unset

func (v *NullableLoginUser) Unset()

type NullableLoginUserAllOfAttributes

type NullableLoginUserAllOfAttributes struct {
	// contains filtered or unexported fields
}

func (NullableLoginUserAllOfAttributes) Get

func (NullableLoginUserAllOfAttributes) IsSet

func (NullableLoginUserAllOfAttributes) MarshalJSON

func (v NullableLoginUserAllOfAttributes) MarshalJSON() ([]byte, error)

func (*NullableLoginUserAllOfAttributes) Set

func (*NullableLoginUserAllOfAttributes) UnmarshalJSON

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

func (*NullableLoginUserAllOfAttributes) Unset

type NullableOAuth2

type NullableOAuth2 struct {
	// contains filtered or unexported fields
}

func NewNullableOAuth2

func NewNullableOAuth2(val *OAuth2) *NullableOAuth2

func (NullableOAuth2) Get

func (v NullableOAuth2) Get() *OAuth2

func (NullableOAuth2) IsSet

func (v NullableOAuth2) IsSet() bool

func (NullableOAuth2) MarshalJSON

func (v NullableOAuth2) MarshalJSON() ([]byte, error)

func (*NullableOAuth2) Set

func (v *NullableOAuth2) Set(val *OAuth2)

func (*NullableOAuth2) UnmarshalJSON

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

func (*NullableOAuth2) Unset

func (v *NullableOAuth2) Unset()

type NullableOAuth2AllOfAttributes

type NullableOAuth2AllOfAttributes struct {
	// contains filtered or unexported fields
}

func (NullableOAuth2AllOfAttributes) Get

func (NullableOAuth2AllOfAttributes) IsSet

func (NullableOAuth2AllOfAttributes) MarshalJSON

func (v NullableOAuth2AllOfAttributes) MarshalJSON() ([]byte, error)

func (*NullableOAuth2AllOfAttributes) Set

func (*NullableOAuth2AllOfAttributes) UnmarshalJSON

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

func (*NullableOAuth2AllOfAttributes) Unset

func (v *NullableOAuth2AllOfAttributes) Unset()

type NullableOAuth2Callback

type NullableOAuth2Callback struct {
	// contains filtered or unexported fields
}

func NewNullableOAuth2Callback

func NewNullableOAuth2Callback(val *OAuth2Callback) *NullableOAuth2Callback

func (NullableOAuth2Callback) Get

func (NullableOAuth2Callback) IsSet

func (v NullableOAuth2Callback) IsSet() bool

func (NullableOAuth2Callback) MarshalJSON

func (v NullableOAuth2Callback) MarshalJSON() ([]byte, error)

func (*NullableOAuth2Callback) Set

func (*NullableOAuth2Callback) UnmarshalJSON

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

func (*NullableOAuth2Callback) Unset

func (v *NullableOAuth2Callback) Unset()

type NullableOAuth2CallbackAllOfAttributes

type NullableOAuth2CallbackAllOfAttributes struct {
	// contains filtered or unexported fields
}

func (NullableOAuth2CallbackAllOfAttributes) Get

func (NullableOAuth2CallbackAllOfAttributes) IsSet

func (NullableOAuth2CallbackAllOfAttributes) MarshalJSON

func (v NullableOAuth2CallbackAllOfAttributes) MarshalJSON() ([]byte, error)

func (*NullableOAuth2CallbackAllOfAttributes) Set

func (*NullableOAuth2CallbackAllOfAttributes) UnmarshalJSON

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

func (*NullableOAuth2CallbackAllOfAttributes) Unset

type NullableOAuth2Google200Response

type NullableOAuth2Google200Response struct {
	// contains filtered or unexported fields
}

func (NullableOAuth2Google200Response) Get

func (NullableOAuth2Google200Response) IsSet

func (NullableOAuth2Google200Response) MarshalJSON

func (v NullableOAuth2Google200Response) MarshalJSON() ([]byte, error)

func (*NullableOAuth2Google200Response) Set

func (*NullableOAuth2Google200Response) UnmarshalJSON

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

func (*NullableOAuth2Google200Response) Unset

type NullableOAuth2SignInGoogle200Response

type NullableOAuth2SignInGoogle200Response struct {
	// contains filtered or unexported fields
}

func (NullableOAuth2SignInGoogle200Response) Get

func (NullableOAuth2SignInGoogle200Response) IsSet

func (NullableOAuth2SignInGoogle200Response) MarshalJSON

func (v NullableOAuth2SignInGoogle200Response) MarshalJSON() ([]byte, error)

func (*NullableOAuth2SignInGoogle200Response) Set

func (*NullableOAuth2SignInGoogle200Response) UnmarshalJSON

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

func (*NullableOAuth2SignInGoogle200Response) Unset

type NullableOAuth2SignInGoogleRequest

type NullableOAuth2SignInGoogleRequest struct {
	// contains filtered or unexported fields
}

func (NullableOAuth2SignInGoogleRequest) Get

func (NullableOAuth2SignInGoogleRequest) IsSet

func (NullableOAuth2SignInGoogleRequest) MarshalJSON

func (v NullableOAuth2SignInGoogleRequest) MarshalJSON() ([]byte, error)

func (*NullableOAuth2SignInGoogleRequest) Set

func (*NullableOAuth2SignInGoogleRequest) UnmarshalJSON

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

func (*NullableOAuth2SignInGoogleRequest) Unset

type NullablePost

type NullablePost struct {
	// contains filtered or unexported fields
}

func NewNullablePost

func NewNullablePost(val *Post) *NullablePost

func (NullablePost) Get

func (v NullablePost) Get() *Post

func (NullablePost) IsSet

func (v NullablePost) IsSet() bool

func (NullablePost) MarshalJSON

func (v NullablePost) MarshalJSON() ([]byte, error)

func (*NullablePost) Set

func (v *NullablePost) Set(val *Post)

func (*NullablePost) UnmarshalJSON

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

func (*NullablePost) Unset

func (v *NullablePost) Unset()

type NullablePostAllOfAttributes

type NullablePostAllOfAttributes struct {
	// contains filtered or unexported fields
}

func NewNullablePostAllOfAttributes

func NewNullablePostAllOfAttributes(val *PostAllOfAttributes) *NullablePostAllOfAttributes

func (NullablePostAllOfAttributes) Get

func (NullablePostAllOfAttributes) IsSet

func (NullablePostAllOfAttributes) MarshalJSON

func (v NullablePostAllOfAttributes) MarshalJSON() ([]byte, error)

func (*NullablePostAllOfAttributes) Set

func (*NullablePostAllOfAttributes) UnmarshalJSON

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

func (*NullablePostAllOfAttributes) Unset

func (v *NullablePostAllOfAttributes) Unset()

type NullablePostAllOfRelationships

type NullablePostAllOfRelationships struct {
	// contains filtered or unexported fields
}

func (NullablePostAllOfRelationships) Get

func (NullablePostAllOfRelationships) IsSet

func (NullablePostAllOfRelationships) MarshalJSON

func (v NullablePostAllOfRelationships) MarshalJSON() ([]byte, error)

func (*NullablePostAllOfRelationships) Set

func (*NullablePostAllOfRelationships) UnmarshalJSON

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

func (*NullablePostAllOfRelationships) Unset

func (v *NullablePostAllOfRelationships) Unset()

type NullablePostAllOfRelationshipsAuthor

type NullablePostAllOfRelationshipsAuthor struct {
	// contains filtered or unexported fields
}

func (NullablePostAllOfRelationshipsAuthor) Get

func (NullablePostAllOfRelationshipsAuthor) IsSet

func (NullablePostAllOfRelationshipsAuthor) MarshalJSON

func (v NullablePostAllOfRelationshipsAuthor) MarshalJSON() ([]byte, error)

func (*NullablePostAllOfRelationshipsAuthor) Set

func (*NullablePostAllOfRelationshipsAuthor) UnmarshalJSON

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

func (*NullablePostAllOfRelationshipsAuthor) Unset

type NullablePostHeader

type NullablePostHeader struct {
	// contains filtered or unexported fields
}

func NewNullablePostHeader

func NewNullablePostHeader(val *PostHeader) *NullablePostHeader

func (NullablePostHeader) Get

func (v NullablePostHeader) Get() *PostHeader

func (NullablePostHeader) IsSet

func (v NullablePostHeader) IsSet() bool

func (NullablePostHeader) MarshalJSON

func (v NullablePostHeader) MarshalJSON() ([]byte, error)

func (*NullablePostHeader) Set

func (v *NullablePostHeader) Set(val *PostHeader)

func (*NullablePostHeader) UnmarshalJSON

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

func (*NullablePostHeader) Unset

func (v *NullablePostHeader) Unset()

type NullablePostHeaderAllOfAttributes

type NullablePostHeaderAllOfAttributes struct {
	// contains filtered or unexported fields
}

func (NullablePostHeaderAllOfAttributes) Get

func (NullablePostHeaderAllOfAttributes) IsSet

func (NullablePostHeaderAllOfAttributes) MarshalJSON

func (v NullablePostHeaderAllOfAttributes) MarshalJSON() ([]byte, error)

func (*NullablePostHeaderAllOfAttributes) Set

func (*NullablePostHeaderAllOfAttributes) UnmarshalJSON

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

func (*NullablePostHeaderAllOfAttributes) Unset

type NullablePostKey

type NullablePostKey struct {
	// contains filtered or unexported fields
}

func NewNullablePostKey

func NewNullablePostKey(val *PostKey) *NullablePostKey

func (NullablePostKey) Get

func (v NullablePostKey) Get() *PostKey

func (NullablePostKey) IsSet

func (v NullablePostKey) IsSet() bool

func (NullablePostKey) MarshalJSON

func (v NullablePostKey) MarshalJSON() ([]byte, error)

func (*NullablePostKey) Set

func (v *NullablePostKey) Set(val *PostKey)

func (*NullablePostKey) UnmarshalJSON

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

func (*NullablePostKey) Unset

func (v *NullablePostKey) Unset()

type NullablePostsAmount

type NullablePostsAmount struct {
	// contains filtered or unexported fields
}

func NewNullablePostsAmount

func NewNullablePostsAmount(val *PostsAmount) *NullablePostsAmount

func (NullablePostsAmount) Get

func (NullablePostsAmount) IsSet

func (v NullablePostsAmount) IsSet() bool

func (NullablePostsAmount) MarshalJSON

func (v NullablePostsAmount) MarshalJSON() ([]byte, error)

func (*NullablePostsAmount) Set

func (v *NullablePostsAmount) Set(val *PostsAmount)

func (*NullablePostsAmount) UnmarshalJSON

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

func (*NullablePostsAmount) Unset

func (v *NullablePostsAmount) Unset()

type NullablePostsAmountAllOfAttributes

type NullablePostsAmountAllOfAttributes struct {
	// contains filtered or unexported fields
}

func (NullablePostsAmountAllOfAttributes) Get

func (NullablePostsAmountAllOfAttributes) IsSet

func (NullablePostsAmountAllOfAttributes) MarshalJSON

func (v NullablePostsAmountAllOfAttributes) MarshalJSON() ([]byte, error)

func (*NullablePostsAmountAllOfAttributes) Set

func (*NullablePostsAmountAllOfAttributes) UnmarshalJSON

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

func (*NullablePostsAmountAllOfAttributes) Unset

type NullableRecoverPassword

type NullableRecoverPassword struct {
	// contains filtered or unexported fields
}

func NewNullableRecoverPassword

func NewNullableRecoverPassword(val *RecoverPassword) *NullableRecoverPassword

func (NullableRecoverPassword) Get

func (NullableRecoverPassword) IsSet

func (v NullableRecoverPassword) IsSet() bool

func (NullableRecoverPassword) MarshalJSON

func (v NullableRecoverPassword) MarshalJSON() ([]byte, error)

func (*NullableRecoverPassword) Set

func (*NullableRecoverPassword) UnmarshalJSON

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

func (*NullableRecoverPassword) Unset

func (v *NullableRecoverPassword) Unset()

type NullableRecoverPasswordAllOfAttributes

type NullableRecoverPasswordAllOfAttributes struct {
	// contains filtered or unexported fields
}

func (NullableRecoverPasswordAllOfAttributes) Get

func (NullableRecoverPasswordAllOfAttributes) IsSet

func (NullableRecoverPasswordAllOfAttributes) MarshalJSON

func (v NullableRecoverPasswordAllOfAttributes) MarshalJSON() ([]byte, error)

func (*NullableRecoverPasswordAllOfAttributes) Set

func (*NullableRecoverPasswordAllOfAttributes) UnmarshalJSON

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

func (*NullableRecoverPasswordAllOfAttributes) Unset

type NullableRecoverPasswordCallback200Response

type NullableRecoverPasswordCallback200Response struct {
	// contains filtered or unexported fields
}

func (NullableRecoverPasswordCallback200Response) Get

func (NullableRecoverPasswordCallback200Response) IsSet

func (NullableRecoverPasswordCallback200Response) MarshalJSON

func (*NullableRecoverPasswordCallback200Response) Set

func (*NullableRecoverPasswordCallback200Response) UnmarshalJSON

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

func (*NullableRecoverPasswordCallback200Response) Unset

type NullableRecoverPasswordCallbackRequest

type NullableRecoverPasswordCallbackRequest struct {
	// contains filtered or unexported fields
}

func (NullableRecoverPasswordCallbackRequest) Get

func (NullableRecoverPasswordCallbackRequest) IsSet

func (NullableRecoverPasswordCallbackRequest) MarshalJSON

func (v NullableRecoverPasswordCallbackRequest) MarshalJSON() ([]byte, error)

func (*NullableRecoverPasswordCallbackRequest) Set

func (*NullableRecoverPasswordCallbackRequest) UnmarshalJSON

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

func (*NullableRecoverPasswordCallbackRequest) Unset

type NullableRefresh200Response

type NullableRefresh200Response struct {
	// contains filtered or unexported fields
}

func NewNullableRefresh200Response

func NewNullableRefresh200Response(val *Refresh200Response) *NullableRefresh200Response

func (NullableRefresh200Response) Get

func (NullableRefresh200Response) IsSet

func (v NullableRefresh200Response) IsSet() bool

func (NullableRefresh200Response) MarshalJSON

func (v NullableRefresh200Response) MarshalJSON() ([]byte, error)

func (*NullableRefresh200Response) Set

func (*NullableRefresh200Response) UnmarshalJSON

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

func (*NullableRefresh200Response) Unset

func (v *NullableRefresh200Response) Unset()

type NullableSendPasswordRecoveryEmailRequest

type NullableSendPasswordRecoveryEmailRequest struct {
	// contains filtered or unexported fields
}

func (NullableSendPasswordRecoveryEmailRequest) Get

func (NullableSendPasswordRecoveryEmailRequest) IsSet

func (NullableSendPasswordRecoveryEmailRequest) MarshalJSON

func (*NullableSendPasswordRecoveryEmailRequest) Set

func (*NullableSendPasswordRecoveryEmailRequest) UnmarshalJSON

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

func (*NullableSendPasswordRecoveryEmailRequest) Unset

type NullableSignUpRequest

type NullableSignUpRequest struct {
	// contains filtered or unexported fields
}

func NewNullableSignUpRequest

func NewNullableSignUpRequest(val *SignUpRequest) *NullableSignUpRequest

func (NullableSignUpRequest) Get

func (NullableSignUpRequest) IsSet

func (v NullableSignUpRequest) IsSet() bool

func (NullableSignUpRequest) MarshalJSON

func (v NullableSignUpRequest) MarshalJSON() ([]byte, error)

func (*NullableSignUpRequest) Set

func (v *NullableSignUpRequest) Set(val *SignUpRequest)

func (*NullableSignUpRequest) UnmarshalJSON

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

func (*NullableSignUpRequest) Unset

func (v *NullableSignUpRequest) Unset()

type NullableSignUpUser

type NullableSignUpUser struct {
	// contains filtered or unexported fields
}

func NewNullableSignUpUser

func NewNullableSignUpUser(val *SignUpUser) *NullableSignUpUser

func (NullableSignUpUser) Get

func (v NullableSignUpUser) Get() *SignUpUser

func (NullableSignUpUser) IsSet

func (v NullableSignUpUser) IsSet() bool

func (NullableSignUpUser) MarshalJSON

func (v NullableSignUpUser) MarshalJSON() ([]byte, error)

func (*NullableSignUpUser) Set

func (v *NullableSignUpUser) Set(val *SignUpUser)

func (*NullableSignUpUser) UnmarshalJSON

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

func (*NullableSignUpUser) Unset

func (v *NullableSignUpUser) Unset()

type NullableSignUpUserAllOfAttributes

type NullableSignUpUserAllOfAttributes struct {
	// contains filtered or unexported fields
}

func (NullableSignUpUserAllOfAttributes) Get

func (NullableSignUpUserAllOfAttributes) IsSet

func (NullableSignUpUserAllOfAttributes) MarshalJSON

func (v NullableSignUpUserAllOfAttributes) MarshalJSON() ([]byte, error)

func (*NullableSignUpUserAllOfAttributes) Set

func (*NullableSignUpUserAllOfAttributes) UnmarshalJSON

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

func (*NullableSignUpUserAllOfAttributes) Unset

type NullableString

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

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

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

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

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type 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 NullableUserAllOfAttributes

type NullableUserAllOfAttributes struct {
	// contains filtered or unexported fields
}

func NewNullableUserAllOfAttributes

func NewNullableUserAllOfAttributes(val *UserAllOfAttributes) *NullableUserAllOfAttributes

func (NullableUserAllOfAttributes) Get

func (NullableUserAllOfAttributes) IsSet

func (NullableUserAllOfAttributes) MarshalJSON

func (v NullableUserAllOfAttributes) MarshalJSON() ([]byte, error)

func (*NullableUserAllOfAttributes) Set

func (*NullableUserAllOfAttributes) UnmarshalJSON

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

func (*NullableUserAllOfAttributes) Unset

func (v *NullableUserAllOfAttributes) Unset()

type NullableUserAllOfRelationships

type NullableUserAllOfRelationships struct {
	// contains filtered or unexported fields
}

func (NullableUserAllOfRelationships) Get

func (NullableUserAllOfRelationships) IsSet

func (NullableUserAllOfRelationships) MarshalJSON

func (v NullableUserAllOfRelationships) MarshalJSON() ([]byte, error)

func (*NullableUserAllOfRelationships) Set

func (*NullableUserAllOfRelationships) UnmarshalJSON

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

func (*NullableUserAllOfRelationships) Unset

func (v *NullableUserAllOfRelationships) Unset()

type NullableUserAllOfRelationshipsTokens

type NullableUserAllOfRelationshipsTokens struct {
	// contains filtered or unexported fields
}

func (NullableUserAllOfRelationshipsTokens) Get

func (NullableUserAllOfRelationshipsTokens) IsSet

func (NullableUserAllOfRelationshipsTokens) MarshalJSON

func (v NullableUserAllOfRelationshipsTokens) MarshalJSON() ([]byte, error)

func (*NullableUserAllOfRelationshipsTokens) Set

func (*NullableUserAllOfRelationshipsTokens) UnmarshalJSON

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

func (*NullableUserAllOfRelationshipsTokens) Unset

type NullableUserKey

type NullableUserKey struct {
	// contains filtered or unexported fields
}

func NewNullableUserKey

func NewNullableUserKey(val *UserKey) *NullableUserKey

func (NullableUserKey) Get

func (v NullableUserKey) Get() *UserKey

func (NullableUserKey) IsSet

func (v NullableUserKey) IsSet() bool

func (NullableUserKey) MarshalJSON

func (v NullableUserKey) MarshalJSON() ([]byte, error)

func (*NullableUserKey) Set

func (v *NullableUserKey) Set(val *UserKey)

func (*NullableUserKey) UnmarshalJSON

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

func (*NullableUserKey) Unset

func (v *NullableUserKey) Unset()

type NullableVerifyEmailCallbackRequest

type NullableVerifyEmailCallbackRequest struct {
	// contains filtered or unexported fields
}

func (NullableVerifyEmailCallbackRequest) Get

func (NullableVerifyEmailCallbackRequest) IsSet

func (NullableVerifyEmailCallbackRequest) MarshalJSON

func (v NullableVerifyEmailCallbackRequest) MarshalJSON() ([]byte, error)

func (*NullableVerifyEmailCallbackRequest) Set

func (*NullableVerifyEmailCallbackRequest) UnmarshalJSON

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

func (*NullableVerifyEmailCallbackRequest) Unset

type OAuth2

type OAuth2 struct {
	Type       string                `json:"type"`
	Attributes OAuth2AllOfAttributes `json:"attributes"`
}

OAuth2 struct for OAuth2

func NewOAuth2

func NewOAuth2(type_ string, attributes OAuth2AllOfAttributes) *OAuth2

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

func NewOAuth2WithDefaults

func NewOAuth2WithDefaults() *OAuth2

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

func (*OAuth2) GetAttributes

func (o *OAuth2) GetAttributes() OAuth2AllOfAttributes

GetAttributes returns the Attributes field value

func (*OAuth2) GetAttributesOk

func (o *OAuth2) GetAttributesOk() (*OAuth2AllOfAttributes, bool)

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

func (*OAuth2) GetType

func (o *OAuth2) GetType() string

GetType returns the Type field value

func (*OAuth2) GetTypeOk

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

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

func (OAuth2) MarshalJSON

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

func (*OAuth2) SetAttributes

func (o *OAuth2) SetAttributes(v OAuth2AllOfAttributes)

SetAttributes sets field value

func (*OAuth2) SetType

func (o *OAuth2) SetType(v string)

SetType sets field value

func (OAuth2) ToMap

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

func (*OAuth2) UnmarshalJSON

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

type OAuth2AllOfAttributes

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

OAuth2AllOfAttributes struct for OAuth2AllOfAttributes

func NewOAuth2AllOfAttributes

func NewOAuth2AllOfAttributes(url string) *OAuth2AllOfAttributes

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

func NewOAuth2AllOfAttributesWithDefaults

func NewOAuth2AllOfAttributesWithDefaults() *OAuth2AllOfAttributes

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

func (*OAuth2AllOfAttributes) GetUrl

func (o *OAuth2AllOfAttributes) GetUrl() string

GetUrl returns the Url field value

func (*OAuth2AllOfAttributes) GetUrlOk

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

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

func (OAuth2AllOfAttributes) MarshalJSON

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

func (*OAuth2AllOfAttributes) SetUrl

func (o *OAuth2AllOfAttributes) SetUrl(v string)

SetUrl sets field value

func (OAuth2AllOfAttributes) ToMap

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

func (*OAuth2AllOfAttributes) UnmarshalJSON

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

type OAuth2Callback

type OAuth2Callback struct {
	Type       string                        `json:"type"`
	Attributes OAuth2CallbackAllOfAttributes `json:"attributes"`
}

OAuth2Callback struct for OAuth2Callback

func NewOAuth2Callback

func NewOAuth2Callback(type_ string, attributes OAuth2CallbackAllOfAttributes) *OAuth2Callback

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

func NewOAuth2CallbackWithDefaults

func NewOAuth2CallbackWithDefaults() *OAuth2Callback

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

func (*OAuth2Callback) GetAttributes

func (o *OAuth2Callback) GetAttributes() OAuth2CallbackAllOfAttributes

GetAttributes returns the Attributes field value

func (*OAuth2Callback) GetAttributesOk

func (o *OAuth2Callback) GetAttributesOk() (*OAuth2CallbackAllOfAttributes, bool)

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

func (*OAuth2Callback) GetType

func (o *OAuth2Callback) GetType() string

GetType returns the Type field value

func (*OAuth2Callback) GetTypeOk

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

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

func (OAuth2Callback) MarshalJSON

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

func (*OAuth2Callback) SetAttributes

func (o *OAuth2Callback) SetAttributes(v OAuth2CallbackAllOfAttributes)

SetAttributes sets field value

func (*OAuth2Callback) SetType

func (o *OAuth2Callback) SetType(v string)

SetType sets field value

func (OAuth2Callback) ToMap

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

func (*OAuth2Callback) UnmarshalJSON

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

type OAuth2CallbackAllOfAttributes

type OAuth2CallbackAllOfAttributes struct {
	Code  string `json:"code"`
	State string `json:"state"`
}

OAuth2CallbackAllOfAttributes struct for OAuth2CallbackAllOfAttributes

func NewOAuth2CallbackAllOfAttributes

func NewOAuth2CallbackAllOfAttributes(code string, state string) *OAuth2CallbackAllOfAttributes

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

func NewOAuth2CallbackAllOfAttributesWithDefaults

func NewOAuth2CallbackAllOfAttributesWithDefaults() *OAuth2CallbackAllOfAttributes

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

func (*OAuth2CallbackAllOfAttributes) GetCode

GetCode returns the Code field value

func (*OAuth2CallbackAllOfAttributes) GetCodeOk

func (o *OAuth2CallbackAllOfAttributes) GetCodeOk() (*string, bool)

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

func (*OAuth2CallbackAllOfAttributes) GetState

func (o *OAuth2CallbackAllOfAttributes) GetState() string

GetState returns the State field value

func (*OAuth2CallbackAllOfAttributes) GetStateOk

func (o *OAuth2CallbackAllOfAttributes) GetStateOk() (*string, bool)

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

func (OAuth2CallbackAllOfAttributes) MarshalJSON

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

func (*OAuth2CallbackAllOfAttributes) SetCode

func (o *OAuth2CallbackAllOfAttributes) SetCode(v string)

SetCode sets field value

func (*OAuth2CallbackAllOfAttributes) SetState

func (o *OAuth2CallbackAllOfAttributes) SetState(v string)

SetState sets field value

func (OAuth2CallbackAllOfAttributes) ToMap

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

func (*OAuth2CallbackAllOfAttributes) UnmarshalJSON

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

type OAuth2Google200Response

type OAuth2Google200Response struct {
	Data OAuth2 `json:"data"`
}

OAuth2Google200Response struct for OAuth2Google200Response

func NewOAuth2Google200Response

func NewOAuth2Google200Response(data OAuth2) *OAuth2Google200Response

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

func NewOAuth2Google200ResponseWithDefaults

func NewOAuth2Google200ResponseWithDefaults() *OAuth2Google200Response

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

func (*OAuth2Google200Response) GetData

func (o *OAuth2Google200Response) GetData() OAuth2

GetData returns the Data field value

func (*OAuth2Google200Response) GetDataOk

func (o *OAuth2Google200Response) GetDataOk() (*OAuth2, bool)

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

func (OAuth2Google200Response) MarshalJSON

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

func (*OAuth2Google200Response) SetData

func (o *OAuth2Google200Response) SetData(v OAuth2)

SetData sets field value

func (OAuth2Google200Response) ToMap

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

func (*OAuth2Google200Response) UnmarshalJSON

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

type OAuth2SignInGoogle200Response

type OAuth2SignInGoogle200Response struct {
	Data     User                            `json:"data"`
	Included []Login200ResponseIncludedInner `json:"included"`
}

OAuth2SignInGoogle200Response struct for OAuth2SignInGoogle200Response

func NewOAuth2SignInGoogle200Response

func NewOAuth2SignInGoogle200Response(data User, included []Login200ResponseIncludedInner) *OAuth2SignInGoogle200Response

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

func NewOAuth2SignInGoogle200ResponseWithDefaults

func NewOAuth2SignInGoogle200ResponseWithDefaults() *OAuth2SignInGoogle200Response

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

func (*OAuth2SignInGoogle200Response) GetData

func (o *OAuth2SignInGoogle200Response) GetData() User

GetData returns the Data field value

func (*OAuth2SignInGoogle200Response) GetDataOk

func (o *OAuth2SignInGoogle200Response) GetDataOk() (*User, bool)

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

func (*OAuth2SignInGoogle200Response) GetIncluded

GetIncluded returns the Included field value

func (*OAuth2SignInGoogle200Response) GetIncludedOk

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

func (OAuth2SignInGoogle200Response) MarshalJSON

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

func (*OAuth2SignInGoogle200Response) SetData

func (o *OAuth2SignInGoogle200Response) SetData(v User)

SetData sets field value

func (*OAuth2SignInGoogle200Response) SetIncluded

SetIncluded sets field value

func (OAuth2SignInGoogle200Response) ToMap

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

func (*OAuth2SignInGoogle200Response) UnmarshalJSON

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

type OAuth2SignInGoogleRequest

type OAuth2SignInGoogleRequest struct {
	Data OAuth2Callback `json:"data"`
}

OAuth2SignInGoogleRequest struct for OAuth2SignInGoogleRequest

func NewOAuth2SignInGoogleRequest

func NewOAuth2SignInGoogleRequest(data OAuth2Callback) *OAuth2SignInGoogleRequest

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

func NewOAuth2SignInGoogleRequestWithDefaults

func NewOAuth2SignInGoogleRequestWithDefaults() *OAuth2SignInGoogleRequest

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

func (*OAuth2SignInGoogleRequest) GetData

GetData returns the Data field value

func (*OAuth2SignInGoogleRequest) GetDataOk

func (o *OAuth2SignInGoogleRequest) GetDataOk() (*OAuth2Callback, bool)

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

func (OAuth2SignInGoogleRequest) MarshalJSON

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

func (*OAuth2SignInGoogleRequest) SetData

SetData sets field value

func (OAuth2SignInGoogleRequest) ToMap

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

func (*OAuth2SignInGoogleRequest) UnmarshalJSON

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

type Post

type Post struct {
	Id            string                  `json:"id"`
	Type          string                  `json:"type"`
	Attributes    PostAllOfAttributes     `json:"attributes"`
	Relationships *PostAllOfRelationships `json:"relationships,omitempty"`
}

Post struct for Post

func NewPost

func NewPost(id string, type_ string, attributes PostAllOfAttributes) *Post

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

func NewPostWithDefaults

func NewPostWithDefaults() *Post

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

func (*Post) GetAttributes

func (o *Post) GetAttributes() PostAllOfAttributes

GetAttributes returns the Attributes field value

func (*Post) GetAttributesOk

func (o *Post) GetAttributesOk() (*PostAllOfAttributes, bool)

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

func (*Post) GetId

func (o *Post) GetId() string

GetId returns the Id field value

func (*Post) GetIdOk

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

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

func (*Post) GetRelationships

func (o *Post) GetRelationships() PostAllOfRelationships

GetRelationships returns the Relationships field value if set, zero value otherwise.

func (*Post) GetRelationshipsOk

func (o *Post) GetRelationshipsOk() (*PostAllOfRelationships, bool)

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

func (*Post) GetType

func (o *Post) GetType() string

GetType returns the Type field value

func (*Post) GetTypeOk

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

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

func (*Post) HasRelationships

func (o *Post) HasRelationships() bool

HasRelationships returns a boolean if a field has been set.

func (Post) MarshalJSON

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

func (*Post) SetAttributes

func (o *Post) SetAttributes(v PostAllOfAttributes)

SetAttributes sets field value

func (*Post) SetId

func (o *Post) SetId(v string)

SetId sets field value

func (*Post) SetRelationships

func (o *Post) SetRelationships(v PostAllOfRelationships)

SetRelationships gets a reference to the given PostAllOfRelationships and assigns it to the Relationships field.

func (*Post) SetType

func (o *Post) SetType(v string)

SetType sets field value

func (Post) ToMap

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

func (*Post) UnmarshalJSON

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

type PostAllOfAttributes

type PostAllOfAttributes struct {
	Title       string  `json:"title"`
	Body        string  `json:"body"`
	TxHash      *string `json:"tx_hash,omitempty"`
	TxTimestamp *int64  `json:"tx_timestamp,omitempty"`
	Starred     bool    `json:"starred"`
	Status      string  `json:"status"`
}

PostAllOfAttributes struct for PostAllOfAttributes

func NewPostAllOfAttributes

func NewPostAllOfAttributes(title string, body string, starred bool, status string) *PostAllOfAttributes

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

func NewPostAllOfAttributesWithDefaults

func NewPostAllOfAttributesWithDefaults() *PostAllOfAttributes

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

func (*PostAllOfAttributes) GetBody

func (o *PostAllOfAttributes) GetBody() string

GetBody returns the Body field value

func (*PostAllOfAttributes) GetBodyOk

func (o *PostAllOfAttributes) GetBodyOk() (*string, bool)

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

func (*PostAllOfAttributes) GetStarred

func (o *PostAllOfAttributes) GetStarred() bool

GetStarred returns the Starred field value

func (*PostAllOfAttributes) GetStarredOk

func (o *PostAllOfAttributes) GetStarredOk() (*bool, bool)

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

func (*PostAllOfAttributes) GetStatus

func (o *PostAllOfAttributes) GetStatus() string

GetStatus returns the Status field value

func (*PostAllOfAttributes) GetStatusOk

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

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

func (*PostAllOfAttributes) GetTitle

func (o *PostAllOfAttributes) GetTitle() string

GetTitle returns the Title field value

func (*PostAllOfAttributes) GetTitleOk

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

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

func (*PostAllOfAttributes) GetTxHash

func (o *PostAllOfAttributes) GetTxHash() string

GetTxHash returns the TxHash field value if set, zero value otherwise.

func (*PostAllOfAttributes) GetTxHashOk

func (o *PostAllOfAttributes) GetTxHashOk() (*string, bool)

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

func (*PostAllOfAttributes) GetTxTimestamp

func (o *PostAllOfAttributes) GetTxTimestamp() int64

GetTxTimestamp returns the TxTimestamp field value if set, zero value otherwise.

func (*PostAllOfAttributes) GetTxTimestampOk

func (o *PostAllOfAttributes) GetTxTimestampOk() (*int64, bool)

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

func (*PostAllOfAttributes) HasTxHash

func (o *PostAllOfAttributes) HasTxHash() bool

HasTxHash returns a boolean if a field has been set.

func (*PostAllOfAttributes) HasTxTimestamp

func (o *PostAllOfAttributes) HasTxTimestamp() bool

HasTxTimestamp returns a boolean if a field has been set.

func (PostAllOfAttributes) MarshalJSON

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

func (*PostAllOfAttributes) SetBody

func (o *PostAllOfAttributes) SetBody(v string)

SetBody sets field value

func (*PostAllOfAttributes) SetStarred

func (o *PostAllOfAttributes) SetStarred(v bool)

SetStarred sets field value

func (*PostAllOfAttributes) SetStatus

func (o *PostAllOfAttributes) SetStatus(v string)

SetStatus sets field value

func (*PostAllOfAttributes) SetTitle

func (o *PostAllOfAttributes) SetTitle(v string)

SetTitle sets field value

func (*PostAllOfAttributes) SetTxHash

func (o *PostAllOfAttributes) SetTxHash(v string)

SetTxHash gets a reference to the given string and assigns it to the TxHash field.

func (*PostAllOfAttributes) SetTxTimestamp

func (o *PostAllOfAttributes) SetTxTimestamp(v int64)

SetTxTimestamp gets a reference to the given int64 and assigns it to the TxTimestamp field.

func (PostAllOfAttributes) ToMap

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

func (*PostAllOfAttributes) UnmarshalJSON

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

type PostAllOfRelationships

type PostAllOfRelationships struct {
	Author PostAllOfRelationshipsAuthor `json:"author"`
}

PostAllOfRelationships struct for PostAllOfRelationships

func NewPostAllOfRelationships

func NewPostAllOfRelationships(author PostAllOfRelationshipsAuthor) *PostAllOfRelationships

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

func NewPostAllOfRelationshipsWithDefaults

func NewPostAllOfRelationshipsWithDefaults() *PostAllOfRelationships

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

func (*PostAllOfRelationships) GetAuthor

GetAuthor returns the Author field value

func (*PostAllOfRelationships) GetAuthorOk

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

func (PostAllOfRelationships) MarshalJSON

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

func (*PostAllOfRelationships) SetAuthor

SetAuthor sets field value

func (PostAllOfRelationships) ToMap

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

func (*PostAllOfRelationships) UnmarshalJSON

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

type PostAllOfRelationshipsAuthor

type PostAllOfRelationshipsAuthor struct {
	Data UserKey `json:"data"`
}

PostAllOfRelationshipsAuthor struct for PostAllOfRelationshipsAuthor

func NewPostAllOfRelationshipsAuthor

func NewPostAllOfRelationshipsAuthor(data UserKey) *PostAllOfRelationshipsAuthor

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

func NewPostAllOfRelationshipsAuthorWithDefaults

func NewPostAllOfRelationshipsAuthorWithDefaults() *PostAllOfRelationshipsAuthor

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

func (*PostAllOfRelationshipsAuthor) GetData

GetData returns the Data field value

func (*PostAllOfRelationshipsAuthor) GetDataOk

func (o *PostAllOfRelationshipsAuthor) GetDataOk() (*UserKey, bool)

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

func (PostAllOfRelationshipsAuthor) MarshalJSON

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

func (*PostAllOfRelationshipsAuthor) SetData

func (o *PostAllOfRelationshipsAuthor) SetData(v UserKey)

SetData sets field value

func (PostAllOfRelationshipsAuthor) ToMap

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

func (*PostAllOfRelationshipsAuthor) UnmarshalJSON

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

type PostHeader

type PostHeader struct {
	Id            string                    `json:"id"`
	Type          string                    `json:"type"`
	Attributes    PostHeaderAllOfAttributes `json:"attributes"`
	Relationships *PostAllOfRelationships   `json:"relationships,omitempty"`
}

PostHeader struct for PostHeader

func NewPostHeader

func NewPostHeader(id string, type_ string, attributes PostHeaderAllOfAttributes) *PostHeader

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

func NewPostHeaderWithDefaults

func NewPostHeaderWithDefaults() *PostHeader

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

func (*PostHeader) GetAttributes

func (o *PostHeader) GetAttributes() PostHeaderAllOfAttributes

GetAttributes returns the Attributes field value

func (*PostHeader) GetAttributesOk

func (o *PostHeader) GetAttributesOk() (*PostHeaderAllOfAttributes, bool)

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

func (*PostHeader) GetId

func (o *PostHeader) GetId() string

GetId returns the Id field value

func (*PostHeader) GetIdOk

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

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

func (*PostHeader) GetRelationships

func (o *PostHeader) GetRelationships() PostAllOfRelationships

GetRelationships returns the Relationships field value if set, zero value otherwise.

func (*PostHeader) GetRelationshipsOk

func (o *PostHeader) GetRelationshipsOk() (*PostAllOfRelationships, bool)

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

func (*PostHeader) GetType

func (o *PostHeader) GetType() string

GetType returns the Type field value

func (*PostHeader) GetTypeOk

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

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

func (*PostHeader) HasRelationships

func (o *PostHeader) HasRelationships() bool

HasRelationships returns a boolean if a field has been set.

func (PostHeader) MarshalJSON

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

func (*PostHeader) SetAttributes

func (o *PostHeader) SetAttributes(v PostHeaderAllOfAttributes)

SetAttributes sets field value

func (*PostHeader) SetId

func (o *PostHeader) SetId(v string)

SetId sets field value

func (*PostHeader) SetRelationships

func (o *PostHeader) SetRelationships(v PostAllOfRelationships)

SetRelationships gets a reference to the given PostAllOfRelationships and assigns it to the Relationships field.

func (*PostHeader) SetType

func (o *PostHeader) SetType(v string)

SetType sets field value

func (PostHeader) ToMap

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

func (*PostHeader) UnmarshalJSON

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

type PostHeaderAllOfAttributes

type PostHeaderAllOfAttributes struct {
	Title       string  `json:"title"`
	TxHash      *string `json:"tx_hash,omitempty"`
	TxTimestamp *int64  `json:"tx_timestamp,omitempty"`
	Starred     bool    `json:"starred"`
	Status      string  `json:"status"`
}

PostHeaderAllOfAttributes struct for PostHeaderAllOfAttributes

func NewPostHeaderAllOfAttributes

func NewPostHeaderAllOfAttributes(title string, starred bool, status string) *PostHeaderAllOfAttributes

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

func NewPostHeaderAllOfAttributesWithDefaults

func NewPostHeaderAllOfAttributesWithDefaults() *PostHeaderAllOfAttributes

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

func (*PostHeaderAllOfAttributes) GetStarred

func (o *PostHeaderAllOfAttributes) GetStarred() bool

GetStarred returns the Starred field value

func (*PostHeaderAllOfAttributes) GetStarredOk

func (o *PostHeaderAllOfAttributes) GetStarredOk() (*bool, bool)

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

func (*PostHeaderAllOfAttributes) GetStatus

func (o *PostHeaderAllOfAttributes) GetStatus() string

GetStatus returns the Status field value

func (*PostHeaderAllOfAttributes) GetStatusOk

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

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

func (*PostHeaderAllOfAttributes) GetTitle

func (o *PostHeaderAllOfAttributes) GetTitle() string

GetTitle returns the Title field value

func (*PostHeaderAllOfAttributes) GetTitleOk

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

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

func (*PostHeaderAllOfAttributes) GetTxHash

func (o *PostHeaderAllOfAttributes) GetTxHash() string

GetTxHash returns the TxHash field value if set, zero value otherwise.

func (*PostHeaderAllOfAttributes) GetTxHashOk

func (o *PostHeaderAllOfAttributes) GetTxHashOk() (*string, bool)

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

func (*PostHeaderAllOfAttributes) GetTxTimestamp

func (o *PostHeaderAllOfAttributes) GetTxTimestamp() int64

GetTxTimestamp returns the TxTimestamp field value if set, zero value otherwise.

func (*PostHeaderAllOfAttributes) GetTxTimestampOk

func (o *PostHeaderAllOfAttributes) GetTxTimestampOk() (*int64, bool)

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

func (*PostHeaderAllOfAttributes) HasTxHash

func (o *PostHeaderAllOfAttributes) HasTxHash() bool

HasTxHash returns a boolean if a field has been set.

func (*PostHeaderAllOfAttributes) HasTxTimestamp

func (o *PostHeaderAllOfAttributes) HasTxTimestamp() bool

HasTxTimestamp returns a boolean if a field has been set.

func (PostHeaderAllOfAttributes) MarshalJSON

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

func (*PostHeaderAllOfAttributes) SetStarred

func (o *PostHeaderAllOfAttributes) SetStarred(v bool)

SetStarred sets field value

func (*PostHeaderAllOfAttributes) SetStatus

func (o *PostHeaderAllOfAttributes) SetStatus(v string)

SetStatus sets field value

func (*PostHeaderAllOfAttributes) SetTitle

func (o *PostHeaderAllOfAttributes) SetTitle(v string)

SetTitle sets field value

func (*PostHeaderAllOfAttributes) SetTxHash

func (o *PostHeaderAllOfAttributes) SetTxHash(v string)

SetTxHash gets a reference to the given string and assigns it to the TxHash field.

func (*PostHeaderAllOfAttributes) SetTxTimestamp

func (o *PostHeaderAllOfAttributes) SetTxTimestamp(v int64)

SetTxTimestamp gets a reference to the given int64 and assigns it to the TxTimestamp field.

func (PostHeaderAllOfAttributes) ToMap

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

func (*PostHeaderAllOfAttributes) UnmarshalJSON

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

type PostKey

type PostKey struct {
	Id   string `json:"id"`
	Type string `json:"type"`
}

PostKey struct for PostKey

func NewPostKey

func NewPostKey(id string, type_ string) *PostKey

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

func NewPostKeyWithDefaults

func NewPostKeyWithDefaults() *PostKey

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

func (*PostKey) GetId

func (o *PostKey) GetId() string

GetId returns the Id field value

func (*PostKey) GetIdOk

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

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

func (*PostKey) GetType

func (o *PostKey) GetType() string

GetType returns the Type field value

func (*PostKey) GetTypeOk

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

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

func (PostKey) MarshalJSON

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

func (*PostKey) SetId

func (o *PostKey) SetId(v string)

SetId sets field value

func (*PostKey) SetType

func (o *PostKey) SetType(v string)

SetType sets field value

func (PostKey) ToMap

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

func (*PostKey) UnmarshalJSON

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

type PostsAmount

type PostsAmount struct {
	Type       string                     `json:"type"`
	Attributes PostsAmountAllOfAttributes `json:"attributes"`
}

PostsAmount struct for PostsAmount

func NewPostsAmount

func NewPostsAmount(type_ string, attributes PostsAmountAllOfAttributes) *PostsAmount

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

func NewPostsAmountWithDefaults

func NewPostsAmountWithDefaults() *PostsAmount

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

func (*PostsAmount) GetAttributes

func (o *PostsAmount) GetAttributes() PostsAmountAllOfAttributes

GetAttributes returns the Attributes field value

func (*PostsAmount) GetAttributesOk

func (o *PostsAmount) GetAttributesOk() (*PostsAmountAllOfAttributes, bool)

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

func (*PostsAmount) GetType

func (o *PostsAmount) GetType() string

GetType returns the Type field value

func (*PostsAmount) GetTypeOk

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

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

func (PostsAmount) MarshalJSON

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

func (*PostsAmount) SetAttributes

func (o *PostsAmount) SetAttributes(v PostsAmountAllOfAttributes)

SetAttributes sets field value

func (*PostsAmount) SetType

func (o *PostsAmount) SetType(v string)

SetType sets field value

func (PostsAmount) ToMap

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

func (*PostsAmount) UnmarshalJSON

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

type PostsAmountAllOfAttributes

type PostsAmountAllOfAttributes struct {
	Amount int64 `json:"amount"`
}

PostsAmountAllOfAttributes struct for PostsAmountAllOfAttributes

func NewPostsAmountAllOfAttributes

func NewPostsAmountAllOfAttributes(amount int64) *PostsAmountAllOfAttributes

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

func NewPostsAmountAllOfAttributesWithDefaults

func NewPostsAmountAllOfAttributesWithDefaults() *PostsAmountAllOfAttributes

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

func (*PostsAmountAllOfAttributes) GetAmount

func (o *PostsAmountAllOfAttributes) GetAmount() int64

GetAmount returns the Amount field value

func (*PostsAmountAllOfAttributes) GetAmountOk

func (o *PostsAmountAllOfAttributes) GetAmountOk() (*int64, bool)

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

func (PostsAmountAllOfAttributes) MarshalJSON

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

func (*PostsAmountAllOfAttributes) SetAmount

func (o *PostsAmountAllOfAttributes) SetAmount(v int64)

SetAmount sets field value

func (PostsAmountAllOfAttributes) ToMap

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

func (*PostsAmountAllOfAttributes) UnmarshalJSON

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

type RecoverPassword

type RecoverPassword struct {
	Type       string                         `json:"type"`
	Attributes RecoverPasswordAllOfAttributes `json:"attributes"`
}

RecoverPassword struct for RecoverPassword

func NewRecoverPassword

func NewRecoverPassword(type_ string, attributes RecoverPasswordAllOfAttributes) *RecoverPassword

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

func NewRecoverPasswordWithDefaults

func NewRecoverPasswordWithDefaults() *RecoverPassword

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

func (*RecoverPassword) GetAttributes

GetAttributes returns the Attributes field value

func (*RecoverPassword) GetAttributesOk

func (o *RecoverPassword) GetAttributesOk() (*RecoverPasswordAllOfAttributes, bool)

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

func (*RecoverPassword) GetType

func (o *RecoverPassword) GetType() string

GetType returns the Type field value

func (*RecoverPassword) GetTypeOk

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

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

func (RecoverPassword) MarshalJSON

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

func (*RecoverPassword) SetAttributes

func (o *RecoverPassword) SetAttributes(v RecoverPasswordAllOfAttributes)

SetAttributes sets field value

func (*RecoverPassword) SetType

func (o *RecoverPassword) SetType(v string)

SetType sets field value

func (RecoverPassword) ToMap

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

func (*RecoverPassword) UnmarshalJSON

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

type RecoverPasswordAllOfAttributes

type RecoverPasswordAllOfAttributes struct {
	Token       string `json:"token"`
	NewPassword string `json:"new_password"`
}

RecoverPasswordAllOfAttributes struct for RecoverPasswordAllOfAttributes

func NewRecoverPasswordAllOfAttributes

func NewRecoverPasswordAllOfAttributes(token string, newPassword string) *RecoverPasswordAllOfAttributes

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

func NewRecoverPasswordAllOfAttributesWithDefaults

func NewRecoverPasswordAllOfAttributesWithDefaults() *RecoverPasswordAllOfAttributes

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

func (*RecoverPasswordAllOfAttributes) GetNewPassword

func (o *RecoverPasswordAllOfAttributes) GetNewPassword() string

GetNewPassword returns the NewPassword field value

func (*RecoverPasswordAllOfAttributes) GetNewPasswordOk

func (o *RecoverPasswordAllOfAttributes) GetNewPasswordOk() (*string, bool)

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

func (*RecoverPasswordAllOfAttributes) GetToken

func (o *RecoverPasswordAllOfAttributes) GetToken() string

GetToken returns the Token field value

func (*RecoverPasswordAllOfAttributes) GetTokenOk

func (o *RecoverPasswordAllOfAttributes) GetTokenOk() (*string, bool)

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

func (RecoverPasswordAllOfAttributes) MarshalJSON

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

func (*RecoverPasswordAllOfAttributes) SetNewPassword

func (o *RecoverPasswordAllOfAttributes) SetNewPassword(v string)

SetNewPassword sets field value

func (*RecoverPasswordAllOfAttributes) SetToken

func (o *RecoverPasswordAllOfAttributes) SetToken(v string)

SetToken sets field value

func (RecoverPasswordAllOfAttributes) ToMap

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

func (*RecoverPasswordAllOfAttributes) UnmarshalJSON

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

type RecoverPasswordCallback200Response

type RecoverPasswordCallback200Response struct {
	Data User `json:"data"`
}

RecoverPasswordCallback200Response struct for RecoverPasswordCallback200Response

func NewRecoverPasswordCallback200Response

func NewRecoverPasswordCallback200Response(data User) *RecoverPasswordCallback200Response

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

func NewRecoverPasswordCallback200ResponseWithDefaults

func NewRecoverPasswordCallback200ResponseWithDefaults() *RecoverPasswordCallback200Response

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

func (*RecoverPasswordCallback200Response) GetData

GetData returns the Data field value

func (*RecoverPasswordCallback200Response) GetDataOk

func (o *RecoverPasswordCallback200Response) GetDataOk() (*User, bool)

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

func (RecoverPasswordCallback200Response) MarshalJSON

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

func (*RecoverPasswordCallback200Response) SetData

SetData sets field value

func (RecoverPasswordCallback200Response) ToMap

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

func (*RecoverPasswordCallback200Response) UnmarshalJSON

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

type RecoverPasswordCallbackRequest

type RecoverPasswordCallbackRequest struct {
	Data RecoverPassword `json:"data"`
}

RecoverPasswordCallbackRequest struct for RecoverPasswordCallbackRequest

func NewRecoverPasswordCallbackRequest

func NewRecoverPasswordCallbackRequest(data RecoverPassword) *RecoverPasswordCallbackRequest

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

func NewRecoverPasswordCallbackRequestWithDefaults

func NewRecoverPasswordCallbackRequestWithDefaults() *RecoverPasswordCallbackRequest

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

func (*RecoverPasswordCallbackRequest) GetData

GetData returns the Data field value

func (*RecoverPasswordCallbackRequest) GetDataOk

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

func (RecoverPasswordCallbackRequest) MarshalJSON

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

func (*RecoverPasswordCallbackRequest) SetData

SetData sets field value

func (RecoverPasswordCallbackRequest) ToMap

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

func (*RecoverPasswordCallbackRequest) UnmarshalJSON

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

type Refresh200Response

type Refresh200Response struct {
	Data AuthToken `json:"data"`
}

Refresh200Response struct for Refresh200Response

func NewRefresh200Response

func NewRefresh200Response(data AuthToken) *Refresh200Response

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

func NewRefresh200ResponseWithDefaults

func NewRefresh200ResponseWithDefaults() *Refresh200Response

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

func (*Refresh200Response) GetData

func (o *Refresh200Response) GetData() AuthToken

GetData returns the Data field value

func (*Refresh200Response) GetDataOk

func (o *Refresh200Response) GetDataOk() (*AuthToken, bool)

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

func (Refresh200Response) MarshalJSON

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

func (*Refresh200Response) SetData

func (o *Refresh200Response) SetData(v AuthToken)

SetData sets field value

func (Refresh200Response) ToMap

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

func (*Refresh200Response) UnmarshalJSON

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

type SendPasswordRecoveryEmailRequest

type SendPasswordRecoveryEmailRequest struct {
	Data Email `json:"data"`
}

SendPasswordRecoveryEmailRequest struct for SendPasswordRecoveryEmailRequest

func NewSendPasswordRecoveryEmailRequest

func NewSendPasswordRecoveryEmailRequest(data Email) *SendPasswordRecoveryEmailRequest

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

func NewSendPasswordRecoveryEmailRequestWithDefaults

func NewSendPasswordRecoveryEmailRequestWithDefaults() *SendPasswordRecoveryEmailRequest

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

func (*SendPasswordRecoveryEmailRequest) GetData

GetData returns the Data field value

func (*SendPasswordRecoveryEmailRequest) GetDataOk

func (o *SendPasswordRecoveryEmailRequest) GetDataOk() (*Email, bool)

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

func (SendPasswordRecoveryEmailRequest) MarshalJSON

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

func (*SendPasswordRecoveryEmailRequest) SetData

SetData sets field value

func (SendPasswordRecoveryEmailRequest) ToMap

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

func (*SendPasswordRecoveryEmailRequest) UnmarshalJSON

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

type SignUpRequest

type SignUpRequest struct {
	Data SignUpUser `json:"data"`
}

SignUpRequest struct for SignUpRequest

func NewSignUpRequest

func NewSignUpRequest(data SignUpUser) *SignUpRequest

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

func NewSignUpRequestWithDefaults

func NewSignUpRequestWithDefaults() *SignUpRequest

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

func (*SignUpRequest) GetData

func (o *SignUpRequest) GetData() SignUpUser

GetData returns the Data field value

func (*SignUpRequest) GetDataOk

func (o *SignUpRequest) GetDataOk() (*SignUpUser, bool)

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

func (SignUpRequest) MarshalJSON

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

func (*SignUpRequest) SetData

func (o *SignUpRequest) SetData(v SignUpUser)

SetData sets field value

func (SignUpRequest) ToMap

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

func (*SignUpRequest) UnmarshalJSON

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

type SignUpUser

type SignUpUser struct {
	Type       string                    `json:"type"`
	Attributes SignUpUserAllOfAttributes `json:"attributes"`
}

SignUpUser struct for SignUpUser

func NewSignUpUser

func NewSignUpUser(type_ string, attributes SignUpUserAllOfAttributes) *SignUpUser

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

func NewSignUpUserWithDefaults

func NewSignUpUserWithDefaults() *SignUpUser

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

func (*SignUpUser) GetAttributes

func (o *SignUpUser) GetAttributes() SignUpUserAllOfAttributes

GetAttributes returns the Attributes field value

func (*SignUpUser) GetAttributesOk

func (o *SignUpUser) GetAttributesOk() (*SignUpUserAllOfAttributes, bool)

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

func (*SignUpUser) GetType

func (o *SignUpUser) GetType() string

GetType returns the Type field value

func (*SignUpUser) GetTypeOk

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

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

func (SignUpUser) MarshalJSON

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

func (*SignUpUser) SetAttributes

func (o *SignUpUser) SetAttributes(v SignUpUserAllOfAttributes)

SetAttributes sets field value

func (*SignUpUser) SetType

func (o *SignUpUser) SetType(v string)

SetType sets field value

func (SignUpUser) ToMap

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

func (*SignUpUser) UnmarshalJSON

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

type SignUpUserAllOfAttributes

type SignUpUserAllOfAttributes struct {
	Name     string `json:"name"`
	Email    string `json:"email"`
	Password string `json:"password"`
}

SignUpUserAllOfAttributes struct for SignUpUserAllOfAttributes

func NewSignUpUserAllOfAttributes

func NewSignUpUserAllOfAttributes(name string, email string, password string) *SignUpUserAllOfAttributes

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

func NewSignUpUserAllOfAttributesWithDefaults

func NewSignUpUserAllOfAttributesWithDefaults() *SignUpUserAllOfAttributes

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

func (*SignUpUserAllOfAttributes) GetEmail

func (o *SignUpUserAllOfAttributes) GetEmail() string

GetEmail returns the Email field value

func (*SignUpUserAllOfAttributes) GetEmailOk

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

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

func (*SignUpUserAllOfAttributes) GetName

func (o *SignUpUserAllOfAttributes) GetName() string

GetName returns the Name field value

func (*SignUpUserAllOfAttributes) GetNameOk

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

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

func (*SignUpUserAllOfAttributes) GetPassword

func (o *SignUpUserAllOfAttributes) GetPassword() string

GetPassword returns the Password field value

func (*SignUpUserAllOfAttributes) GetPasswordOk

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

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

func (SignUpUserAllOfAttributes) MarshalJSON

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

func (*SignUpUserAllOfAttributes) SetEmail

func (o *SignUpUserAllOfAttributes) SetEmail(v string)

SetEmail sets field value

func (*SignUpUserAllOfAttributes) SetName

func (o *SignUpUserAllOfAttributes) SetName(v string)

SetName sets field value

func (*SignUpUserAllOfAttributes) SetPassword

func (o *SignUpUserAllOfAttributes) SetPassword(v string)

SetPassword sets field value

func (SignUpUserAllOfAttributes) ToMap

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

func (*SignUpUserAllOfAttributes) UnmarshalJSON

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

type User

type User struct {
	Id            string                  `json:"id"`
	Type          string                  `json:"type"`
	Attributes    UserAllOfAttributes     `json:"attributes"`
	Relationships *UserAllOfRelationships `json:"relationships,omitempty"`
}

User struct for User

func NewUser

func NewUser(id string, type_ string, attributes UserAllOfAttributes) *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) GetAttributes

func (o *User) GetAttributes() UserAllOfAttributes

GetAttributes returns the Attributes field value

func (*User) GetAttributesOk

func (o *User) GetAttributesOk() (*UserAllOfAttributes, bool)

GetAttributesOk returns a tuple with the Attributes field value 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) GetRelationships

func (o *User) GetRelationships() UserAllOfRelationships

GetRelationships returns the Relationships field value if set, zero value otherwise.

func (*User) GetRelationshipsOk

func (o *User) GetRelationshipsOk() (*UserAllOfRelationships, bool)

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

func (*User) GetType

func (o *User) GetType() string

GetType returns the Type field value

func (*User) GetTypeOk

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

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

func (*User) HasRelationships

func (o *User) HasRelationships() bool

HasRelationships returns a boolean if a field has been set.

func (User) MarshalJSON

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

func (*User) SetAttributes

func (o *User) SetAttributes(v UserAllOfAttributes)

SetAttributes sets field value

func (*User) SetId

func (o *User) SetId(v string)

SetId sets field value

func (*User) SetRelationships

func (o *User) SetRelationships(v UserAllOfRelationships)

SetRelationships gets a reference to the given UserAllOfRelationships and assigns it to the Relationships field.

func (*User) SetType

func (o *User) SetType(v string)

SetType sets field value

func (User) ToMap

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

func (*User) UnmarshalJSON

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

type UserAllOfAttributes

type UserAllOfAttributes struct {
	AuthorId       int32   `json:"author_id"`
	Email          string  `json:"email"`
	Name           string  `json:"name"`
	EmailVerified  bool    `json:"email_verified"`
	Oauth2User     bool    `json:"oauth2_user"`
	Oauth2Provider *string `json:"oauth2_provider,omitempty"`
	CreatedAt      int64   `json:"created_at"`
	UpdatedAt      int64   `json:"updated_at"`
}

UserAllOfAttributes struct for UserAllOfAttributes

func NewUserAllOfAttributes

func NewUserAllOfAttributes(authorId int32, email string, name string, emailVerified bool, oauth2User bool, createdAt int64, updatedAt int64) *UserAllOfAttributes

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

func NewUserAllOfAttributesWithDefaults

func NewUserAllOfAttributesWithDefaults() *UserAllOfAttributes

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

func (*UserAllOfAttributes) GetAuthorId

func (o *UserAllOfAttributes) GetAuthorId() int32

GetAuthorId returns the AuthorId field value

func (*UserAllOfAttributes) GetAuthorIdOk

func (o *UserAllOfAttributes) GetAuthorIdOk() (*int32, bool)

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

func (*UserAllOfAttributes) GetCreatedAt

func (o *UserAllOfAttributes) GetCreatedAt() int64

GetCreatedAt returns the CreatedAt field value

func (*UserAllOfAttributes) GetCreatedAtOk

func (o *UserAllOfAttributes) GetCreatedAtOk() (*int64, bool)

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

func (*UserAllOfAttributes) GetEmail

func (o *UserAllOfAttributes) GetEmail() string

GetEmail returns the Email field value

func (*UserAllOfAttributes) GetEmailOk

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

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

func (*UserAllOfAttributes) GetEmailVerified

func (o *UserAllOfAttributes) GetEmailVerified() bool

GetEmailVerified returns the EmailVerified field value

func (*UserAllOfAttributes) GetEmailVerifiedOk

func (o *UserAllOfAttributes) GetEmailVerifiedOk() (*bool, bool)

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

func (*UserAllOfAttributes) GetName

func (o *UserAllOfAttributes) GetName() string

GetName returns the Name field value

func (*UserAllOfAttributes) GetNameOk

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

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

func (*UserAllOfAttributes) GetOauth2Provider

func (o *UserAllOfAttributes) GetOauth2Provider() string

GetOauth2Provider returns the Oauth2Provider field value if set, zero value otherwise.

func (*UserAllOfAttributes) GetOauth2ProviderOk

func (o *UserAllOfAttributes) GetOauth2ProviderOk() (*string, bool)

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

func (*UserAllOfAttributes) GetOauth2User

func (o *UserAllOfAttributes) GetOauth2User() bool

GetOauth2User returns the Oauth2User field value

func (*UserAllOfAttributes) GetOauth2UserOk

func (o *UserAllOfAttributes) GetOauth2UserOk() (*bool, bool)

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

func (*UserAllOfAttributes) GetUpdatedAt

func (o *UserAllOfAttributes) GetUpdatedAt() int64

GetUpdatedAt returns the UpdatedAt field value

func (*UserAllOfAttributes) GetUpdatedAtOk

func (o *UserAllOfAttributes) GetUpdatedAtOk() (*int64, bool)

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

func (*UserAllOfAttributes) HasOauth2Provider

func (o *UserAllOfAttributes) HasOauth2Provider() bool

HasOauth2Provider returns a boolean if a field has been set.

func (UserAllOfAttributes) MarshalJSON

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

func (*UserAllOfAttributes) SetAuthorId

func (o *UserAllOfAttributes) SetAuthorId(v int32)

SetAuthorId sets field value

func (*UserAllOfAttributes) SetCreatedAt

func (o *UserAllOfAttributes) SetCreatedAt(v int64)

SetCreatedAt sets field value

func (*UserAllOfAttributes) SetEmail

func (o *UserAllOfAttributes) SetEmail(v string)

SetEmail sets field value

func (*UserAllOfAttributes) SetEmailVerified

func (o *UserAllOfAttributes) SetEmailVerified(v bool)

SetEmailVerified sets field value

func (*UserAllOfAttributes) SetName

func (o *UserAllOfAttributes) SetName(v string)

SetName sets field value

func (*UserAllOfAttributes) SetOauth2Provider

func (o *UserAllOfAttributes) SetOauth2Provider(v string)

SetOauth2Provider gets a reference to the given string and assigns it to the Oauth2Provider field.

func (*UserAllOfAttributes) SetOauth2User

func (o *UserAllOfAttributes) SetOauth2User(v bool)

SetOauth2User sets field value

func (*UserAllOfAttributes) SetUpdatedAt

func (o *UserAllOfAttributes) SetUpdatedAt(v int64)

SetUpdatedAt sets field value

func (UserAllOfAttributes) ToMap

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

func (*UserAllOfAttributes) UnmarshalJSON

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

type UserAllOfRelationships

type UserAllOfRelationships struct {
	Tokens *UserAllOfRelationshipsTokens `json:"tokens,omitempty"`
}

UserAllOfRelationships struct for UserAllOfRelationships

func NewUserAllOfRelationships

func NewUserAllOfRelationships() *UserAllOfRelationships

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

func NewUserAllOfRelationshipsWithDefaults

func NewUserAllOfRelationshipsWithDefaults() *UserAllOfRelationships

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

func (*UserAllOfRelationships) GetTokens

GetTokens returns the Tokens field value if set, zero value otherwise.

func (*UserAllOfRelationships) GetTokensOk

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

func (*UserAllOfRelationships) HasTokens

func (o *UserAllOfRelationships) HasTokens() bool

HasTokens returns a boolean if a field has been set.

func (UserAllOfRelationships) MarshalJSON

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

func (*UserAllOfRelationships) SetTokens

SetTokens gets a reference to the given UserAllOfRelationshipsTokens and assigns it to the Tokens field.

func (UserAllOfRelationships) ToMap

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

type UserAllOfRelationshipsTokens

type UserAllOfRelationshipsTokens struct {
	Data AuthTokenKey `json:"data"`
}

UserAllOfRelationshipsTokens struct for UserAllOfRelationshipsTokens

func NewUserAllOfRelationshipsTokens

func NewUserAllOfRelationshipsTokens(data AuthTokenKey) *UserAllOfRelationshipsTokens

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

func NewUserAllOfRelationshipsTokensWithDefaults

func NewUserAllOfRelationshipsTokensWithDefaults() *UserAllOfRelationshipsTokens

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

func (*UserAllOfRelationshipsTokens) GetData

GetData returns the Data field value

func (*UserAllOfRelationshipsTokens) GetDataOk

func (o *UserAllOfRelationshipsTokens) GetDataOk() (*AuthTokenKey, bool)

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

func (UserAllOfRelationshipsTokens) MarshalJSON

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

func (*UserAllOfRelationshipsTokens) SetData

SetData sets field value

func (UserAllOfRelationshipsTokens) ToMap

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

func (*UserAllOfRelationshipsTokens) UnmarshalJSON

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

type UserKey

type UserKey struct {
	Id   string `json:"id"`
	Type string `json:"type"`
}

UserKey struct for UserKey

func NewUserKey

func NewUserKey(id string, type_ string) *UserKey

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

func NewUserKeyWithDefaults

func NewUserKeyWithDefaults() *UserKey

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

func (*UserKey) GetId

func (o *UserKey) GetId() string

GetId returns the Id field value

func (*UserKey) GetIdOk

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

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

func (*UserKey) GetType

func (o *UserKey) GetType() string

GetType returns the Type field value

func (*UserKey) GetTypeOk

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

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

func (UserKey) MarshalJSON

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

func (*UserKey) SetId

func (o *UserKey) SetId(v string)

SetId sets field value

func (*UserKey) SetType

func (o *UserKey) SetType(v string)

SetType sets field value

func (UserKey) ToMap

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

func (*UserKey) UnmarshalJSON

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

type VerifyEmailCallbackRequest

type VerifyEmailCallbackRequest struct {
	Data EmailToken `json:"data"`
}

VerifyEmailCallbackRequest struct for VerifyEmailCallbackRequest

func NewVerifyEmailCallbackRequest

func NewVerifyEmailCallbackRequest(data EmailToken) *VerifyEmailCallbackRequest

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

func NewVerifyEmailCallbackRequestWithDefaults

func NewVerifyEmailCallbackRequestWithDefaults() *VerifyEmailCallbackRequest

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

func (*VerifyEmailCallbackRequest) GetData

GetData returns the Data field value

func (*VerifyEmailCallbackRequest) GetDataOk

func (o *VerifyEmailCallbackRequest) GetDataOk() (*EmailToken, bool)

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

func (VerifyEmailCallbackRequest) MarshalJSON

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

func (*VerifyEmailCallbackRequest) SetData

func (o *VerifyEmailCallbackRequest) SetData(v EmailToken)

SetData sets field value

func (VerifyEmailCallbackRequest) ToMap

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

func (*VerifyEmailCallbackRequest) UnmarshalJSON

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

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL