tinybeans

package module
v0.0.0-...-187cb6d Latest Latest
Warning

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

Go to latest
Published: Dec 22, 2022 License: LGPL-2.1 Imports: 22 Imported by: 0

README

Go API client for tinybeans

Reverse Engineered API for Tinybeans. This is horribly incomplete, and not supported

Overview

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

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

Installation

Install the following dependencies:

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

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

import tinybeans "github.com/bp1222/tinybeans-api/go-client"

To use a proxy, set the environment variable HTTP_PROXY:

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

Configuration of Server URL

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

Select Server Configuration

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

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

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

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

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

URLs Configuration per Operation

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

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

Documentation for API Endpoints

All URIs are relative to https://tinybeans.com/api/1

Class Method HTTP request Description
AuthApi Login Post /authenticate Login to Tinybeans
AuthApi UsersMe Get /users/me Check to Tinybeans
FollowingsApi Followings Get /followings Tinybeans Followings
JournalsApi JournalEntries Get /journals/{journal}/entries Tinybeans Journal Entries
JournalsApi Journals Get /journals Tinybeans Journals

Documentation For Models

Documentation For Authorization

ApiKeyAuth
  • Type: API key
  • API key parameter name: authorization
  • Location: HTTP header

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

Documentation for Utility Methods

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

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

Author

dave@mudsite.com

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
	ContextOAuth2 = contextKey("token")

	// ContextBasicAuth takes BasicAuth as authentication for the request.
	ContextBasicAuth = contextKey("basic")

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

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

	// ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
	ContextHttpSignatureAuth = contextKey("httpsignature")

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

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

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

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

Functions

func CacheExpires

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

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

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	AuthApi AuthApi

	FollowingsApi FollowingsApi

	JournalsApi JournalsApi
	// contains filtered or unexported fields
}

APIClient manages communication with the Tinybeans API - Unofficial API v0.1.1 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

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

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

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

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

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

type APIResponse

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

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

type ApiFollowingsRequest

type ApiFollowingsRequest struct {
	ApiService FollowingsApi
	// contains filtered or unexported fields
}

func (ApiFollowingsRequest) Execute

type ApiJournalEntriesRequest

type ApiJournalEntriesRequest struct {
	ApiService JournalsApi
	// contains filtered or unexported fields
}

func (ApiJournalEntriesRequest) Execute

func (ApiJournalEntriesRequest) FetchSize

How many to fetch

func (ApiJournalEntriesRequest) IdsOnly

ID's Only?

func (ApiJournalEntriesRequest) Last

Last (timestamp) you viewed [non inclusive]

func (ApiJournalEntriesRequest) Since

Since (timestamp) most recent (timestamp) you know about [inclusive]

type ApiJournalsRequest

type ApiJournalsRequest struct {
	ApiService JournalsApi
	// contains filtered or unexported fields
}

func (ApiJournalsRequest) Execute

func (r ApiJournalsRequest) Execute() (*Journals, *http.Response, error)

type ApiLoginRequest

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

func (ApiLoginRequest) AuthenticateRequst

func (r ApiLoginRequest) AuthenticateRequst(authenticateRequst AuthenticateRequst) ApiLoginRequest

Login Information

func (ApiLoginRequest) Execute

type ApiUsersMeRequest

type ApiUsersMeRequest struct {
	ApiService AuthApi
	// contains filtered or unexported fields
}

func (ApiUsersMeRequest) Execute

func (r ApiUsersMeRequest) Execute() (*UsersMe, *http.Response, error)

type AuthApi

type AuthApi interface {

	/*
		Login Login to Tinybeans

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

	// LoginExecute executes the request
	//  @return AuthenticateResponse
	LoginExecute(r ApiLoginRequest) (*AuthenticateResponse, *http.Response, error)

	/*
		UsersMe Check to Tinybeans

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

	// UsersMeExecute executes the request
	//  @return UsersMe
	UsersMeExecute(r ApiUsersMeRequest) (*UsersMe, *http.Response, error)
}

type AuthApiService

type AuthApiService service

AuthApiService AuthApi service

func (*AuthApiService) Login

Login Login to Tinybeans

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

func (*AuthApiService) LoginExecute

Execute executes the request

@return AuthenticateResponse

func (*AuthApiService) UsersMe

UsersMe Check to Tinybeans

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

func (*AuthApiService) UsersMeExecute

func (a *AuthApiService) UsersMeExecute(r ApiUsersMeRequest) (*UsersMe, *http.Response, error)

Execute executes the request

@return UsersMe

type AuthenticateRequst

type AuthenticateRequst struct {
	ClientId    *string `json:"clientId,omitempty"`
	DeviceId    *string `json:"deviceId,omitempty"`
	InviteToken *string `json:"inviteToken,omitempty"`
	Password    *string `json:"password,omitempty"`
	RememberMe  *bool   `json:"rememberMe,omitempty"`
	Username    *string `json:"username,omitempty"`
}

AuthenticateRequst struct for AuthenticateRequst

func NewAuthenticateRequst

func NewAuthenticateRequst() *AuthenticateRequst

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

func NewAuthenticateRequstWithDefaults

func NewAuthenticateRequstWithDefaults() *AuthenticateRequst

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

func (*AuthenticateRequst) GetClientId

func (o *AuthenticateRequst) GetClientId() string

GetClientId returns the ClientId field value if set, zero value otherwise.

func (*AuthenticateRequst) GetClientIdOk

func (o *AuthenticateRequst) GetClientIdOk() (*string, bool)

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

func (*AuthenticateRequst) GetDeviceId

func (o *AuthenticateRequst) GetDeviceId() string

GetDeviceId returns the DeviceId field value if set, zero value otherwise.

func (*AuthenticateRequst) GetDeviceIdOk

func (o *AuthenticateRequst) GetDeviceIdOk() (*string, bool)

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

func (*AuthenticateRequst) GetInviteToken

func (o *AuthenticateRequst) GetInviteToken() string

GetInviteToken returns the InviteToken field value if set, zero value otherwise.

func (*AuthenticateRequst) GetInviteTokenOk

func (o *AuthenticateRequst) GetInviteTokenOk() (*string, bool)

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

func (*AuthenticateRequst) GetPassword

func (o *AuthenticateRequst) GetPassword() string

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

func (*AuthenticateRequst) GetPasswordOk

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

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

func (*AuthenticateRequst) GetRememberMe

func (o *AuthenticateRequst) GetRememberMe() bool

GetRememberMe returns the RememberMe field value if set, zero value otherwise.

func (*AuthenticateRequst) GetRememberMeOk

func (o *AuthenticateRequst) GetRememberMeOk() (*bool, bool)

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

func (*AuthenticateRequst) GetUsername

func (o *AuthenticateRequst) GetUsername() string

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

func (*AuthenticateRequst) GetUsernameOk

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

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

func (*AuthenticateRequst) HasClientId

func (o *AuthenticateRequst) HasClientId() bool

HasClientId returns a boolean if a field has been set.

func (*AuthenticateRequst) HasDeviceId

func (o *AuthenticateRequst) HasDeviceId() bool

HasDeviceId returns a boolean if a field has been set.

func (*AuthenticateRequst) HasInviteToken

func (o *AuthenticateRequst) HasInviteToken() bool

HasInviteToken returns a boolean if a field has been set.

func (*AuthenticateRequst) HasPassword

func (o *AuthenticateRequst) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*AuthenticateRequst) HasRememberMe

func (o *AuthenticateRequst) HasRememberMe() bool

HasRememberMe returns a boolean if a field has been set.

func (*AuthenticateRequst) HasUsername

func (o *AuthenticateRequst) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (AuthenticateRequst) MarshalJSON

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

func (*AuthenticateRequst) SetClientId

func (o *AuthenticateRequst) SetClientId(v string)

SetClientId gets a reference to the given string and assigns it to the ClientId field.

func (*AuthenticateRequst) SetDeviceId

func (o *AuthenticateRequst) SetDeviceId(v string)

SetDeviceId gets a reference to the given string and assigns it to the DeviceId field.

func (*AuthenticateRequst) SetInviteToken

func (o *AuthenticateRequst) SetInviteToken(v string)

SetInviteToken gets a reference to the given string and assigns it to the InviteToken field.

func (*AuthenticateRequst) SetPassword

func (o *AuthenticateRequst) SetPassword(v string)

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

func (*AuthenticateRequst) SetRememberMe

func (o *AuthenticateRequst) SetRememberMe(v bool)

SetRememberMe gets a reference to the given bool and assigns it to the RememberMe field.

func (*AuthenticateRequst) SetUsername

func (o *AuthenticateRequst) SetUsername(v string)

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

type AuthenticateResponse

type AuthenticateResponse struct {
	AccessToken   *string `json:"accessToken,omitempty"`
	DidCreateUser *bool   `json:"didCreateUser,omitempty"`
	Status        *string `json:"status,omitempty"`
	User          *User   `json:"user,omitempty"`
}

AuthenticateResponse struct for AuthenticateResponse

func NewAuthenticateResponse

func NewAuthenticateResponse() *AuthenticateResponse

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

func NewAuthenticateResponseWithDefaults

func NewAuthenticateResponseWithDefaults() *AuthenticateResponse

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

func (*AuthenticateResponse) GetAccessToken

func (o *AuthenticateResponse) GetAccessToken() string

GetAccessToken returns the AccessToken field value if set, zero value otherwise.

func (*AuthenticateResponse) GetAccessTokenOk

func (o *AuthenticateResponse) GetAccessTokenOk() (*string, bool)

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

func (*AuthenticateResponse) GetDidCreateUser

func (o *AuthenticateResponse) GetDidCreateUser() bool

GetDidCreateUser returns the DidCreateUser field value if set, zero value otherwise.

func (*AuthenticateResponse) GetDidCreateUserOk

func (o *AuthenticateResponse) GetDidCreateUserOk() (*bool, bool)

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

func (*AuthenticateResponse) GetStatus

func (o *AuthenticateResponse) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*AuthenticateResponse) GetStatusOk

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

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

func (*AuthenticateResponse) GetUser

func (o *AuthenticateResponse) GetUser() User

GetUser returns the User field value if set, zero value otherwise.

func (*AuthenticateResponse) GetUserOk

func (o *AuthenticateResponse) GetUserOk() (*User, bool)

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

func (*AuthenticateResponse) HasAccessToken

func (o *AuthenticateResponse) HasAccessToken() bool

HasAccessToken returns a boolean if a field has been set.

func (*AuthenticateResponse) HasDidCreateUser

func (o *AuthenticateResponse) HasDidCreateUser() bool

HasDidCreateUser returns a boolean if a field has been set.

func (*AuthenticateResponse) HasStatus

func (o *AuthenticateResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*AuthenticateResponse) HasUser

func (o *AuthenticateResponse) HasUser() bool

HasUser returns a boolean if a field has been set.

func (AuthenticateResponse) MarshalJSON

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

func (*AuthenticateResponse) SetAccessToken

func (o *AuthenticateResponse) SetAccessToken(v string)

SetAccessToken gets a reference to the given string and assigns it to the AccessToken field.

func (*AuthenticateResponse) SetDidCreateUser

func (o *AuthenticateResponse) SetDidCreateUser(v bool)

SetDidCreateUser gets a reference to the given bool and assigns it to the DidCreateUser field.

func (*AuthenticateResponse) SetStatus

func (o *AuthenticateResponse) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*AuthenticateResponse) SetUser

func (o *AuthenticateResponse) SetUser(v User)

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

type Avatars

type Avatars struct {
	L *string `json:"l,omitempty"`
	M *string `json:"m,omitempty"`
	O *string `json:"o,omitempty"`
	S *string `json:"s,omitempty"`
}

Avatars struct for Avatars

func NewAvatars

func NewAvatars() *Avatars

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

func NewAvatarsWithDefaults

func NewAvatarsWithDefaults() *Avatars

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

func (*Avatars) GetL

func (o *Avatars) GetL() string

GetL returns the L field value if set, zero value otherwise.

func (*Avatars) GetLOk

func (o *Avatars) GetLOk() (*string, bool)

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

func (*Avatars) GetM

func (o *Avatars) GetM() string

GetM returns the M field value if set, zero value otherwise.

func (*Avatars) GetMOk

func (o *Avatars) GetMOk() (*string, bool)

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

func (*Avatars) GetO

func (o *Avatars) GetO() string

GetO returns the O field value if set, zero value otherwise.

func (*Avatars) GetOOk

func (o *Avatars) GetOOk() (*string, bool)

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

func (*Avatars) GetS

func (o *Avatars) GetS() string

GetS returns the S field value if set, zero value otherwise.

func (*Avatars) GetSOk

func (o *Avatars) GetSOk() (*string, bool)

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

func (*Avatars) HasL

func (o *Avatars) HasL() bool

HasL returns a boolean if a field has been set.

func (*Avatars) HasM

func (o *Avatars) HasM() bool

HasM returns a boolean if a field has been set.

func (*Avatars) HasO

func (o *Avatars) HasO() bool

HasO returns a boolean if a field has been set.

func (*Avatars) HasS

func (o *Avatars) HasS() bool

HasS returns a boolean if a field has been set.

func (Avatars) MarshalJSON

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

func (*Avatars) SetL

func (o *Avatars) SetL(v string)

SetL gets a reference to the given string and assigns it to the L field.

func (*Avatars) SetM

func (o *Avatars) SetM(v string)

SetM gets a reference to the given string and assigns it to the M field.

func (*Avatars) SetO

func (o *Avatars) SetO(v string)

SetO gets a reference to the given string and assigns it to the O field.

func (*Avatars) SetS

func (o *Avatars) SetS(v string)

SetS gets a reference to the given string and assigns it to the S field.

type BasicAuth

type BasicAuth struct {
	UserName string `json:"userName,omitempty"`
	Password string `json:"password,omitempty"`
}

BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth

type Blob

type Blob struct {
	O  *string `json:"o,omitempty"`
	O2 *string `json:"o2,omitempty"`
	T  *string `json:"t,omitempty"`
	S  *string `json:"s,omitempty"`
	S2 *string `json:"s2,omitempty"`
	M  *string `json:"m,omitempty"`
	L  *string `json:"l,omitempty"`
	P  *string `json:"p,omitempty"`
}

Blob struct for Blob

func NewBlob

func NewBlob() *Blob

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

func NewBlobWithDefaults

func NewBlobWithDefaults() *Blob

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

func (*Blob) GetL

func (o *Blob) GetL() string

GetL returns the L field value if set, zero value otherwise.

func (*Blob) GetLOk

func (o *Blob) GetLOk() (*string, bool)

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

func (*Blob) GetM

func (o *Blob) GetM() string

GetM returns the M field value if set, zero value otherwise.

func (*Blob) GetMOk

func (o *Blob) GetMOk() (*string, bool)

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

func (*Blob) GetO

func (o *Blob) GetO() string

GetO returns the O field value if set, zero value otherwise.

func (*Blob) GetO2

func (o *Blob) GetO2() string

GetO2 returns the O2 field value if set, zero value otherwise.

func (*Blob) GetO2Ok

func (o *Blob) GetO2Ok() (*string, bool)

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

func (*Blob) GetOOk

func (o *Blob) GetOOk() (*string, bool)

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

func (*Blob) GetP

func (o *Blob) GetP() string

GetP returns the P field value if set, zero value otherwise.

func (*Blob) GetPOk

func (o *Blob) GetPOk() (*string, bool)

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

func (*Blob) GetS

func (o *Blob) GetS() string

GetS returns the S field value if set, zero value otherwise.

func (*Blob) GetS2

func (o *Blob) GetS2() string

GetS2 returns the S2 field value if set, zero value otherwise.

func (*Blob) GetS2Ok

func (o *Blob) GetS2Ok() (*string, bool)

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

func (*Blob) GetSOk

func (o *Blob) GetSOk() (*string, bool)

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

func (*Blob) GetT

func (o *Blob) GetT() string

GetT returns the T field value if set, zero value otherwise.

func (*Blob) GetTOk

func (o *Blob) GetTOk() (*string, bool)

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

func (*Blob) HasL

func (o *Blob) HasL() bool

HasL returns a boolean if a field has been set.

func (*Blob) HasM

func (o *Blob) HasM() bool

HasM returns a boolean if a field has been set.

func (*Blob) HasO

func (o *Blob) HasO() bool

HasO returns a boolean if a field has been set.

func (*Blob) HasO2

func (o *Blob) HasO2() bool

HasO2 returns a boolean if a field has been set.

func (*Blob) HasP

func (o *Blob) HasP() bool

HasP returns a boolean if a field has been set.

func (*Blob) HasS

func (o *Blob) HasS() bool

HasS returns a boolean if a field has been set.

func (*Blob) HasS2

func (o *Blob) HasS2() bool

HasS2 returns a boolean if a field has been set.

func (*Blob) HasT

func (o *Blob) HasT() bool

HasT returns a boolean if a field has been set.

func (Blob) MarshalJSON

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

func (*Blob) SetL

func (o *Blob) SetL(v string)

SetL gets a reference to the given string and assigns it to the L field.

func (*Blob) SetM

func (o *Blob) SetM(v string)

SetM gets a reference to the given string and assigns it to the M field.

func (*Blob) SetO

func (o *Blob) SetO(v string)

SetO gets a reference to the given string and assigns it to the O field.

func (*Blob) SetO2

func (o *Blob) SetO2(v string)

SetO2 gets a reference to the given string and assigns it to the O2 field.

func (*Blob) SetP

func (o *Blob) SetP(v string)

SetP gets a reference to the given string and assigns it to the P field.

func (*Blob) SetS

func (o *Blob) SetS(v string)

SetS gets a reference to the given string and assigns it to the S field.

func (*Blob) SetS2

func (o *Blob) SetS2(v string)

SetS2 gets a reference to the given string and assigns it to the S2 field.

func (*Blob) SetT

func (o *Blob) SetT(v string)

SetT gets a reference to the given string and assigns it to the T field.

type Child

type Child struct {
	URL                  *string  `json:"URL,omitempty"`
	Id                   *int64   `json:"id,omitempty"`
	FirstName            *string  `json:"firstName,omitempty"`
	LastName             *string  `json:"lastName,omitempty"`
	FullName             *string  `json:"fullName,omitempty"`
	Gender               *string  `json:"gender,omitempty"`
	Dob                  *string  `json:"dob,omitempty"`
	Timestamp            *int64   `json:"timestamp,omitempty"`
	LastUpdatedTimestamp *int64   `json:"lastUpdatedTimestamp,omitempty"`
	Avatars              *Avatars `json:"avatars,omitempty"`
	Deleted              *bool    `json:"deleted,omitempty"`
	User                 *User    `json:"user,omitempty"`
}

Child struct for Child

func NewChild

func NewChild() *Child

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

func NewChildWithDefaults

func NewChildWithDefaults() *Child

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

func (*Child) GetAvatars

func (o *Child) GetAvatars() Avatars

GetAvatars returns the Avatars field value if set, zero value otherwise.

func (*Child) GetAvatarsOk

func (o *Child) GetAvatarsOk() (*Avatars, bool)

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

func (*Child) GetDeleted

func (o *Child) GetDeleted() bool

GetDeleted returns the Deleted field value if set, zero value otherwise.

func (*Child) GetDeletedOk

func (o *Child) GetDeletedOk() (*bool, bool)

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

func (*Child) GetDob

func (o *Child) GetDob() string

GetDob returns the Dob field value if set, zero value otherwise.

func (*Child) GetDobOk

func (o *Child) GetDobOk() (*string, bool)

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

func (*Child) GetFirstName

func (o *Child) GetFirstName() string

GetFirstName returns the FirstName field value if set, zero value otherwise.

func (*Child) GetFirstNameOk

func (o *Child) GetFirstNameOk() (*string, bool)

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

func (*Child) GetFullName

func (o *Child) GetFullName() string

GetFullName returns the FullName field value if set, zero value otherwise.

func (*Child) GetFullNameOk

func (o *Child) GetFullNameOk() (*string, bool)

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

func (*Child) GetGender

func (o *Child) GetGender() string

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

func (*Child) GetGenderOk

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

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

func (*Child) GetId

func (o *Child) GetId() int64

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

func (*Child) GetIdOk

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

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

func (*Child) GetLastName

func (o *Child) GetLastName() string

GetLastName returns the LastName field value if set, zero value otherwise.

func (*Child) GetLastNameOk

func (o *Child) GetLastNameOk() (*string, bool)

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

func (*Child) GetLastUpdatedTimestamp

func (o *Child) GetLastUpdatedTimestamp() int64

GetLastUpdatedTimestamp returns the LastUpdatedTimestamp field value if set, zero value otherwise.

func (*Child) GetLastUpdatedTimestampOk

func (o *Child) GetLastUpdatedTimestampOk() (*int64, bool)

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

func (*Child) GetTimestamp

func (o *Child) GetTimestamp() int64

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*Child) GetTimestampOk

func (o *Child) GetTimestampOk() (*int64, bool)

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

func (*Child) GetURL

func (o *Child) GetURL() string

GetURL returns the URL field value if set, zero value otherwise.

func (*Child) GetURLOk

func (o *Child) GetURLOk() (*string, bool)

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

func (*Child) GetUser

func (o *Child) GetUser() User

GetUser returns the User field value if set, zero value otherwise.

func (*Child) GetUserOk

func (o *Child) GetUserOk() (*User, bool)

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

func (*Child) HasAvatars

func (o *Child) HasAvatars() bool

HasAvatars returns a boolean if a field has been set.

func (*Child) HasDeleted

func (o *Child) HasDeleted() bool

HasDeleted returns a boolean if a field has been set.

func (*Child) HasDob

func (o *Child) HasDob() bool

HasDob returns a boolean if a field has been set.

func (*Child) HasFirstName

func (o *Child) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

func (*Child) HasFullName

func (o *Child) HasFullName() bool

HasFullName returns a boolean if a field has been set.

func (*Child) HasGender

func (o *Child) HasGender() bool

HasGender returns a boolean if a field has been set.

func (*Child) HasId

func (o *Child) HasId() bool

HasId returns a boolean if a field has been set.

func (*Child) HasLastName

func (o *Child) HasLastName() bool

HasLastName returns a boolean if a field has been set.

func (*Child) HasLastUpdatedTimestamp

func (o *Child) HasLastUpdatedTimestamp() bool

HasLastUpdatedTimestamp returns a boolean if a field has been set.

func (*Child) HasTimestamp

func (o *Child) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (*Child) HasURL

func (o *Child) HasURL() bool

HasURL returns a boolean if a field has been set.

func (*Child) HasUser

func (o *Child) HasUser() bool

HasUser returns a boolean if a field has been set.

func (Child) MarshalJSON

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

func (*Child) SetAvatars

func (o *Child) SetAvatars(v Avatars)

SetAvatars gets a reference to the given Avatars and assigns it to the Avatars field.

func (*Child) SetDeleted

func (o *Child) SetDeleted(v bool)

SetDeleted gets a reference to the given bool and assigns it to the Deleted field.

func (*Child) SetDob

func (o *Child) SetDob(v string)

SetDob gets a reference to the given string and assigns it to the Dob field.

func (*Child) SetFirstName

func (o *Child) SetFirstName(v string)

SetFirstName gets a reference to the given string and assigns it to the FirstName field.

func (*Child) SetFullName

func (o *Child) SetFullName(v string)

SetFullName gets a reference to the given string and assigns it to the FullName field.

func (*Child) SetGender

func (o *Child) SetGender(v string)

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

func (*Child) SetId

func (o *Child) SetId(v int64)

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

func (*Child) SetLastName

func (o *Child) SetLastName(v string)

SetLastName gets a reference to the given string and assigns it to the LastName field.

func (*Child) SetLastUpdatedTimestamp

func (o *Child) SetLastUpdatedTimestamp(v int64)

SetLastUpdatedTimestamp gets a reference to the given int64 and assigns it to the LastUpdatedTimestamp field.

func (*Child) SetTimestamp

func (o *Child) SetTimestamp(v int64)

SetTimestamp gets a reference to the given int64 and assigns it to the Timestamp field.

func (*Child) SetURL

func (o *Child) SetURL(v string)

SetURL gets a reference to the given string and assigns it to the URL field.

func (*Child) SetUser

func (o *Child) SetUser(v User)

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

type Configuration

type Configuration struct {
	Host             string            `json:"host,omitempty"`
	Scheme           string            `json:"scheme,omitempty"`
	DefaultHeader    map[string]string `json:"defaultHeader,omitempty"`
	UserAgent        string            `json:"userAgent,omitempty"`
	Debug            bool              `json:"debug,omitempty"`
	Servers          ServerConfigurations
	OperationServers map[string]ServerConfigurations
	HTTPClient       *http.Client
}

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

func (c *Configuration) AddDefaultHeader(key string, value string)

AddDefaultHeader adds a new HTTP header to the default header in the request

func (*Configuration) ServerURL

func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error)

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error)

ServerURLWithContext returns a new server URL given an endpoint

type CoverTheme

type CoverTheme struct {
	Name  *string `json:"name,omitempty"`
	Label *string `json:"label,omitempty"`
	Url   *string `json:"url,omitempty"`
}

CoverTheme struct for CoverTheme

func NewCoverTheme

func NewCoverTheme() *CoverTheme

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

func NewCoverThemeWithDefaults

func NewCoverThemeWithDefaults() *CoverTheme

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

func (*CoverTheme) GetLabel

func (o *CoverTheme) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*CoverTheme) GetLabelOk

func (o *CoverTheme) GetLabelOk() (*string, bool)

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

func (*CoverTheme) GetName

func (o *CoverTheme) GetName() string

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

func (*CoverTheme) GetNameOk

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

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

func (*CoverTheme) GetUrl

func (o *CoverTheme) GetUrl() string

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

func (*CoverTheme) GetUrlOk

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

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

func (*CoverTheme) HasLabel

func (o *CoverTheme) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*CoverTheme) HasName

func (o *CoverTheme) HasName() bool

HasName returns a boolean if a field has been set.

func (*CoverTheme) HasUrl

func (o *CoverTheme) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (CoverTheme) MarshalJSON

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

func (*CoverTheme) SetLabel

func (o *CoverTheme) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*CoverTheme) SetName

func (o *CoverTheme) SetName(v string)

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

func (*CoverTheme) SetUrl

func (o *CoverTheme) SetUrl(v string)

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

type Cycle

type Cycle struct {
	DisplayName       *string  `json:"displayName,omitempty"`
	CalendarInt       *float32 `json:"calendarInt,omitempty"`
	ReminderInDays    *float32 `json:"reminderInDays,omitempty"`
	GracePeriodInDays *float32 `json:"gracePeriodInDays,omitempty"`
}

Cycle struct for Cycle

func NewCycle

func NewCycle() *Cycle

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

func NewCycleWithDefaults

func NewCycleWithDefaults() *Cycle

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

func (*Cycle) GetCalendarInt

func (o *Cycle) GetCalendarInt() float32

GetCalendarInt returns the CalendarInt field value if set, zero value otherwise.

func (*Cycle) GetCalendarIntOk

func (o *Cycle) GetCalendarIntOk() (*float32, bool)

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

func (*Cycle) GetDisplayName

func (o *Cycle) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*Cycle) GetDisplayNameOk

func (o *Cycle) GetDisplayNameOk() (*string, bool)

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

func (*Cycle) GetGracePeriodInDays

func (o *Cycle) GetGracePeriodInDays() float32

GetGracePeriodInDays returns the GracePeriodInDays field value if set, zero value otherwise.

func (*Cycle) GetGracePeriodInDaysOk

func (o *Cycle) GetGracePeriodInDaysOk() (*float32, bool)

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

func (*Cycle) GetReminderInDays

func (o *Cycle) GetReminderInDays() float32

GetReminderInDays returns the ReminderInDays field value if set, zero value otherwise.

func (*Cycle) GetReminderInDaysOk

func (o *Cycle) GetReminderInDaysOk() (*float32, bool)

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

func (*Cycle) HasCalendarInt

func (o *Cycle) HasCalendarInt() bool

HasCalendarInt returns a boolean if a field has been set.

func (*Cycle) HasDisplayName

func (o *Cycle) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*Cycle) HasGracePeriodInDays

func (o *Cycle) HasGracePeriodInDays() bool

HasGracePeriodInDays returns a boolean if a field has been set.

func (*Cycle) HasReminderInDays

func (o *Cycle) HasReminderInDays() bool

HasReminderInDays returns a boolean if a field has been set.

func (Cycle) MarshalJSON

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

func (*Cycle) SetCalendarInt

func (o *Cycle) SetCalendarInt(v float32)

SetCalendarInt gets a reference to the given float32 and assigns it to the CalendarInt field.

func (*Cycle) SetDisplayName

func (o *Cycle) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*Cycle) SetGracePeriodInDays

func (o *Cycle) SetGracePeriodInDays(v float32)

SetGracePeriodInDays gets a reference to the given float32 and assigns it to the GracePeriodInDays field.

func (*Cycle) SetReminderInDays

func (o *Cycle) SetReminderInDays(v float32)

SetReminderInDays gets a reference to the given float32 and assigns it to the ReminderInDays field.

type DateStyle

type DateStyle struct {
	Format *string `json:"format,omitempty"`
	Label  *string `json:"label,omitempty"`
	Name   *string `json:"name,omitempty"`
}

DateStyle struct for DateStyle

func NewDateStyle

func NewDateStyle() *DateStyle

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

func NewDateStyleWithDefaults

func NewDateStyleWithDefaults() *DateStyle

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

func (*DateStyle) GetFormat

func (o *DateStyle) GetFormat() string

GetFormat returns the Format field value if set, zero value otherwise.

func (*DateStyle) GetFormatOk

func (o *DateStyle) GetFormatOk() (*string, bool)

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

func (*DateStyle) GetLabel

func (o *DateStyle) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*DateStyle) GetLabelOk

func (o *DateStyle) GetLabelOk() (*string, bool)

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

func (*DateStyle) GetName

func (o *DateStyle) GetName() string

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

func (*DateStyle) GetNameOk

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

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

func (*DateStyle) HasFormat

func (o *DateStyle) HasFormat() bool

HasFormat returns a boolean if a field has been set.

func (*DateStyle) HasLabel

func (o *DateStyle) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*DateStyle) HasName

func (o *DateStyle) HasName() bool

HasName returns a boolean if a field has been set.

func (DateStyle) MarshalJSON

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

func (*DateStyle) SetFormat

func (o *DateStyle) SetFormat(v string)

SetFormat gets a reference to the given string and assigns it to the Format field.

func (*DateStyle) SetLabel

func (o *DateStyle) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*DateStyle) SetName

func (o *DateStyle) SetName(v string)

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

type EmailFrequency

type EmailFrequency struct {
	Label *string `json:"label,omitempty"`
	Name  *string `json:"name,omitempty"`
}

EmailFrequency struct for EmailFrequency

func NewEmailFrequency

func NewEmailFrequency() *EmailFrequency

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

func NewEmailFrequencyWithDefaults

func NewEmailFrequencyWithDefaults() *EmailFrequency

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

func (*EmailFrequency) GetLabel

func (o *EmailFrequency) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*EmailFrequency) GetLabelOk

func (o *EmailFrequency) GetLabelOk() (*string, bool)

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

func (*EmailFrequency) GetName

func (o *EmailFrequency) GetName() string

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

func (*EmailFrequency) GetNameOk

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

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

func (*EmailFrequency) HasLabel

func (o *EmailFrequency) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*EmailFrequency) HasName

func (o *EmailFrequency) HasName() bool

HasName returns a boolean if a field has been set.

func (EmailFrequency) MarshalJSON

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

func (*EmailFrequency) SetLabel

func (o *EmailFrequency) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*EmailFrequency) SetName

func (o *EmailFrequency) SetName(v string)

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

type Emotion

type Emotion struct {
	URL                  *string      `json:"URL,omitempty"`
	Id                   *int64       `json:"id,omitempty"`
	Type                 *EmotionType `json:"type,omitempty"`
	Timestamp            *int64       `json:"timestamp,omitempty"`
	LastUpdatedTimestamp *int64       `json:"lastUpdatedTimestamp,omitempty"`
	Deleted              *bool        `json:"deleted,omitempty"`
	EntryId              *int64       `json:"entryId,omitempty"`
	UserId               *int64       `json:"userId,omitempty"`
}

Emotion struct for Emotion

func NewEmotion

func NewEmotion() *Emotion

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

func NewEmotionWithDefaults

func NewEmotionWithDefaults() *Emotion

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

func (*Emotion) GetDeleted

func (o *Emotion) GetDeleted() bool

GetDeleted returns the Deleted field value if set, zero value otherwise.

func (*Emotion) GetDeletedOk

func (o *Emotion) GetDeletedOk() (*bool, bool)

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

func (*Emotion) GetEntryId

func (o *Emotion) GetEntryId() int64

GetEntryId returns the EntryId field value if set, zero value otherwise.

func (*Emotion) GetEntryIdOk

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

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

func (*Emotion) GetId

func (o *Emotion) GetId() int64

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

func (*Emotion) GetIdOk

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

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

func (*Emotion) GetLastUpdatedTimestamp

func (o *Emotion) GetLastUpdatedTimestamp() int64

GetLastUpdatedTimestamp returns the LastUpdatedTimestamp field value if set, zero value otherwise.

func (*Emotion) GetLastUpdatedTimestampOk

func (o *Emotion) GetLastUpdatedTimestampOk() (*int64, bool)

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

func (*Emotion) GetTimestamp

func (o *Emotion) GetTimestamp() int64

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*Emotion) GetTimestampOk

func (o *Emotion) GetTimestampOk() (*int64, bool)

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

func (*Emotion) GetType

func (o *Emotion) GetType() EmotionType

GetType returns the Type field value if set, zero value otherwise.

func (*Emotion) GetTypeOk

func (o *Emotion) GetTypeOk() (*EmotionType, bool)

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

func (*Emotion) GetURL

func (o *Emotion) GetURL() string

GetURL returns the URL field value if set, zero value otherwise.

func (*Emotion) GetURLOk

func (o *Emotion) GetURLOk() (*string, bool)

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

func (*Emotion) GetUserId

func (o *Emotion) GetUserId() int64

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

func (*Emotion) GetUserIdOk

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

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

func (*Emotion) HasDeleted

func (o *Emotion) HasDeleted() bool

HasDeleted returns a boolean if a field has been set.

func (*Emotion) HasEntryId

func (o *Emotion) HasEntryId() bool

HasEntryId returns a boolean if a field has been set.

func (*Emotion) HasId

func (o *Emotion) HasId() bool

HasId returns a boolean if a field has been set.

func (*Emotion) HasLastUpdatedTimestamp

func (o *Emotion) HasLastUpdatedTimestamp() bool

HasLastUpdatedTimestamp returns a boolean if a field has been set.

func (*Emotion) HasTimestamp

func (o *Emotion) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (*Emotion) HasType

func (o *Emotion) HasType() bool

HasType returns a boolean if a field has been set.

func (*Emotion) HasURL

func (o *Emotion) HasURL() bool

HasURL returns a boolean if a field has been set.

func (*Emotion) HasUserId

func (o *Emotion) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (Emotion) MarshalJSON

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

func (*Emotion) SetDeleted

func (o *Emotion) SetDeleted(v bool)

SetDeleted gets a reference to the given bool and assigns it to the Deleted field.

func (*Emotion) SetEntryId

func (o *Emotion) SetEntryId(v int64)

SetEntryId gets a reference to the given int64 and assigns it to the EntryId field.

func (*Emotion) SetId

func (o *Emotion) SetId(v int64)

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

func (*Emotion) SetLastUpdatedTimestamp

func (o *Emotion) SetLastUpdatedTimestamp(v int64)

SetLastUpdatedTimestamp gets a reference to the given int64 and assigns it to the LastUpdatedTimestamp field.

func (*Emotion) SetTimestamp

func (o *Emotion) SetTimestamp(v int64)

SetTimestamp gets a reference to the given int64 and assigns it to the Timestamp field.

func (*Emotion) SetType

func (o *Emotion) SetType(v EmotionType)

SetType gets a reference to the given EmotionType and assigns it to the Type field.

func (*Emotion) SetURL

func (o *Emotion) SetURL(v string)

SetURL gets a reference to the given string and assigns it to the URL field.

func (*Emotion) SetUserId

func (o *Emotion) SetUserId(v int64)

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

type EmotionType

type EmotionType struct {
	Name  *string `json:"name,omitempty"`
	Label *string `json:"label,omitempty"`
}

EmotionType struct for EmotionType

func NewEmotionType

func NewEmotionType() *EmotionType

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

func NewEmotionTypeWithDefaults

func NewEmotionTypeWithDefaults() *EmotionType

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

func (*EmotionType) GetLabel

func (o *EmotionType) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*EmotionType) GetLabelOk

func (o *EmotionType) GetLabelOk() (*string, bool)

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

func (*EmotionType) GetName

func (o *EmotionType) GetName() string

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

func (*EmotionType) GetNameOk

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

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

func (*EmotionType) HasLabel

func (o *EmotionType) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*EmotionType) HasName

func (o *EmotionType) HasName() bool

HasName returns a boolean if a field has been set.

func (EmotionType) MarshalJSON

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

func (*EmotionType) SetLabel

func (o *EmotionType) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*EmotionType) SetName

func (o *EmotionType) SetName(v string)

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

type Entries

type Entries struct {
	Status              *string `json:"status,omitempty"`
	NumEntriesRemaining *int64  `json:"numEntriesRemaining,omitempty"`
	Entries             []Entry `json:"entries,omitempty"`
}

Entries struct for Entries

func NewEntries

func NewEntries() *Entries

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

func NewEntriesWithDefaults

func NewEntriesWithDefaults() *Entries

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

func (*Entries) GetEntries

func (o *Entries) GetEntries() []Entry

GetEntries returns the Entries field value if set, zero value otherwise.

func (*Entries) GetEntriesOk

func (o *Entries) GetEntriesOk() ([]Entry, bool)

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

func (*Entries) GetNumEntriesRemaining

func (o *Entries) GetNumEntriesRemaining() int64

GetNumEntriesRemaining returns the NumEntriesRemaining field value if set, zero value otherwise.

func (*Entries) GetNumEntriesRemainingOk

func (o *Entries) GetNumEntriesRemainingOk() (*int64, bool)

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

func (*Entries) GetStatus

func (o *Entries) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*Entries) GetStatusOk

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

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

func (*Entries) HasEntries

func (o *Entries) HasEntries() bool

HasEntries returns a boolean if a field has been set.

func (*Entries) HasNumEntriesRemaining

func (o *Entries) HasNumEntriesRemaining() bool

HasNumEntriesRemaining returns a boolean if a field has been set.

func (*Entries) HasStatus

func (o *Entries) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (Entries) MarshalJSON

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

func (*Entries) SetEntries

func (o *Entries) SetEntries(v []Entry)

SetEntries gets a reference to the given []Entry and assigns it to the Entries field.

func (*Entries) SetNumEntriesRemaining

func (o *Entries) SetNumEntriesRemaining(v int64)

SetNumEntriesRemaining gets a reference to the given int64 and assigns it to the NumEntriesRemaining field.

func (*Entries) SetStatus

func (o *Entries) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type Entry

type Entry struct {
	URL                  *string   `json:"URL,omitempty"`
	Id                   *int64    `json:"id,omitempty"`
	Deleted              *bool     `json:"deleted,omitempty"`
	PrivateMode          *bool     `json:"privateMode,omitempty"`
	Uuid                 *string   `json:"uuid,omitempty"`
	ClientRef            *string   `json:"clientRef,omitempty"`
	Type                 *string   `json:"type,omitempty"`
	Year                 *int64    `json:"year,omitempty"`
	Month                *int64    `json:"month,omitempty"`
	Day                  *int64    `json:"day,omitempty"`
	Caption              *string   `json:"caption,omitempty"`
	Timestamp            *int64    `json:"timestamp,omitempty"`
	LastUpdatedTimestamp *int64    `json:"lastUpdatedTimestamp,omitempty"`
	Blobs                *Blob     `json:"blobs,omitempty"`
	JournalId            *int64    `json:"journalId,omitempty"`
	UserId               *int64    `json:"userId,omitempty"`
	Emotions             []Emotion `json:"emotions,omitempty"`
}

Entry struct for Entry

func NewEntry

func NewEntry() *Entry

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

func NewEntryWithDefaults

func NewEntryWithDefaults() *Entry

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

func (*Entry) GetBlobs

func (o *Entry) GetBlobs() Blob

GetBlobs returns the Blobs field value if set, zero value otherwise.

func (*Entry) GetBlobsOk

func (o *Entry) GetBlobsOk() (*Blob, bool)

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

func (*Entry) GetCaption

func (o *Entry) GetCaption() string

GetCaption returns the Caption field value if set, zero value otherwise.

func (*Entry) GetCaptionOk

func (o *Entry) GetCaptionOk() (*string, bool)

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

func (*Entry) GetClientRef

func (o *Entry) GetClientRef() string

GetClientRef returns the ClientRef field value if set, zero value otherwise.

func (*Entry) GetClientRefOk

func (o *Entry) GetClientRefOk() (*string, bool)

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

func (*Entry) GetDay

func (o *Entry) GetDay() int64

GetDay returns the Day field value if set, zero value otherwise.

func (*Entry) GetDayOk

func (o *Entry) GetDayOk() (*int64, bool)

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

func (*Entry) GetDeleted

func (o *Entry) GetDeleted() bool

GetDeleted returns the Deleted field value if set, zero value otherwise.

func (*Entry) GetDeletedOk

func (o *Entry) GetDeletedOk() (*bool, bool)

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

func (*Entry) GetEmotions

func (o *Entry) GetEmotions() []Emotion

GetEmotions returns the Emotions field value if set, zero value otherwise.

func (*Entry) GetEmotionsOk

func (o *Entry) GetEmotionsOk() ([]Emotion, bool)

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

func (*Entry) GetId

func (o *Entry) GetId() int64

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

func (*Entry) GetIdOk

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

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

func (*Entry) GetJournalId

func (o *Entry) GetJournalId() int64

GetJournalId returns the JournalId field value if set, zero value otherwise.

func (*Entry) GetJournalIdOk

func (o *Entry) GetJournalIdOk() (*int64, bool)

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

func (*Entry) GetLastUpdatedTimestamp

func (o *Entry) GetLastUpdatedTimestamp() int64

GetLastUpdatedTimestamp returns the LastUpdatedTimestamp field value if set, zero value otherwise.

func (*Entry) GetLastUpdatedTimestampOk

func (o *Entry) GetLastUpdatedTimestampOk() (*int64, bool)

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

func (*Entry) GetMonth

func (o *Entry) GetMonth() int64

GetMonth returns the Month field value if set, zero value otherwise.

func (*Entry) GetMonthOk

func (o *Entry) GetMonthOk() (*int64, bool)

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

func (*Entry) GetPrivateMode

func (o *Entry) GetPrivateMode() bool

GetPrivateMode returns the PrivateMode field value if set, zero value otherwise.

func (*Entry) GetPrivateModeOk

func (o *Entry) GetPrivateModeOk() (*bool, bool)

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

func (*Entry) GetTimestamp

func (o *Entry) GetTimestamp() int64

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*Entry) GetTimestampOk

func (o *Entry) GetTimestampOk() (*int64, bool)

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

func (*Entry) GetType

func (o *Entry) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Entry) GetTypeOk

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

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

func (*Entry) GetURL

func (o *Entry) GetURL() string

GetURL returns the URL field value if set, zero value otherwise.

func (*Entry) GetURLOk

func (o *Entry) GetURLOk() (*string, bool)

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

func (*Entry) GetUserId

func (o *Entry) GetUserId() int64

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

func (*Entry) GetUserIdOk

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

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

func (*Entry) GetUuid

func (o *Entry) GetUuid() string

GetUuid returns the Uuid field value if set, zero value otherwise.

func (*Entry) GetUuidOk

func (o *Entry) GetUuidOk() (*string, bool)

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

func (*Entry) GetYear

func (o *Entry) GetYear() int64

GetYear returns the Year field value if set, zero value otherwise.

func (*Entry) GetYearOk

func (o *Entry) GetYearOk() (*int64, bool)

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

func (*Entry) HasBlobs

func (o *Entry) HasBlobs() bool

HasBlobs returns a boolean if a field has been set.

func (*Entry) HasCaption

func (o *Entry) HasCaption() bool

HasCaption returns a boolean if a field has been set.

func (*Entry) HasClientRef

func (o *Entry) HasClientRef() bool

HasClientRef returns a boolean if a field has been set.

func (*Entry) HasDay

func (o *Entry) HasDay() bool

HasDay returns a boolean if a field has been set.

func (*Entry) HasDeleted

func (o *Entry) HasDeleted() bool

HasDeleted returns a boolean if a field has been set.

func (*Entry) HasEmotions

func (o *Entry) HasEmotions() bool

HasEmotions returns a boolean if a field has been set.

func (*Entry) HasId

func (o *Entry) HasId() bool

HasId returns a boolean if a field has been set.

func (*Entry) HasJournalId

func (o *Entry) HasJournalId() bool

HasJournalId returns a boolean if a field has been set.

func (*Entry) HasLastUpdatedTimestamp

func (o *Entry) HasLastUpdatedTimestamp() bool

HasLastUpdatedTimestamp returns a boolean if a field has been set.

func (*Entry) HasMonth

func (o *Entry) HasMonth() bool

HasMonth returns a boolean if a field has been set.

func (*Entry) HasPrivateMode

func (o *Entry) HasPrivateMode() bool

HasPrivateMode returns a boolean if a field has been set.

func (*Entry) HasTimestamp

func (o *Entry) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (*Entry) HasType

func (o *Entry) HasType() bool

HasType returns a boolean if a field has been set.

func (*Entry) HasURL

func (o *Entry) HasURL() bool

HasURL returns a boolean if a field has been set.

func (*Entry) HasUserId

func (o *Entry) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (*Entry) HasUuid

func (o *Entry) HasUuid() bool

HasUuid returns a boolean if a field has been set.

func (*Entry) HasYear

func (o *Entry) HasYear() bool

HasYear returns a boolean if a field has been set.

func (Entry) MarshalJSON

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

func (*Entry) SetBlobs

func (o *Entry) SetBlobs(v Blob)

SetBlobs gets a reference to the given Blob and assigns it to the Blobs field.

func (*Entry) SetCaption

func (o *Entry) SetCaption(v string)

SetCaption gets a reference to the given string and assigns it to the Caption field.

func (*Entry) SetClientRef

func (o *Entry) SetClientRef(v string)

SetClientRef gets a reference to the given string and assigns it to the ClientRef field.

func (*Entry) SetDay

func (o *Entry) SetDay(v int64)

SetDay gets a reference to the given int64 and assigns it to the Day field.

func (*Entry) SetDeleted

func (o *Entry) SetDeleted(v bool)

SetDeleted gets a reference to the given bool and assigns it to the Deleted field.

func (*Entry) SetEmotions

func (o *Entry) SetEmotions(v []Emotion)

SetEmotions gets a reference to the given []Emotion and assigns it to the Emotions field.

func (*Entry) SetId

func (o *Entry) SetId(v int64)

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

func (*Entry) SetJournalId

func (o *Entry) SetJournalId(v int64)

SetJournalId gets a reference to the given int64 and assigns it to the JournalId field.

func (*Entry) SetLastUpdatedTimestamp

func (o *Entry) SetLastUpdatedTimestamp(v int64)

SetLastUpdatedTimestamp gets a reference to the given int64 and assigns it to the LastUpdatedTimestamp field.

func (*Entry) SetMonth

func (o *Entry) SetMonth(v int64)

SetMonth gets a reference to the given int64 and assigns it to the Month field.

func (*Entry) SetPrivateMode

func (o *Entry) SetPrivateMode(v bool)

SetPrivateMode gets a reference to the given bool and assigns it to the PrivateMode field.

func (*Entry) SetTimestamp

func (o *Entry) SetTimestamp(v int64)

SetTimestamp gets a reference to the given int64 and assigns it to the Timestamp field.

func (*Entry) SetType

func (o *Entry) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*Entry) SetURL

func (o *Entry) SetURL(v string)

SetURL gets a reference to the given string and assigns it to the URL field.

func (*Entry) SetUserId

func (o *Entry) SetUserId(v int64)

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

func (*Entry) SetUuid

func (o *Entry) SetUuid(v string)

SetUuid gets a reference to the given string and assigns it to the Uuid field.

func (*Entry) SetYear

func (o *Entry) SetYear(v int64)

SetYear gets a reference to the given int64 and assigns it to the Year field.

type Features

type Features struct {
	URL         *string  `json:"URL,omitempty"`
	Id          *float32 `json:"id,omitempty"`
	DateCreated *string  `json:"dateCreated,omitempty"`
	LastUpdated *string  `json:"lastUpdated,omitempty"`
	Name        *string  `json:"name,omitempty"`
	Description *string  `json:"description,omitempty"`
	ScopeMap    *string  `json:"scopeMap,omitempty"`
}

Features struct for Features

func NewFeatures

func NewFeatures() *Features

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

func NewFeaturesWithDefaults

func NewFeaturesWithDefaults() *Features

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

func (*Features) GetDateCreated

func (o *Features) GetDateCreated() string

GetDateCreated returns the DateCreated field value if set, zero value otherwise.

func (*Features) GetDateCreatedOk

func (o *Features) GetDateCreatedOk() (*string, bool)

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

func (*Features) GetDescription

func (o *Features) GetDescription() string

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

func (*Features) GetDescriptionOk

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

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

func (*Features) GetId

func (o *Features) GetId() float32

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

func (*Features) GetIdOk

func (o *Features) GetIdOk() (*float32, bool)

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

func (*Features) GetLastUpdated

func (o *Features) GetLastUpdated() string

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

func (*Features) GetLastUpdatedOk

func (o *Features) GetLastUpdatedOk() (*string, bool)

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

func (*Features) GetName

func (o *Features) GetName() string

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

func (*Features) GetNameOk

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

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

func (*Features) GetScopeMap

func (o *Features) GetScopeMap() string

GetScopeMap returns the ScopeMap field value if set, zero value otherwise.

func (*Features) GetScopeMapOk

func (o *Features) GetScopeMapOk() (*string, bool)

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

func (*Features) GetURL

func (o *Features) GetURL() string

GetURL returns the URL field value if set, zero value otherwise.

func (*Features) GetURLOk

func (o *Features) GetURLOk() (*string, bool)

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

func (*Features) HasDateCreated

func (o *Features) HasDateCreated() bool

HasDateCreated returns a boolean if a field has been set.

func (*Features) HasDescription

func (o *Features) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Features) HasId

func (o *Features) HasId() bool

HasId returns a boolean if a field has been set.

func (*Features) HasLastUpdated

func (o *Features) HasLastUpdated() bool

HasLastUpdated returns a boolean if a field has been set.

func (*Features) HasName

func (o *Features) HasName() bool

HasName returns a boolean if a field has been set.

func (*Features) HasScopeMap

func (o *Features) HasScopeMap() bool

HasScopeMap returns a boolean if a field has been set.

func (*Features) HasURL

func (o *Features) HasURL() bool

HasURL returns a boolean if a field has been set.

func (Features) MarshalJSON

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

func (*Features) SetDateCreated

func (o *Features) SetDateCreated(v string)

SetDateCreated gets a reference to the given string and assigns it to the DateCreated field.

func (*Features) SetDescription

func (o *Features) SetDescription(v string)

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

func (*Features) SetId

func (o *Features) SetId(v float32)

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

func (*Features) SetLastUpdated

func (o *Features) SetLastUpdated(v string)

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

func (*Features) SetName

func (o *Features) SetName(v string)

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

func (*Features) SetScopeMap

func (o *Features) SetScopeMap(v string)

SetScopeMap gets a reference to the given string and assigns it to the ScopeMap field.

func (*Features) SetURL

func (o *Features) SetURL(v string)

SetURL gets a reference to the given string and assigns it to the URL field.

type Following

type Following struct {
	URL                      *string         `json:"URL,omitempty"`
	Id                       *int64          `json:"id,omitempty"`
	ViewEntries              *bool           `json:"viewEntries,omitempty"`
	AddEntries               *bool           `json:"addEntries,omitempty"`
	ViewMilestones           *bool           `json:"viewMilestones,omitempty"`
	EditMilestones           *bool           `json:"editMilestones,omitempty"`
	CoOwner                  *bool           `json:"coOwner,omitempty"`
	SortOrder                *int64          `json:"sortOrder,omitempty"`
	SendFlashback            *bool           `json:"sendFlashback,omitempty"`
	Relationship             *Relationship   `json:"relationship,omitempty"`
	EmailFrequencyOnNewEvent *EmailFrequency `json:"emailFrequencyOnNewEvent,omitempty"`
	Timestamp                *int64          `json:"timestamp,omitempty"`
	JournalId                *int64          `json:"journalId,omitempty"`
	Journal                  *Journal        `json:"journal,omitempty"`
	User                     *User           `json:"user,omitempty"`
}

Following struct for Following

func NewFollowing

func NewFollowing() *Following

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

func NewFollowingWithDefaults

func NewFollowingWithDefaults() *Following

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

func (*Following) GetAddEntries

func (o *Following) GetAddEntries() bool

GetAddEntries returns the AddEntries field value if set, zero value otherwise.

func (*Following) GetAddEntriesOk

func (o *Following) GetAddEntriesOk() (*bool, bool)

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

func (*Following) GetCoOwner

func (o *Following) GetCoOwner() bool

GetCoOwner returns the CoOwner field value if set, zero value otherwise.

func (*Following) GetCoOwnerOk

func (o *Following) GetCoOwnerOk() (*bool, bool)

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

func (*Following) GetEditMilestones

func (o *Following) GetEditMilestones() bool

GetEditMilestones returns the EditMilestones field value if set, zero value otherwise.

func (*Following) GetEditMilestonesOk

func (o *Following) GetEditMilestonesOk() (*bool, bool)

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

func (*Following) GetEmailFrequencyOnNewEvent

func (o *Following) GetEmailFrequencyOnNewEvent() EmailFrequency

GetEmailFrequencyOnNewEvent returns the EmailFrequencyOnNewEvent field value if set, zero value otherwise.

func (*Following) GetEmailFrequencyOnNewEventOk

func (o *Following) GetEmailFrequencyOnNewEventOk() (*EmailFrequency, bool)

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

func (*Following) GetId

func (o *Following) GetId() int64

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

func (*Following) GetIdOk

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

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

func (*Following) GetJournal

func (o *Following) GetJournal() Journal

GetJournal returns the Journal field value if set, zero value otherwise.

func (*Following) GetJournalId

func (o *Following) GetJournalId() int64

GetJournalId returns the JournalId field value if set, zero value otherwise.

func (*Following) GetJournalIdOk

func (o *Following) GetJournalIdOk() (*int64, bool)

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

func (*Following) GetJournalOk

func (o *Following) GetJournalOk() (*Journal, bool)

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

func (*Following) GetRelationship

func (o *Following) GetRelationship() Relationship

GetRelationship returns the Relationship field value if set, zero value otherwise.

func (*Following) GetRelationshipOk

func (o *Following) GetRelationshipOk() (*Relationship, bool)

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

func (*Following) GetSendFlashback

func (o *Following) GetSendFlashback() bool

GetSendFlashback returns the SendFlashback field value if set, zero value otherwise.

func (*Following) GetSendFlashbackOk

func (o *Following) GetSendFlashbackOk() (*bool, bool)

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

func (*Following) GetSortOrder

func (o *Following) GetSortOrder() int64

GetSortOrder returns the SortOrder field value if set, zero value otherwise.

func (*Following) GetSortOrderOk

func (o *Following) GetSortOrderOk() (*int64, bool)

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

func (*Following) GetTimestamp

func (o *Following) GetTimestamp() int64

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*Following) GetTimestampOk

func (o *Following) GetTimestampOk() (*int64, bool)

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

func (*Following) GetURL

func (o *Following) GetURL() string

GetURL returns the URL field value if set, zero value otherwise.

func (*Following) GetURLOk

func (o *Following) GetURLOk() (*string, bool)

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

func (*Following) GetUser

func (o *Following) GetUser() User

GetUser returns the User field value if set, zero value otherwise.

func (*Following) GetUserOk

func (o *Following) GetUserOk() (*User, bool)

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

func (*Following) GetViewEntries

func (o *Following) GetViewEntries() bool

GetViewEntries returns the ViewEntries field value if set, zero value otherwise.

func (*Following) GetViewEntriesOk

func (o *Following) GetViewEntriesOk() (*bool, bool)

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

func (*Following) GetViewMilestones

func (o *Following) GetViewMilestones() bool

GetViewMilestones returns the ViewMilestones field value if set, zero value otherwise.

func (*Following) GetViewMilestonesOk

func (o *Following) GetViewMilestonesOk() (*bool, bool)

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

func (*Following) HasAddEntries

func (o *Following) HasAddEntries() bool

HasAddEntries returns a boolean if a field has been set.

func (*Following) HasCoOwner

func (o *Following) HasCoOwner() bool

HasCoOwner returns a boolean if a field has been set.

func (*Following) HasEditMilestones

func (o *Following) HasEditMilestones() bool

HasEditMilestones returns a boolean if a field has been set.

func (*Following) HasEmailFrequencyOnNewEvent

func (o *Following) HasEmailFrequencyOnNewEvent() bool

HasEmailFrequencyOnNewEvent returns a boolean if a field has been set.

func (*Following) HasId

func (o *Following) HasId() bool

HasId returns a boolean if a field has been set.

func (*Following) HasJournal

func (o *Following) HasJournal() bool

HasJournal returns a boolean if a field has been set.

func (*Following) HasJournalId

func (o *Following) HasJournalId() bool

HasJournalId returns a boolean if a field has been set.

func (*Following) HasRelationship

func (o *Following) HasRelationship() bool

HasRelationship returns a boolean if a field has been set.

func (*Following) HasSendFlashback

func (o *Following) HasSendFlashback() bool

HasSendFlashback returns a boolean if a field has been set.

func (*Following) HasSortOrder

func (o *Following) HasSortOrder() bool

HasSortOrder returns a boolean if a field has been set.

func (*Following) HasTimestamp

func (o *Following) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (*Following) HasURL

func (o *Following) HasURL() bool

HasURL returns a boolean if a field has been set.

func (*Following) HasUser

func (o *Following) HasUser() bool

HasUser returns a boolean if a field has been set.

func (*Following) HasViewEntries

func (o *Following) HasViewEntries() bool

HasViewEntries returns a boolean if a field has been set.

func (*Following) HasViewMilestones

func (o *Following) HasViewMilestones() bool

HasViewMilestones returns a boolean if a field has been set.

func (Following) MarshalJSON

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

func (*Following) SetAddEntries

func (o *Following) SetAddEntries(v bool)

SetAddEntries gets a reference to the given bool and assigns it to the AddEntries field.

func (*Following) SetCoOwner

func (o *Following) SetCoOwner(v bool)

SetCoOwner gets a reference to the given bool and assigns it to the CoOwner field.

func (*Following) SetEditMilestones

func (o *Following) SetEditMilestones(v bool)

SetEditMilestones gets a reference to the given bool and assigns it to the EditMilestones field.

func (*Following) SetEmailFrequencyOnNewEvent

func (o *Following) SetEmailFrequencyOnNewEvent(v EmailFrequency)

SetEmailFrequencyOnNewEvent gets a reference to the given EmailFrequency and assigns it to the EmailFrequencyOnNewEvent field.

func (*Following) SetId

func (o *Following) SetId(v int64)

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

func (*Following) SetJournal

func (o *Following) SetJournal(v Journal)

SetJournal gets a reference to the given Journal and assigns it to the Journal field.

func (*Following) SetJournalId

func (o *Following) SetJournalId(v int64)

SetJournalId gets a reference to the given int64 and assigns it to the JournalId field.

func (*Following) SetRelationship

func (o *Following) SetRelationship(v Relationship)

SetRelationship gets a reference to the given Relationship and assigns it to the Relationship field.

func (*Following) SetSendFlashback

func (o *Following) SetSendFlashback(v bool)

SetSendFlashback gets a reference to the given bool and assigns it to the SendFlashback field.

func (*Following) SetSortOrder

func (o *Following) SetSortOrder(v int64)

SetSortOrder gets a reference to the given int64 and assigns it to the SortOrder field.

func (*Following) SetTimestamp

func (o *Following) SetTimestamp(v int64)

SetTimestamp gets a reference to the given int64 and assigns it to the Timestamp field.

func (*Following) SetURL

func (o *Following) SetURL(v string)

SetURL gets a reference to the given string and assigns it to the URL field.

func (*Following) SetUser

func (o *Following) SetUser(v User)

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

func (*Following) SetViewEntries

func (o *Following) SetViewEntries(v bool)

SetViewEntries gets a reference to the given bool and assigns it to the ViewEntries field.

func (*Following) SetViewMilestones

func (o *Following) SetViewMilestones(v bool)

SetViewMilestones gets a reference to the given bool and assigns it to the ViewMilestones field.

type Followings

type Followings struct {
	Status     *string     `json:"status,omitempty"`
	Followings []Following `json:"followings,omitempty"`
}

Followings struct for Followings

func NewFollowings

func NewFollowings() *Followings

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

func NewFollowingsWithDefaults

func NewFollowingsWithDefaults() *Followings

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

func (*Followings) GetFollowings

func (o *Followings) GetFollowings() []Following

GetFollowings returns the Followings field value if set, zero value otherwise.

func (*Followings) GetFollowingsOk

func (o *Followings) GetFollowingsOk() ([]Following, bool)

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

func (*Followings) GetStatus

func (o *Followings) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*Followings) GetStatusOk

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

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

func (*Followings) HasFollowings

func (o *Followings) HasFollowings() bool

HasFollowings returns a boolean if a field has been set.

func (*Followings) HasStatus

func (o *Followings) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (Followings) MarshalJSON

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

func (*Followings) SetFollowings

func (o *Followings) SetFollowings(v []Following)

SetFollowings gets a reference to the given []Following and assigns it to the Followings field.

func (*Followings) SetStatus

func (o *Followings) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type FollowingsApi

type FollowingsApi interface {

	/*
		Followings Tinybeans Followings

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

	// FollowingsExecute executes the request
	//  @return Followings
	FollowingsExecute(r ApiFollowingsRequest) (*Followings, *http.Response, error)
}

type FollowingsApiService

type FollowingsApiService service

FollowingsApiService FollowingsApi service

func (*FollowingsApiService) Followings

Followings Tinybeans Followings

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

func (*FollowingsApiService) FollowingsExecute

Execute executes the request

@return Followings

type GenericOpenAPIError

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

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type Journal

type Journal struct {
	URL                      *string       `json:"URL,omitempty"`
	Id                       *int64        `json:"id,omitempty"`
	Title                    *string       `json:"title,omitempty"`
	Timestamp                *int64        `json:"timestamp,omitempty"`
	DisableComments          *bool         `json:"disableComments,omitempty"`
	DisableAnonymousComments *bool         `json:"disableAnonymousComments,omitempty"`
	DisableDownloads         *bool         `json:"disableDownloads,omitempty"`
	Classification           *string       `json:"classification,omitempty"`
	IsPublic                 *bool         `json:"isPublic,omitempty"`
	Deleted                  *bool         `json:"deleted,omitempty"`
	User                     *User         `json:"user,omitempty"`
	Children                 []Child       `json:"children,omitempty"`
	Pets                     []Pet         `json:"pets,omitempty"`
	CoverTheme               *CoverTheme   `json:"coverTheme,omitempty"`
	Features                 []Features    `json:"features,omitempty"`
	CurrentSubscription      *Subscription `json:"currentSubscription,omitempty"`
	LatestSubscription       *Subscription `json:"latestSubscription,omitempty"`
	ShouldShowAds            *bool         `json:"shouldShowAds,omitempty"`
}

Journal struct for Journal

func NewJournal

func NewJournal() *Journal

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

func NewJournalWithDefaults

func NewJournalWithDefaults() *Journal

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

func (*Journal) GetChildren

func (o *Journal) GetChildren() []Child

GetChildren returns the Children field value if set, zero value otherwise.

func (*Journal) GetChildrenOk

func (o *Journal) GetChildrenOk() ([]Child, bool)

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

func (*Journal) GetClassification

func (o *Journal) GetClassification() string

GetClassification returns the Classification field value if set, zero value otherwise.

func (*Journal) GetClassificationOk

func (o *Journal) GetClassificationOk() (*string, bool)

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

func (*Journal) GetCoverTheme

func (o *Journal) GetCoverTheme() CoverTheme

GetCoverTheme returns the CoverTheme field value if set, zero value otherwise.

func (*Journal) GetCoverThemeOk

func (o *Journal) GetCoverThemeOk() (*CoverTheme, bool)

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

func (*Journal) GetCurrentSubscription

func (o *Journal) GetCurrentSubscription() Subscription

GetCurrentSubscription returns the CurrentSubscription field value if set, zero value otherwise.

func (*Journal) GetCurrentSubscriptionOk

func (o *Journal) GetCurrentSubscriptionOk() (*Subscription, bool)

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

func (*Journal) GetDeleted

func (o *Journal) GetDeleted() bool

GetDeleted returns the Deleted field value if set, zero value otherwise.

func (*Journal) GetDeletedOk

func (o *Journal) GetDeletedOk() (*bool, bool)

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

func (*Journal) GetDisableAnonymousComments

func (o *Journal) GetDisableAnonymousComments() bool

GetDisableAnonymousComments returns the DisableAnonymousComments field value if set, zero value otherwise.

func (*Journal) GetDisableAnonymousCommentsOk

func (o *Journal) GetDisableAnonymousCommentsOk() (*bool, bool)

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

func (*Journal) GetDisableComments

func (o *Journal) GetDisableComments() bool

GetDisableComments returns the DisableComments field value if set, zero value otherwise.

func (*Journal) GetDisableCommentsOk

func (o *Journal) GetDisableCommentsOk() (*bool, bool)

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

func (*Journal) GetDisableDownloads

func (o *Journal) GetDisableDownloads() bool

GetDisableDownloads returns the DisableDownloads field value if set, zero value otherwise.

func (*Journal) GetDisableDownloadsOk

func (o *Journal) GetDisableDownloadsOk() (*bool, bool)

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

func (*Journal) GetFeatures

func (o *Journal) GetFeatures() []Features

GetFeatures returns the Features field value if set, zero value otherwise.

func (*Journal) GetFeaturesOk

func (o *Journal) GetFeaturesOk() ([]Features, bool)

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

func (*Journal) GetId

func (o *Journal) GetId() int64

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

func (*Journal) GetIdOk

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

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

func (*Journal) GetIsPublic

func (o *Journal) GetIsPublic() bool

GetIsPublic returns the IsPublic field value if set, zero value otherwise.

func (*Journal) GetIsPublicOk

func (o *Journal) GetIsPublicOk() (*bool, bool)

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

func (*Journal) GetLatestSubscription

func (o *Journal) GetLatestSubscription() Subscription

GetLatestSubscription returns the LatestSubscription field value if set, zero value otherwise.

func (*Journal) GetLatestSubscriptionOk

func (o *Journal) GetLatestSubscriptionOk() (*Subscription, bool)

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

func (*Journal) GetPets

func (o *Journal) GetPets() []Pet

GetPets returns the Pets field value if set, zero value otherwise.

func (*Journal) GetPetsOk

func (o *Journal) GetPetsOk() ([]Pet, bool)

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

func (*Journal) GetShouldShowAds

func (o *Journal) GetShouldShowAds() bool

GetShouldShowAds returns the ShouldShowAds field value if set, zero value otherwise.

func (*Journal) GetShouldShowAdsOk

func (o *Journal) GetShouldShowAdsOk() (*bool, bool)

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

func (*Journal) GetTimestamp

func (o *Journal) GetTimestamp() int64

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*Journal) GetTimestampOk

func (o *Journal) GetTimestampOk() (*int64, bool)

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

func (*Journal) GetTitle

func (o *Journal) GetTitle() string

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

func (*Journal) GetTitleOk

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

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

func (*Journal) GetURL

func (o *Journal) GetURL() string

GetURL returns the URL field value if set, zero value otherwise.

func (*Journal) GetURLOk

func (o *Journal) GetURLOk() (*string, bool)

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

func (*Journal) GetUser

func (o *Journal) GetUser() User

GetUser returns the User field value if set, zero value otherwise.

func (*Journal) GetUserOk

func (o *Journal) GetUserOk() (*User, bool)

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

func (*Journal) HasChildren

func (o *Journal) HasChildren() bool

HasChildren returns a boolean if a field has been set.

func (*Journal) HasClassification

func (o *Journal) HasClassification() bool

HasClassification returns a boolean if a field has been set.

func (*Journal) HasCoverTheme

func (o *Journal) HasCoverTheme() bool

HasCoverTheme returns a boolean if a field has been set.

func (*Journal) HasCurrentSubscription

func (o *Journal) HasCurrentSubscription() bool

HasCurrentSubscription returns a boolean if a field has been set.

func (*Journal) HasDeleted

func (o *Journal) HasDeleted() bool

HasDeleted returns a boolean if a field has been set.

func (*Journal) HasDisableAnonymousComments

func (o *Journal) HasDisableAnonymousComments() bool

HasDisableAnonymousComments returns a boolean if a field has been set.

func (*Journal) HasDisableComments

func (o *Journal) HasDisableComments() bool

HasDisableComments returns a boolean if a field has been set.

func (*Journal) HasDisableDownloads

func (o *Journal) HasDisableDownloads() bool

HasDisableDownloads returns a boolean if a field has been set.

func (*Journal) HasFeatures

func (o *Journal) HasFeatures() bool

HasFeatures returns a boolean if a field has been set.

func (*Journal) HasId

func (o *Journal) HasId() bool

HasId returns a boolean if a field has been set.

func (*Journal) HasIsPublic

func (o *Journal) HasIsPublic() bool

HasIsPublic returns a boolean if a field has been set.

func (*Journal) HasLatestSubscription

func (o *Journal) HasLatestSubscription() bool

HasLatestSubscription returns a boolean if a field has been set.

func (*Journal) HasPets

func (o *Journal) HasPets() bool

HasPets returns a boolean if a field has been set.

func (*Journal) HasShouldShowAds

func (o *Journal) HasShouldShowAds() bool

HasShouldShowAds returns a boolean if a field has been set.

func (*Journal) HasTimestamp

func (o *Journal) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (*Journal) HasTitle

func (o *Journal) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*Journal) HasURL

func (o *Journal) HasURL() bool

HasURL returns a boolean if a field has been set.

func (*Journal) HasUser

func (o *Journal) HasUser() bool

HasUser returns a boolean if a field has been set.

func (Journal) MarshalJSON

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

func (*Journal) SetChildren

func (o *Journal) SetChildren(v []Child)

SetChildren gets a reference to the given []Child and assigns it to the Children field.

func (*Journal) SetClassification

func (o *Journal) SetClassification(v string)

SetClassification gets a reference to the given string and assigns it to the Classification field.

func (*Journal) SetCoverTheme

func (o *Journal) SetCoverTheme(v CoverTheme)

SetCoverTheme gets a reference to the given CoverTheme and assigns it to the CoverTheme field.

func (*Journal) SetCurrentSubscription

func (o *Journal) SetCurrentSubscription(v Subscription)

SetCurrentSubscription gets a reference to the given Subscription and assigns it to the CurrentSubscription field.

func (*Journal) SetDeleted

func (o *Journal) SetDeleted(v bool)

SetDeleted gets a reference to the given bool and assigns it to the Deleted field.

func (*Journal) SetDisableAnonymousComments

func (o *Journal) SetDisableAnonymousComments(v bool)

SetDisableAnonymousComments gets a reference to the given bool and assigns it to the DisableAnonymousComments field.

func (*Journal) SetDisableComments

func (o *Journal) SetDisableComments(v bool)

SetDisableComments gets a reference to the given bool and assigns it to the DisableComments field.

func (*Journal) SetDisableDownloads

func (o *Journal) SetDisableDownloads(v bool)

SetDisableDownloads gets a reference to the given bool and assigns it to the DisableDownloads field.

func (*Journal) SetFeatures

func (o *Journal) SetFeatures(v []Features)

SetFeatures gets a reference to the given []Features and assigns it to the Features field.

func (*Journal) SetId

func (o *Journal) SetId(v int64)

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

func (*Journal) SetIsPublic

func (o *Journal) SetIsPublic(v bool)

SetIsPublic gets a reference to the given bool and assigns it to the IsPublic field.

func (*Journal) SetLatestSubscription

func (o *Journal) SetLatestSubscription(v Subscription)

SetLatestSubscription gets a reference to the given Subscription and assigns it to the LatestSubscription field.

func (*Journal) SetPets

func (o *Journal) SetPets(v []Pet)

SetPets gets a reference to the given []Pet and assigns it to the Pets field.

func (*Journal) SetShouldShowAds

func (o *Journal) SetShouldShowAds(v bool)

SetShouldShowAds gets a reference to the given bool and assigns it to the ShouldShowAds field.

func (*Journal) SetTimestamp

func (o *Journal) SetTimestamp(v int64)

SetTimestamp gets a reference to the given int64 and assigns it to the Timestamp field.

func (*Journal) SetTitle

func (o *Journal) SetTitle(v string)

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

func (*Journal) SetURL

func (o *Journal) SetURL(v string)

SetURL gets a reference to the given string and assigns it to the URL field.

func (*Journal) SetUser

func (o *Journal) SetUser(v User)

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

type Journals

type Journals struct {
	Journals []Journal `json:"journals,omitempty"`
	Status   *string   `json:"status,omitempty"`
}

Journals struct for Journals

func NewJournals

func NewJournals() *Journals

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

func NewJournalsWithDefaults

func NewJournalsWithDefaults() *Journals

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

func (*Journals) GetJournals

func (o *Journals) GetJournals() []Journal

GetJournals returns the Journals field value if set, zero value otherwise.

func (*Journals) GetJournalsOk

func (o *Journals) GetJournalsOk() ([]Journal, bool)

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

func (*Journals) GetStatus

func (o *Journals) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*Journals) GetStatusOk

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

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

func (*Journals) HasJournals

func (o *Journals) HasJournals() bool

HasJournals returns a boolean if a field has been set.

func (*Journals) HasStatus

func (o *Journals) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (Journals) MarshalJSON

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

func (*Journals) SetJournals

func (o *Journals) SetJournals(v []Journal)

SetJournals gets a reference to the given []Journal and assigns it to the Journals field.

func (*Journals) SetStatus

func (o *Journals) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type JournalsApi

type JournalsApi interface {

	/*
		JournalEntries Tinybeans Journal Entries

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param journal ID of journal to pull entries from
		@return ApiJournalEntriesRequest
	*/
	JournalEntries(ctx context.Context, journal int64) ApiJournalEntriesRequest

	// JournalEntriesExecute executes the request
	//  @return Entries
	JournalEntriesExecute(r ApiJournalEntriesRequest) (*Entries, *http.Response, error)

	/*
		Journals Tinybeans Journals

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

	// JournalsExecute executes the request
	//  @return Journals
	JournalsExecute(r ApiJournalsRequest) (*Journals, *http.Response, error)
}

type JournalsApiService

type JournalsApiService service

JournalsApiService JournalsApi service

func (*JournalsApiService) JournalEntries

func (a *JournalsApiService) JournalEntries(ctx context.Context, journal int64) ApiJournalEntriesRequest

JournalEntries Tinybeans Journal Entries

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param journal ID of journal to pull entries from
@return ApiJournalEntriesRequest

func (*JournalsApiService) JournalEntriesExecute

func (a *JournalsApiService) JournalEntriesExecute(r ApiJournalEntriesRequest) (*Entries, *http.Response, error)

Execute executes the request

@return Entries

func (*JournalsApiService) Journals

Journals Tinybeans Journals

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

func (*JournalsApiService) JournalsExecute

func (a *JournalsApiService) JournalsExecute(r ApiJournalsRequest) (*Journals, *http.Response, error)

Execute executes the request

@return Journals

type MeasurementSystem

type MeasurementSystem struct {
	Label *string `json:"label,omitempty"`
	Name  *string `json:"name,omitempty"`
}

MeasurementSystem struct for MeasurementSystem

func NewMeasurementSystem

func NewMeasurementSystem() *MeasurementSystem

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

func NewMeasurementSystemWithDefaults

func NewMeasurementSystemWithDefaults() *MeasurementSystem

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

func (*MeasurementSystem) GetLabel

func (o *MeasurementSystem) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*MeasurementSystem) GetLabelOk

func (o *MeasurementSystem) GetLabelOk() (*string, bool)

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

func (*MeasurementSystem) GetName

func (o *MeasurementSystem) GetName() string

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

func (*MeasurementSystem) GetNameOk

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

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

func (*MeasurementSystem) HasLabel

func (o *MeasurementSystem) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*MeasurementSystem) HasName

func (o *MeasurementSystem) HasName() bool

HasName returns a boolean if a field has been set.

func (MeasurementSystem) MarshalJSON

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

func (*MeasurementSystem) SetLabel

func (o *MeasurementSystem) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*MeasurementSystem) SetName

func (o *MeasurementSystem) SetName(v string)

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

type NullableAuthenticateRequst

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

func NewNullableAuthenticateRequst

func NewNullableAuthenticateRequst(val *AuthenticateRequst) *NullableAuthenticateRequst

func (NullableAuthenticateRequst) Get

func (NullableAuthenticateRequst) IsSet

func (v NullableAuthenticateRequst) IsSet() bool

func (NullableAuthenticateRequst) MarshalJSON

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

func (*NullableAuthenticateRequst) Set

func (*NullableAuthenticateRequst) UnmarshalJSON

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

func (*NullableAuthenticateRequst) Unset

func (v *NullableAuthenticateRequst) Unset()

type NullableAuthenticateResponse

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

func NewNullableAuthenticateResponse

func NewNullableAuthenticateResponse(val *AuthenticateResponse) *NullableAuthenticateResponse

func (NullableAuthenticateResponse) Get

func (NullableAuthenticateResponse) IsSet

func (NullableAuthenticateResponse) MarshalJSON

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

func (*NullableAuthenticateResponse) Set

func (*NullableAuthenticateResponse) UnmarshalJSON

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

func (*NullableAuthenticateResponse) Unset

func (v *NullableAuthenticateResponse) Unset()

type NullableAvatars

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

func NewNullableAvatars

func NewNullableAvatars(val *Avatars) *NullableAvatars

func (NullableAvatars) Get

func (v NullableAvatars) Get() *Avatars

func (NullableAvatars) IsSet

func (v NullableAvatars) IsSet() bool

func (NullableAvatars) MarshalJSON

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

func (*NullableAvatars) Set

func (v *NullableAvatars) Set(val *Avatars)

func (*NullableAvatars) UnmarshalJSON

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

func (*NullableAvatars) Unset

func (v *NullableAvatars) Unset()

type NullableBlob

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

func NewNullableBlob

func NewNullableBlob(val *Blob) *NullableBlob

func (NullableBlob) Get

func (v NullableBlob) Get() *Blob

func (NullableBlob) IsSet

func (v NullableBlob) IsSet() bool

func (NullableBlob) MarshalJSON

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

func (*NullableBlob) Set

func (v *NullableBlob) Set(val *Blob)

func (*NullableBlob) UnmarshalJSON

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

func (*NullableBlob) Unset

func (v *NullableBlob) 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 NullableChild

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

func NewNullableChild

func NewNullableChild(val *Child) *NullableChild

func (NullableChild) Get

func (v NullableChild) Get() *Child

func (NullableChild) IsSet

func (v NullableChild) IsSet() bool

func (NullableChild) MarshalJSON

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

func (*NullableChild) Set

func (v *NullableChild) Set(val *Child)

func (*NullableChild) UnmarshalJSON

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

func (*NullableChild) Unset

func (v *NullableChild) Unset()

type NullableCoverTheme

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

func NewNullableCoverTheme

func NewNullableCoverTheme(val *CoverTheme) *NullableCoverTheme

func (NullableCoverTheme) Get

func (v NullableCoverTheme) Get() *CoverTheme

func (NullableCoverTheme) IsSet

func (v NullableCoverTheme) IsSet() bool

func (NullableCoverTheme) MarshalJSON

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

func (*NullableCoverTheme) Set

func (v *NullableCoverTheme) Set(val *CoverTheme)

func (*NullableCoverTheme) UnmarshalJSON

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

func (*NullableCoverTheme) Unset

func (v *NullableCoverTheme) Unset()

type NullableCycle

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

func NewNullableCycle

func NewNullableCycle(val *Cycle) *NullableCycle

func (NullableCycle) Get

func (v NullableCycle) Get() *Cycle

func (NullableCycle) IsSet

func (v NullableCycle) IsSet() bool

func (NullableCycle) MarshalJSON

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

func (*NullableCycle) Set

func (v *NullableCycle) Set(val *Cycle)

func (*NullableCycle) UnmarshalJSON

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

func (*NullableCycle) Unset

func (v *NullableCycle) Unset()

type NullableDateStyle

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

func NewNullableDateStyle

func NewNullableDateStyle(val *DateStyle) *NullableDateStyle

func (NullableDateStyle) Get

func (v NullableDateStyle) Get() *DateStyle

func (NullableDateStyle) IsSet

func (v NullableDateStyle) IsSet() bool

func (NullableDateStyle) MarshalJSON

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

func (*NullableDateStyle) Set

func (v *NullableDateStyle) Set(val *DateStyle)

func (*NullableDateStyle) UnmarshalJSON

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

func (*NullableDateStyle) Unset

func (v *NullableDateStyle) Unset()

type NullableEmailFrequency

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

func NewNullableEmailFrequency

func NewNullableEmailFrequency(val *EmailFrequency) *NullableEmailFrequency

func (NullableEmailFrequency) Get

func (NullableEmailFrequency) IsSet

func (v NullableEmailFrequency) IsSet() bool

func (NullableEmailFrequency) MarshalJSON

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

func (*NullableEmailFrequency) Set

func (*NullableEmailFrequency) UnmarshalJSON

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

func (*NullableEmailFrequency) Unset

func (v *NullableEmailFrequency) Unset()

type NullableEmotion

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

func NewNullableEmotion

func NewNullableEmotion(val *Emotion) *NullableEmotion

func (NullableEmotion) Get

func (v NullableEmotion) Get() *Emotion

func (NullableEmotion) IsSet

func (v NullableEmotion) IsSet() bool

func (NullableEmotion) MarshalJSON

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

func (*NullableEmotion) Set

func (v *NullableEmotion) Set(val *Emotion)

func (*NullableEmotion) UnmarshalJSON

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

func (*NullableEmotion) Unset

func (v *NullableEmotion) Unset()

type NullableEmotionType

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

func NewNullableEmotionType

func NewNullableEmotionType(val *EmotionType) *NullableEmotionType

func (NullableEmotionType) Get

func (NullableEmotionType) IsSet

func (v NullableEmotionType) IsSet() bool

func (NullableEmotionType) MarshalJSON

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

func (*NullableEmotionType) Set

func (v *NullableEmotionType) Set(val *EmotionType)

func (*NullableEmotionType) UnmarshalJSON

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

func (*NullableEmotionType) Unset

func (v *NullableEmotionType) Unset()

type NullableEntries

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

func NewNullableEntries

func NewNullableEntries(val *Entries) *NullableEntries

func (NullableEntries) Get

func (v NullableEntries) Get() *Entries

func (NullableEntries) IsSet

func (v NullableEntries) IsSet() bool

func (NullableEntries) MarshalJSON

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

func (*NullableEntries) Set

func (v *NullableEntries) Set(val *Entries)

func (*NullableEntries) UnmarshalJSON

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

func (*NullableEntries) Unset

func (v *NullableEntries) Unset()

type NullableEntry

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

func NewNullableEntry

func NewNullableEntry(val *Entry) *NullableEntry

func (NullableEntry) Get

func (v NullableEntry) Get() *Entry

func (NullableEntry) IsSet

func (v NullableEntry) IsSet() bool

func (NullableEntry) MarshalJSON

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

func (*NullableEntry) Set

func (v *NullableEntry) Set(val *Entry)

func (*NullableEntry) UnmarshalJSON

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

func (*NullableEntry) Unset

func (v *NullableEntry) Unset()

type NullableFeatures

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

func NewNullableFeatures

func NewNullableFeatures(val *Features) *NullableFeatures

func (NullableFeatures) Get

func (v NullableFeatures) Get() *Features

func (NullableFeatures) IsSet

func (v NullableFeatures) IsSet() bool

func (NullableFeatures) MarshalJSON

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

func (*NullableFeatures) Set

func (v *NullableFeatures) Set(val *Features)

func (*NullableFeatures) UnmarshalJSON

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

func (*NullableFeatures) Unset

func (v *NullableFeatures) 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 NullableFollowing

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

func NewNullableFollowing

func NewNullableFollowing(val *Following) *NullableFollowing

func (NullableFollowing) Get

func (v NullableFollowing) Get() *Following

func (NullableFollowing) IsSet

func (v NullableFollowing) IsSet() bool

func (NullableFollowing) MarshalJSON

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

func (*NullableFollowing) Set

func (v *NullableFollowing) Set(val *Following)

func (*NullableFollowing) UnmarshalJSON

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

func (*NullableFollowing) Unset

func (v *NullableFollowing) Unset()

type NullableFollowings

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

func NewNullableFollowings

func NewNullableFollowings(val *Followings) *NullableFollowings

func (NullableFollowings) Get

func (v NullableFollowings) Get() *Followings

func (NullableFollowings) IsSet

func (v NullableFollowings) IsSet() bool

func (NullableFollowings) MarshalJSON

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

func (*NullableFollowings) Set

func (v *NullableFollowings) Set(val *Followings)

func (*NullableFollowings) UnmarshalJSON

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

func (*NullableFollowings) Unset

func (v *NullableFollowings) 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 NullableJournal

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

func NewNullableJournal

func NewNullableJournal(val *Journal) *NullableJournal

func (NullableJournal) Get

func (v NullableJournal) Get() *Journal

func (NullableJournal) IsSet

func (v NullableJournal) IsSet() bool

func (NullableJournal) MarshalJSON

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

func (*NullableJournal) Set

func (v *NullableJournal) Set(val *Journal)

func (*NullableJournal) UnmarshalJSON

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

func (*NullableJournal) Unset

func (v *NullableJournal) Unset()

type NullableJournals

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

func NewNullableJournals

func NewNullableJournals(val *Journals) *NullableJournals

func (NullableJournals) Get

func (v NullableJournals) Get() *Journals

func (NullableJournals) IsSet

func (v NullableJournals) IsSet() bool

func (NullableJournals) MarshalJSON

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

func (*NullableJournals) Set

func (v *NullableJournals) Set(val *Journals)

func (*NullableJournals) UnmarshalJSON

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

func (*NullableJournals) Unset

func (v *NullableJournals) Unset()

type NullableMeasurementSystem

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

func NewNullableMeasurementSystem

func NewNullableMeasurementSystem(val *MeasurementSystem) *NullableMeasurementSystem

func (NullableMeasurementSystem) Get

func (NullableMeasurementSystem) IsSet

func (v NullableMeasurementSystem) IsSet() bool

func (NullableMeasurementSystem) MarshalJSON

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

func (*NullableMeasurementSystem) Set

func (*NullableMeasurementSystem) UnmarshalJSON

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

func (*NullableMeasurementSystem) Unset

func (v *NullableMeasurementSystem) Unset()

type NullablePaymentTransaction

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

func NewNullablePaymentTransaction

func NewNullablePaymentTransaction(val *PaymentTransaction) *NullablePaymentTransaction

func (NullablePaymentTransaction) Get

func (NullablePaymentTransaction) IsSet

func (v NullablePaymentTransaction) IsSet() bool

func (NullablePaymentTransaction) MarshalJSON

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

func (*NullablePaymentTransaction) Set

func (*NullablePaymentTransaction) UnmarshalJSON

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

func (*NullablePaymentTransaction) Unset

func (v *NullablePaymentTransaction) Unset()

type NullablePet

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

func NewNullablePet

func NewNullablePet(val *Pet) *NullablePet

func (NullablePet) Get

func (v NullablePet) Get() *Pet

func (NullablePet) IsSet

func (v NullablePet) IsSet() bool

func (NullablePet) MarshalJSON

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

func (*NullablePet) Set

func (v *NullablePet) Set(val *Pet)

func (*NullablePet) UnmarshalJSON

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

func (*NullablePet) Unset

func (v *NullablePet) Unset()

type NullablePrice

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

func NewNullablePrice

func NewNullablePrice(val *Price) *NullablePrice

func (NullablePrice) Get

func (v NullablePrice) Get() *Price

func (NullablePrice) IsSet

func (v NullablePrice) IsSet() bool

func (NullablePrice) MarshalJSON

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

func (*NullablePrice) Set

func (v *NullablePrice) Set(val *Price)

func (*NullablePrice) UnmarshalJSON

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

func (*NullablePrice) Unset

func (v *NullablePrice) Unset()

type NullableRelationship

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

func NewNullableRelationship

func NewNullableRelationship(val *Relationship) *NullableRelationship

func (NullableRelationship) Get

func (NullableRelationship) IsSet

func (v NullableRelationship) IsSet() bool

func (NullableRelationship) MarshalJSON

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

func (*NullableRelationship) Set

func (v *NullableRelationship) Set(val *Relationship)

func (*NullableRelationship) UnmarshalJSON

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

func (*NullableRelationship) Unset

func (v *NullableRelationship) 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 NullableSubscription

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

func NewNullableSubscription

func NewNullableSubscription(val *Subscription) *NullableSubscription

func (NullableSubscription) Get

func (NullableSubscription) IsSet

func (v NullableSubscription) IsSet() bool

func (NullableSubscription) MarshalJSON

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

func (*NullableSubscription) Set

func (v *NullableSubscription) Set(val *Subscription)

func (*NullableSubscription) UnmarshalJSON

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

func (*NullableSubscription) Unset

func (v *NullableSubscription) Unset()

type NullableSubscriptionProduct

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

func NewNullableSubscriptionProduct

func NewNullableSubscriptionProduct(val *SubscriptionProduct) *NullableSubscriptionProduct

func (NullableSubscriptionProduct) Get

func (NullableSubscriptionProduct) IsSet

func (NullableSubscriptionProduct) MarshalJSON

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

func (*NullableSubscriptionProduct) Set

func (*NullableSubscriptionProduct) UnmarshalJSON

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

func (*NullableSubscriptionProduct) Unset

func (v *NullableSubscriptionProduct) 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 NullableTimeZone

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

func NewNullableTimeZone

func NewNullableTimeZone(val *TimeZone) *NullableTimeZone

func (NullableTimeZone) Get

func (v NullableTimeZone) Get() *TimeZone

func (NullableTimeZone) IsSet

func (v NullableTimeZone) IsSet() bool

func (NullableTimeZone) MarshalJSON

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

func (*NullableTimeZone) Set

func (v *NullableTimeZone) Set(val *TimeZone)

func (*NullableTimeZone) UnmarshalJSON

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

func (*NullableTimeZone) Unset

func (v *NullableTimeZone) 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 NullableUsersMe

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

func NewNullableUsersMe

func NewNullableUsersMe(val *UsersMe) *NullableUsersMe

func (NullableUsersMe) Get

func (v NullableUsersMe) Get() *UsersMe

func (NullableUsersMe) IsSet

func (v NullableUsersMe) IsSet() bool

func (NullableUsersMe) MarshalJSON

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

func (*NullableUsersMe) Set

func (v *NullableUsersMe) Set(val *UsersMe)

func (*NullableUsersMe) UnmarshalJSON

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

func (*NullableUsersMe) Unset

func (v *NullableUsersMe) Unset()

type PaymentTransaction

type PaymentTransaction struct {
	URL                *string `json:"URL,omitempty"`
	Id                 *int64  `json:"id,omitempty"`
	DateCreated        *string `json:"dateCreated,omitempty"`
	LastUpdated        *string `json:"lastUpdated,omitempty"`
	TransactionDate    *string `json:"transactionDate,omitempty"`
	AmountInCents      *int64  `json:"amountInCents,omitempty"`
	AmountDisplay      *string `json:"amountDisplay,omitempty"`
	Discount           *int64  `json:"discount,omitempty"`
	UserId             *int64  `json:"userId,omitempty"`
	ProductId          *string `json:"productId,omitempty"`
	PaymentId          *string `json:"paymentId,omitempty"`
	ReceiptNumber      *string `json:"receiptNumber,omitempty"`
	Description        *string `json:"description,omitempty"`
	PaymentGatewayType *string `json:"paymentGatewayType,omitempty"`
	Last4              *string `json:"last4,omitempty"`
	User               *User   `json:"user,omitempty"`
}

PaymentTransaction struct for PaymentTransaction

func NewPaymentTransaction

func NewPaymentTransaction() *PaymentTransaction

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

func NewPaymentTransactionWithDefaults

func NewPaymentTransactionWithDefaults() *PaymentTransaction

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

func (*PaymentTransaction) GetAmountDisplay

func (o *PaymentTransaction) GetAmountDisplay() string

GetAmountDisplay returns the AmountDisplay field value if set, zero value otherwise.

func (*PaymentTransaction) GetAmountDisplayOk

func (o *PaymentTransaction) GetAmountDisplayOk() (*string, bool)

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

func (*PaymentTransaction) GetAmountInCents

func (o *PaymentTransaction) GetAmountInCents() int64

GetAmountInCents returns the AmountInCents field value if set, zero value otherwise.

func (*PaymentTransaction) GetAmountInCentsOk

func (o *PaymentTransaction) GetAmountInCentsOk() (*int64, bool)

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

func (*PaymentTransaction) GetDateCreated

func (o *PaymentTransaction) GetDateCreated() string

GetDateCreated returns the DateCreated field value if set, zero value otherwise.

func (*PaymentTransaction) GetDateCreatedOk

func (o *PaymentTransaction) GetDateCreatedOk() (*string, bool)

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

func (*PaymentTransaction) GetDescription

func (o *PaymentTransaction) GetDescription() string

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

func (*PaymentTransaction) GetDescriptionOk

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

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

func (*PaymentTransaction) GetDiscount

func (o *PaymentTransaction) GetDiscount() int64

GetDiscount returns the Discount field value if set, zero value otherwise.

func (*PaymentTransaction) GetDiscountOk

func (o *PaymentTransaction) GetDiscountOk() (*int64, bool)

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

func (*PaymentTransaction) GetId

func (o *PaymentTransaction) GetId() int64

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

func (*PaymentTransaction) GetIdOk

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

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

func (*PaymentTransaction) GetLast4

func (o *PaymentTransaction) GetLast4() string

GetLast4 returns the Last4 field value if set, zero value otherwise.

func (*PaymentTransaction) GetLast4Ok

func (o *PaymentTransaction) GetLast4Ok() (*string, bool)

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

func (*PaymentTransaction) GetLastUpdated

func (o *PaymentTransaction) GetLastUpdated() string

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

func (*PaymentTransaction) GetLastUpdatedOk

func (o *PaymentTransaction) GetLastUpdatedOk() (*string, bool)

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

func (*PaymentTransaction) GetPaymentGatewayType

func (o *PaymentTransaction) GetPaymentGatewayType() string

GetPaymentGatewayType returns the PaymentGatewayType field value if set, zero value otherwise.

func (*PaymentTransaction) GetPaymentGatewayTypeOk

func (o *PaymentTransaction) GetPaymentGatewayTypeOk() (*string, bool)

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

func (*PaymentTransaction) GetPaymentId

func (o *PaymentTransaction) GetPaymentId() string

GetPaymentId returns the PaymentId field value if set, zero value otherwise.

func (*PaymentTransaction) GetPaymentIdOk

func (o *PaymentTransaction) GetPaymentIdOk() (*string, bool)

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

func (*PaymentTransaction) GetProductId

func (o *PaymentTransaction) GetProductId() string

GetProductId returns the ProductId field value if set, zero value otherwise.

func (*PaymentTransaction) GetProductIdOk

func (o *PaymentTransaction) GetProductIdOk() (*string, bool)

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

func (*PaymentTransaction) GetReceiptNumber

func (o *PaymentTransaction) GetReceiptNumber() string

GetReceiptNumber returns the ReceiptNumber field value if set, zero value otherwise.

func (*PaymentTransaction) GetReceiptNumberOk

func (o *PaymentTransaction) GetReceiptNumberOk() (*string, bool)

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

func (*PaymentTransaction) GetTransactionDate

func (o *PaymentTransaction) GetTransactionDate() string

GetTransactionDate returns the TransactionDate field value if set, zero value otherwise.

func (*PaymentTransaction) GetTransactionDateOk

func (o *PaymentTransaction) GetTransactionDateOk() (*string, bool)

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

func (*PaymentTransaction) GetURL

func (o *PaymentTransaction) GetURL() string

GetURL returns the URL field value if set, zero value otherwise.

func (*PaymentTransaction) GetURLOk

func (o *PaymentTransaction) GetURLOk() (*string, bool)

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

func (*PaymentTransaction) GetUser

func (o *PaymentTransaction) GetUser() User

GetUser returns the User field value if set, zero value otherwise.

func (*PaymentTransaction) GetUserId

func (o *PaymentTransaction) GetUserId() int64

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

func (*PaymentTransaction) GetUserIdOk

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

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

func (*PaymentTransaction) GetUserOk

func (o *PaymentTransaction) GetUserOk() (*User, bool)

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

func (*PaymentTransaction) HasAmountDisplay

func (o *PaymentTransaction) HasAmountDisplay() bool

HasAmountDisplay returns a boolean if a field has been set.

func (*PaymentTransaction) HasAmountInCents

func (o *PaymentTransaction) HasAmountInCents() bool

HasAmountInCents returns a boolean if a field has been set.

func (*PaymentTransaction) HasDateCreated

func (o *PaymentTransaction) HasDateCreated() bool

HasDateCreated returns a boolean if a field has been set.

func (*PaymentTransaction) HasDescription

func (o *PaymentTransaction) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*PaymentTransaction) HasDiscount

func (o *PaymentTransaction) HasDiscount() bool

HasDiscount returns a boolean if a field has been set.

func (*PaymentTransaction) HasId

func (o *PaymentTransaction) HasId() bool

HasId returns a boolean if a field has been set.

func (*PaymentTransaction) HasLast4

func (o *PaymentTransaction) HasLast4() bool

HasLast4 returns a boolean if a field has been set.

func (*PaymentTransaction) HasLastUpdated

func (o *PaymentTransaction) HasLastUpdated() bool

HasLastUpdated returns a boolean if a field has been set.

func (*PaymentTransaction) HasPaymentGatewayType

func (o *PaymentTransaction) HasPaymentGatewayType() bool

HasPaymentGatewayType returns a boolean if a field has been set.

func (*PaymentTransaction) HasPaymentId

func (o *PaymentTransaction) HasPaymentId() bool

HasPaymentId returns a boolean if a field has been set.

func (*PaymentTransaction) HasProductId

func (o *PaymentTransaction) HasProductId() bool

HasProductId returns a boolean if a field has been set.

func (*PaymentTransaction) HasReceiptNumber

func (o *PaymentTransaction) HasReceiptNumber() bool

HasReceiptNumber returns a boolean if a field has been set.

func (*PaymentTransaction) HasTransactionDate

func (o *PaymentTransaction) HasTransactionDate() bool

HasTransactionDate returns a boolean if a field has been set.

func (*PaymentTransaction) HasURL

func (o *PaymentTransaction) HasURL() bool

HasURL returns a boolean if a field has been set.

func (*PaymentTransaction) HasUser

func (o *PaymentTransaction) HasUser() bool

HasUser returns a boolean if a field has been set.

func (*PaymentTransaction) HasUserId

func (o *PaymentTransaction) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (PaymentTransaction) MarshalJSON

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

func (*PaymentTransaction) SetAmountDisplay

func (o *PaymentTransaction) SetAmountDisplay(v string)

SetAmountDisplay gets a reference to the given string and assigns it to the AmountDisplay field.

func (*PaymentTransaction) SetAmountInCents

func (o *PaymentTransaction) SetAmountInCents(v int64)

SetAmountInCents gets a reference to the given int64 and assigns it to the AmountInCents field.

func (*PaymentTransaction) SetDateCreated

func (o *PaymentTransaction) SetDateCreated(v string)

SetDateCreated gets a reference to the given string and assigns it to the DateCreated field.

func (*PaymentTransaction) SetDescription

func (o *PaymentTransaction) SetDescription(v string)

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

func (*PaymentTransaction) SetDiscount

func (o *PaymentTransaction) SetDiscount(v int64)

SetDiscount gets a reference to the given int64 and assigns it to the Discount field.

func (*PaymentTransaction) SetId

func (o *PaymentTransaction) SetId(v int64)

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

func (*PaymentTransaction) SetLast4

func (o *PaymentTransaction) SetLast4(v string)

SetLast4 gets a reference to the given string and assigns it to the Last4 field.

func (*PaymentTransaction) SetLastUpdated

func (o *PaymentTransaction) SetLastUpdated(v string)

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

func (*PaymentTransaction) SetPaymentGatewayType

func (o *PaymentTransaction) SetPaymentGatewayType(v string)

SetPaymentGatewayType gets a reference to the given string and assigns it to the PaymentGatewayType field.

func (*PaymentTransaction) SetPaymentId

func (o *PaymentTransaction) SetPaymentId(v string)

SetPaymentId gets a reference to the given string and assigns it to the PaymentId field.

func (*PaymentTransaction) SetProductId

func (o *PaymentTransaction) SetProductId(v string)

SetProductId gets a reference to the given string and assigns it to the ProductId field.

func (*PaymentTransaction) SetReceiptNumber

func (o *PaymentTransaction) SetReceiptNumber(v string)

SetReceiptNumber gets a reference to the given string and assigns it to the ReceiptNumber field.

func (*PaymentTransaction) SetTransactionDate

func (o *PaymentTransaction) SetTransactionDate(v string)

SetTransactionDate gets a reference to the given string and assigns it to the TransactionDate field.

func (*PaymentTransaction) SetURL

func (o *PaymentTransaction) SetURL(v string)

SetURL gets a reference to the given string and assigns it to the URL field.

func (*PaymentTransaction) SetUser

func (o *PaymentTransaction) SetUser(v User)

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

func (*PaymentTransaction) SetUserId

func (o *PaymentTransaction) SetUserId(v int64)

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

type Pet

type Pet struct {
	Id                *int64   `json:"id,omitempty"`
	Name              *string  `json:"name,omitempty"`
	Species           *string  `json:"species,omitempty"`
	Breed             *string  `json:"breed,omitempty"`
	Size              *string  `json:"size,omitempty"`
	Sex               *string  `json:"sex,omitempty"`
	Deleted           *bool    `json:"deleted,omitempty"`
	DevelopmentOptOut *bool    `json:"developmentOptOut,omitempty"`
	Birthday          *string  `json:"birthday,omitempty"`
	AdoptionDate      *string  `json:"adoptionDate,omitempty"`
	Avatars           *Avatars `json:"avatars,omitempty"`
	User              *User    `json:"user,omitempty"`
}

Pet struct for Pet

func NewPet

func NewPet() *Pet

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

func NewPetWithDefaults

func NewPetWithDefaults() *Pet

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

func (*Pet) GetAdoptionDate

func (o *Pet) GetAdoptionDate() string

GetAdoptionDate returns the AdoptionDate field value if set, zero value otherwise.

func (*Pet) GetAdoptionDateOk

func (o *Pet) GetAdoptionDateOk() (*string, bool)

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

func (*Pet) GetAvatars

func (o *Pet) GetAvatars() Avatars

GetAvatars returns the Avatars field value if set, zero value otherwise.

func (*Pet) GetAvatarsOk

func (o *Pet) GetAvatarsOk() (*Avatars, bool)

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

func (*Pet) GetBirthday

func (o *Pet) GetBirthday() string

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

func (*Pet) GetBirthdayOk

func (o *Pet) GetBirthdayOk() (*string, bool)

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

func (*Pet) GetBreed

func (o *Pet) GetBreed() string

GetBreed returns the Breed field value if set, zero value otherwise.

func (*Pet) GetBreedOk

func (o *Pet) GetBreedOk() (*string, bool)

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

func (*Pet) GetDeleted

func (o *Pet) GetDeleted() bool

GetDeleted returns the Deleted field value if set, zero value otherwise.

func (*Pet) GetDeletedOk

func (o *Pet) GetDeletedOk() (*bool, bool)

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

func (*Pet) GetDevelopmentOptOut

func (o *Pet) GetDevelopmentOptOut() bool

GetDevelopmentOptOut returns the DevelopmentOptOut field value if set, zero value otherwise.

func (*Pet) GetDevelopmentOptOutOk

func (o *Pet) GetDevelopmentOptOutOk() (*bool, bool)

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

func (*Pet) GetId

func (o *Pet) GetId() int64

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

func (*Pet) GetIdOk

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

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

func (*Pet) GetName

func (o *Pet) GetName() string

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

func (*Pet) GetNameOk

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

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

func (*Pet) GetSex

func (o *Pet) GetSex() string

GetSex returns the Sex field value if set, zero value otherwise.

func (*Pet) GetSexOk

func (o *Pet) GetSexOk() (*string, bool)

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

func (*Pet) GetSize

func (o *Pet) GetSize() string

GetSize returns the Size field value if set, zero value otherwise.

func (*Pet) GetSizeOk

func (o *Pet) GetSizeOk() (*string, bool)

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

func (*Pet) GetSpecies

func (o *Pet) GetSpecies() string

GetSpecies returns the Species field value if set, zero value otherwise.

func (*Pet) GetSpeciesOk

func (o *Pet) GetSpeciesOk() (*string, bool)

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

func (*Pet) GetUser

func (o *Pet) GetUser() User

GetUser returns the User field value if set, zero value otherwise.

func (*Pet) GetUserOk

func (o *Pet) GetUserOk() (*User, bool)

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

func (*Pet) HasAdoptionDate

func (o *Pet) HasAdoptionDate() bool

HasAdoptionDate returns a boolean if a field has been set.

func (*Pet) HasAvatars

func (o *Pet) HasAvatars() bool

HasAvatars returns a boolean if a field has been set.

func (*Pet) HasBirthday

func (o *Pet) HasBirthday() bool

HasBirthday returns a boolean if a field has been set.

func (*Pet) HasBreed

func (o *Pet) HasBreed() bool

HasBreed returns a boolean if a field has been set.

func (*Pet) HasDeleted

func (o *Pet) HasDeleted() bool

HasDeleted returns a boolean if a field has been set.

func (*Pet) HasDevelopmentOptOut

func (o *Pet) HasDevelopmentOptOut() bool

HasDevelopmentOptOut returns a boolean if a field has been set.

func (*Pet) HasId

func (o *Pet) HasId() bool

HasId returns a boolean if a field has been set.

func (*Pet) HasName

func (o *Pet) HasName() bool

HasName returns a boolean if a field has been set.

func (*Pet) HasSex

func (o *Pet) HasSex() bool

HasSex returns a boolean if a field has been set.

func (*Pet) HasSize

func (o *Pet) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*Pet) HasSpecies

func (o *Pet) HasSpecies() bool

HasSpecies returns a boolean if a field has been set.

func (*Pet) HasUser

func (o *Pet) HasUser() bool

HasUser returns a boolean if a field has been set.

func (Pet) MarshalJSON

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

func (*Pet) SetAdoptionDate

func (o *Pet) SetAdoptionDate(v string)

SetAdoptionDate gets a reference to the given string and assigns it to the AdoptionDate field.

func (*Pet) SetAvatars

func (o *Pet) SetAvatars(v Avatars)

SetAvatars gets a reference to the given Avatars and assigns it to the Avatars field.

func (*Pet) SetBirthday

func (o *Pet) SetBirthday(v string)

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

func (*Pet) SetBreed

func (o *Pet) SetBreed(v string)

SetBreed gets a reference to the given string and assigns it to the Breed field.

func (*Pet) SetDeleted

func (o *Pet) SetDeleted(v bool)

SetDeleted gets a reference to the given bool and assigns it to the Deleted field.

func (*Pet) SetDevelopmentOptOut

func (o *Pet) SetDevelopmentOptOut(v bool)

SetDevelopmentOptOut gets a reference to the given bool and assigns it to the DevelopmentOptOut field.

func (*Pet) SetId

func (o *Pet) SetId(v int64)

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

func (*Pet) SetName

func (o *Pet) SetName(v string)

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

func (*Pet) SetSex

func (o *Pet) SetSex(v string)

SetSex gets a reference to the given string and assigns it to the Sex field.

func (*Pet) SetSize

func (o *Pet) SetSize(v string)

SetSize gets a reference to the given string and assigns it to the Size field.

func (*Pet) SetSpecies

func (o *Pet) SetSpecies(v string)

SetSpecies gets a reference to the given string and assigns it to the Species field.

func (*Pet) SetUser

func (o *Pet) SetUser(v User)

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

type Price

type Price struct {
	URL                     *string  `json:"URL,omitempty"`
	Id                      *int64   `json:"id,omitempty"`
	DateCreated             *string  `json:"dateCreated,omitempty"`
	AmountInCents           *int64   `json:"amountInCents,omitempty"`
	AmountInDollarsAndCents *float32 `json:"amountInDollarsAndCents,omitempty"`
	TaxAsPercentage         *float32 `json:"taxAsPercentage,omitempty"`
	TaxAmountInCents        *int64   `json:"taxAmountInCents,omitempty"`
	LocaleTag               *string  `json:"localeTag,omitempty"`
}

Price struct for Price

func NewPrice

func NewPrice() *Price

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

func NewPriceWithDefaults

func NewPriceWithDefaults() *Price

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

func (*Price) GetAmountInCents

func (o *Price) GetAmountInCents() int64

GetAmountInCents returns the AmountInCents field value if set, zero value otherwise.

func (*Price) GetAmountInCentsOk

func (o *Price) GetAmountInCentsOk() (*int64, bool)

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

func (*Price) GetAmountInDollarsAndCents

func (o *Price) GetAmountInDollarsAndCents() float32

GetAmountInDollarsAndCents returns the AmountInDollarsAndCents field value if set, zero value otherwise.

func (*Price) GetAmountInDollarsAndCentsOk

func (o *Price) GetAmountInDollarsAndCentsOk() (*float32, bool)

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

func (*Price) GetDateCreated

func (o *Price) GetDateCreated() string

GetDateCreated returns the DateCreated field value if set, zero value otherwise.

func (*Price) GetDateCreatedOk

func (o *Price) GetDateCreatedOk() (*string, bool)

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

func (*Price) GetId

func (o *Price) GetId() int64

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

func (*Price) GetIdOk

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

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

func (*Price) GetLocaleTag

func (o *Price) GetLocaleTag() string

GetLocaleTag returns the LocaleTag field value if set, zero value otherwise.

func (*Price) GetLocaleTagOk

func (o *Price) GetLocaleTagOk() (*string, bool)

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

func (*Price) GetTaxAmountInCents

func (o *Price) GetTaxAmountInCents() int64

GetTaxAmountInCents returns the TaxAmountInCents field value if set, zero value otherwise.

func (*Price) GetTaxAmountInCentsOk

func (o *Price) GetTaxAmountInCentsOk() (*int64, bool)

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

func (*Price) GetTaxAsPercentage

func (o *Price) GetTaxAsPercentage() float32

GetTaxAsPercentage returns the TaxAsPercentage field value if set, zero value otherwise.

func (*Price) GetTaxAsPercentageOk

func (o *Price) GetTaxAsPercentageOk() (*float32, bool)

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

func (*Price) GetURL

func (o *Price) GetURL() string

GetURL returns the URL field value if set, zero value otherwise.

func (*Price) GetURLOk

func (o *Price) GetURLOk() (*string, bool)

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

func (*Price) HasAmountInCents

func (o *Price) HasAmountInCents() bool

HasAmountInCents returns a boolean if a field has been set.

func (*Price) HasAmountInDollarsAndCents

func (o *Price) HasAmountInDollarsAndCents() bool

HasAmountInDollarsAndCents returns a boolean if a field has been set.

func (*Price) HasDateCreated

func (o *Price) HasDateCreated() bool

HasDateCreated returns a boolean if a field has been set.

func (*Price) HasId

func (o *Price) HasId() bool

HasId returns a boolean if a field has been set.

func (*Price) HasLocaleTag

func (o *Price) HasLocaleTag() bool

HasLocaleTag returns a boolean if a field has been set.

func (*Price) HasTaxAmountInCents

func (o *Price) HasTaxAmountInCents() bool

HasTaxAmountInCents returns a boolean if a field has been set.

func (*Price) HasTaxAsPercentage

func (o *Price) HasTaxAsPercentage() bool

HasTaxAsPercentage returns a boolean if a field has been set.

func (*Price) HasURL

func (o *Price) HasURL() bool

HasURL returns a boolean if a field has been set.

func (Price) MarshalJSON

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

func (*Price) SetAmountInCents

func (o *Price) SetAmountInCents(v int64)

SetAmountInCents gets a reference to the given int64 and assigns it to the AmountInCents field.

func (*Price) SetAmountInDollarsAndCents

func (o *Price) SetAmountInDollarsAndCents(v float32)

SetAmountInDollarsAndCents gets a reference to the given float32 and assigns it to the AmountInDollarsAndCents field.

func (*Price) SetDateCreated

func (o *Price) SetDateCreated(v string)

SetDateCreated gets a reference to the given string and assigns it to the DateCreated field.

func (*Price) SetId

func (o *Price) SetId(v int64)

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

func (*Price) SetLocaleTag

func (o *Price) SetLocaleTag(v string)

SetLocaleTag gets a reference to the given string and assigns it to the LocaleTag field.

func (*Price) SetTaxAmountInCents

func (o *Price) SetTaxAmountInCents(v int64)

SetTaxAmountInCents gets a reference to the given int64 and assigns it to the TaxAmountInCents field.

func (*Price) SetTaxAsPercentage

func (o *Price) SetTaxAsPercentage(v float32)

SetTaxAsPercentage gets a reference to the given float32 and assigns it to the TaxAsPercentage field.

func (*Price) SetURL

func (o *Price) SetURL(v string)

SetURL gets a reference to the given string and assigns it to the URL field.

type Relationship

type Relationship struct {
	Name  *string `json:"name,omitempty"`
	Label *string `json:"label,omitempty"`
}

Relationship struct for Relationship

func NewRelationship

func NewRelationship() *Relationship

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

func NewRelationshipWithDefaults

func NewRelationshipWithDefaults() *Relationship

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

func (*Relationship) GetLabel

func (o *Relationship) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*Relationship) GetLabelOk

func (o *Relationship) GetLabelOk() (*string, bool)

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

func (*Relationship) GetName

func (o *Relationship) GetName() string

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

func (*Relationship) GetNameOk

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

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

func (*Relationship) HasLabel

func (o *Relationship) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*Relationship) HasName

func (o *Relationship) HasName() bool

HasName returns a boolean if a field has been set.

func (Relationship) MarshalJSON

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

func (*Relationship) SetLabel

func (o *Relationship) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*Relationship) SetName

func (o *Relationship) SetName(v string)

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

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type Subscription

type Subscription struct {
	URL                   *string              `json:"URL,omitempty"`
	Id                    *int64               `json:"id,omitempty"`
	StartDate             *int64               `json:"startDate,omitempty"`
	ExpiryDate            *int64               `json:"expiryDate,omitempty"`
	StartDateDisplay      *string              `json:"startDateDisplay,omitempty"`
	ExpiryDateDisplay     *string              `json:"expiryDateDisplay,omitempty"`
	Status                *string              `json:"status,omitempty"`
	Renewal               *string              `json:"renewal,omitempty"`
	SubscriptionProductId *int64               `json:"subscriptionProductId,omitempty"`
	SubscriptionProduct   *SubscriptionProduct `json:"subscriptionProduct,omitempty"`
	JournalId             *int64               `json:"journalId,omitempty"`
	PaymentTransaction    *PaymentTransaction  `json:"paymentTransaction,omitempty"`
}

Subscription struct for Subscription

func NewSubscription

func NewSubscription() *Subscription

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

func NewSubscriptionWithDefaults

func NewSubscriptionWithDefaults() *Subscription

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

func (*Subscription) GetExpiryDate

func (o *Subscription) GetExpiryDate() int64

GetExpiryDate returns the ExpiryDate field value if set, zero value otherwise.

func (*Subscription) GetExpiryDateDisplay

func (o *Subscription) GetExpiryDateDisplay() string

GetExpiryDateDisplay returns the ExpiryDateDisplay field value if set, zero value otherwise.

func (*Subscription) GetExpiryDateDisplayOk

func (o *Subscription) GetExpiryDateDisplayOk() (*string, bool)

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

func (*Subscription) GetExpiryDateOk

func (o *Subscription) GetExpiryDateOk() (*int64, bool)

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

func (*Subscription) GetId

func (o *Subscription) GetId() int64

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

func (*Subscription) GetIdOk

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

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

func (*Subscription) GetJournalId

func (o *Subscription) GetJournalId() int64

GetJournalId returns the JournalId field value if set, zero value otherwise.

func (*Subscription) GetJournalIdOk

func (o *Subscription) GetJournalIdOk() (*int64, bool)

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

func (*Subscription) GetPaymentTransaction

func (o *Subscription) GetPaymentTransaction() PaymentTransaction

GetPaymentTransaction returns the PaymentTransaction field value if set, zero value otherwise.

func (*Subscription) GetPaymentTransactionOk

func (o *Subscription) GetPaymentTransactionOk() (*PaymentTransaction, bool)

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

func (*Subscription) GetRenewal

func (o *Subscription) GetRenewal() string

GetRenewal returns the Renewal field value if set, zero value otherwise.

func (*Subscription) GetRenewalOk

func (o *Subscription) GetRenewalOk() (*string, bool)

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

func (*Subscription) GetStartDate

func (o *Subscription) GetStartDate() int64

GetStartDate returns the StartDate field value if set, zero value otherwise.

func (*Subscription) GetStartDateDisplay

func (o *Subscription) GetStartDateDisplay() string

GetStartDateDisplay returns the StartDateDisplay field value if set, zero value otherwise.

func (*Subscription) GetStartDateDisplayOk

func (o *Subscription) GetStartDateDisplayOk() (*string, bool)

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

func (*Subscription) GetStartDateOk

func (o *Subscription) GetStartDateOk() (*int64, bool)

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

func (*Subscription) GetStatus

func (o *Subscription) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*Subscription) GetStatusOk

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

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

func (*Subscription) GetSubscriptionProduct

func (o *Subscription) GetSubscriptionProduct() SubscriptionProduct

GetSubscriptionProduct returns the SubscriptionProduct field value if set, zero value otherwise.

func (*Subscription) GetSubscriptionProductId

func (o *Subscription) GetSubscriptionProductId() int64

GetSubscriptionProductId returns the SubscriptionProductId field value if set, zero value otherwise.

func (*Subscription) GetSubscriptionProductIdOk

func (o *Subscription) GetSubscriptionProductIdOk() (*int64, bool)

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

func (*Subscription) GetSubscriptionProductOk

func (o *Subscription) GetSubscriptionProductOk() (*SubscriptionProduct, bool)

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

func (*Subscription) GetURL

func (o *Subscription) GetURL() string

GetURL returns the URL field value if set, zero value otherwise.

func (*Subscription) GetURLOk

func (o *Subscription) GetURLOk() (*string, bool)

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

func (*Subscription) HasExpiryDate

func (o *Subscription) HasExpiryDate() bool

HasExpiryDate returns a boolean if a field has been set.

func (*Subscription) HasExpiryDateDisplay

func (o *Subscription) HasExpiryDateDisplay() bool

HasExpiryDateDisplay returns a boolean if a field has been set.

func (*Subscription) HasId

func (o *Subscription) HasId() bool

HasId returns a boolean if a field has been set.

func (*Subscription) HasJournalId

func (o *Subscription) HasJournalId() bool

HasJournalId returns a boolean if a field has been set.

func (*Subscription) HasPaymentTransaction

func (o *Subscription) HasPaymentTransaction() bool

HasPaymentTransaction returns a boolean if a field has been set.

func (*Subscription) HasRenewal

func (o *Subscription) HasRenewal() bool

HasRenewal returns a boolean if a field has been set.

func (*Subscription) HasStartDate

func (o *Subscription) HasStartDate() bool

HasStartDate returns a boolean if a field has been set.

func (*Subscription) HasStartDateDisplay

func (o *Subscription) HasStartDateDisplay() bool

HasStartDateDisplay returns a boolean if a field has been set.

func (*Subscription) HasStatus

func (o *Subscription) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*Subscription) HasSubscriptionProduct

func (o *Subscription) HasSubscriptionProduct() bool

HasSubscriptionProduct returns a boolean if a field has been set.

func (*Subscription) HasSubscriptionProductId

func (o *Subscription) HasSubscriptionProductId() bool

HasSubscriptionProductId returns a boolean if a field has been set.

func (*Subscription) HasURL

func (o *Subscription) HasURL() bool

HasURL returns a boolean if a field has been set.

func (Subscription) MarshalJSON

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

func (*Subscription) SetExpiryDate

func (o *Subscription) SetExpiryDate(v int64)

SetExpiryDate gets a reference to the given int64 and assigns it to the ExpiryDate field.

func (*Subscription) SetExpiryDateDisplay

func (o *Subscription) SetExpiryDateDisplay(v string)

SetExpiryDateDisplay gets a reference to the given string and assigns it to the ExpiryDateDisplay field.

func (*Subscription) SetId

func (o *Subscription) SetId(v int64)

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

func (*Subscription) SetJournalId

func (o *Subscription) SetJournalId(v int64)

SetJournalId gets a reference to the given int64 and assigns it to the JournalId field.

func (*Subscription) SetPaymentTransaction

func (o *Subscription) SetPaymentTransaction(v PaymentTransaction)

SetPaymentTransaction gets a reference to the given PaymentTransaction and assigns it to the PaymentTransaction field.

func (*Subscription) SetRenewal

func (o *Subscription) SetRenewal(v string)

SetRenewal gets a reference to the given string and assigns it to the Renewal field.

func (*Subscription) SetStartDate

func (o *Subscription) SetStartDate(v int64)

SetStartDate gets a reference to the given int64 and assigns it to the StartDate field.

func (*Subscription) SetStartDateDisplay

func (o *Subscription) SetStartDateDisplay(v string)

SetStartDateDisplay gets a reference to the given string and assigns it to the StartDateDisplay field.

func (*Subscription) SetStatus

func (o *Subscription) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*Subscription) SetSubscriptionProduct

func (o *Subscription) SetSubscriptionProduct(v SubscriptionProduct)

SetSubscriptionProduct gets a reference to the given SubscriptionProduct and assigns it to the SubscriptionProduct field.

func (*Subscription) SetSubscriptionProductId

func (o *Subscription) SetSubscriptionProductId(v int64)

SetSubscriptionProductId gets a reference to the given int64 and assigns it to the SubscriptionProductId field.

func (*Subscription) SetURL

func (o *Subscription) SetURL(v string)

SetURL gets a reference to the given string and assigns it to the URL field.

type SubscriptionProduct

type SubscriptionProduct struct {
	Id                      *int64     `json:"id,omitempty"`
	Code                    *string    `json:"code,omitempty"`
	Name                    *string    `json:"name,omitempty"`
	Description             *string    `json:"description,omitempty"`
	DateCreated             *string    `json:"dateCreated,omitempty"`
	LastUpdated             *string    `json:"lastUpdated,omitempty"`
	ProductStatus           *string    `json:"productStatus,omitempty"`
	CodeAppStore            *string    `json:"codeAppStore,omitempty"`
	CodePlayStore           *string    `json:"codePlayStore,omitempty"`
	AmountInCents           *int64     `json:"amountInCents,omitempty"`
	AmountInDollarsAndCents *float32   `json:"amountInDollarsAndCents,omitempty"`
	Price                   *Price     `json:"price,omitempty"`
	URL                     *string    `json:"URL,omitempty"`
	Tier                    *string    `json:"tier,omitempty"`
	CycleDuration           *int64     `json:"cycleDuration,omitempty"`
	Cycle                   *Cycle     `json:"cycle,omitempty"`
	Features                []Features `json:"features,omitempty"`
}

SubscriptionProduct struct for SubscriptionProduct

func NewSubscriptionProduct

func NewSubscriptionProduct() *SubscriptionProduct

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

func NewSubscriptionProductWithDefaults

func NewSubscriptionProductWithDefaults() *SubscriptionProduct

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

func (*SubscriptionProduct) GetAmountInCents

func (o *SubscriptionProduct) GetAmountInCents() int64

GetAmountInCents returns the AmountInCents field value if set, zero value otherwise.

func (*SubscriptionProduct) GetAmountInCentsOk

func (o *SubscriptionProduct) GetAmountInCentsOk() (*int64, bool)

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

func (*SubscriptionProduct) GetAmountInDollarsAndCents

func (o *SubscriptionProduct) GetAmountInDollarsAndCents() float32

GetAmountInDollarsAndCents returns the AmountInDollarsAndCents field value if set, zero value otherwise.

func (*SubscriptionProduct) GetAmountInDollarsAndCentsOk

func (o *SubscriptionProduct) GetAmountInDollarsAndCentsOk() (*float32, bool)

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

func (*SubscriptionProduct) GetCode

func (o *SubscriptionProduct) GetCode() string

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

func (*SubscriptionProduct) GetCodeAppStore

func (o *SubscriptionProduct) GetCodeAppStore() string

GetCodeAppStore returns the CodeAppStore field value if set, zero value otherwise.

func (*SubscriptionProduct) GetCodeAppStoreOk

func (o *SubscriptionProduct) GetCodeAppStoreOk() (*string, bool)

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

func (*SubscriptionProduct) GetCodeOk

func (o *SubscriptionProduct) 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 (*SubscriptionProduct) GetCodePlayStore

func (o *SubscriptionProduct) GetCodePlayStore() string

GetCodePlayStore returns the CodePlayStore field value if set, zero value otherwise.

func (*SubscriptionProduct) GetCodePlayStoreOk

func (o *SubscriptionProduct) GetCodePlayStoreOk() (*string, bool)

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

func (*SubscriptionProduct) GetCycle

func (o *SubscriptionProduct) GetCycle() Cycle

GetCycle returns the Cycle field value if set, zero value otherwise.

func (*SubscriptionProduct) GetCycleDuration

func (o *SubscriptionProduct) GetCycleDuration() int64

GetCycleDuration returns the CycleDuration field value if set, zero value otherwise.

func (*SubscriptionProduct) GetCycleDurationOk

func (o *SubscriptionProduct) GetCycleDurationOk() (*int64, bool)

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

func (*SubscriptionProduct) GetCycleOk

func (o *SubscriptionProduct) GetCycleOk() (*Cycle, bool)

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

func (*SubscriptionProduct) GetDateCreated

func (o *SubscriptionProduct) GetDateCreated() string

GetDateCreated returns the DateCreated field value if set, zero value otherwise.

func (*SubscriptionProduct) GetDateCreatedOk

func (o *SubscriptionProduct) GetDateCreatedOk() (*string, bool)

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

func (*SubscriptionProduct) GetDescription

func (o *SubscriptionProduct) GetDescription() string

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

func (*SubscriptionProduct) GetDescriptionOk

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

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

func (*SubscriptionProduct) GetFeatures

func (o *SubscriptionProduct) GetFeatures() []Features

GetFeatures returns the Features field value if set, zero value otherwise.

func (*SubscriptionProduct) GetFeaturesOk

func (o *SubscriptionProduct) GetFeaturesOk() ([]Features, bool)

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

func (*SubscriptionProduct) GetId

func (o *SubscriptionProduct) GetId() int64

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

func (*SubscriptionProduct) GetIdOk

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

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

func (*SubscriptionProduct) GetLastUpdated

func (o *SubscriptionProduct) GetLastUpdated() string

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

func (*SubscriptionProduct) GetLastUpdatedOk

func (o *SubscriptionProduct) GetLastUpdatedOk() (*string, bool)

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

func (*SubscriptionProduct) GetName

func (o *SubscriptionProduct) GetName() string

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

func (*SubscriptionProduct) GetNameOk

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

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

func (*SubscriptionProduct) GetPrice

func (o *SubscriptionProduct) GetPrice() Price

GetPrice returns the Price field value if set, zero value otherwise.

func (*SubscriptionProduct) GetPriceOk

func (o *SubscriptionProduct) GetPriceOk() (*Price, bool)

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

func (*SubscriptionProduct) GetProductStatus

func (o *SubscriptionProduct) GetProductStatus() string

GetProductStatus returns the ProductStatus field value if set, zero value otherwise.

func (*SubscriptionProduct) GetProductStatusOk

func (o *SubscriptionProduct) GetProductStatusOk() (*string, bool)

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

func (*SubscriptionProduct) GetTier

func (o *SubscriptionProduct) GetTier() string

GetTier returns the Tier field value if set, zero value otherwise.

func (*SubscriptionProduct) GetTierOk

func (o *SubscriptionProduct) GetTierOk() (*string, bool)

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

func (*SubscriptionProduct) GetURL

func (o *SubscriptionProduct) GetURL() string

GetURL returns the URL field value if set, zero value otherwise.

func (*SubscriptionProduct) GetURLOk

func (o *SubscriptionProduct) GetURLOk() (*string, bool)

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

func (*SubscriptionProduct) HasAmountInCents

func (o *SubscriptionProduct) HasAmountInCents() bool

HasAmountInCents returns a boolean if a field has been set.

func (*SubscriptionProduct) HasAmountInDollarsAndCents

func (o *SubscriptionProduct) HasAmountInDollarsAndCents() bool

HasAmountInDollarsAndCents returns a boolean if a field has been set.

func (*SubscriptionProduct) HasCode

func (o *SubscriptionProduct) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*SubscriptionProduct) HasCodeAppStore

func (o *SubscriptionProduct) HasCodeAppStore() bool

HasCodeAppStore returns a boolean if a field has been set.

func (*SubscriptionProduct) HasCodePlayStore

func (o *SubscriptionProduct) HasCodePlayStore() bool

HasCodePlayStore returns a boolean if a field has been set.

func (*SubscriptionProduct) HasCycle

func (o *SubscriptionProduct) HasCycle() bool

HasCycle returns a boolean if a field has been set.

func (*SubscriptionProduct) HasCycleDuration

func (o *SubscriptionProduct) HasCycleDuration() bool

HasCycleDuration returns a boolean if a field has been set.

func (*SubscriptionProduct) HasDateCreated

func (o *SubscriptionProduct) HasDateCreated() bool

HasDateCreated returns a boolean if a field has been set.

func (*SubscriptionProduct) HasDescription

func (o *SubscriptionProduct) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*SubscriptionProduct) HasFeatures

func (o *SubscriptionProduct) HasFeatures() bool

HasFeatures returns a boolean if a field has been set.

func (*SubscriptionProduct) HasId

func (o *SubscriptionProduct) HasId() bool

HasId returns a boolean if a field has been set.

func (*SubscriptionProduct) HasLastUpdated

func (o *SubscriptionProduct) HasLastUpdated() bool

HasLastUpdated returns a boolean if a field has been set.

func (*SubscriptionProduct) HasName

func (o *SubscriptionProduct) HasName() bool

HasName returns a boolean if a field has been set.

func (*SubscriptionProduct) HasPrice

func (o *SubscriptionProduct) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*SubscriptionProduct) HasProductStatus

func (o *SubscriptionProduct) HasProductStatus() bool

HasProductStatus returns a boolean if a field has been set.

func (*SubscriptionProduct) HasTier

func (o *SubscriptionProduct) HasTier() bool

HasTier returns a boolean if a field has been set.

func (*SubscriptionProduct) HasURL

func (o *SubscriptionProduct) HasURL() bool

HasURL returns a boolean if a field has been set.

func (SubscriptionProduct) MarshalJSON

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

func (*SubscriptionProduct) SetAmountInCents

func (o *SubscriptionProduct) SetAmountInCents(v int64)

SetAmountInCents gets a reference to the given int64 and assigns it to the AmountInCents field.

func (*SubscriptionProduct) SetAmountInDollarsAndCents

func (o *SubscriptionProduct) SetAmountInDollarsAndCents(v float32)

SetAmountInDollarsAndCents gets a reference to the given float32 and assigns it to the AmountInDollarsAndCents field.

func (*SubscriptionProduct) SetCode

func (o *SubscriptionProduct) SetCode(v string)

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

func (*SubscriptionProduct) SetCodeAppStore

func (o *SubscriptionProduct) SetCodeAppStore(v string)

SetCodeAppStore gets a reference to the given string and assigns it to the CodeAppStore field.

func (*SubscriptionProduct) SetCodePlayStore

func (o *SubscriptionProduct) SetCodePlayStore(v string)

SetCodePlayStore gets a reference to the given string and assigns it to the CodePlayStore field.

func (*SubscriptionProduct) SetCycle

func (o *SubscriptionProduct) SetCycle(v Cycle)

SetCycle gets a reference to the given Cycle and assigns it to the Cycle field.

func (*SubscriptionProduct) SetCycleDuration

func (o *SubscriptionProduct) SetCycleDuration(v int64)

SetCycleDuration gets a reference to the given int64 and assigns it to the CycleDuration field.

func (*SubscriptionProduct) SetDateCreated

func (o *SubscriptionProduct) SetDateCreated(v string)

SetDateCreated gets a reference to the given string and assigns it to the DateCreated field.

func (*SubscriptionProduct) SetDescription

func (o *SubscriptionProduct) SetDescription(v string)

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

func (*SubscriptionProduct) SetFeatures

func (o *SubscriptionProduct) SetFeatures(v []Features)

SetFeatures gets a reference to the given []Features and assigns it to the Features field.

func (*SubscriptionProduct) SetId

func (o *SubscriptionProduct) SetId(v int64)

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

func (*SubscriptionProduct) SetLastUpdated

func (o *SubscriptionProduct) SetLastUpdated(v string)

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

func (*SubscriptionProduct) SetName

func (o *SubscriptionProduct) SetName(v string)

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

func (*SubscriptionProduct) SetPrice

func (o *SubscriptionProduct) SetPrice(v Price)

SetPrice gets a reference to the given Price and assigns it to the Price field.

func (*SubscriptionProduct) SetProductStatus

func (o *SubscriptionProduct) SetProductStatus(v string)

SetProductStatus gets a reference to the given string and assigns it to the ProductStatus field.

func (*SubscriptionProduct) SetTier

func (o *SubscriptionProduct) SetTier(v string)

SetTier gets a reference to the given string and assigns it to the Tier field.

func (*SubscriptionProduct) SetURL

func (o *SubscriptionProduct) SetURL(v string)

SetURL gets a reference to the given string and assigns it to the URL field.

type TimeZone

type TimeZone struct {
	Label *string `json:"label,omitempty"`
	Name  *string `json:"name,omitempty"`
}

TimeZone struct for TimeZone

func NewTimeZone

func NewTimeZone() *TimeZone

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

func NewTimeZoneWithDefaults

func NewTimeZoneWithDefaults() *TimeZone

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

func (*TimeZone) GetLabel

func (o *TimeZone) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*TimeZone) GetLabelOk

func (o *TimeZone) GetLabelOk() (*string, bool)

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

func (*TimeZone) GetName

func (o *TimeZone) GetName() string

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

func (*TimeZone) GetNameOk

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

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

func (*TimeZone) HasLabel

func (o *TimeZone) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*TimeZone) HasName

func (o *TimeZone) HasName() bool

HasName returns a boolean if a field has been set.

func (TimeZone) MarshalJSON

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

func (*TimeZone) SetLabel

func (o *TimeZone) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*TimeZone) SetName

func (o *TimeZone) SetName(v string)

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

type User

type User struct {
	URL                        *string            `json:"URL,omitempty"`
	Avatars                    *Avatars           `json:"avatars,omitempty"`
	DateStyle                  *DateStyle         `json:"dateStyle,omitempty"`
	Deleted                    *bool              `json:"deleted,omitempty"`
	EmailAddress               *string            `json:"emailAddress,omitempty"`
	EmailFrequencyOnNewComment *EmailFrequency    `json:"emailFrequencyOnNewComment,omitempty"`
	EmailFrequencyOnNewEmotion *EmailFrequency    `json:"emailFrequencyOnNewEmotion,omitempty"`
	EmailMarketingOptOut       *bool              `json:"emailMarketingOptOut,omitempty"`
	EmailOptOut                *bool              `json:"emailOptOut,omitempty"`
	EmailWeeklySummary         *bool              `json:"emailWeeklySummary,omitempty"`
	ExternalProviderRef        *string            `json:"externalProviderRef,omitempty"`
	FacebookId                 *string            `json:"facebookId,omitempty"`
	FirstLoggedInTimestamp     *int64             `json:"firstLoggedInTimestamp,omitempty"`
	FirstName                  *string            `json:"firstName,omitempty"`
	FullName                   *string            `json:"fullName,omitempty"`
	HasMemoriesAccess          *bool              `json:"hasMemoriesAccess,omitempty"`
	Id                         *int64             `json:"id,omitempty"`
	InstagramId                *string            `json:"instagramId,omitempty"`
	InstagramUsername          *string            `json:"instagramUsername,omitempty"`
	LastEmailOpenTimestamp     *int64             `json:"lastEmailOpenTimestamp,omitempty"`
	LastLoggedInTimestamp      *int64             `json:"lastLoggedInTimestamp,omitempty"`
	LastName                   *string            `json:"lastName,omitempty"`
	LastUpdatedTimestamp       *int64             `json:"lastUpdatedTimestamp,omitempty"`
	MeasurementSystem          *MeasurementSystem `json:"measurementSystem,omitempty"`
	PublicUsername             *string            `json:"publicUsername,omitempty"`
	ReferralCode               *string            `json:"referralCode,omitempty"`
	ReferralUrl                *string            `json:"referralUrl,omitempty"`
	TimeZone                   *TimeZone          `json:"timeZone,omitempty"`
	TimeZoneOffset             *int64             `json:"timeZoneOffset,omitempty"`
	Timestamp                  *int64             `json:"timestamp,omitempty"`
	Username                   *string            `json:"username,omitempty"`
}

User struct for User

func NewUser

func NewUser() *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) GetAvatars

func (o *User) GetAvatars() Avatars

GetAvatars returns the Avatars field value if set, zero value otherwise.

func (*User) GetAvatarsOk

func (o *User) GetAvatarsOk() (*Avatars, bool)

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

func (*User) GetDateStyle

func (o *User) GetDateStyle() DateStyle

GetDateStyle returns the DateStyle field value if set, zero value otherwise.

func (*User) GetDateStyleOk

func (o *User) GetDateStyleOk() (*DateStyle, bool)

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

func (*User) GetDeleted

func (o *User) GetDeleted() bool

GetDeleted returns the Deleted field value if set, zero value otherwise.

func (*User) GetDeletedOk

func (o *User) GetDeletedOk() (*bool, bool)

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

func (*User) GetEmailAddress

func (o *User) GetEmailAddress() string

GetEmailAddress returns the EmailAddress field value if set, zero value otherwise.

func (*User) GetEmailAddressOk

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

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

func (*User) GetEmailFrequencyOnNewComment

func (o *User) GetEmailFrequencyOnNewComment() EmailFrequency

GetEmailFrequencyOnNewComment returns the EmailFrequencyOnNewComment field value if set, zero value otherwise.

func (*User) GetEmailFrequencyOnNewCommentOk

func (o *User) GetEmailFrequencyOnNewCommentOk() (*EmailFrequency, bool)

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

func (*User) GetEmailFrequencyOnNewEmotion

func (o *User) GetEmailFrequencyOnNewEmotion() EmailFrequency

GetEmailFrequencyOnNewEmotion returns the EmailFrequencyOnNewEmotion field value if set, zero value otherwise.

func (*User) GetEmailFrequencyOnNewEmotionOk

func (o *User) GetEmailFrequencyOnNewEmotionOk() (*EmailFrequency, bool)

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

func (*User) GetEmailMarketingOptOut

func (o *User) GetEmailMarketingOptOut() bool

GetEmailMarketingOptOut returns the EmailMarketingOptOut field value if set, zero value otherwise.

func (*User) GetEmailMarketingOptOutOk

func (o *User) GetEmailMarketingOptOutOk() (*bool, bool)

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

func (*User) GetEmailOptOut

func (o *User) GetEmailOptOut() bool

GetEmailOptOut returns the EmailOptOut field value if set, zero value otherwise.

func (*User) GetEmailOptOutOk

func (o *User) GetEmailOptOutOk() (*bool, bool)

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

func (*User) GetEmailWeeklySummary

func (o *User) GetEmailWeeklySummary() bool

GetEmailWeeklySummary returns the EmailWeeklySummary field value if set, zero value otherwise.

func (*User) GetEmailWeeklySummaryOk

func (o *User) GetEmailWeeklySummaryOk() (*bool, bool)

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

func (*User) GetExternalProviderRef

func (o *User) GetExternalProviderRef() string

GetExternalProviderRef returns the ExternalProviderRef field value if set, zero value otherwise.

func (*User) GetExternalProviderRefOk

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

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

func (*User) GetFacebookId

func (o *User) GetFacebookId() string

GetFacebookId returns the FacebookId field value if set, zero value otherwise.

func (*User) GetFacebookIdOk

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

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

func (*User) GetFirstLoggedInTimestamp

func (o *User) GetFirstLoggedInTimestamp() int64

GetFirstLoggedInTimestamp returns the FirstLoggedInTimestamp field value if set, zero value otherwise.

func (*User) GetFirstLoggedInTimestampOk

func (o *User) GetFirstLoggedInTimestampOk() (*int64, bool)

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

func (*User) GetFirstName

func (o *User) GetFirstName() string

GetFirstName returns the FirstName field value if set, zero value otherwise.

func (*User) GetFirstNameOk

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

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

func (*User) GetFullName

func (o *User) GetFullName() string

GetFullName returns the FullName field value if set, zero value otherwise.

func (*User) GetFullNameOk

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

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

func (*User) GetHasMemoriesAccess

func (o *User) GetHasMemoriesAccess() bool

GetHasMemoriesAccess returns the HasMemoriesAccess field value if set, zero value otherwise.

func (*User) GetHasMemoriesAccessOk

func (o *User) GetHasMemoriesAccessOk() (*bool, bool)

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

func (*User) GetId

func (o *User) GetId() int64

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

func (*User) GetIdOk

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

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

func (*User) GetInstagramId

func (o *User) GetInstagramId() string

GetInstagramId returns the InstagramId field value if set, zero value otherwise.

func (*User) GetInstagramIdOk

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

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

func (*User) GetInstagramUsername

func (o *User) GetInstagramUsername() string

GetInstagramUsername returns the InstagramUsername field value if set, zero value otherwise.

func (*User) GetInstagramUsernameOk

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

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

func (*User) GetLastEmailOpenTimestamp

func (o *User) GetLastEmailOpenTimestamp() int64

GetLastEmailOpenTimestamp returns the LastEmailOpenTimestamp field value if set, zero value otherwise.

func (*User) GetLastEmailOpenTimestampOk

func (o *User) GetLastEmailOpenTimestampOk() (*int64, bool)

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

func (*User) GetLastLoggedInTimestamp

func (o *User) GetLastLoggedInTimestamp() int64

GetLastLoggedInTimestamp returns the LastLoggedInTimestamp field value if set, zero value otherwise.

func (*User) GetLastLoggedInTimestampOk

func (o *User) GetLastLoggedInTimestampOk() (*int64, bool)

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

func (*User) GetLastName

func (o *User) GetLastName() string

GetLastName returns the LastName field value if set, zero value otherwise.

func (*User) GetLastNameOk

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

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

func (*User) GetLastUpdatedTimestamp

func (o *User) GetLastUpdatedTimestamp() int64

GetLastUpdatedTimestamp returns the LastUpdatedTimestamp field value if set, zero value otherwise.

func (*User) GetLastUpdatedTimestampOk

func (o *User) GetLastUpdatedTimestampOk() (*int64, bool)

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

func (*User) GetMeasurementSystem

func (o *User) GetMeasurementSystem() MeasurementSystem

GetMeasurementSystem returns the MeasurementSystem field value if set, zero value otherwise.

func (*User) GetMeasurementSystemOk

func (o *User) GetMeasurementSystemOk() (*MeasurementSystem, bool)

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

func (*User) GetPublicUsername

func (o *User) GetPublicUsername() string

GetPublicUsername returns the PublicUsername field value if set, zero value otherwise.

func (*User) GetPublicUsernameOk

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

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

func (*User) GetReferralCode

func (o *User) GetReferralCode() string

GetReferralCode returns the ReferralCode field value if set, zero value otherwise.

func (*User) GetReferralCodeOk

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

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

func (*User) GetReferralUrl

func (o *User) GetReferralUrl() string

GetReferralUrl returns the ReferralUrl field value if set, zero value otherwise.

func (*User) GetReferralUrlOk

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

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

func (*User) GetTimeZone

func (o *User) GetTimeZone() TimeZone

GetTimeZone returns the TimeZone field value if set, zero value otherwise.

func (*User) GetTimeZoneOffset

func (o *User) GetTimeZoneOffset() int64

GetTimeZoneOffset returns the TimeZoneOffset field value if set, zero value otherwise.

func (*User) GetTimeZoneOffsetOk

func (o *User) GetTimeZoneOffsetOk() (*int64, bool)

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

func (*User) GetTimeZoneOk

func (o *User) GetTimeZoneOk() (*TimeZone, bool)

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

func (*User) GetTimestamp

func (o *User) GetTimestamp() int64

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*User) GetTimestampOk

func (o *User) GetTimestampOk() (*int64, bool)

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

func (*User) GetURL

func (o *User) GetURL() string

GetURL returns the URL field value if set, zero value otherwise.

func (*User) GetURLOk

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

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

func (*User) GetUsername

func (o *User) GetUsername() string

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

func (*User) GetUsernameOk

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

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

func (*User) HasAvatars

func (o *User) HasAvatars() bool

HasAvatars returns a boolean if a field has been set.

func (*User) HasDateStyle

func (o *User) HasDateStyle() bool

HasDateStyle returns a boolean if a field has been set.

func (*User) HasDeleted

func (o *User) HasDeleted() bool

HasDeleted returns a boolean if a field has been set.

func (*User) HasEmailAddress

func (o *User) HasEmailAddress() bool

HasEmailAddress returns a boolean if a field has been set.

func (*User) HasEmailFrequencyOnNewComment

func (o *User) HasEmailFrequencyOnNewComment() bool

HasEmailFrequencyOnNewComment returns a boolean if a field has been set.

func (*User) HasEmailFrequencyOnNewEmotion

func (o *User) HasEmailFrequencyOnNewEmotion() bool

HasEmailFrequencyOnNewEmotion returns a boolean if a field has been set.

func (*User) HasEmailMarketingOptOut

func (o *User) HasEmailMarketingOptOut() bool

HasEmailMarketingOptOut returns a boolean if a field has been set.

func (*User) HasEmailOptOut

func (o *User) HasEmailOptOut() bool

HasEmailOptOut returns a boolean if a field has been set.

func (*User) HasEmailWeeklySummary

func (o *User) HasEmailWeeklySummary() bool

HasEmailWeeklySummary returns a boolean if a field has been set.

func (*User) HasExternalProviderRef

func (o *User) HasExternalProviderRef() bool

HasExternalProviderRef returns a boolean if a field has been set.

func (*User) HasFacebookId

func (o *User) HasFacebookId() bool

HasFacebookId returns a boolean if a field has been set.

func (*User) HasFirstLoggedInTimestamp

func (o *User) HasFirstLoggedInTimestamp() bool

HasFirstLoggedInTimestamp returns a boolean if a field has been set.

func (*User) HasFirstName

func (o *User) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

func (*User) HasFullName

func (o *User) HasFullName() bool

HasFullName returns a boolean if a field has been set.

func (*User) HasHasMemoriesAccess

func (o *User) HasHasMemoriesAccess() bool

HasHasMemoriesAccess returns a boolean if a field has been set.

func (*User) HasId

func (o *User) HasId() bool

HasId returns a boolean if a field has been set.

func (*User) HasInstagramId

func (o *User) HasInstagramId() bool

HasInstagramId returns a boolean if a field has been set.

func (*User) HasInstagramUsername

func (o *User) HasInstagramUsername() bool

HasInstagramUsername returns a boolean if a field has been set.

func (*User) HasLastEmailOpenTimestamp

func (o *User) HasLastEmailOpenTimestamp() bool

HasLastEmailOpenTimestamp returns a boolean if a field has been set.

func (*User) HasLastLoggedInTimestamp

func (o *User) HasLastLoggedInTimestamp() bool

HasLastLoggedInTimestamp returns a boolean if a field has been set.

func (*User) HasLastName

func (o *User) HasLastName() bool

HasLastName returns a boolean if a field has been set.

func (*User) HasLastUpdatedTimestamp

func (o *User) HasLastUpdatedTimestamp() bool

HasLastUpdatedTimestamp returns a boolean if a field has been set.

func (*User) HasMeasurementSystem

func (o *User) HasMeasurementSystem() bool

HasMeasurementSystem returns a boolean if a field has been set.

func (*User) HasPublicUsername

func (o *User) HasPublicUsername() bool

HasPublicUsername returns a boolean if a field has been set.

func (*User) HasReferralCode

func (o *User) HasReferralCode() bool

HasReferralCode returns a boolean if a field has been set.

func (*User) HasReferralUrl

func (o *User) HasReferralUrl() bool

HasReferralUrl returns a boolean if a field has been set.

func (*User) HasTimeZone

func (o *User) HasTimeZone() bool

HasTimeZone returns a boolean if a field has been set.

func (*User) HasTimeZoneOffset

func (o *User) HasTimeZoneOffset() bool

HasTimeZoneOffset returns a boolean if a field has been set.

func (*User) HasTimestamp

func (o *User) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (*User) HasURL

func (o *User) HasURL() bool

HasURL returns a boolean if a field has been set.

func (*User) HasUsername

func (o *User) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (User) MarshalJSON

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

func (*User) SetAvatars

func (o *User) SetAvatars(v Avatars)

SetAvatars gets a reference to the given Avatars and assigns it to the Avatars field.

func (*User) SetDateStyle

func (o *User) SetDateStyle(v DateStyle)

SetDateStyle gets a reference to the given DateStyle and assigns it to the DateStyle field.

func (*User) SetDeleted

func (o *User) SetDeleted(v bool)

SetDeleted gets a reference to the given bool and assigns it to the Deleted field.

func (*User) SetEmailAddress

func (o *User) SetEmailAddress(v string)

SetEmailAddress gets a reference to the given string and assigns it to the EmailAddress field.

func (*User) SetEmailFrequencyOnNewComment

func (o *User) SetEmailFrequencyOnNewComment(v EmailFrequency)

SetEmailFrequencyOnNewComment gets a reference to the given EmailFrequency and assigns it to the EmailFrequencyOnNewComment field.

func (*User) SetEmailFrequencyOnNewEmotion

func (o *User) SetEmailFrequencyOnNewEmotion(v EmailFrequency)

SetEmailFrequencyOnNewEmotion gets a reference to the given EmailFrequency and assigns it to the EmailFrequencyOnNewEmotion field.

func (*User) SetEmailMarketingOptOut

func (o *User) SetEmailMarketingOptOut(v bool)

SetEmailMarketingOptOut gets a reference to the given bool and assigns it to the EmailMarketingOptOut field.

func (*User) SetEmailOptOut

func (o *User) SetEmailOptOut(v bool)

SetEmailOptOut gets a reference to the given bool and assigns it to the EmailOptOut field.

func (*User) SetEmailWeeklySummary

func (o *User) SetEmailWeeklySummary(v bool)

SetEmailWeeklySummary gets a reference to the given bool and assigns it to the EmailWeeklySummary field.

func (*User) SetExternalProviderRef

func (o *User) SetExternalProviderRef(v string)

SetExternalProviderRef gets a reference to the given string and assigns it to the ExternalProviderRef field.

func (*User) SetFacebookId

func (o *User) SetFacebookId(v string)

SetFacebookId gets a reference to the given string and assigns it to the FacebookId field.

func (*User) SetFirstLoggedInTimestamp

func (o *User) SetFirstLoggedInTimestamp(v int64)

SetFirstLoggedInTimestamp gets a reference to the given int64 and assigns it to the FirstLoggedInTimestamp field.

func (*User) SetFirstName

func (o *User) SetFirstName(v string)

SetFirstName gets a reference to the given string and assigns it to the FirstName field.

func (*User) SetFullName

func (o *User) SetFullName(v string)

SetFullName gets a reference to the given string and assigns it to the FullName field.

func (*User) SetHasMemoriesAccess

func (o *User) SetHasMemoriesAccess(v bool)

SetHasMemoriesAccess gets a reference to the given bool and assigns it to the HasMemoriesAccess field.

func (*User) SetId

func (o *User) SetId(v int64)

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

func (*User) SetInstagramId

func (o *User) SetInstagramId(v string)

SetInstagramId gets a reference to the given string and assigns it to the InstagramId field.

func (*User) SetInstagramUsername

func (o *User) SetInstagramUsername(v string)

SetInstagramUsername gets a reference to the given string and assigns it to the InstagramUsername field.

func (*User) SetLastEmailOpenTimestamp

func (o *User) SetLastEmailOpenTimestamp(v int64)

SetLastEmailOpenTimestamp gets a reference to the given int64 and assigns it to the LastEmailOpenTimestamp field.

func (*User) SetLastLoggedInTimestamp

func (o *User) SetLastLoggedInTimestamp(v int64)

SetLastLoggedInTimestamp gets a reference to the given int64 and assigns it to the LastLoggedInTimestamp field.

func (*User) SetLastName

func (o *User) SetLastName(v string)

SetLastName gets a reference to the given string and assigns it to the LastName field.

func (*User) SetLastUpdatedTimestamp

func (o *User) SetLastUpdatedTimestamp(v int64)

SetLastUpdatedTimestamp gets a reference to the given int64 and assigns it to the LastUpdatedTimestamp field.

func (*User) SetMeasurementSystem

func (o *User) SetMeasurementSystem(v MeasurementSystem)

SetMeasurementSystem gets a reference to the given MeasurementSystem and assigns it to the MeasurementSystem field.

func (*User) SetPublicUsername

func (o *User) SetPublicUsername(v string)

SetPublicUsername gets a reference to the given string and assigns it to the PublicUsername field.

func (*User) SetReferralCode

func (o *User) SetReferralCode(v string)

SetReferralCode gets a reference to the given string and assigns it to the ReferralCode field.

func (*User) SetReferralUrl

func (o *User) SetReferralUrl(v string)

SetReferralUrl gets a reference to the given string and assigns it to the ReferralUrl field.

func (*User) SetTimeZone

func (o *User) SetTimeZone(v TimeZone)

SetTimeZone gets a reference to the given TimeZone and assigns it to the TimeZone field.

func (*User) SetTimeZoneOffset

func (o *User) SetTimeZoneOffset(v int64)

SetTimeZoneOffset gets a reference to the given int64 and assigns it to the TimeZoneOffset field.

func (*User) SetTimestamp

func (o *User) SetTimestamp(v int64)

SetTimestamp gets a reference to the given int64 and assigns it to the Timestamp field.

func (*User) SetURL

func (o *User) SetURL(v string)

SetURL gets a reference to the given string and assigns it to the URL field.

func (*User) SetUsername

func (o *User) SetUsername(v string)

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

type UsersMe

type UsersMe struct {
	Status *string `json:"status,omitempty"`
	User   *User   `json:"user,omitempty"`
}

UsersMe struct for UsersMe

func NewUsersMe

func NewUsersMe() *UsersMe

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

func NewUsersMeWithDefaults

func NewUsersMeWithDefaults() *UsersMe

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

func (*UsersMe) GetStatus

func (o *UsersMe) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*UsersMe) GetStatusOk

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

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

func (*UsersMe) GetUser

func (o *UsersMe) GetUser() User

GetUser returns the User field value if set, zero value otherwise.

func (*UsersMe) GetUserOk

func (o *UsersMe) GetUserOk() (*User, bool)

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

func (*UsersMe) HasStatus

func (o *UsersMe) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*UsersMe) HasUser

func (o *UsersMe) HasUser() bool

HasUser returns a boolean if a field has been set.

func (UsersMe) MarshalJSON

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

func (*UsersMe) SetStatus

func (o *UsersMe) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*UsersMe) SetUser

func (o *UsersMe) SetUser(v User)

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

Jump to

Keyboard shortcuts

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