auraframes

package module
v0.0.0-...-36cc5bb Latest Latest
Warning

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

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

README

Go API client for auraframes

Reverse Engineered API for Aura Frames

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.0.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 auraframes "github.com/mvarrieur/auraframes-api/go"

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(), auraframes.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(), auraframes.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(), auraframes.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), auraframes.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to https://api.pushd.com/v5

Class Method HTTP request Description
AuthApi Login Post /login.json Login to Aura Frames
FramesApi GetFrames Get /frames.json Access to an Aura Frame

Documentation For Models

Documentation For Authorization

TokenAuth
  • Type: API key
  • API key parameter name: x-token-auth
  • Location: HTTP header

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

UserId
  • Type: API key
  • API key parameter name: x-user-id
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: x-user-id 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 *AuthApiService

	FramesApi *FramesApiService
	// contains filtered or unexported fields
}

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

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

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

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

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

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

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

type APIResponse

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

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

type ApiGetFramesRequest

type ApiGetFramesRequest struct {
	ApiService *FramesApiService
	// contains filtered or unexported fields
}

func (ApiGetFramesRequest) Execute

func (r ApiGetFramesRequest) Execute() (*Frames, *http.Response, error)

func (ApiGetFramesRequest) IncludeSharedAlbums

func (r ApiGetFramesRequest) IncludeSharedAlbums(includeSharedAlbums string) ApiGetFramesRequest

type ApiLoginRequest

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

func (ApiLoginRequest) Execute

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

func (ApiLoginRequest) LoginRequest

func (r ApiLoginRequest) LoginRequest(loginRequest LoginRequest) ApiLoginRequest

Login Information

func (ApiLoginRequest) XClientDeviceId

func (r ApiLoginRequest) XClientDeviceId(xClientDeviceId string) ApiLoginRequest

func (ApiLoginRequest) XDeviceIdentifier

func (r ApiLoginRequest) XDeviceIdentifier(xDeviceIdentifier string) ApiLoginRequest

type Asset

type Asset struct {
	Id                     *string `json:"id,omitempty"`
	UserId                 *string `json:"user_id,omitempty"`
	ThumbnailUrl           *string `json:"thumbnail_url,omitempty"`
	PortraitUrl            *string `json:"portrait_url,omitempty"`
	LandscapeUrl           *string `json:"landscape_url,omitempty"`
	Landscape1610Url       *string `json:"landscape_16_10_url,omitempty"`
	Portrait45Url          *string `json:"portrait_4_5_url,omitempty"`
	VideoUrl               *string `json:"video_url,omitempty"`
	LandscapeRect          *string `json:"landscape_rect,omitempty"`
	PortraitRect           *string `json:"portrait_rect,omitempty"`
	UserLandscapeRect      *string `json:"user_landscape_rect,omitempty"`
	UserPortraitRect       *string `json:"user_portrait_rect,omitempty"`
	AutoLandscape1610Rect  *string `json:"auto_landscape_16_10_rect,omitempty"`
	UserLandscape1610Rect  *string `json:"user_landscape_16_10_rect,omitempty"`
	AutoPortrait45Rect     *string `json:"auto_portrait_4_5_rect,omitempty"`
	UserPortrait45Rect     *string `json:"user_portrait_4_5_rect,omitempty"`
	ExifOrientation        *string `json:"exif_orientation,omitempty"`
	HandledAt              *string `json:"handled_at,omitempty"`
	UploadedAt             *string `json:"uploaded_at,omitempty"`
	GoodResolution         *bool   `json:"good_resolution,omitempty"`
	SourceId               *string `json:"source_id,omitempty"`
	DuplicateOfId          *string `json:"duplicate_of_id,omitempty"`
	RotationCw             *string `json:"rotation_cw,omitempty"`
	LocationName           *string `json:"location_name,omitempty"`
	Md5Hash                *string `json:"md5_hash,omitempty"`
	IsSubscription         *bool   `json:"is_subscription,omitempty"`
	GlacieredAt            *string `json:"glaciered_at,omitempty"`
	Unglacierable          *bool   `json:"unglacierable,omitempty"`
	Duration               *string `json:"duration,omitempty"`
	LivePhotoOff           *string `json:"live_photo_off,omitempty"`
	LocalIdentifier        *string `json:"local_identifier,omitempty"`
	CreatedAtOnClient      *string `json:"created_at_on_client,omitempty"`
	Selected               *bool   `json:"selected,omitempty"`
	FileName               *string `json:"file_name,omitempty"`
	RawFileName            *string `json:"raw_file_name,omitempty"`
	VideoFileName          *string `json:"video_file_name,omitempty"`
	Width                  *string `json:"width,omitempty"`
	Height                 *string `json:"height,omitempty"`
	TakenAt                *string `json:"taken_at,omitempty"`
	HorizontalAccuracy     *string `json:"horizontal_accuracy,omitempty"`
	Favorite               *bool   `json:"favorite,omitempty"`
	Orientation            *string `json:"orientation,omitempty"`
	Hdr                    *bool   `json:"hdr,omitempty"`
	Panorama               *bool   `json:"panorama,omitempty"`
	IsLive                 *string `json:"is_live,omitempty"`
	BurstId                *string `json:"burst_id,omitempty"`
	BurstSelectionTypes    *string `json:"burst_selection_types,omitempty"`
	RepresentsBurst        *string `json:"represents_burst,omitempty"`
	DataUti                *string `json:"data_uti,omitempty"`
	OriginalFileName       *string `json:"original_file_name,omitempty"`
	UploadPriority         *string `json:"upload_priority,omitempty"`
	IosMediaSubtypes       *string `json:"ios_media_subtypes,omitempty"`
	TakenAtUserOverrideAt  *string `json:"taken_at_user_override_at,omitempty"`
	DurationUnclipped      *string `json:"duration_unclipped,omitempty"`
	VideoClipStart         *string `json:"video_clip_start,omitempty"`
	VideoClipExcludesAudio *string `json:"video_clip_excludes_audio,omitempty"`
	VideoClippedByUserAt   *string `json:"video_clipped_by_user_at,omitempty"`
	Location               *string `json:"location,omitempty"`
	User                   *User   `json:"user,omitempty"`
}

Asset struct for Asset

func NewAsset

func NewAsset() *Asset

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

func NewAssetWithDefaults

func NewAssetWithDefaults() *Asset

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

func (*Asset) GetAutoLandscape1610Rect

func (o *Asset) GetAutoLandscape1610Rect() string

GetAutoLandscape1610Rect returns the AutoLandscape1610Rect field value if set, zero value otherwise.

func (*Asset) GetAutoLandscape1610RectOk

func (o *Asset) GetAutoLandscape1610RectOk() (*string, bool)

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

func (*Asset) GetAutoPortrait45Rect

func (o *Asset) GetAutoPortrait45Rect() string

GetAutoPortrait45Rect returns the AutoPortrait45Rect field value if set, zero value otherwise.

func (*Asset) GetAutoPortrait45RectOk

func (o *Asset) GetAutoPortrait45RectOk() (*string, bool)

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

func (*Asset) GetBurstId

func (o *Asset) GetBurstId() string

GetBurstId returns the BurstId field value if set, zero value otherwise.

func (*Asset) GetBurstIdOk

func (o *Asset) GetBurstIdOk() (*string, bool)

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

func (*Asset) GetBurstSelectionTypes

func (o *Asset) GetBurstSelectionTypes() string

GetBurstSelectionTypes returns the BurstSelectionTypes field value if set, zero value otherwise.

func (*Asset) GetBurstSelectionTypesOk

func (o *Asset) GetBurstSelectionTypesOk() (*string, bool)

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

func (*Asset) GetCreatedAtOnClient

func (o *Asset) GetCreatedAtOnClient() string

GetCreatedAtOnClient returns the CreatedAtOnClient field value if set, zero value otherwise.

func (*Asset) GetCreatedAtOnClientOk

func (o *Asset) GetCreatedAtOnClientOk() (*string, bool)

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

func (*Asset) GetDataUti

func (o *Asset) GetDataUti() string

GetDataUti returns the DataUti field value if set, zero value otherwise.

func (*Asset) GetDataUtiOk

func (o *Asset) GetDataUtiOk() (*string, bool)

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

func (*Asset) GetDuplicateOfId

func (o *Asset) GetDuplicateOfId() string

GetDuplicateOfId returns the DuplicateOfId field value if set, zero value otherwise.

func (*Asset) GetDuplicateOfIdOk

func (o *Asset) GetDuplicateOfIdOk() (*string, bool)

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

func (*Asset) GetDuration

func (o *Asset) GetDuration() string

GetDuration returns the Duration field value if set, zero value otherwise.

func (*Asset) GetDurationOk

func (o *Asset) GetDurationOk() (*string, bool)

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

func (*Asset) GetDurationUnclipped

func (o *Asset) GetDurationUnclipped() string

GetDurationUnclipped returns the DurationUnclipped field value if set, zero value otherwise.

func (*Asset) GetDurationUnclippedOk

func (o *Asset) GetDurationUnclippedOk() (*string, bool)

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

func (*Asset) GetExifOrientation

func (o *Asset) GetExifOrientation() string

GetExifOrientation returns the ExifOrientation field value if set, zero value otherwise.

func (*Asset) GetExifOrientationOk

func (o *Asset) GetExifOrientationOk() (*string, bool)

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

func (*Asset) GetFavorite

func (o *Asset) GetFavorite() bool

GetFavorite returns the Favorite field value if set, zero value otherwise.

func (*Asset) GetFavoriteOk

func (o *Asset) GetFavoriteOk() (*bool, bool)

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

func (*Asset) GetFileName

func (o *Asset) GetFileName() string

GetFileName returns the FileName field value if set, zero value otherwise.

func (*Asset) GetFileNameOk

func (o *Asset) GetFileNameOk() (*string, bool)

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

func (*Asset) GetGlacieredAt

func (o *Asset) GetGlacieredAt() string

GetGlacieredAt returns the GlacieredAt field value if set, zero value otherwise.

func (*Asset) GetGlacieredAtOk

func (o *Asset) GetGlacieredAtOk() (*string, bool)

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

func (*Asset) GetGoodResolution

func (o *Asset) GetGoodResolution() bool

GetGoodResolution returns the GoodResolution field value if set, zero value otherwise.

func (*Asset) GetGoodResolutionOk

func (o *Asset) GetGoodResolutionOk() (*bool, bool)

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

func (*Asset) GetHandledAt

func (o *Asset) GetHandledAt() string

GetHandledAt returns the HandledAt field value if set, zero value otherwise.

func (*Asset) GetHandledAtOk

func (o *Asset) GetHandledAtOk() (*string, bool)

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

func (*Asset) GetHdr

func (o *Asset) GetHdr() bool

GetHdr returns the Hdr field value if set, zero value otherwise.

func (*Asset) GetHdrOk

func (o *Asset) GetHdrOk() (*bool, bool)

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

func (*Asset) GetHeight

func (o *Asset) GetHeight() string

GetHeight returns the Height field value if set, zero value otherwise.

func (*Asset) GetHeightOk

func (o *Asset) GetHeightOk() (*string, bool)

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

func (*Asset) GetHorizontalAccuracy

func (o *Asset) GetHorizontalAccuracy() string

GetHorizontalAccuracy returns the HorizontalAccuracy field value if set, zero value otherwise.

func (*Asset) GetHorizontalAccuracyOk

func (o *Asset) GetHorizontalAccuracyOk() (*string, bool)

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

func (*Asset) GetId

func (o *Asset) GetId() string

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

func (*Asset) GetIdOk

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

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

func (*Asset) GetIosMediaSubtypes

func (o *Asset) GetIosMediaSubtypes() string

GetIosMediaSubtypes returns the IosMediaSubtypes field value if set, zero value otherwise.

func (*Asset) GetIosMediaSubtypesOk

func (o *Asset) GetIosMediaSubtypesOk() (*string, bool)

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

func (*Asset) GetIsLive

func (o *Asset) GetIsLive() string

GetIsLive returns the IsLive field value if set, zero value otherwise.

func (*Asset) GetIsLiveOk

func (o *Asset) GetIsLiveOk() (*string, bool)

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

func (*Asset) GetIsSubscription

func (o *Asset) GetIsSubscription() bool

GetIsSubscription returns the IsSubscription field value if set, zero value otherwise.

func (*Asset) GetIsSubscriptionOk

func (o *Asset) GetIsSubscriptionOk() (*bool, bool)

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

func (*Asset) GetLandscape1610Url

func (o *Asset) GetLandscape1610Url() string

GetLandscape1610Url returns the Landscape1610Url field value if set, zero value otherwise.

func (*Asset) GetLandscape1610UrlOk

func (o *Asset) GetLandscape1610UrlOk() (*string, bool)

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

func (*Asset) GetLandscapeRect

func (o *Asset) GetLandscapeRect() string

GetLandscapeRect returns the LandscapeRect field value if set, zero value otherwise.

func (*Asset) GetLandscapeRectOk

func (o *Asset) GetLandscapeRectOk() (*string, bool)

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

func (*Asset) GetLandscapeUrl

func (o *Asset) GetLandscapeUrl() string

GetLandscapeUrl returns the LandscapeUrl field value if set, zero value otherwise.

func (*Asset) GetLandscapeUrlOk

func (o *Asset) GetLandscapeUrlOk() (*string, bool)

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

func (*Asset) GetLivePhotoOff

func (o *Asset) GetLivePhotoOff() string

GetLivePhotoOff returns the LivePhotoOff field value if set, zero value otherwise.

func (*Asset) GetLivePhotoOffOk

func (o *Asset) GetLivePhotoOffOk() (*string, bool)

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

func (*Asset) GetLocalIdentifier

func (o *Asset) GetLocalIdentifier() string

GetLocalIdentifier returns the LocalIdentifier field value if set, zero value otherwise.

func (*Asset) GetLocalIdentifierOk

func (o *Asset) GetLocalIdentifierOk() (*string, bool)

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

func (*Asset) GetLocation

func (o *Asset) GetLocation() string

GetLocation returns the Location field value if set, zero value otherwise.

func (*Asset) GetLocationName

func (o *Asset) GetLocationName() string

GetLocationName returns the LocationName field value if set, zero value otherwise.

func (*Asset) GetLocationNameOk

func (o *Asset) GetLocationNameOk() (*string, bool)

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

func (*Asset) GetLocationOk

func (o *Asset) GetLocationOk() (*string, bool)

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

func (*Asset) GetMd5Hash

func (o *Asset) GetMd5Hash() string

GetMd5Hash returns the Md5Hash field value if set, zero value otherwise.

func (*Asset) GetMd5HashOk

func (o *Asset) GetMd5HashOk() (*string, bool)

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

func (*Asset) GetOrientation

func (o *Asset) GetOrientation() string

GetOrientation returns the Orientation field value if set, zero value otherwise.

func (*Asset) GetOrientationOk

func (o *Asset) GetOrientationOk() (*string, bool)

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

func (*Asset) GetOriginalFileName

func (o *Asset) GetOriginalFileName() string

GetOriginalFileName returns the OriginalFileName field value if set, zero value otherwise.

func (*Asset) GetOriginalFileNameOk

func (o *Asset) GetOriginalFileNameOk() (*string, bool)

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

func (*Asset) GetPanorama

func (o *Asset) GetPanorama() bool

GetPanorama returns the Panorama field value if set, zero value otherwise.

func (*Asset) GetPanoramaOk

func (o *Asset) GetPanoramaOk() (*bool, bool)

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

func (*Asset) GetPortrait45Url

func (o *Asset) GetPortrait45Url() string

GetPortrait45Url returns the Portrait45Url field value if set, zero value otherwise.

func (*Asset) GetPortrait45UrlOk

func (o *Asset) GetPortrait45UrlOk() (*string, bool)

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

func (*Asset) GetPortraitRect

func (o *Asset) GetPortraitRect() string

GetPortraitRect returns the PortraitRect field value if set, zero value otherwise.

func (*Asset) GetPortraitRectOk

func (o *Asset) GetPortraitRectOk() (*string, bool)

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

func (*Asset) GetPortraitUrl

func (o *Asset) GetPortraitUrl() string

GetPortraitUrl returns the PortraitUrl field value if set, zero value otherwise.

func (*Asset) GetPortraitUrlOk

func (o *Asset) GetPortraitUrlOk() (*string, bool)

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

func (*Asset) GetRawFileName

func (o *Asset) GetRawFileName() string

GetRawFileName returns the RawFileName field value if set, zero value otherwise.

func (*Asset) GetRawFileNameOk

func (o *Asset) GetRawFileNameOk() (*string, bool)

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

func (*Asset) GetRepresentsBurst

func (o *Asset) GetRepresentsBurst() string

GetRepresentsBurst returns the RepresentsBurst field value if set, zero value otherwise.

func (*Asset) GetRepresentsBurstOk

func (o *Asset) GetRepresentsBurstOk() (*string, bool)

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

func (*Asset) GetRotationCw

func (o *Asset) GetRotationCw() string

GetRotationCw returns the RotationCw field value if set, zero value otherwise.

func (*Asset) GetRotationCwOk

func (o *Asset) GetRotationCwOk() (*string, bool)

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

func (*Asset) GetSelected

func (o *Asset) GetSelected() bool

GetSelected returns the Selected field value if set, zero value otherwise.

func (*Asset) GetSelectedOk

func (o *Asset) GetSelectedOk() (*bool, bool)

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

func (*Asset) GetSourceId

func (o *Asset) GetSourceId() string

GetSourceId returns the SourceId field value if set, zero value otherwise.

func (*Asset) GetSourceIdOk

func (o *Asset) GetSourceIdOk() (*string, bool)

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

func (*Asset) GetTakenAt

func (o *Asset) GetTakenAt() string

GetTakenAt returns the TakenAt field value if set, zero value otherwise.

func (*Asset) GetTakenAtOk

func (o *Asset) GetTakenAtOk() (*string, bool)

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

func (*Asset) GetTakenAtUserOverrideAt

func (o *Asset) GetTakenAtUserOverrideAt() string

GetTakenAtUserOverrideAt returns the TakenAtUserOverrideAt field value if set, zero value otherwise.

func (*Asset) GetTakenAtUserOverrideAtOk

func (o *Asset) GetTakenAtUserOverrideAtOk() (*string, bool)

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

func (*Asset) GetThumbnailUrl

func (o *Asset) GetThumbnailUrl() string

GetThumbnailUrl returns the ThumbnailUrl field value if set, zero value otherwise.

func (*Asset) GetThumbnailUrlOk

func (o *Asset) GetThumbnailUrlOk() (*string, bool)

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

func (*Asset) GetUnglacierable

func (o *Asset) GetUnglacierable() bool

GetUnglacierable returns the Unglacierable field value if set, zero value otherwise.

func (*Asset) GetUnglacierableOk

func (o *Asset) GetUnglacierableOk() (*bool, bool)

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

func (*Asset) GetUploadPriority

func (o *Asset) GetUploadPriority() string

GetUploadPriority returns the UploadPriority field value if set, zero value otherwise.

func (*Asset) GetUploadPriorityOk

func (o *Asset) GetUploadPriorityOk() (*string, bool)

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

func (*Asset) GetUploadedAt

func (o *Asset) GetUploadedAt() string

GetUploadedAt returns the UploadedAt field value if set, zero value otherwise.

func (*Asset) GetUploadedAtOk

func (o *Asset) GetUploadedAtOk() (*string, bool)

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

func (*Asset) GetUser

func (o *Asset) GetUser() User

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

func (*Asset) GetUserId

func (o *Asset) GetUserId() string

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

func (*Asset) GetUserIdOk

func (o *Asset) GetUserIdOk() (*string, 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 (*Asset) GetUserLandscape1610Rect

func (o *Asset) GetUserLandscape1610Rect() string

GetUserLandscape1610Rect returns the UserLandscape1610Rect field value if set, zero value otherwise.

func (*Asset) GetUserLandscape1610RectOk

func (o *Asset) GetUserLandscape1610RectOk() (*string, bool)

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

func (*Asset) GetUserLandscapeRect

func (o *Asset) GetUserLandscapeRect() string

GetUserLandscapeRect returns the UserLandscapeRect field value if set, zero value otherwise.

func (*Asset) GetUserLandscapeRectOk

func (o *Asset) GetUserLandscapeRectOk() (*string, bool)

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

func (*Asset) GetUserOk

func (o *Asset) 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 (*Asset) GetUserPortrait45Rect

func (o *Asset) GetUserPortrait45Rect() string

GetUserPortrait45Rect returns the UserPortrait45Rect field value if set, zero value otherwise.

func (*Asset) GetUserPortrait45RectOk

func (o *Asset) GetUserPortrait45RectOk() (*string, bool)

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

func (*Asset) GetUserPortraitRect

func (o *Asset) GetUserPortraitRect() string

GetUserPortraitRect returns the UserPortraitRect field value if set, zero value otherwise.

func (*Asset) GetUserPortraitRectOk

func (o *Asset) GetUserPortraitRectOk() (*string, bool)

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

func (*Asset) GetVideoClipExcludesAudio

func (o *Asset) GetVideoClipExcludesAudio() string

GetVideoClipExcludesAudio returns the VideoClipExcludesAudio field value if set, zero value otherwise.

func (*Asset) GetVideoClipExcludesAudioOk

func (o *Asset) GetVideoClipExcludesAudioOk() (*string, bool)

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

func (*Asset) GetVideoClipStart

func (o *Asset) GetVideoClipStart() string

GetVideoClipStart returns the VideoClipStart field value if set, zero value otherwise.

func (*Asset) GetVideoClipStartOk

func (o *Asset) GetVideoClipStartOk() (*string, bool)

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

func (*Asset) GetVideoClippedByUserAt

func (o *Asset) GetVideoClippedByUserAt() string

GetVideoClippedByUserAt returns the VideoClippedByUserAt field value if set, zero value otherwise.

func (*Asset) GetVideoClippedByUserAtOk

func (o *Asset) GetVideoClippedByUserAtOk() (*string, bool)

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

func (*Asset) GetVideoFileName

func (o *Asset) GetVideoFileName() string

GetVideoFileName returns the VideoFileName field value if set, zero value otherwise.

func (*Asset) GetVideoFileNameOk

func (o *Asset) GetVideoFileNameOk() (*string, bool)

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

func (*Asset) GetVideoUrl

func (o *Asset) GetVideoUrl() string

GetVideoUrl returns the VideoUrl field value if set, zero value otherwise.

func (*Asset) GetVideoUrlOk

func (o *Asset) GetVideoUrlOk() (*string, bool)

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

func (*Asset) GetWidth

func (o *Asset) GetWidth() string

GetWidth returns the Width field value if set, zero value otherwise.

func (*Asset) GetWidthOk

func (o *Asset) GetWidthOk() (*string, bool)

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

func (*Asset) HasAutoLandscape1610Rect

func (o *Asset) HasAutoLandscape1610Rect() bool

HasAutoLandscape1610Rect returns a boolean if a field has been set.

func (*Asset) HasAutoPortrait45Rect

func (o *Asset) HasAutoPortrait45Rect() bool

HasAutoPortrait45Rect returns a boolean if a field has been set.

func (*Asset) HasBurstId

func (o *Asset) HasBurstId() bool

HasBurstId returns a boolean if a field has been set.

func (*Asset) HasBurstSelectionTypes

func (o *Asset) HasBurstSelectionTypes() bool

HasBurstSelectionTypes returns a boolean if a field has been set.

func (*Asset) HasCreatedAtOnClient

func (o *Asset) HasCreatedAtOnClient() bool

HasCreatedAtOnClient returns a boolean if a field has been set.

func (*Asset) HasDataUti

func (o *Asset) HasDataUti() bool

HasDataUti returns a boolean if a field has been set.

func (*Asset) HasDuplicateOfId

func (o *Asset) HasDuplicateOfId() bool

HasDuplicateOfId returns a boolean if a field has been set.

func (*Asset) HasDuration

func (o *Asset) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*Asset) HasDurationUnclipped

func (o *Asset) HasDurationUnclipped() bool

HasDurationUnclipped returns a boolean if a field has been set.

func (*Asset) HasExifOrientation

func (o *Asset) HasExifOrientation() bool

HasExifOrientation returns a boolean if a field has been set.

func (*Asset) HasFavorite

func (o *Asset) HasFavorite() bool

HasFavorite returns a boolean if a field has been set.

func (*Asset) HasFileName

func (o *Asset) HasFileName() bool

HasFileName returns a boolean if a field has been set.

func (*Asset) HasGlacieredAt

func (o *Asset) HasGlacieredAt() bool

HasGlacieredAt returns a boolean if a field has been set.

func (*Asset) HasGoodResolution

func (o *Asset) HasGoodResolution() bool

HasGoodResolution returns a boolean if a field has been set.

func (*Asset) HasHandledAt

func (o *Asset) HasHandledAt() bool

HasHandledAt returns a boolean if a field has been set.

func (*Asset) HasHdr

func (o *Asset) HasHdr() bool

HasHdr returns a boolean if a field has been set.

func (*Asset) HasHeight

func (o *Asset) HasHeight() bool

HasHeight returns a boolean if a field has been set.

func (*Asset) HasHorizontalAccuracy

func (o *Asset) HasHorizontalAccuracy() bool

HasHorizontalAccuracy returns a boolean if a field has been set.

func (*Asset) HasId

func (o *Asset) HasId() bool

HasId returns a boolean if a field has been set.

func (*Asset) HasIosMediaSubtypes

func (o *Asset) HasIosMediaSubtypes() bool

HasIosMediaSubtypes returns a boolean if a field has been set.

func (*Asset) HasIsLive

func (o *Asset) HasIsLive() bool

HasIsLive returns a boolean if a field has been set.

func (*Asset) HasIsSubscription

func (o *Asset) HasIsSubscription() bool

HasIsSubscription returns a boolean if a field has been set.

func (*Asset) HasLandscape1610Url

func (o *Asset) HasLandscape1610Url() bool

HasLandscape1610Url returns a boolean if a field has been set.

func (*Asset) HasLandscapeRect

func (o *Asset) HasLandscapeRect() bool

HasLandscapeRect returns a boolean if a field has been set.

func (*Asset) HasLandscapeUrl

func (o *Asset) HasLandscapeUrl() bool

HasLandscapeUrl returns a boolean if a field has been set.

func (*Asset) HasLivePhotoOff

func (o *Asset) HasLivePhotoOff() bool

HasLivePhotoOff returns a boolean if a field has been set.

func (*Asset) HasLocalIdentifier

func (o *Asset) HasLocalIdentifier() bool

HasLocalIdentifier returns a boolean if a field has been set.

func (*Asset) HasLocation

func (o *Asset) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*Asset) HasLocationName

func (o *Asset) HasLocationName() bool

HasLocationName returns a boolean if a field has been set.

func (*Asset) HasMd5Hash

func (o *Asset) HasMd5Hash() bool

HasMd5Hash returns a boolean if a field has been set.

func (*Asset) HasOrientation

func (o *Asset) HasOrientation() bool

HasOrientation returns a boolean if a field has been set.

func (*Asset) HasOriginalFileName

func (o *Asset) HasOriginalFileName() bool

HasOriginalFileName returns a boolean if a field has been set.

func (*Asset) HasPanorama

func (o *Asset) HasPanorama() bool

HasPanorama returns a boolean if a field has been set.

func (*Asset) HasPortrait45Url

func (o *Asset) HasPortrait45Url() bool

HasPortrait45Url returns a boolean if a field has been set.

func (*Asset) HasPortraitRect

func (o *Asset) HasPortraitRect() bool

HasPortraitRect returns a boolean if a field has been set.

func (*Asset) HasPortraitUrl

func (o *Asset) HasPortraitUrl() bool

HasPortraitUrl returns a boolean if a field has been set.

func (*Asset) HasRawFileName

func (o *Asset) HasRawFileName() bool

HasRawFileName returns a boolean if a field has been set.

func (*Asset) HasRepresentsBurst

func (o *Asset) HasRepresentsBurst() bool

HasRepresentsBurst returns a boolean if a field has been set.

func (*Asset) HasRotationCw

func (o *Asset) HasRotationCw() bool

HasRotationCw returns a boolean if a field has been set.

func (*Asset) HasSelected

func (o *Asset) HasSelected() bool

HasSelected returns a boolean if a field has been set.

func (*Asset) HasSourceId

func (o *Asset) HasSourceId() bool

HasSourceId returns a boolean if a field has been set.

func (*Asset) HasTakenAt

func (o *Asset) HasTakenAt() bool

HasTakenAt returns a boolean if a field has been set.

func (*Asset) HasTakenAtUserOverrideAt

func (o *Asset) HasTakenAtUserOverrideAt() bool

HasTakenAtUserOverrideAt returns a boolean if a field has been set.

func (*Asset) HasThumbnailUrl

func (o *Asset) HasThumbnailUrl() bool

HasThumbnailUrl returns a boolean if a field has been set.

func (*Asset) HasUnglacierable

func (o *Asset) HasUnglacierable() bool

HasUnglacierable returns a boolean if a field has been set.

func (*Asset) HasUploadPriority

func (o *Asset) HasUploadPriority() bool

HasUploadPriority returns a boolean if a field has been set.

func (*Asset) HasUploadedAt

func (o *Asset) HasUploadedAt() bool

HasUploadedAt returns a boolean if a field has been set.

func (*Asset) HasUser

func (o *Asset) HasUser() bool

HasUser returns a boolean if a field has been set.

func (*Asset) HasUserId

func (o *Asset) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (*Asset) HasUserLandscape1610Rect

func (o *Asset) HasUserLandscape1610Rect() bool

HasUserLandscape1610Rect returns a boolean if a field has been set.

func (*Asset) HasUserLandscapeRect

func (o *Asset) HasUserLandscapeRect() bool

HasUserLandscapeRect returns a boolean if a field has been set.

func (*Asset) HasUserPortrait45Rect

func (o *Asset) HasUserPortrait45Rect() bool

HasUserPortrait45Rect returns a boolean if a field has been set.

func (*Asset) HasUserPortraitRect

func (o *Asset) HasUserPortraitRect() bool

HasUserPortraitRect returns a boolean if a field has been set.

func (*Asset) HasVideoClipExcludesAudio

func (o *Asset) HasVideoClipExcludesAudio() bool

HasVideoClipExcludesAudio returns a boolean if a field has been set.

func (*Asset) HasVideoClipStart

func (o *Asset) HasVideoClipStart() bool

HasVideoClipStart returns a boolean if a field has been set.

func (*Asset) HasVideoClippedByUserAt

func (o *Asset) HasVideoClippedByUserAt() bool

HasVideoClippedByUserAt returns a boolean if a field has been set.

func (*Asset) HasVideoFileName

func (o *Asset) HasVideoFileName() bool

HasVideoFileName returns a boolean if a field has been set.

func (*Asset) HasVideoUrl

func (o *Asset) HasVideoUrl() bool

HasVideoUrl returns a boolean if a field has been set.

func (*Asset) HasWidth

func (o *Asset) HasWidth() bool

HasWidth returns a boolean if a field has been set.

func (Asset) MarshalJSON

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

func (*Asset) SetAutoLandscape1610Rect

func (o *Asset) SetAutoLandscape1610Rect(v string)

SetAutoLandscape1610Rect gets a reference to the given string and assigns it to the AutoLandscape1610Rect field.

func (*Asset) SetAutoPortrait45Rect

func (o *Asset) SetAutoPortrait45Rect(v string)

SetAutoPortrait45Rect gets a reference to the given string and assigns it to the AutoPortrait45Rect field.

func (*Asset) SetBurstId

func (o *Asset) SetBurstId(v string)

SetBurstId gets a reference to the given string and assigns it to the BurstId field.

func (*Asset) SetBurstSelectionTypes

func (o *Asset) SetBurstSelectionTypes(v string)

SetBurstSelectionTypes gets a reference to the given string and assigns it to the BurstSelectionTypes field.

func (*Asset) SetCreatedAtOnClient

func (o *Asset) SetCreatedAtOnClient(v string)

SetCreatedAtOnClient gets a reference to the given string and assigns it to the CreatedAtOnClient field.

func (*Asset) SetDataUti

func (o *Asset) SetDataUti(v string)

SetDataUti gets a reference to the given string and assigns it to the DataUti field.

func (*Asset) SetDuplicateOfId

func (o *Asset) SetDuplicateOfId(v string)

SetDuplicateOfId gets a reference to the given string and assigns it to the DuplicateOfId field.

func (*Asset) SetDuration

func (o *Asset) SetDuration(v string)

SetDuration gets a reference to the given string and assigns it to the Duration field.

func (*Asset) SetDurationUnclipped

func (o *Asset) SetDurationUnclipped(v string)

SetDurationUnclipped gets a reference to the given string and assigns it to the DurationUnclipped field.

func (*Asset) SetExifOrientation

func (o *Asset) SetExifOrientation(v string)

SetExifOrientation gets a reference to the given string and assigns it to the ExifOrientation field.

func (*Asset) SetFavorite

func (o *Asset) SetFavorite(v bool)

SetFavorite gets a reference to the given bool and assigns it to the Favorite field.

func (*Asset) SetFileName

func (o *Asset) SetFileName(v string)

SetFileName gets a reference to the given string and assigns it to the FileName field.

func (*Asset) SetGlacieredAt

func (o *Asset) SetGlacieredAt(v string)

SetGlacieredAt gets a reference to the given string and assigns it to the GlacieredAt field.

func (*Asset) SetGoodResolution

func (o *Asset) SetGoodResolution(v bool)

SetGoodResolution gets a reference to the given bool and assigns it to the GoodResolution field.

func (*Asset) SetHandledAt

func (o *Asset) SetHandledAt(v string)

SetHandledAt gets a reference to the given string and assigns it to the HandledAt field.

func (*Asset) SetHdr

func (o *Asset) SetHdr(v bool)

SetHdr gets a reference to the given bool and assigns it to the Hdr field.

func (*Asset) SetHeight

func (o *Asset) SetHeight(v string)

SetHeight gets a reference to the given string and assigns it to the Height field.

func (*Asset) SetHorizontalAccuracy

func (o *Asset) SetHorizontalAccuracy(v string)

SetHorizontalAccuracy gets a reference to the given string and assigns it to the HorizontalAccuracy field.

func (*Asset) SetId

func (o *Asset) SetId(v string)

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

func (*Asset) SetIosMediaSubtypes

func (o *Asset) SetIosMediaSubtypes(v string)

SetIosMediaSubtypes gets a reference to the given string and assigns it to the IosMediaSubtypes field.

func (*Asset) SetIsLive

func (o *Asset) SetIsLive(v string)

SetIsLive gets a reference to the given string and assigns it to the IsLive field.

func (*Asset) SetIsSubscription

func (o *Asset) SetIsSubscription(v bool)

SetIsSubscription gets a reference to the given bool and assigns it to the IsSubscription field.

func (*Asset) SetLandscape1610Url

func (o *Asset) SetLandscape1610Url(v string)

SetLandscape1610Url gets a reference to the given string and assigns it to the Landscape1610Url field.

func (*Asset) SetLandscapeRect

func (o *Asset) SetLandscapeRect(v string)

SetLandscapeRect gets a reference to the given string and assigns it to the LandscapeRect field.

func (*Asset) SetLandscapeUrl

func (o *Asset) SetLandscapeUrl(v string)

SetLandscapeUrl gets a reference to the given string and assigns it to the LandscapeUrl field.

func (*Asset) SetLivePhotoOff

func (o *Asset) SetLivePhotoOff(v string)

SetLivePhotoOff gets a reference to the given string and assigns it to the LivePhotoOff field.

func (*Asset) SetLocalIdentifier

func (o *Asset) SetLocalIdentifier(v string)

SetLocalIdentifier gets a reference to the given string and assigns it to the LocalIdentifier field.

func (*Asset) SetLocation

func (o *Asset) SetLocation(v string)

SetLocation gets a reference to the given string and assigns it to the Location field.

func (*Asset) SetLocationName

func (o *Asset) SetLocationName(v string)

SetLocationName gets a reference to the given string and assigns it to the LocationName field.

func (*Asset) SetMd5Hash

func (o *Asset) SetMd5Hash(v string)

SetMd5Hash gets a reference to the given string and assigns it to the Md5Hash field.

func (*Asset) SetOrientation

func (o *Asset) SetOrientation(v string)

SetOrientation gets a reference to the given string and assigns it to the Orientation field.

func (*Asset) SetOriginalFileName

func (o *Asset) SetOriginalFileName(v string)

SetOriginalFileName gets a reference to the given string and assigns it to the OriginalFileName field.

func (*Asset) SetPanorama

func (o *Asset) SetPanorama(v bool)

SetPanorama gets a reference to the given bool and assigns it to the Panorama field.

func (*Asset) SetPortrait45Url

func (o *Asset) SetPortrait45Url(v string)

SetPortrait45Url gets a reference to the given string and assigns it to the Portrait45Url field.

func (*Asset) SetPortraitRect

func (o *Asset) SetPortraitRect(v string)

SetPortraitRect gets a reference to the given string and assigns it to the PortraitRect field.

func (*Asset) SetPortraitUrl

func (o *Asset) SetPortraitUrl(v string)

SetPortraitUrl gets a reference to the given string and assigns it to the PortraitUrl field.

func (*Asset) SetRawFileName

func (o *Asset) SetRawFileName(v string)

SetRawFileName gets a reference to the given string and assigns it to the RawFileName field.

func (*Asset) SetRepresentsBurst

func (o *Asset) SetRepresentsBurst(v string)

SetRepresentsBurst gets a reference to the given string and assigns it to the RepresentsBurst field.

func (*Asset) SetRotationCw

func (o *Asset) SetRotationCw(v string)

SetRotationCw gets a reference to the given string and assigns it to the RotationCw field.

func (*Asset) SetSelected

func (o *Asset) SetSelected(v bool)

SetSelected gets a reference to the given bool and assigns it to the Selected field.

func (*Asset) SetSourceId

func (o *Asset) SetSourceId(v string)

SetSourceId gets a reference to the given string and assigns it to the SourceId field.

func (*Asset) SetTakenAt

func (o *Asset) SetTakenAt(v string)

SetTakenAt gets a reference to the given string and assigns it to the TakenAt field.

func (*Asset) SetTakenAtUserOverrideAt

func (o *Asset) SetTakenAtUserOverrideAt(v string)

SetTakenAtUserOverrideAt gets a reference to the given string and assigns it to the TakenAtUserOverrideAt field.

func (*Asset) SetThumbnailUrl

func (o *Asset) SetThumbnailUrl(v string)

SetThumbnailUrl gets a reference to the given string and assigns it to the ThumbnailUrl field.

func (*Asset) SetUnglacierable

func (o *Asset) SetUnglacierable(v bool)

SetUnglacierable gets a reference to the given bool and assigns it to the Unglacierable field.

func (*Asset) SetUploadPriority

func (o *Asset) SetUploadPriority(v string)

SetUploadPriority gets a reference to the given string and assigns it to the UploadPriority field.

func (*Asset) SetUploadedAt

func (o *Asset) SetUploadedAt(v string)

SetUploadedAt gets a reference to the given string and assigns it to the UploadedAt field.

func (*Asset) SetUser

func (o *Asset) SetUser(v User)

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

func (*Asset) SetUserId

func (o *Asset) SetUserId(v string)

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

func (*Asset) SetUserLandscape1610Rect

func (o *Asset) SetUserLandscape1610Rect(v string)

SetUserLandscape1610Rect gets a reference to the given string and assigns it to the UserLandscape1610Rect field.

func (*Asset) SetUserLandscapeRect

func (o *Asset) SetUserLandscapeRect(v string)

SetUserLandscapeRect gets a reference to the given string and assigns it to the UserLandscapeRect field.

func (*Asset) SetUserPortrait45Rect

func (o *Asset) SetUserPortrait45Rect(v string)

SetUserPortrait45Rect gets a reference to the given string and assigns it to the UserPortrait45Rect field.

func (*Asset) SetUserPortraitRect

func (o *Asset) SetUserPortraitRect(v string)

SetUserPortraitRect gets a reference to the given string and assigns it to the UserPortraitRect field.

func (*Asset) SetVideoClipExcludesAudio

func (o *Asset) SetVideoClipExcludesAudio(v string)

SetVideoClipExcludesAudio gets a reference to the given string and assigns it to the VideoClipExcludesAudio field.

func (*Asset) SetVideoClipStart

func (o *Asset) SetVideoClipStart(v string)

SetVideoClipStart gets a reference to the given string and assigns it to the VideoClipStart field.

func (*Asset) SetVideoClippedByUserAt

func (o *Asset) SetVideoClippedByUserAt(v string)

SetVideoClippedByUserAt gets a reference to the given string and assigns it to the VideoClippedByUserAt field.

func (*Asset) SetVideoFileName

func (o *Asset) SetVideoFileName(v string)

SetVideoFileName gets a reference to the given string and assigns it to the VideoFileName field.

func (*Asset) SetVideoUrl

func (o *Asset) SetVideoUrl(v string)

SetVideoUrl gets a reference to the given string and assigns it to the VideoUrl field.

func (*Asset) SetWidth

func (o *Asset) SetWidth(v string)

SetWidth gets a reference to the given string and assigns it to the Width field.

type AuthApiService

type AuthApiService service

AuthApiService AuthApi service

func (*AuthApiService) Login

Login Login to Aura Frames

@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 LoginResponse

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 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 ContributorTokens

type ContributorTokens struct {
	Email           *string `json:"email,omitempty"`
	PhoneNumber     *string `json:"phone_number,omitempty"`
	ExpiresAt       *string `json:"expires_at,omitempty"`
	CreatedAt       *string `json:"created_at,omitempty"`
	UpdatedAt       *string `json:"updated_at,omitempty"`
	FrameId         *string `json:"frame_id,omitempty"`
	ContributorName *string `json:"contributor_name,omitempty"`
}

ContributorTokens struct for ContributorTokens

func NewContributorTokens

func NewContributorTokens() *ContributorTokens

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

func NewContributorTokensWithDefaults

func NewContributorTokensWithDefaults() *ContributorTokens

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

func (*ContributorTokens) GetContributorName

func (o *ContributorTokens) GetContributorName() string

GetContributorName returns the ContributorName field value if set, zero value otherwise.

func (*ContributorTokens) GetContributorNameOk

func (o *ContributorTokens) GetContributorNameOk() (*string, bool)

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

func (*ContributorTokens) GetCreatedAt

func (o *ContributorTokens) GetCreatedAt() string

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

func (*ContributorTokens) GetCreatedAtOk

func (o *ContributorTokens) GetCreatedAtOk() (*string, bool)

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

func (*ContributorTokens) GetEmail

func (o *ContributorTokens) GetEmail() string

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

func (*ContributorTokens) GetEmailOk

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

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

func (*ContributorTokens) GetExpiresAt

func (o *ContributorTokens) GetExpiresAt() string

GetExpiresAt returns the ExpiresAt field value if set, zero value otherwise.

func (*ContributorTokens) GetExpiresAtOk

func (o *ContributorTokens) GetExpiresAtOk() (*string, bool)

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

func (*ContributorTokens) GetFrameId

func (o *ContributorTokens) GetFrameId() string

GetFrameId returns the FrameId field value if set, zero value otherwise.

func (*ContributorTokens) GetFrameIdOk

func (o *ContributorTokens) GetFrameIdOk() (*string, bool)

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

func (*ContributorTokens) GetPhoneNumber

func (o *ContributorTokens) GetPhoneNumber() string

GetPhoneNumber returns the PhoneNumber field value if set, zero value otherwise.

func (*ContributorTokens) GetPhoneNumberOk

func (o *ContributorTokens) GetPhoneNumberOk() (*string, bool)

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

func (*ContributorTokens) GetUpdatedAt

func (o *ContributorTokens) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*ContributorTokens) GetUpdatedAtOk

func (o *ContributorTokens) GetUpdatedAtOk() (*string, bool)

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

func (*ContributorTokens) HasContributorName

func (o *ContributorTokens) HasContributorName() bool

HasContributorName returns a boolean if a field has been set.

func (*ContributorTokens) HasCreatedAt

func (o *ContributorTokens) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ContributorTokens) HasEmail

func (o *ContributorTokens) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*ContributorTokens) HasExpiresAt

func (o *ContributorTokens) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field has been set.

func (*ContributorTokens) HasFrameId

func (o *ContributorTokens) HasFrameId() bool

HasFrameId returns a boolean if a field has been set.

func (*ContributorTokens) HasPhoneNumber

func (o *ContributorTokens) HasPhoneNumber() bool

HasPhoneNumber returns a boolean if a field has been set.

func (*ContributorTokens) HasUpdatedAt

func (o *ContributorTokens) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (ContributorTokens) MarshalJSON

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

func (*ContributorTokens) SetContributorName

func (o *ContributorTokens) SetContributorName(v string)

SetContributorName gets a reference to the given string and assigns it to the ContributorName field.

func (*ContributorTokens) SetCreatedAt

func (o *ContributorTokens) SetCreatedAt(v string)

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

func (*ContributorTokens) SetEmail

func (o *ContributorTokens) SetEmail(v string)

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

func (*ContributorTokens) SetExpiresAt

func (o *ContributorTokens) SetExpiresAt(v string)

SetExpiresAt gets a reference to the given string and assigns it to the ExpiresAt field.

func (*ContributorTokens) SetFrameId

func (o *ContributorTokens) SetFrameId(v string)

SetFrameId gets a reference to the given string and assigns it to the FrameId field.

func (*ContributorTokens) SetPhoneNumber

func (o *ContributorTokens) SetPhoneNumber(v string)

SetPhoneNumber gets a reference to the given string and assigns it to the PhoneNumber field.

func (*ContributorTokens) SetUpdatedAt

func (o *ContributorTokens) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given string and assigns it to the UpdatedAt field.

type CurrentUser

type CurrentUser struct {
	AdminAccount                 *string    `json:"admin_account,omitempty"`
	AttributionId                *string    `json:"attribution_id,omitempty"`
	AttributionString            *string    `json:"attribution_string,omitempty"`
	AuthToken                    *string    `json:"auth_token,omitempty"`
	AutoUploadOff                *bool      `json:"auto_upload_off,omitempty"`
	AvatarFileName               *string    `json:"avatar_file_name,omitempty"`
	BillingInfo                  *string    `json:"billing_info,omitempty"`
	CharitySubscriptionsLaunched *bool      `json:"charity_subscriptions_launched,omitempty"`
	ConfirmedEmail               *string    `json:"confirmed_email,omitempty"`
	CreatedAt                    *string    `json:"created_at,omitempty"`
	CurrentSourceId              *string    `json:"current_source_id,omitempty"`
	EligibleForAppReviewPrompt   *bool      `json:"eligible_for_app_review_prompt,omitempty"`
	Email                        *string    `json:"email,omitempty"`
	Features                     []Features `json:"features,omitempty"`
	GooglePhotosDisabled         *string    `json:"google_photos_disabled,omitempty"`
	HasAccessToNewGooglePhotos   *bool      `json:"has_access_to_new_google_photos,omitempty"`
	HasFrame                     *bool      `json:"has_frame,omitempty"`
	Id                           *string    `json:"id,omitempty"`
	LatestAppVersion             *string    `json:"latest_app_version,omitempty"`
	LivePhotosLaunched           *bool      `json:"live_photos_launched,omitempty"`
	Locale                       *string    `json:"locale,omitempty"`
	Name                         *string    `json:"name,omitempty"`
	PrintSubscriptionsLaunched   *bool      `json:"print_subscriptions_launched,omitempty"`
	RecurlyAccountCode           *string    `json:"recurly_account_code,omitempty"`
	ShortId                      *string    `json:"short_id,omitempty"`
	ShowPushPrompt               *bool      `json:"show_push_prompt,omitempty"`
	SmartAlbumsOff               *bool      `json:"smart_albums_off,omitempty"`
	SmartSuggestionsOff          *bool      `json:"smart_suggestions_off,omitempty"`
	SubscriptionsLaunched        *bool      `json:"subscriptions_launched,omitempty"`
	TestAccount                  *string    `json:"test_account,omitempty"`
	ThanksLaunched               *bool      `json:"thanks_launched,omitempty"`
	TooltipAddPhotosSeen         *bool      `json:"tooltip_add_photos_seen,omitempty"`
	TooltipAddedPhotosSeen       *bool      `json:"tooltip_added_photos_seen,omitempty"`
	TooltipGesturesSeen          *bool      `json:"tooltip_gestures_seen,omitempty"`
	TooltipInboxSeen             *bool      `json:"tooltip_inbox_seen,omitempty"`
	TooltipManageFramesSeen      *bool      `json:"tooltip_manage_frames_seen,omitempty"`
	TooltipSettingsSeen          *bool      `json:"tooltip_settings_seen,omitempty"`
	UnconfirmedEmail             *string    `json:"unconfirmed_email,omitempty"`
	UpdatedAt                    *string    `json:"updated_at,omitempty"`
	VerboseLoggingEnabled        *bool      `json:"verbose_logging_enabled,omitempty"`
	WarnSmartAlbumsDeprecated    *bool      `json:"warn_smart_albums_deprecated,omitempty"`
}

CurrentUser struct for CurrentUser

func NewCurrentUser

func NewCurrentUser() *CurrentUser

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

func NewCurrentUserWithDefaults

func NewCurrentUserWithDefaults() *CurrentUser

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

func (*CurrentUser) GetAdminAccount

func (o *CurrentUser) GetAdminAccount() string

GetAdminAccount returns the AdminAccount field value if set, zero value otherwise.

func (*CurrentUser) GetAdminAccountOk

func (o *CurrentUser) GetAdminAccountOk() (*string, bool)

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

func (*CurrentUser) GetAttributionId

func (o *CurrentUser) GetAttributionId() string

GetAttributionId returns the AttributionId field value if set, zero value otherwise.

func (*CurrentUser) GetAttributionIdOk

func (o *CurrentUser) GetAttributionIdOk() (*string, bool)

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

func (*CurrentUser) GetAttributionString

func (o *CurrentUser) GetAttributionString() string

GetAttributionString returns the AttributionString field value if set, zero value otherwise.

func (*CurrentUser) GetAttributionStringOk

func (o *CurrentUser) GetAttributionStringOk() (*string, bool)

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

func (*CurrentUser) GetAuthToken

func (o *CurrentUser) GetAuthToken() string

GetAuthToken returns the AuthToken field value if set, zero value otherwise.

func (*CurrentUser) GetAuthTokenOk

func (o *CurrentUser) GetAuthTokenOk() (*string, bool)

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

func (*CurrentUser) GetAutoUploadOff

func (o *CurrentUser) GetAutoUploadOff() bool

GetAutoUploadOff returns the AutoUploadOff field value if set, zero value otherwise.

func (*CurrentUser) GetAutoUploadOffOk

func (o *CurrentUser) GetAutoUploadOffOk() (*bool, bool)

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

func (*CurrentUser) GetAvatarFileName

func (o *CurrentUser) GetAvatarFileName() string

GetAvatarFileName returns the AvatarFileName field value if set, zero value otherwise.

func (*CurrentUser) GetAvatarFileNameOk

func (o *CurrentUser) GetAvatarFileNameOk() (*string, bool)

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

func (*CurrentUser) GetBillingInfo

func (o *CurrentUser) GetBillingInfo() string

GetBillingInfo returns the BillingInfo field value if set, zero value otherwise.

func (*CurrentUser) GetBillingInfoOk

func (o *CurrentUser) GetBillingInfoOk() (*string, bool)

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

func (*CurrentUser) GetCharitySubscriptionsLaunched

func (o *CurrentUser) GetCharitySubscriptionsLaunched() bool

GetCharitySubscriptionsLaunched returns the CharitySubscriptionsLaunched field value if set, zero value otherwise.

func (*CurrentUser) GetCharitySubscriptionsLaunchedOk

func (o *CurrentUser) GetCharitySubscriptionsLaunchedOk() (*bool, bool)

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

func (*CurrentUser) GetConfirmedEmail

func (o *CurrentUser) GetConfirmedEmail() string

GetConfirmedEmail returns the ConfirmedEmail field value if set, zero value otherwise.

func (*CurrentUser) GetConfirmedEmailOk

func (o *CurrentUser) GetConfirmedEmailOk() (*string, bool)

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

func (*CurrentUser) GetCreatedAt

func (o *CurrentUser) GetCreatedAt() string

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

func (*CurrentUser) GetCreatedAtOk

func (o *CurrentUser) GetCreatedAtOk() (*string, bool)

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

func (*CurrentUser) GetCurrentSourceId

func (o *CurrentUser) GetCurrentSourceId() string

GetCurrentSourceId returns the CurrentSourceId field value if set, zero value otherwise.

func (*CurrentUser) GetCurrentSourceIdOk

func (o *CurrentUser) GetCurrentSourceIdOk() (*string, bool)

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

func (*CurrentUser) GetEligibleForAppReviewPrompt

func (o *CurrentUser) GetEligibleForAppReviewPrompt() bool

GetEligibleForAppReviewPrompt returns the EligibleForAppReviewPrompt field value if set, zero value otherwise.

func (*CurrentUser) GetEligibleForAppReviewPromptOk

func (o *CurrentUser) GetEligibleForAppReviewPromptOk() (*bool, bool)

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

func (*CurrentUser) GetEmail

func (o *CurrentUser) GetEmail() string

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

func (*CurrentUser) GetEmailOk

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

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

func (*CurrentUser) GetFeatures

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

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

func (*CurrentUser) GetFeaturesOk

func (o *CurrentUser) 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 (*CurrentUser) GetGooglePhotosDisabled

func (o *CurrentUser) GetGooglePhotosDisabled() string

GetGooglePhotosDisabled returns the GooglePhotosDisabled field value if set, zero value otherwise.

func (*CurrentUser) GetGooglePhotosDisabledOk

func (o *CurrentUser) GetGooglePhotosDisabledOk() (*string, bool)

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

func (*CurrentUser) GetHasAccessToNewGooglePhotos

func (o *CurrentUser) GetHasAccessToNewGooglePhotos() bool

GetHasAccessToNewGooglePhotos returns the HasAccessToNewGooglePhotos field value if set, zero value otherwise.

func (*CurrentUser) GetHasAccessToNewGooglePhotosOk

func (o *CurrentUser) GetHasAccessToNewGooglePhotosOk() (*bool, bool)

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

func (*CurrentUser) GetHasFrame

func (o *CurrentUser) GetHasFrame() bool

GetHasFrame returns the HasFrame field value if set, zero value otherwise.

func (*CurrentUser) GetHasFrameOk

func (o *CurrentUser) GetHasFrameOk() (*bool, bool)

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

func (*CurrentUser) GetId

func (o *CurrentUser) GetId() string

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

func (*CurrentUser) GetIdOk

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

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

func (*CurrentUser) GetLatestAppVersion

func (o *CurrentUser) GetLatestAppVersion() string

GetLatestAppVersion returns the LatestAppVersion field value if set, zero value otherwise.

func (*CurrentUser) GetLatestAppVersionOk

func (o *CurrentUser) GetLatestAppVersionOk() (*string, bool)

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

func (*CurrentUser) GetLivePhotosLaunched

func (o *CurrentUser) GetLivePhotosLaunched() bool

GetLivePhotosLaunched returns the LivePhotosLaunched field value if set, zero value otherwise.

func (*CurrentUser) GetLivePhotosLaunchedOk

func (o *CurrentUser) GetLivePhotosLaunchedOk() (*bool, bool)

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

func (*CurrentUser) GetLocale

func (o *CurrentUser) GetLocale() string

GetLocale returns the Locale field value if set, zero value otherwise.

func (*CurrentUser) GetLocaleOk

func (o *CurrentUser) GetLocaleOk() (*string, bool)

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

func (*CurrentUser) GetName

func (o *CurrentUser) GetName() string

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

func (*CurrentUser) GetNameOk

func (o *CurrentUser) 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 (*CurrentUser) GetPrintSubscriptionsLaunched

func (o *CurrentUser) GetPrintSubscriptionsLaunched() bool

GetPrintSubscriptionsLaunched returns the PrintSubscriptionsLaunched field value if set, zero value otherwise.

func (*CurrentUser) GetPrintSubscriptionsLaunchedOk

func (o *CurrentUser) GetPrintSubscriptionsLaunchedOk() (*bool, bool)

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

func (*CurrentUser) GetRecurlyAccountCode

func (o *CurrentUser) GetRecurlyAccountCode() string

GetRecurlyAccountCode returns the RecurlyAccountCode field value if set, zero value otherwise.

func (*CurrentUser) GetRecurlyAccountCodeOk

func (o *CurrentUser) GetRecurlyAccountCodeOk() (*string, bool)

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

func (*CurrentUser) GetShortId

func (o *CurrentUser) GetShortId() string

GetShortId returns the ShortId field value if set, zero value otherwise.

func (*CurrentUser) GetShortIdOk

func (o *CurrentUser) GetShortIdOk() (*string, bool)

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

func (*CurrentUser) GetShowPushPrompt

func (o *CurrentUser) GetShowPushPrompt() bool

GetShowPushPrompt returns the ShowPushPrompt field value if set, zero value otherwise.

func (*CurrentUser) GetShowPushPromptOk

func (o *CurrentUser) GetShowPushPromptOk() (*bool, bool)

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

func (*CurrentUser) GetSmartAlbumsOff

func (o *CurrentUser) GetSmartAlbumsOff() bool

GetSmartAlbumsOff returns the SmartAlbumsOff field value if set, zero value otherwise.

func (*CurrentUser) GetSmartAlbumsOffOk

func (o *CurrentUser) GetSmartAlbumsOffOk() (*bool, bool)

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

func (*CurrentUser) GetSmartSuggestionsOff

func (o *CurrentUser) GetSmartSuggestionsOff() bool

GetSmartSuggestionsOff returns the SmartSuggestionsOff field value if set, zero value otherwise.

func (*CurrentUser) GetSmartSuggestionsOffOk

func (o *CurrentUser) GetSmartSuggestionsOffOk() (*bool, bool)

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

func (*CurrentUser) GetSubscriptionsLaunched

func (o *CurrentUser) GetSubscriptionsLaunched() bool

GetSubscriptionsLaunched returns the SubscriptionsLaunched field value if set, zero value otherwise.

func (*CurrentUser) GetSubscriptionsLaunchedOk

func (o *CurrentUser) GetSubscriptionsLaunchedOk() (*bool, bool)

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

func (*CurrentUser) GetTestAccount

func (o *CurrentUser) GetTestAccount() string

GetTestAccount returns the TestAccount field value if set, zero value otherwise.

func (*CurrentUser) GetTestAccountOk

func (o *CurrentUser) GetTestAccountOk() (*string, bool)

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

func (*CurrentUser) GetThanksLaunched

func (o *CurrentUser) GetThanksLaunched() bool

GetThanksLaunched returns the ThanksLaunched field value if set, zero value otherwise.

func (*CurrentUser) GetThanksLaunchedOk

func (o *CurrentUser) GetThanksLaunchedOk() (*bool, bool)

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

func (*CurrentUser) GetTooltipAddPhotosSeen

func (o *CurrentUser) GetTooltipAddPhotosSeen() bool

GetTooltipAddPhotosSeen returns the TooltipAddPhotosSeen field value if set, zero value otherwise.

func (*CurrentUser) GetTooltipAddPhotosSeenOk

func (o *CurrentUser) GetTooltipAddPhotosSeenOk() (*bool, bool)

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

func (*CurrentUser) GetTooltipAddedPhotosSeen

func (o *CurrentUser) GetTooltipAddedPhotosSeen() bool

GetTooltipAddedPhotosSeen returns the TooltipAddedPhotosSeen field value if set, zero value otherwise.

func (*CurrentUser) GetTooltipAddedPhotosSeenOk

func (o *CurrentUser) GetTooltipAddedPhotosSeenOk() (*bool, bool)

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

func (*CurrentUser) GetTooltipGesturesSeen

func (o *CurrentUser) GetTooltipGesturesSeen() bool

GetTooltipGesturesSeen returns the TooltipGesturesSeen field value if set, zero value otherwise.

func (*CurrentUser) GetTooltipGesturesSeenOk

func (o *CurrentUser) GetTooltipGesturesSeenOk() (*bool, bool)

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

func (*CurrentUser) GetTooltipInboxSeen

func (o *CurrentUser) GetTooltipInboxSeen() bool

GetTooltipInboxSeen returns the TooltipInboxSeen field value if set, zero value otherwise.

func (*CurrentUser) GetTooltipInboxSeenOk

func (o *CurrentUser) GetTooltipInboxSeenOk() (*bool, bool)

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

func (*CurrentUser) GetTooltipManageFramesSeen

func (o *CurrentUser) GetTooltipManageFramesSeen() bool

GetTooltipManageFramesSeen returns the TooltipManageFramesSeen field value if set, zero value otherwise.

func (*CurrentUser) GetTooltipManageFramesSeenOk

func (o *CurrentUser) GetTooltipManageFramesSeenOk() (*bool, bool)

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

func (*CurrentUser) GetTooltipSettingsSeen

func (o *CurrentUser) GetTooltipSettingsSeen() bool

GetTooltipSettingsSeen returns the TooltipSettingsSeen field value if set, zero value otherwise.

func (*CurrentUser) GetTooltipSettingsSeenOk

func (o *CurrentUser) GetTooltipSettingsSeenOk() (*bool, bool)

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

func (*CurrentUser) GetUnconfirmedEmail

func (o *CurrentUser) GetUnconfirmedEmail() string

GetUnconfirmedEmail returns the UnconfirmedEmail field value if set, zero value otherwise.

func (*CurrentUser) GetUnconfirmedEmailOk

func (o *CurrentUser) GetUnconfirmedEmailOk() (*string, bool)

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

func (*CurrentUser) GetUpdatedAt

func (o *CurrentUser) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*CurrentUser) GetUpdatedAtOk

func (o *CurrentUser) GetUpdatedAtOk() (*string, bool)

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

func (*CurrentUser) GetVerboseLoggingEnabled

func (o *CurrentUser) GetVerboseLoggingEnabled() bool

GetVerboseLoggingEnabled returns the VerboseLoggingEnabled field value if set, zero value otherwise.

func (*CurrentUser) GetVerboseLoggingEnabledOk

func (o *CurrentUser) GetVerboseLoggingEnabledOk() (*bool, bool)

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

func (*CurrentUser) GetWarnSmartAlbumsDeprecated

func (o *CurrentUser) GetWarnSmartAlbumsDeprecated() bool

GetWarnSmartAlbumsDeprecated returns the WarnSmartAlbumsDeprecated field value if set, zero value otherwise.

func (*CurrentUser) GetWarnSmartAlbumsDeprecatedOk

func (o *CurrentUser) GetWarnSmartAlbumsDeprecatedOk() (*bool, bool)

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

func (*CurrentUser) HasAdminAccount

func (o *CurrentUser) HasAdminAccount() bool

HasAdminAccount returns a boolean if a field has been set.

func (*CurrentUser) HasAttributionId

func (o *CurrentUser) HasAttributionId() bool

HasAttributionId returns a boolean if a field has been set.

func (*CurrentUser) HasAttributionString

func (o *CurrentUser) HasAttributionString() bool

HasAttributionString returns a boolean if a field has been set.

func (*CurrentUser) HasAuthToken

func (o *CurrentUser) HasAuthToken() bool

HasAuthToken returns a boolean if a field has been set.

func (*CurrentUser) HasAutoUploadOff

func (o *CurrentUser) HasAutoUploadOff() bool

HasAutoUploadOff returns a boolean if a field has been set.

func (*CurrentUser) HasAvatarFileName

func (o *CurrentUser) HasAvatarFileName() bool

HasAvatarFileName returns a boolean if a field has been set.

func (*CurrentUser) HasBillingInfo

func (o *CurrentUser) HasBillingInfo() bool

HasBillingInfo returns a boolean if a field has been set.

func (*CurrentUser) HasCharitySubscriptionsLaunched

func (o *CurrentUser) HasCharitySubscriptionsLaunched() bool

HasCharitySubscriptionsLaunched returns a boolean if a field has been set.

func (*CurrentUser) HasConfirmedEmail

func (o *CurrentUser) HasConfirmedEmail() bool

HasConfirmedEmail returns a boolean if a field has been set.

func (*CurrentUser) HasCreatedAt

func (o *CurrentUser) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*CurrentUser) HasCurrentSourceId

func (o *CurrentUser) HasCurrentSourceId() bool

HasCurrentSourceId returns a boolean if a field has been set.

func (*CurrentUser) HasEligibleForAppReviewPrompt

func (o *CurrentUser) HasEligibleForAppReviewPrompt() bool

HasEligibleForAppReviewPrompt returns a boolean if a field has been set.

func (*CurrentUser) HasEmail

func (o *CurrentUser) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*CurrentUser) HasFeatures

func (o *CurrentUser) HasFeatures() bool

HasFeatures returns a boolean if a field has been set.

func (*CurrentUser) HasGooglePhotosDisabled

func (o *CurrentUser) HasGooglePhotosDisabled() bool

HasGooglePhotosDisabled returns a boolean if a field has been set.

func (*CurrentUser) HasHasAccessToNewGooglePhotos

func (o *CurrentUser) HasHasAccessToNewGooglePhotos() bool

HasHasAccessToNewGooglePhotos returns a boolean if a field has been set.

func (*CurrentUser) HasHasFrame

func (o *CurrentUser) HasHasFrame() bool

HasHasFrame returns a boolean if a field has been set.

func (*CurrentUser) HasId

func (o *CurrentUser) HasId() bool

HasId returns a boolean if a field has been set.

func (*CurrentUser) HasLatestAppVersion

func (o *CurrentUser) HasLatestAppVersion() bool

HasLatestAppVersion returns a boolean if a field has been set.

func (*CurrentUser) HasLivePhotosLaunched

func (o *CurrentUser) HasLivePhotosLaunched() bool

HasLivePhotosLaunched returns a boolean if a field has been set.

func (*CurrentUser) HasLocale

func (o *CurrentUser) HasLocale() bool

HasLocale returns a boolean if a field has been set.

func (*CurrentUser) HasName

func (o *CurrentUser) HasName() bool

HasName returns a boolean if a field has been set.

func (*CurrentUser) HasPrintSubscriptionsLaunched

func (o *CurrentUser) HasPrintSubscriptionsLaunched() bool

HasPrintSubscriptionsLaunched returns a boolean if a field has been set.

func (*CurrentUser) HasRecurlyAccountCode

func (o *CurrentUser) HasRecurlyAccountCode() bool

HasRecurlyAccountCode returns a boolean if a field has been set.

func (*CurrentUser) HasShortId

func (o *CurrentUser) HasShortId() bool

HasShortId returns a boolean if a field has been set.

func (*CurrentUser) HasShowPushPrompt

func (o *CurrentUser) HasShowPushPrompt() bool

HasShowPushPrompt returns a boolean if a field has been set.

func (*CurrentUser) HasSmartAlbumsOff

func (o *CurrentUser) HasSmartAlbumsOff() bool

HasSmartAlbumsOff returns a boolean if a field has been set.

func (*CurrentUser) HasSmartSuggestionsOff

func (o *CurrentUser) HasSmartSuggestionsOff() bool

HasSmartSuggestionsOff returns a boolean if a field has been set.

func (*CurrentUser) HasSubscriptionsLaunched

func (o *CurrentUser) HasSubscriptionsLaunched() bool

HasSubscriptionsLaunched returns a boolean if a field has been set.

func (*CurrentUser) HasTestAccount

func (o *CurrentUser) HasTestAccount() bool

HasTestAccount returns a boolean if a field has been set.

func (*CurrentUser) HasThanksLaunched

func (o *CurrentUser) HasThanksLaunched() bool

HasThanksLaunched returns a boolean if a field has been set.

func (*CurrentUser) HasTooltipAddPhotosSeen

func (o *CurrentUser) HasTooltipAddPhotosSeen() bool

HasTooltipAddPhotosSeen returns a boolean if a field has been set.

func (*CurrentUser) HasTooltipAddedPhotosSeen

func (o *CurrentUser) HasTooltipAddedPhotosSeen() bool

HasTooltipAddedPhotosSeen returns a boolean if a field has been set.

func (*CurrentUser) HasTooltipGesturesSeen

func (o *CurrentUser) HasTooltipGesturesSeen() bool

HasTooltipGesturesSeen returns a boolean if a field has been set.

func (*CurrentUser) HasTooltipInboxSeen

func (o *CurrentUser) HasTooltipInboxSeen() bool

HasTooltipInboxSeen returns a boolean if a field has been set.

func (*CurrentUser) HasTooltipManageFramesSeen

func (o *CurrentUser) HasTooltipManageFramesSeen() bool

HasTooltipManageFramesSeen returns a boolean if a field has been set.

func (*CurrentUser) HasTooltipSettingsSeen

func (o *CurrentUser) HasTooltipSettingsSeen() bool

HasTooltipSettingsSeen returns a boolean if a field has been set.

func (*CurrentUser) HasUnconfirmedEmail

func (o *CurrentUser) HasUnconfirmedEmail() bool

HasUnconfirmedEmail returns a boolean if a field has been set.

func (*CurrentUser) HasUpdatedAt

func (o *CurrentUser) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*CurrentUser) HasVerboseLoggingEnabled

func (o *CurrentUser) HasVerboseLoggingEnabled() bool

HasVerboseLoggingEnabled returns a boolean if a field has been set.

func (*CurrentUser) HasWarnSmartAlbumsDeprecated

func (o *CurrentUser) HasWarnSmartAlbumsDeprecated() bool

HasWarnSmartAlbumsDeprecated returns a boolean if a field has been set.

func (CurrentUser) MarshalJSON

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

func (*CurrentUser) SetAdminAccount

func (o *CurrentUser) SetAdminAccount(v string)

SetAdminAccount gets a reference to the given string and assigns it to the AdminAccount field.

func (*CurrentUser) SetAttributionId

func (o *CurrentUser) SetAttributionId(v string)

SetAttributionId gets a reference to the given string and assigns it to the AttributionId field.

func (*CurrentUser) SetAttributionString

func (o *CurrentUser) SetAttributionString(v string)

SetAttributionString gets a reference to the given string and assigns it to the AttributionString field.

func (*CurrentUser) SetAuthToken

func (o *CurrentUser) SetAuthToken(v string)

SetAuthToken gets a reference to the given string and assigns it to the AuthToken field.

func (*CurrentUser) SetAutoUploadOff

func (o *CurrentUser) SetAutoUploadOff(v bool)

SetAutoUploadOff gets a reference to the given bool and assigns it to the AutoUploadOff field.

func (*CurrentUser) SetAvatarFileName

func (o *CurrentUser) SetAvatarFileName(v string)

SetAvatarFileName gets a reference to the given string and assigns it to the AvatarFileName field.

func (*CurrentUser) SetBillingInfo

func (o *CurrentUser) SetBillingInfo(v string)

SetBillingInfo gets a reference to the given string and assigns it to the BillingInfo field.

func (*CurrentUser) SetCharitySubscriptionsLaunched

func (o *CurrentUser) SetCharitySubscriptionsLaunched(v bool)

SetCharitySubscriptionsLaunched gets a reference to the given bool and assigns it to the CharitySubscriptionsLaunched field.

func (*CurrentUser) SetConfirmedEmail

func (o *CurrentUser) SetConfirmedEmail(v string)

SetConfirmedEmail gets a reference to the given string and assigns it to the ConfirmedEmail field.

func (*CurrentUser) SetCreatedAt

func (o *CurrentUser) SetCreatedAt(v string)

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

func (*CurrentUser) SetCurrentSourceId

func (o *CurrentUser) SetCurrentSourceId(v string)

SetCurrentSourceId gets a reference to the given string and assigns it to the CurrentSourceId field.

func (*CurrentUser) SetEligibleForAppReviewPrompt

func (o *CurrentUser) SetEligibleForAppReviewPrompt(v bool)

SetEligibleForAppReviewPrompt gets a reference to the given bool and assigns it to the EligibleForAppReviewPrompt field.

func (*CurrentUser) SetEmail

func (o *CurrentUser) SetEmail(v string)

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

func (*CurrentUser) SetFeatures

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

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

func (*CurrentUser) SetGooglePhotosDisabled

func (o *CurrentUser) SetGooglePhotosDisabled(v string)

SetGooglePhotosDisabled gets a reference to the given string and assigns it to the GooglePhotosDisabled field.

func (*CurrentUser) SetHasAccessToNewGooglePhotos

func (o *CurrentUser) SetHasAccessToNewGooglePhotos(v bool)

SetHasAccessToNewGooglePhotos gets a reference to the given bool and assigns it to the HasAccessToNewGooglePhotos field.

func (*CurrentUser) SetHasFrame

func (o *CurrentUser) SetHasFrame(v bool)

SetHasFrame gets a reference to the given bool and assigns it to the HasFrame field.

func (*CurrentUser) SetId

func (o *CurrentUser) SetId(v string)

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

func (*CurrentUser) SetLatestAppVersion

func (o *CurrentUser) SetLatestAppVersion(v string)

SetLatestAppVersion gets a reference to the given string and assigns it to the LatestAppVersion field.

func (*CurrentUser) SetLivePhotosLaunched

func (o *CurrentUser) SetLivePhotosLaunched(v bool)

SetLivePhotosLaunched gets a reference to the given bool and assigns it to the LivePhotosLaunched field.

func (*CurrentUser) SetLocale

func (o *CurrentUser) SetLocale(v string)

SetLocale gets a reference to the given string and assigns it to the Locale field.

func (*CurrentUser) SetName

func (o *CurrentUser) SetName(v string)

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

func (*CurrentUser) SetPrintSubscriptionsLaunched

func (o *CurrentUser) SetPrintSubscriptionsLaunched(v bool)

SetPrintSubscriptionsLaunched gets a reference to the given bool and assigns it to the PrintSubscriptionsLaunched field.

func (*CurrentUser) SetRecurlyAccountCode

func (o *CurrentUser) SetRecurlyAccountCode(v string)

SetRecurlyAccountCode gets a reference to the given string and assigns it to the RecurlyAccountCode field.

func (*CurrentUser) SetShortId

func (o *CurrentUser) SetShortId(v string)

SetShortId gets a reference to the given string and assigns it to the ShortId field.

func (*CurrentUser) SetShowPushPrompt

func (o *CurrentUser) SetShowPushPrompt(v bool)

SetShowPushPrompt gets a reference to the given bool and assigns it to the ShowPushPrompt field.

func (*CurrentUser) SetSmartAlbumsOff

func (o *CurrentUser) SetSmartAlbumsOff(v bool)

SetSmartAlbumsOff gets a reference to the given bool and assigns it to the SmartAlbumsOff field.

func (*CurrentUser) SetSmartSuggestionsOff

func (o *CurrentUser) SetSmartSuggestionsOff(v bool)

SetSmartSuggestionsOff gets a reference to the given bool and assigns it to the SmartSuggestionsOff field.

func (*CurrentUser) SetSubscriptionsLaunched

func (o *CurrentUser) SetSubscriptionsLaunched(v bool)

SetSubscriptionsLaunched gets a reference to the given bool and assigns it to the SubscriptionsLaunched field.

func (*CurrentUser) SetTestAccount

func (o *CurrentUser) SetTestAccount(v string)

SetTestAccount gets a reference to the given string and assigns it to the TestAccount field.

func (*CurrentUser) SetThanksLaunched

func (o *CurrentUser) SetThanksLaunched(v bool)

SetThanksLaunched gets a reference to the given bool and assigns it to the ThanksLaunched field.

func (*CurrentUser) SetTooltipAddPhotosSeen

func (o *CurrentUser) SetTooltipAddPhotosSeen(v bool)

SetTooltipAddPhotosSeen gets a reference to the given bool and assigns it to the TooltipAddPhotosSeen field.

func (*CurrentUser) SetTooltipAddedPhotosSeen

func (o *CurrentUser) SetTooltipAddedPhotosSeen(v bool)

SetTooltipAddedPhotosSeen gets a reference to the given bool and assigns it to the TooltipAddedPhotosSeen field.

func (*CurrentUser) SetTooltipGesturesSeen

func (o *CurrentUser) SetTooltipGesturesSeen(v bool)

SetTooltipGesturesSeen gets a reference to the given bool and assigns it to the TooltipGesturesSeen field.

func (*CurrentUser) SetTooltipInboxSeen

func (o *CurrentUser) SetTooltipInboxSeen(v bool)

SetTooltipInboxSeen gets a reference to the given bool and assigns it to the TooltipInboxSeen field.

func (*CurrentUser) SetTooltipManageFramesSeen

func (o *CurrentUser) SetTooltipManageFramesSeen(v bool)

SetTooltipManageFramesSeen gets a reference to the given bool and assigns it to the TooltipManageFramesSeen field.

func (*CurrentUser) SetTooltipSettingsSeen

func (o *CurrentUser) SetTooltipSettingsSeen(v bool)

SetTooltipSettingsSeen gets a reference to the given bool and assigns it to the TooltipSettingsSeen field.

func (*CurrentUser) SetUnconfirmedEmail

func (o *CurrentUser) SetUnconfirmedEmail(v string)

SetUnconfirmedEmail gets a reference to the given string and assigns it to the UnconfirmedEmail field.

func (*CurrentUser) SetUpdatedAt

func (o *CurrentUser) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given string and assigns it to the UpdatedAt field.

func (*CurrentUser) SetVerboseLoggingEnabled

func (o *CurrentUser) SetVerboseLoggingEnabled(v bool)

SetVerboseLoggingEnabled gets a reference to the given bool and assigns it to the VerboseLoggingEnabled field.

func (*CurrentUser) SetWarnSmartAlbumsDeprecated

func (o *CurrentUser) SetWarnSmartAlbumsDeprecated(v bool)

SetWarnSmartAlbumsDeprecated gets a reference to the given bool and assigns it to the WarnSmartAlbumsDeprecated field.

type Features

type Features struct {
	Id *string `json:"id,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) GetId

func (o *Features) GetId() string

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

func (*Features) GetIdOk

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

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

func (*Features) HasId

func (o *Features) HasId() bool

HasId returns a boolean if a field has been set.

func (Features) MarshalJSON

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

func (*Features) SetId

func (o *Features) SetId(v string)

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

type FeedItem

type FeedItem struct {
	Assets   []Asset   `json:"assets,omitempty"`
	Metadata *Metadata `json:"metadata,omitempty"`
	Message  *string   `json:"message,omitempty"`
	StickFor *string   `json:"stick_for,omitempty"`
}

FeedItem struct for FeedItem

func NewFeedItem

func NewFeedItem() *FeedItem

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

func NewFeedItemWithDefaults

func NewFeedItemWithDefaults() *FeedItem

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

func (*FeedItem) GetAssets

func (o *FeedItem) GetAssets() []Asset

GetAssets returns the Assets field value if set, zero value otherwise.

func (*FeedItem) GetAssetsOk

func (o *FeedItem) GetAssetsOk() ([]Asset, bool)

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

func (*FeedItem) GetMessage

func (o *FeedItem) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*FeedItem) GetMessageOk

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

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

func (*FeedItem) GetMetadata

func (o *FeedItem) GetMetadata() Metadata

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*FeedItem) GetMetadataOk

func (o *FeedItem) GetMetadataOk() (*Metadata, bool)

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

func (*FeedItem) GetStickFor

func (o *FeedItem) GetStickFor() string

GetStickFor returns the StickFor field value if set, zero value otherwise.

func (*FeedItem) GetStickForOk

func (o *FeedItem) GetStickForOk() (*string, bool)

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

func (*FeedItem) HasAssets

func (o *FeedItem) HasAssets() bool

HasAssets returns a boolean if a field has been set.

func (*FeedItem) HasMessage

func (o *FeedItem) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*FeedItem) HasMetadata

func (o *FeedItem) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*FeedItem) HasStickFor

func (o *FeedItem) HasStickFor() bool

HasStickFor returns a boolean if a field has been set.

func (FeedItem) MarshalJSON

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

func (*FeedItem) SetAssets

func (o *FeedItem) SetAssets(v []Asset)

SetAssets gets a reference to the given []Asset and assigns it to the Assets field.

func (*FeedItem) SetMessage

func (o *FeedItem) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*FeedItem) SetMetadata

func (o *FeedItem) SetMetadata(v Metadata)

SetMetadata gets a reference to the given Metadata and assigns it to the Metadata field.

func (*FeedItem) SetStickFor

func (o *FeedItem) SetStickFor(v string)

SetStickFor gets a reference to the given string and assigns it to the StickFor field.

type Frame

type Frame struct {
	Id                         *string             `json:"id,omitempty"`
	Name                       *string             `json:"name,omitempty"`
	UserId                     *string             `json:"user_id,omitempty"`
	SoftwareVersion            *string             `json:"software_version,omitempty"`
	BuildVersion               *string             `json:"build_version,omitempty"`
	HwAndroidVersion           *string             `json:"hw_android_version,omitempty"`
	CreatedAt                  *string             `json:"created_at,omitempty"`
	UpdatedAt                  *string             `json:"updated_at,omitempty"`
	HandledAt                  *string             `json:"handled_at,omitempty"`
	DeletedAt                  *string             `json:"deleted_at,omitempty"`
	UpdatedAtOnClient          *string             `json:"updated_at_on_client,omitempty"`
	LastImpressionAt           *string             `json:"last_impression_at,omitempty"`
	Orientation                *string             `json:"orientation,omitempty"`
	AutoBrightness             *bool               `json:"auto_brightness,omitempty"`
	MinBrightness              *string             `json:"min_brightness,omitempty"`
	MaxBrightness              *string             `json:"max_brightness,omitempty"`
	Brightness                 *string             `json:"brightness,omitempty"`
	SenseMotion                *bool               `json:"sense_motion,omitempty"`
	DefaultSpeed               *string             `json:"default_speed,omitempty"`
	SlideshowInterval          *string             `json:"slideshow_interval,omitempty"`
	SlideshowAuto              *bool               `json:"slideshow_auto,omitempty"`
	Digits                     *string             `json:"digits,omitempty"`
	ContributorTokens          []ContributorTokens `json:"contributor_tokens,omitempty"`
	HwSerial                   *string             `json:"hw_serial,omitempty"`
	MattingColor               *string             `json:"matting_color,omitempty"`
	TrimColor                  *string             `json:"trim_color,omitempty"`
	IsHandling                 *bool               `json:"is_handling,omitempty"`
	CalibrationsLastModifiedAt *string             `json:"calibrations_last_modified_at,omitempty"`
	GesturesOn                 *bool               `json:"gestures_on,omitempty"`
	PortraitPairingOff         *string             `json:"portrait_pairing_off,omitempty"`
	LivePhotosOn               *bool               `json:"live_photos_on,omitempty"`
	AutoProcessedPlaylistIds   []string            `json:"auto_processed_playlist_ids,omitempty"`
	TimeZone                   *string             `json:"time_zone,omitempty"`
	WifiNetwork                *string             `json:"wifi_network,omitempty"`
	ColdBootAt                 *string             `json:"cold_boot_at,omitempty"`
	IsCharityWaterFrame        *bool               `json:"is_charity_water_frame,omitempty"`
	NumAssets                  *string             `json:"num_assets,omitempty"`
	ThanksOn                   *bool               `json:"thanks_on,omitempty"`
	FrameQueueUrl              *string             `json:"frame_queue_url,omitempty"`
	ClientQueueUrl             *string             `json:"client_queue_url,omitempty"`
	ScheduledDisplaySleep      *bool               `json:"scheduled_display_sleep,omitempty"`
	ScheduledDisplayOnAt       *string             `json:"scheduled_display_on_at,omitempty"`
	ScheduledDisplayOffAt      *string             `json:"scheduled_display_off_at,omitempty"`
	ForcedWifiState            *string             `json:"forced_wifi_state,omitempty"`
	ForcedWifiRecipientEmail   *string             `json:"forced_wifi_recipient_email,omitempty"`
	IsAnalogFrame              *bool               `json:"is_analog_frame,omitempty"`
	ControlType                *string             `json:"control_type,omitempty"`
	DisplayAspectRatio         *string             `json:"display_aspect_ratio,omitempty"`
	HasClaimableGift           *bool               `json:"has_claimable_gift,omitempty"`
	GiftBillingHint            *string             `json:"gift_billing_hint,omitempty"`
	Locale                     *string             `json:"locale,omitempty"`
	FrameType                  *string             `json:"frame_type,omitempty"`
	Description                *string             `json:"description,omitempty"`
	RepresentativeAssetId      *string             `json:"representative_asset_id,omitempty"`
	SortMode                   *string             `json:"sort_mode,omitempty"`
	EmailAddress               *string             `json:"email_address,omitempty"`
	Features                   []string            `json:"features,omitempty"`
	Volume                     *string             `json:"volume,omitempty"`
	User                       *User               `json:"user,omitempty"`
	Playlists                  []string            `json:"playlists,omitempty"`
	LastFeedItem               *FeedItem           `json:"last_feed_item,omitempty"`
	LastImpression             *Impression         `json:"last_impression,omitempty"`
	RecentAssets               []Asset             `json:"recent_assets,omitempty"`
	Contributors               []User              `json:"contributors,omitempty"`
	FrameEnvironment           *FrameEnvironment   `json:"frame_environment,omitempty"`
	CurrentPrintSet            *string             `json:"current_print_set,omitempty"`
	FirstPrintSet              *string             `json:"first_print_set,omitempty"`
	ChildAlbums                []string            `json:"child_albums,omitempty"`
	SmartAdds                  []string            `json:"smart_adds,omitempty"`
}

Frame struct for Frame

func NewFrame

func NewFrame() *Frame

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

func NewFrameWithDefaults

func NewFrameWithDefaults() *Frame

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

func (*Frame) GetAutoBrightness

func (o *Frame) GetAutoBrightness() bool

GetAutoBrightness returns the AutoBrightness field value if set, zero value otherwise.

func (*Frame) GetAutoBrightnessOk

func (o *Frame) GetAutoBrightnessOk() (*bool, bool)

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

func (*Frame) GetAutoProcessedPlaylistIds

func (o *Frame) GetAutoProcessedPlaylistIds() []string

GetAutoProcessedPlaylistIds returns the AutoProcessedPlaylistIds field value if set, zero value otherwise.

func (*Frame) GetAutoProcessedPlaylistIdsOk

func (o *Frame) GetAutoProcessedPlaylistIdsOk() ([]string, bool)

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

func (*Frame) GetBrightness

func (o *Frame) GetBrightness() string

GetBrightness returns the Brightness field value if set, zero value otherwise.

func (*Frame) GetBrightnessOk

func (o *Frame) GetBrightnessOk() (*string, bool)

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

func (*Frame) GetBuildVersion

func (o *Frame) GetBuildVersion() string

GetBuildVersion returns the BuildVersion field value if set, zero value otherwise.

func (*Frame) GetBuildVersionOk

func (o *Frame) GetBuildVersionOk() (*string, bool)

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

func (*Frame) GetCalibrationsLastModifiedAt

func (o *Frame) GetCalibrationsLastModifiedAt() string

GetCalibrationsLastModifiedAt returns the CalibrationsLastModifiedAt field value if set, zero value otherwise.

func (*Frame) GetCalibrationsLastModifiedAtOk

func (o *Frame) GetCalibrationsLastModifiedAtOk() (*string, bool)

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

func (*Frame) GetChildAlbums

func (o *Frame) GetChildAlbums() []string

GetChildAlbums returns the ChildAlbums field value if set, zero value otherwise.

func (*Frame) GetChildAlbumsOk

func (o *Frame) GetChildAlbumsOk() ([]string, bool)

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

func (*Frame) GetClientQueueUrl

func (o *Frame) GetClientQueueUrl() string

GetClientQueueUrl returns the ClientQueueUrl field value if set, zero value otherwise.

func (*Frame) GetClientQueueUrlOk

func (o *Frame) GetClientQueueUrlOk() (*string, bool)

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

func (*Frame) GetColdBootAt

func (o *Frame) GetColdBootAt() string

GetColdBootAt returns the ColdBootAt field value if set, zero value otherwise.

func (*Frame) GetColdBootAtOk

func (o *Frame) GetColdBootAtOk() (*string, bool)

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

func (*Frame) GetContributorTokens

func (o *Frame) GetContributorTokens() []ContributorTokens

GetContributorTokens returns the ContributorTokens field value if set, zero value otherwise.

func (*Frame) GetContributorTokensOk

func (o *Frame) GetContributorTokensOk() ([]ContributorTokens, bool)

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

func (*Frame) GetContributors

func (o *Frame) GetContributors() []User

GetContributors returns the Contributors field value if set, zero value otherwise.

func (*Frame) GetContributorsOk

func (o *Frame) GetContributorsOk() ([]User, bool)

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

func (*Frame) GetControlType

func (o *Frame) GetControlType() string

GetControlType returns the ControlType field value if set, zero value otherwise.

func (*Frame) GetControlTypeOk

func (o *Frame) GetControlTypeOk() (*string, bool)

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

func (*Frame) GetCreatedAt

func (o *Frame) GetCreatedAt() string

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

func (*Frame) GetCreatedAtOk

func (o *Frame) GetCreatedAtOk() (*string, bool)

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

func (*Frame) GetCurrentPrintSet

func (o *Frame) GetCurrentPrintSet() string

GetCurrentPrintSet returns the CurrentPrintSet field value if set, zero value otherwise.

func (*Frame) GetCurrentPrintSetOk

func (o *Frame) GetCurrentPrintSetOk() (*string, bool)

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

func (*Frame) GetDefaultSpeed

func (o *Frame) GetDefaultSpeed() string

GetDefaultSpeed returns the DefaultSpeed field value if set, zero value otherwise.

func (*Frame) GetDefaultSpeedOk

func (o *Frame) GetDefaultSpeedOk() (*string, bool)

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

func (*Frame) GetDeletedAt

func (o *Frame) GetDeletedAt() string

GetDeletedAt returns the DeletedAt field value if set, zero value otherwise.

func (*Frame) GetDeletedAtOk

func (o *Frame) GetDeletedAtOk() (*string, bool)

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

func (*Frame) GetDescription

func (o *Frame) GetDescription() string

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

func (*Frame) GetDescriptionOk

func (o *Frame) 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 (*Frame) GetDigits

func (o *Frame) GetDigits() string

GetDigits returns the Digits field value if set, zero value otherwise.

func (*Frame) GetDigitsOk

func (o *Frame) GetDigitsOk() (*string, bool)

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

func (*Frame) GetDisplayAspectRatio

func (o *Frame) GetDisplayAspectRatio() string

GetDisplayAspectRatio returns the DisplayAspectRatio field value if set, zero value otherwise.

func (*Frame) GetDisplayAspectRatioOk

func (o *Frame) GetDisplayAspectRatioOk() (*string, bool)

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

func (*Frame) GetEmailAddress

func (o *Frame) GetEmailAddress() string

GetEmailAddress returns the EmailAddress field value if set, zero value otherwise.

func (*Frame) GetEmailAddressOk

func (o *Frame) 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 (*Frame) GetFeatures

func (o *Frame) GetFeatures() []string

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

func (*Frame) GetFeaturesOk

func (o *Frame) GetFeaturesOk() ([]string, 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 (*Frame) GetFirstPrintSet

func (o *Frame) GetFirstPrintSet() string

GetFirstPrintSet returns the FirstPrintSet field value if set, zero value otherwise.

func (*Frame) GetFirstPrintSetOk

func (o *Frame) GetFirstPrintSetOk() (*string, bool)

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

func (*Frame) GetForcedWifiRecipientEmail

func (o *Frame) GetForcedWifiRecipientEmail() string

GetForcedWifiRecipientEmail returns the ForcedWifiRecipientEmail field value if set, zero value otherwise.

func (*Frame) GetForcedWifiRecipientEmailOk

func (o *Frame) GetForcedWifiRecipientEmailOk() (*string, bool)

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

func (*Frame) GetForcedWifiState

func (o *Frame) GetForcedWifiState() string

GetForcedWifiState returns the ForcedWifiState field value if set, zero value otherwise.

func (*Frame) GetForcedWifiStateOk

func (o *Frame) GetForcedWifiStateOk() (*string, bool)

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

func (*Frame) GetFrameEnvironment

func (o *Frame) GetFrameEnvironment() FrameEnvironment

GetFrameEnvironment returns the FrameEnvironment field value if set, zero value otherwise.

func (*Frame) GetFrameEnvironmentOk

func (o *Frame) GetFrameEnvironmentOk() (*FrameEnvironment, bool)

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

func (*Frame) GetFrameQueueUrl

func (o *Frame) GetFrameQueueUrl() string

GetFrameQueueUrl returns the FrameQueueUrl field value if set, zero value otherwise.

func (*Frame) GetFrameQueueUrlOk

func (o *Frame) GetFrameQueueUrlOk() (*string, bool)

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

func (*Frame) GetFrameType

func (o *Frame) GetFrameType() string

GetFrameType returns the FrameType field value if set, zero value otherwise.

func (*Frame) GetFrameTypeOk

func (o *Frame) GetFrameTypeOk() (*string, bool)

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

func (*Frame) GetGesturesOn

func (o *Frame) GetGesturesOn() bool

GetGesturesOn returns the GesturesOn field value if set, zero value otherwise.

func (*Frame) GetGesturesOnOk

func (o *Frame) GetGesturesOnOk() (*bool, bool)

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

func (*Frame) GetGiftBillingHint

func (o *Frame) GetGiftBillingHint() string

GetGiftBillingHint returns the GiftBillingHint field value if set, zero value otherwise.

func (*Frame) GetGiftBillingHintOk

func (o *Frame) GetGiftBillingHintOk() (*string, bool)

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

func (*Frame) GetHandledAt

func (o *Frame) GetHandledAt() string

GetHandledAt returns the HandledAt field value if set, zero value otherwise.

func (*Frame) GetHandledAtOk

func (o *Frame) GetHandledAtOk() (*string, bool)

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

func (*Frame) GetHasClaimableGift

func (o *Frame) GetHasClaimableGift() bool

GetHasClaimableGift returns the HasClaimableGift field value if set, zero value otherwise.

func (*Frame) GetHasClaimableGiftOk

func (o *Frame) GetHasClaimableGiftOk() (*bool, bool)

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

func (*Frame) GetHwAndroidVersion

func (o *Frame) GetHwAndroidVersion() string

GetHwAndroidVersion returns the HwAndroidVersion field value if set, zero value otherwise.

func (*Frame) GetHwAndroidVersionOk

func (o *Frame) GetHwAndroidVersionOk() (*string, bool)

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

func (*Frame) GetHwSerial

func (o *Frame) GetHwSerial() string

GetHwSerial returns the HwSerial field value if set, zero value otherwise.

func (*Frame) GetHwSerialOk

func (o *Frame) GetHwSerialOk() (*string, bool)

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

func (*Frame) GetId

func (o *Frame) GetId() string

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

func (*Frame) GetIdOk

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

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

func (*Frame) GetIsAnalogFrame

func (o *Frame) GetIsAnalogFrame() bool

GetIsAnalogFrame returns the IsAnalogFrame field value if set, zero value otherwise.

func (*Frame) GetIsAnalogFrameOk

func (o *Frame) GetIsAnalogFrameOk() (*bool, bool)

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

func (*Frame) GetIsCharityWaterFrame

func (o *Frame) GetIsCharityWaterFrame() bool

GetIsCharityWaterFrame returns the IsCharityWaterFrame field value if set, zero value otherwise.

func (*Frame) GetIsCharityWaterFrameOk

func (o *Frame) GetIsCharityWaterFrameOk() (*bool, bool)

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

func (*Frame) GetIsHandling

func (o *Frame) GetIsHandling() bool

GetIsHandling returns the IsHandling field value if set, zero value otherwise.

func (*Frame) GetIsHandlingOk

func (o *Frame) GetIsHandlingOk() (*bool, bool)

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

func (*Frame) GetLastFeedItem

func (o *Frame) GetLastFeedItem() FeedItem

GetLastFeedItem returns the LastFeedItem field value if set, zero value otherwise.

func (*Frame) GetLastFeedItemOk

func (o *Frame) GetLastFeedItemOk() (*FeedItem, bool)

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

func (*Frame) GetLastImpression

func (o *Frame) GetLastImpression() Impression

GetLastImpression returns the LastImpression field value if set, zero value otherwise.

func (*Frame) GetLastImpressionAt

func (o *Frame) GetLastImpressionAt() string

GetLastImpressionAt returns the LastImpressionAt field value if set, zero value otherwise.

func (*Frame) GetLastImpressionAtOk

func (o *Frame) GetLastImpressionAtOk() (*string, bool)

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

func (*Frame) GetLastImpressionOk

func (o *Frame) GetLastImpressionOk() (*Impression, bool)

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

func (*Frame) GetLivePhotosOn

func (o *Frame) GetLivePhotosOn() bool

GetLivePhotosOn returns the LivePhotosOn field value if set, zero value otherwise.

func (*Frame) GetLivePhotosOnOk

func (o *Frame) GetLivePhotosOnOk() (*bool, bool)

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

func (*Frame) GetLocale

func (o *Frame) GetLocale() string

GetLocale returns the Locale field value if set, zero value otherwise.

func (*Frame) GetLocaleOk

func (o *Frame) GetLocaleOk() (*string, bool)

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

func (*Frame) GetMattingColor

func (o *Frame) GetMattingColor() string

GetMattingColor returns the MattingColor field value if set, zero value otherwise.

func (*Frame) GetMattingColorOk

func (o *Frame) GetMattingColorOk() (*string, bool)

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

func (*Frame) GetMaxBrightness

func (o *Frame) GetMaxBrightness() string

GetMaxBrightness returns the MaxBrightness field value if set, zero value otherwise.

func (*Frame) GetMaxBrightnessOk

func (o *Frame) GetMaxBrightnessOk() (*string, bool)

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

func (*Frame) GetMinBrightness

func (o *Frame) GetMinBrightness() string

GetMinBrightness returns the MinBrightness field value if set, zero value otherwise.

func (*Frame) GetMinBrightnessOk

func (o *Frame) GetMinBrightnessOk() (*string, bool)

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

func (*Frame) GetName

func (o *Frame) GetName() string

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

func (*Frame) GetNameOk

func (o *Frame) 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 (*Frame) GetNumAssets

func (o *Frame) GetNumAssets() string

GetNumAssets returns the NumAssets field value if set, zero value otherwise.

func (*Frame) GetNumAssetsOk

func (o *Frame) GetNumAssetsOk() (*string, bool)

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

func (*Frame) GetOrientation

func (o *Frame) GetOrientation() string

GetOrientation returns the Orientation field value if set, zero value otherwise.

func (*Frame) GetOrientationOk

func (o *Frame) GetOrientationOk() (*string, bool)

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

func (*Frame) GetPlaylists

func (o *Frame) GetPlaylists() []string

GetPlaylists returns the Playlists field value if set, zero value otherwise.

func (*Frame) GetPlaylistsOk

func (o *Frame) GetPlaylistsOk() ([]string, bool)

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

func (*Frame) GetPortraitPairingOff

func (o *Frame) GetPortraitPairingOff() string

GetPortraitPairingOff returns the PortraitPairingOff field value if set, zero value otherwise.

func (*Frame) GetPortraitPairingOffOk

func (o *Frame) GetPortraitPairingOffOk() (*string, bool)

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

func (*Frame) GetRecentAssets

func (o *Frame) GetRecentAssets() []Asset

GetRecentAssets returns the RecentAssets field value if set, zero value otherwise.

func (*Frame) GetRecentAssetsOk

func (o *Frame) GetRecentAssetsOk() ([]Asset, bool)

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

func (*Frame) GetRepresentativeAssetId

func (o *Frame) GetRepresentativeAssetId() string

GetRepresentativeAssetId returns the RepresentativeAssetId field value if set, zero value otherwise.

func (*Frame) GetRepresentativeAssetIdOk

func (o *Frame) GetRepresentativeAssetIdOk() (*string, bool)

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

func (*Frame) GetScheduledDisplayOffAt

func (o *Frame) GetScheduledDisplayOffAt() string

GetScheduledDisplayOffAt returns the ScheduledDisplayOffAt field value if set, zero value otherwise.

func (*Frame) GetScheduledDisplayOffAtOk

func (o *Frame) GetScheduledDisplayOffAtOk() (*string, bool)

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

func (*Frame) GetScheduledDisplayOnAt

func (o *Frame) GetScheduledDisplayOnAt() string

GetScheduledDisplayOnAt returns the ScheduledDisplayOnAt field value if set, zero value otherwise.

func (*Frame) GetScheduledDisplayOnAtOk

func (o *Frame) GetScheduledDisplayOnAtOk() (*string, bool)

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

func (*Frame) GetScheduledDisplaySleep

func (o *Frame) GetScheduledDisplaySleep() bool

GetScheduledDisplaySleep returns the ScheduledDisplaySleep field value if set, zero value otherwise.

func (*Frame) GetScheduledDisplaySleepOk

func (o *Frame) GetScheduledDisplaySleepOk() (*bool, bool)

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

func (*Frame) GetSenseMotion

func (o *Frame) GetSenseMotion() bool

GetSenseMotion returns the SenseMotion field value if set, zero value otherwise.

func (*Frame) GetSenseMotionOk

func (o *Frame) GetSenseMotionOk() (*bool, bool)

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

func (*Frame) GetSlideshowAuto

func (o *Frame) GetSlideshowAuto() bool

GetSlideshowAuto returns the SlideshowAuto field value if set, zero value otherwise.

func (*Frame) GetSlideshowAutoOk

func (o *Frame) GetSlideshowAutoOk() (*bool, bool)

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

func (*Frame) GetSlideshowInterval

func (o *Frame) GetSlideshowInterval() string

GetSlideshowInterval returns the SlideshowInterval field value if set, zero value otherwise.

func (*Frame) GetSlideshowIntervalOk

func (o *Frame) GetSlideshowIntervalOk() (*string, bool)

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

func (*Frame) GetSmartAdds

func (o *Frame) GetSmartAdds() []string

GetSmartAdds returns the SmartAdds field value if set, zero value otherwise.

func (*Frame) GetSmartAddsOk

func (o *Frame) GetSmartAddsOk() ([]string, bool)

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

func (*Frame) GetSoftwareVersion

func (o *Frame) GetSoftwareVersion() string

GetSoftwareVersion returns the SoftwareVersion field value if set, zero value otherwise.

func (*Frame) GetSoftwareVersionOk

func (o *Frame) GetSoftwareVersionOk() (*string, bool)

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

func (*Frame) GetSortMode

func (o *Frame) GetSortMode() string

GetSortMode returns the SortMode field value if set, zero value otherwise.

func (*Frame) GetSortModeOk

func (o *Frame) GetSortModeOk() (*string, bool)

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

func (*Frame) GetThanksOn

func (o *Frame) GetThanksOn() bool

GetThanksOn returns the ThanksOn field value if set, zero value otherwise.

func (*Frame) GetThanksOnOk

func (o *Frame) GetThanksOnOk() (*bool, bool)

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

func (*Frame) GetTimeZone

func (o *Frame) GetTimeZone() string

GetTimeZone returns the TimeZone field value if set, zero value otherwise.

func (*Frame) GetTimeZoneOk

func (o *Frame) GetTimeZoneOk() (*string, 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 (*Frame) GetTrimColor

func (o *Frame) GetTrimColor() string

GetTrimColor returns the TrimColor field value if set, zero value otherwise.

func (*Frame) GetTrimColorOk

func (o *Frame) GetTrimColorOk() (*string, bool)

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

func (*Frame) GetUpdatedAt

func (o *Frame) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*Frame) GetUpdatedAtOk

func (o *Frame) GetUpdatedAtOk() (*string, bool)

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

func (*Frame) GetUpdatedAtOnClient

func (o *Frame) GetUpdatedAtOnClient() string

GetUpdatedAtOnClient returns the UpdatedAtOnClient field value if set, zero value otherwise.

func (*Frame) GetUpdatedAtOnClientOk

func (o *Frame) GetUpdatedAtOnClientOk() (*string, bool)

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

func (*Frame) GetUser

func (o *Frame) GetUser() User

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

func (*Frame) GetUserId

func (o *Frame) GetUserId() string

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

func (*Frame) GetUserIdOk

func (o *Frame) GetUserIdOk() (*string, 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 (*Frame) GetUserOk

func (o *Frame) 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 (*Frame) GetVolume

func (o *Frame) GetVolume() string

GetVolume returns the Volume field value if set, zero value otherwise.

func (*Frame) GetVolumeOk

func (o *Frame) GetVolumeOk() (*string, bool)

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

func (*Frame) GetWifiNetwork

func (o *Frame) GetWifiNetwork() string

GetWifiNetwork returns the WifiNetwork field value if set, zero value otherwise.

func (*Frame) GetWifiNetworkOk

func (o *Frame) GetWifiNetworkOk() (*string, bool)

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

func (*Frame) HasAutoBrightness

func (o *Frame) HasAutoBrightness() bool

HasAutoBrightness returns a boolean if a field has been set.

func (*Frame) HasAutoProcessedPlaylistIds

func (o *Frame) HasAutoProcessedPlaylistIds() bool

HasAutoProcessedPlaylistIds returns a boolean if a field has been set.

func (*Frame) HasBrightness

func (o *Frame) HasBrightness() bool

HasBrightness returns a boolean if a field has been set.

func (*Frame) HasBuildVersion

func (o *Frame) HasBuildVersion() bool

HasBuildVersion returns a boolean if a field has been set.

func (*Frame) HasCalibrationsLastModifiedAt

func (o *Frame) HasCalibrationsLastModifiedAt() bool

HasCalibrationsLastModifiedAt returns a boolean if a field has been set.

func (*Frame) HasChildAlbums

func (o *Frame) HasChildAlbums() bool

HasChildAlbums returns a boolean if a field has been set.

func (*Frame) HasClientQueueUrl

func (o *Frame) HasClientQueueUrl() bool

HasClientQueueUrl returns a boolean if a field has been set.

func (*Frame) HasColdBootAt

func (o *Frame) HasColdBootAt() bool

HasColdBootAt returns a boolean if a field has been set.

func (*Frame) HasContributorTokens

func (o *Frame) HasContributorTokens() bool

HasContributorTokens returns a boolean if a field has been set.

func (*Frame) HasContributors

func (o *Frame) HasContributors() bool

HasContributors returns a boolean if a field has been set.

func (*Frame) HasControlType

func (o *Frame) HasControlType() bool

HasControlType returns a boolean if a field has been set.

func (*Frame) HasCreatedAt

func (o *Frame) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Frame) HasCurrentPrintSet

func (o *Frame) HasCurrentPrintSet() bool

HasCurrentPrintSet returns a boolean if a field has been set.

func (*Frame) HasDefaultSpeed

func (o *Frame) HasDefaultSpeed() bool

HasDefaultSpeed returns a boolean if a field has been set.

func (*Frame) HasDeletedAt

func (o *Frame) HasDeletedAt() bool

HasDeletedAt returns a boolean if a field has been set.

func (*Frame) HasDescription

func (o *Frame) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Frame) HasDigits

func (o *Frame) HasDigits() bool

HasDigits returns a boolean if a field has been set.

func (*Frame) HasDisplayAspectRatio

func (o *Frame) HasDisplayAspectRatio() bool

HasDisplayAspectRatio returns a boolean if a field has been set.

func (*Frame) HasEmailAddress

func (o *Frame) HasEmailAddress() bool

HasEmailAddress returns a boolean if a field has been set.

func (*Frame) HasFeatures

func (o *Frame) HasFeatures() bool

HasFeatures returns a boolean if a field has been set.

func (*Frame) HasFirstPrintSet

func (o *Frame) HasFirstPrintSet() bool

HasFirstPrintSet returns a boolean if a field has been set.

func (*Frame) HasForcedWifiRecipientEmail

func (o *Frame) HasForcedWifiRecipientEmail() bool

HasForcedWifiRecipientEmail returns a boolean if a field has been set.

func (*Frame) HasForcedWifiState

func (o *Frame) HasForcedWifiState() bool

HasForcedWifiState returns a boolean if a field has been set.

func (*Frame) HasFrameEnvironment

func (o *Frame) HasFrameEnvironment() bool

HasFrameEnvironment returns a boolean if a field has been set.

func (*Frame) HasFrameQueueUrl

func (o *Frame) HasFrameQueueUrl() bool

HasFrameQueueUrl returns a boolean if a field has been set.

func (*Frame) HasFrameType

func (o *Frame) HasFrameType() bool

HasFrameType returns a boolean if a field has been set.

func (*Frame) HasGesturesOn

func (o *Frame) HasGesturesOn() bool

HasGesturesOn returns a boolean if a field has been set.

func (*Frame) HasGiftBillingHint

func (o *Frame) HasGiftBillingHint() bool

HasGiftBillingHint returns a boolean if a field has been set.

func (*Frame) HasHandledAt

func (o *Frame) HasHandledAt() bool

HasHandledAt returns a boolean if a field has been set.

func (*Frame) HasHasClaimableGift

func (o *Frame) HasHasClaimableGift() bool

HasHasClaimableGift returns a boolean if a field has been set.

func (*Frame) HasHwAndroidVersion

func (o *Frame) HasHwAndroidVersion() bool

HasHwAndroidVersion returns a boolean if a field has been set.

func (*Frame) HasHwSerial

func (o *Frame) HasHwSerial() bool

HasHwSerial returns a boolean if a field has been set.

func (*Frame) HasId

func (o *Frame) HasId() bool

HasId returns a boolean if a field has been set.

func (*Frame) HasIsAnalogFrame

func (o *Frame) HasIsAnalogFrame() bool

HasIsAnalogFrame returns a boolean if a field has been set.

func (*Frame) HasIsCharityWaterFrame

func (o *Frame) HasIsCharityWaterFrame() bool

HasIsCharityWaterFrame returns a boolean if a field has been set.

func (*Frame) HasIsHandling

func (o *Frame) HasIsHandling() bool

HasIsHandling returns a boolean if a field has been set.

func (*Frame) HasLastFeedItem

func (o *Frame) HasLastFeedItem() bool

HasLastFeedItem returns a boolean if a field has been set.

func (*Frame) HasLastImpression

func (o *Frame) HasLastImpression() bool

HasLastImpression returns a boolean if a field has been set.

func (*Frame) HasLastImpressionAt

func (o *Frame) HasLastImpressionAt() bool

HasLastImpressionAt returns a boolean if a field has been set.

func (*Frame) HasLivePhotosOn

func (o *Frame) HasLivePhotosOn() bool

HasLivePhotosOn returns a boolean if a field has been set.

func (*Frame) HasLocale

func (o *Frame) HasLocale() bool

HasLocale returns a boolean if a field has been set.

func (*Frame) HasMattingColor

func (o *Frame) HasMattingColor() bool

HasMattingColor returns a boolean if a field has been set.

func (*Frame) HasMaxBrightness

func (o *Frame) HasMaxBrightness() bool

HasMaxBrightness returns a boolean if a field has been set.

func (*Frame) HasMinBrightness

func (o *Frame) HasMinBrightness() bool

HasMinBrightness returns a boolean if a field has been set.

func (*Frame) HasName

func (o *Frame) HasName() bool

HasName returns a boolean if a field has been set.

func (*Frame) HasNumAssets

func (o *Frame) HasNumAssets() bool

HasNumAssets returns a boolean if a field has been set.

func (*Frame) HasOrientation

func (o *Frame) HasOrientation() bool

HasOrientation returns a boolean if a field has been set.

func (*Frame) HasPlaylists

func (o *Frame) HasPlaylists() bool

HasPlaylists returns a boolean if a field has been set.

func (*Frame) HasPortraitPairingOff

func (o *Frame) HasPortraitPairingOff() bool

HasPortraitPairingOff returns a boolean if a field has been set.

func (*Frame) HasRecentAssets

func (o *Frame) HasRecentAssets() bool

HasRecentAssets returns a boolean if a field has been set.

func (*Frame) HasRepresentativeAssetId

func (o *Frame) HasRepresentativeAssetId() bool

HasRepresentativeAssetId returns a boolean if a field has been set.

func (*Frame) HasScheduledDisplayOffAt

func (o *Frame) HasScheduledDisplayOffAt() bool

HasScheduledDisplayOffAt returns a boolean if a field has been set.

func (*Frame) HasScheduledDisplayOnAt

func (o *Frame) HasScheduledDisplayOnAt() bool

HasScheduledDisplayOnAt returns a boolean if a field has been set.

func (*Frame) HasScheduledDisplaySleep

func (o *Frame) HasScheduledDisplaySleep() bool

HasScheduledDisplaySleep returns a boolean if a field has been set.

func (*Frame) HasSenseMotion

func (o *Frame) HasSenseMotion() bool

HasSenseMotion returns a boolean if a field has been set.

func (*Frame) HasSlideshowAuto

func (o *Frame) HasSlideshowAuto() bool

HasSlideshowAuto returns a boolean if a field has been set.

func (*Frame) HasSlideshowInterval

func (o *Frame) HasSlideshowInterval() bool

HasSlideshowInterval returns a boolean if a field has been set.

func (*Frame) HasSmartAdds

func (o *Frame) HasSmartAdds() bool

HasSmartAdds returns a boolean if a field has been set.

func (*Frame) HasSoftwareVersion

func (o *Frame) HasSoftwareVersion() bool

HasSoftwareVersion returns a boolean if a field has been set.

func (*Frame) HasSortMode

func (o *Frame) HasSortMode() bool

HasSortMode returns a boolean if a field has been set.

func (*Frame) HasThanksOn

func (o *Frame) HasThanksOn() bool

HasThanksOn returns a boolean if a field has been set.

func (*Frame) HasTimeZone

func (o *Frame) HasTimeZone() bool

HasTimeZone returns a boolean if a field has been set.

func (*Frame) HasTrimColor

func (o *Frame) HasTrimColor() bool

HasTrimColor returns a boolean if a field has been set.

func (*Frame) HasUpdatedAt

func (o *Frame) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*Frame) HasUpdatedAtOnClient

func (o *Frame) HasUpdatedAtOnClient() bool

HasUpdatedAtOnClient returns a boolean if a field has been set.

func (*Frame) HasUser

func (o *Frame) HasUser() bool

HasUser returns a boolean if a field has been set.

func (*Frame) HasUserId

func (o *Frame) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (*Frame) HasVolume

func (o *Frame) HasVolume() bool

HasVolume returns a boolean if a field has been set.

func (*Frame) HasWifiNetwork

func (o *Frame) HasWifiNetwork() bool

HasWifiNetwork returns a boolean if a field has been set.

func (Frame) MarshalJSON

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

func (*Frame) SetAutoBrightness

func (o *Frame) SetAutoBrightness(v bool)

SetAutoBrightness gets a reference to the given bool and assigns it to the AutoBrightness field.

func (*Frame) SetAutoProcessedPlaylistIds

func (o *Frame) SetAutoProcessedPlaylistIds(v []string)

SetAutoProcessedPlaylistIds gets a reference to the given []string and assigns it to the AutoProcessedPlaylistIds field.

func (*Frame) SetBrightness

func (o *Frame) SetBrightness(v string)

SetBrightness gets a reference to the given string and assigns it to the Brightness field.

func (*Frame) SetBuildVersion

func (o *Frame) SetBuildVersion(v string)

SetBuildVersion gets a reference to the given string and assigns it to the BuildVersion field.

func (*Frame) SetCalibrationsLastModifiedAt

func (o *Frame) SetCalibrationsLastModifiedAt(v string)

SetCalibrationsLastModifiedAt gets a reference to the given string and assigns it to the CalibrationsLastModifiedAt field.

func (*Frame) SetChildAlbums

func (o *Frame) SetChildAlbums(v []string)

SetChildAlbums gets a reference to the given []string and assigns it to the ChildAlbums field.

func (*Frame) SetClientQueueUrl

func (o *Frame) SetClientQueueUrl(v string)

SetClientQueueUrl gets a reference to the given string and assigns it to the ClientQueueUrl field.

func (*Frame) SetColdBootAt

func (o *Frame) SetColdBootAt(v string)

SetColdBootAt gets a reference to the given string and assigns it to the ColdBootAt field.

func (*Frame) SetContributorTokens

func (o *Frame) SetContributorTokens(v []ContributorTokens)

SetContributorTokens gets a reference to the given []ContributorTokens and assigns it to the ContributorTokens field.

func (*Frame) SetContributors

func (o *Frame) SetContributors(v []User)

SetContributors gets a reference to the given []User and assigns it to the Contributors field.

func (*Frame) SetControlType

func (o *Frame) SetControlType(v string)

SetControlType gets a reference to the given string and assigns it to the ControlType field.

func (*Frame) SetCreatedAt

func (o *Frame) SetCreatedAt(v string)

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

func (*Frame) SetCurrentPrintSet

func (o *Frame) SetCurrentPrintSet(v string)

SetCurrentPrintSet gets a reference to the given string and assigns it to the CurrentPrintSet field.

func (*Frame) SetDefaultSpeed

func (o *Frame) SetDefaultSpeed(v string)

SetDefaultSpeed gets a reference to the given string and assigns it to the DefaultSpeed field.

func (*Frame) SetDeletedAt

func (o *Frame) SetDeletedAt(v string)

SetDeletedAt gets a reference to the given string and assigns it to the DeletedAt field.

func (*Frame) SetDescription

func (o *Frame) SetDescription(v string)

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

func (*Frame) SetDigits

func (o *Frame) SetDigits(v string)

SetDigits gets a reference to the given string and assigns it to the Digits field.

func (*Frame) SetDisplayAspectRatio

func (o *Frame) SetDisplayAspectRatio(v string)

SetDisplayAspectRatio gets a reference to the given string and assigns it to the DisplayAspectRatio field.

func (*Frame) SetEmailAddress

func (o *Frame) SetEmailAddress(v string)

SetEmailAddress gets a reference to the given string and assigns it to the EmailAddress field.

func (*Frame) SetFeatures

func (o *Frame) SetFeatures(v []string)

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

func (*Frame) SetFirstPrintSet

func (o *Frame) SetFirstPrintSet(v string)

SetFirstPrintSet gets a reference to the given string and assigns it to the FirstPrintSet field.

func (*Frame) SetForcedWifiRecipientEmail

func (o *Frame) SetForcedWifiRecipientEmail(v string)

SetForcedWifiRecipientEmail gets a reference to the given string and assigns it to the ForcedWifiRecipientEmail field.

func (*Frame) SetForcedWifiState

func (o *Frame) SetForcedWifiState(v string)

SetForcedWifiState gets a reference to the given string and assigns it to the ForcedWifiState field.

func (*Frame) SetFrameEnvironment

func (o *Frame) SetFrameEnvironment(v FrameEnvironment)

SetFrameEnvironment gets a reference to the given FrameEnvironment and assigns it to the FrameEnvironment field.

func (*Frame) SetFrameQueueUrl

func (o *Frame) SetFrameQueueUrl(v string)

SetFrameQueueUrl gets a reference to the given string and assigns it to the FrameQueueUrl field.

func (*Frame) SetFrameType

func (o *Frame) SetFrameType(v string)

SetFrameType gets a reference to the given string and assigns it to the FrameType field.

func (*Frame) SetGesturesOn

func (o *Frame) SetGesturesOn(v bool)

SetGesturesOn gets a reference to the given bool and assigns it to the GesturesOn field.

func (*Frame) SetGiftBillingHint

func (o *Frame) SetGiftBillingHint(v string)

SetGiftBillingHint gets a reference to the given string and assigns it to the GiftBillingHint field.

func (*Frame) SetHandledAt

func (o *Frame) SetHandledAt(v string)

SetHandledAt gets a reference to the given string and assigns it to the HandledAt field.

func (*Frame) SetHasClaimableGift

func (o *Frame) SetHasClaimableGift(v bool)

SetHasClaimableGift gets a reference to the given bool and assigns it to the HasClaimableGift field.

func (*Frame) SetHwAndroidVersion

func (o *Frame) SetHwAndroidVersion(v string)

SetHwAndroidVersion gets a reference to the given string and assigns it to the HwAndroidVersion field.

func (*Frame) SetHwSerial

func (o *Frame) SetHwSerial(v string)

SetHwSerial gets a reference to the given string and assigns it to the HwSerial field.

func (*Frame) SetId

func (o *Frame) SetId(v string)

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

func (*Frame) SetIsAnalogFrame

func (o *Frame) SetIsAnalogFrame(v bool)

SetIsAnalogFrame gets a reference to the given bool and assigns it to the IsAnalogFrame field.

func (*Frame) SetIsCharityWaterFrame

func (o *Frame) SetIsCharityWaterFrame(v bool)

SetIsCharityWaterFrame gets a reference to the given bool and assigns it to the IsCharityWaterFrame field.

func (*Frame) SetIsHandling

func (o *Frame) SetIsHandling(v bool)

SetIsHandling gets a reference to the given bool and assigns it to the IsHandling field.

func (*Frame) SetLastFeedItem

func (o *Frame) SetLastFeedItem(v FeedItem)

SetLastFeedItem gets a reference to the given FeedItem and assigns it to the LastFeedItem field.

func (*Frame) SetLastImpression

func (o *Frame) SetLastImpression(v Impression)

SetLastImpression gets a reference to the given Impression and assigns it to the LastImpression field.

func (*Frame) SetLastImpressionAt

func (o *Frame) SetLastImpressionAt(v string)

SetLastImpressionAt gets a reference to the given string and assigns it to the LastImpressionAt field.

func (*Frame) SetLivePhotosOn

func (o *Frame) SetLivePhotosOn(v bool)

SetLivePhotosOn gets a reference to the given bool and assigns it to the LivePhotosOn field.

func (*Frame) SetLocale

func (o *Frame) SetLocale(v string)

SetLocale gets a reference to the given string and assigns it to the Locale field.

func (*Frame) SetMattingColor

func (o *Frame) SetMattingColor(v string)

SetMattingColor gets a reference to the given string and assigns it to the MattingColor field.

func (*Frame) SetMaxBrightness

func (o *Frame) SetMaxBrightness(v string)

SetMaxBrightness gets a reference to the given string and assigns it to the MaxBrightness field.

func (*Frame) SetMinBrightness

func (o *Frame) SetMinBrightness(v string)

SetMinBrightness gets a reference to the given string and assigns it to the MinBrightness field.

func (*Frame) SetName

func (o *Frame) SetName(v string)

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

func (*Frame) SetNumAssets

func (o *Frame) SetNumAssets(v string)

SetNumAssets gets a reference to the given string and assigns it to the NumAssets field.

func (*Frame) SetOrientation

func (o *Frame) SetOrientation(v string)

SetOrientation gets a reference to the given string and assigns it to the Orientation field.

func (*Frame) SetPlaylists

func (o *Frame) SetPlaylists(v []string)

SetPlaylists gets a reference to the given []string and assigns it to the Playlists field.

func (*Frame) SetPortraitPairingOff

func (o *Frame) SetPortraitPairingOff(v string)

SetPortraitPairingOff gets a reference to the given string and assigns it to the PortraitPairingOff field.

func (*Frame) SetRecentAssets

func (o *Frame) SetRecentAssets(v []Asset)

SetRecentAssets gets a reference to the given []Asset and assigns it to the RecentAssets field.

func (*Frame) SetRepresentativeAssetId

func (o *Frame) SetRepresentativeAssetId(v string)

SetRepresentativeAssetId gets a reference to the given string and assigns it to the RepresentativeAssetId field.

func (*Frame) SetScheduledDisplayOffAt

func (o *Frame) SetScheduledDisplayOffAt(v string)

SetScheduledDisplayOffAt gets a reference to the given string and assigns it to the ScheduledDisplayOffAt field.

func (*Frame) SetScheduledDisplayOnAt

func (o *Frame) SetScheduledDisplayOnAt(v string)

SetScheduledDisplayOnAt gets a reference to the given string and assigns it to the ScheduledDisplayOnAt field.

func (*Frame) SetScheduledDisplaySleep

func (o *Frame) SetScheduledDisplaySleep(v bool)

SetScheduledDisplaySleep gets a reference to the given bool and assigns it to the ScheduledDisplaySleep field.

func (*Frame) SetSenseMotion

func (o *Frame) SetSenseMotion(v bool)

SetSenseMotion gets a reference to the given bool and assigns it to the SenseMotion field.

func (*Frame) SetSlideshowAuto

func (o *Frame) SetSlideshowAuto(v bool)

SetSlideshowAuto gets a reference to the given bool and assigns it to the SlideshowAuto field.

func (*Frame) SetSlideshowInterval

func (o *Frame) SetSlideshowInterval(v string)

SetSlideshowInterval gets a reference to the given string and assigns it to the SlideshowInterval field.

func (*Frame) SetSmartAdds

func (o *Frame) SetSmartAdds(v []string)

SetSmartAdds gets a reference to the given []string and assigns it to the SmartAdds field.

func (*Frame) SetSoftwareVersion

func (o *Frame) SetSoftwareVersion(v string)

SetSoftwareVersion gets a reference to the given string and assigns it to the SoftwareVersion field.

func (*Frame) SetSortMode

func (o *Frame) SetSortMode(v string)

SetSortMode gets a reference to the given string and assigns it to the SortMode field.

func (*Frame) SetThanksOn

func (o *Frame) SetThanksOn(v bool)

SetThanksOn gets a reference to the given bool and assigns it to the ThanksOn field.

func (*Frame) SetTimeZone

func (o *Frame) SetTimeZone(v string)

SetTimeZone gets a reference to the given string and assigns it to the TimeZone field.

func (*Frame) SetTrimColor

func (o *Frame) SetTrimColor(v string)

SetTrimColor gets a reference to the given string and assigns it to the TrimColor field.

func (*Frame) SetUpdatedAt

func (o *Frame) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given string and assigns it to the UpdatedAt field.

func (*Frame) SetUpdatedAtOnClient

func (o *Frame) SetUpdatedAtOnClient(v string)

SetUpdatedAtOnClient gets a reference to the given string and assigns it to the UpdatedAtOnClient field.

func (*Frame) SetUser

func (o *Frame) SetUser(v User)

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

func (*Frame) SetUserId

func (o *Frame) SetUserId(v string)

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

func (*Frame) SetVolume

func (o *Frame) SetVolume(v string)

SetVolume gets a reference to the given string and assigns it to the Volume field.

func (*Frame) SetWifiNetwork

func (o *Frame) SetWifiNetwork(v string)

SetWifiNetwork gets a reference to the given string and assigns it to the WifiNetwork field.

type FrameEnvironment

type FrameEnvironment struct {
	Id           *string `json:"id,omitempty"`
	FrameId      *string `json:"frame_id,omitempty"`
	LastOnlineAt *string `json:"last_online_at,omitempty"`
	CreatedAt    *string `json:"created_at,omitempty"`
	UpdatedAt    *string `json:"updated_at,omitempty"`
}

FrameEnvironment struct for FrameEnvironment

func NewFrameEnvironment

func NewFrameEnvironment() *FrameEnvironment

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

func NewFrameEnvironmentWithDefaults

func NewFrameEnvironmentWithDefaults() *FrameEnvironment

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

func (*FrameEnvironment) GetCreatedAt

func (o *FrameEnvironment) GetCreatedAt() string

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

func (*FrameEnvironment) GetCreatedAtOk

func (o *FrameEnvironment) GetCreatedAtOk() (*string, bool)

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

func (*FrameEnvironment) GetFrameId

func (o *FrameEnvironment) GetFrameId() string

GetFrameId returns the FrameId field value if set, zero value otherwise.

func (*FrameEnvironment) GetFrameIdOk

func (o *FrameEnvironment) GetFrameIdOk() (*string, bool)

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

func (*FrameEnvironment) GetId

func (o *FrameEnvironment) GetId() string

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

func (*FrameEnvironment) GetIdOk

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

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

func (*FrameEnvironment) GetLastOnlineAt

func (o *FrameEnvironment) GetLastOnlineAt() string

GetLastOnlineAt returns the LastOnlineAt field value if set, zero value otherwise.

func (*FrameEnvironment) GetLastOnlineAtOk

func (o *FrameEnvironment) GetLastOnlineAtOk() (*string, bool)

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

func (*FrameEnvironment) GetUpdatedAt

func (o *FrameEnvironment) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*FrameEnvironment) GetUpdatedAtOk

func (o *FrameEnvironment) GetUpdatedAtOk() (*string, bool)

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

func (*FrameEnvironment) HasCreatedAt

func (o *FrameEnvironment) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*FrameEnvironment) HasFrameId

func (o *FrameEnvironment) HasFrameId() bool

HasFrameId returns a boolean if a field has been set.

func (*FrameEnvironment) HasId

func (o *FrameEnvironment) HasId() bool

HasId returns a boolean if a field has been set.

func (*FrameEnvironment) HasLastOnlineAt

func (o *FrameEnvironment) HasLastOnlineAt() bool

HasLastOnlineAt returns a boolean if a field has been set.

func (*FrameEnvironment) HasUpdatedAt

func (o *FrameEnvironment) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (FrameEnvironment) MarshalJSON

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

func (*FrameEnvironment) SetCreatedAt

func (o *FrameEnvironment) SetCreatedAt(v string)

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

func (*FrameEnvironment) SetFrameId

func (o *FrameEnvironment) SetFrameId(v string)

SetFrameId gets a reference to the given string and assigns it to the FrameId field.

func (*FrameEnvironment) SetId

func (o *FrameEnvironment) SetId(v string)

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

func (*FrameEnvironment) SetLastOnlineAt

func (o *FrameEnvironment) SetLastOnlineAt(v string)

SetLastOnlineAt gets a reference to the given string and assigns it to the LastOnlineAt field.

func (*FrameEnvironment) SetUpdatedAt

func (o *FrameEnvironment) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given string and assigns it to the UpdatedAt field.

type Frames

type Frames struct {
	Frames []Frame `json:"frames,omitempty"`
}

Frames struct for Frames

func NewFrames

func NewFrames() *Frames

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

func NewFramesWithDefaults

func NewFramesWithDefaults() *Frames

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

func (*Frames) GetFrames

func (o *Frames) GetFrames() []Frame

GetFrames returns the Frames field value if set, zero value otherwise.

func (*Frames) GetFramesOk

func (o *Frames) GetFramesOk() ([]Frame, bool)

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

func (*Frames) HasFrames

func (o *Frames) HasFrames() bool

HasFrames returns a boolean if a field has been set.

func (Frames) MarshalJSON

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

func (*Frames) SetFrames

func (o *Frames) SetFrames(v []Frame)

SetFrames gets a reference to the given []Frame and assigns it to the Frames field.

type FramesApiService

type FramesApiService service

FramesApiService FramesApi service

func (*FramesApiService) GetFrames

GetFrames Access to an Aura Frame

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

func (*FramesApiService) GetFramesExecute

func (a *FramesApiService) GetFramesExecute(r ApiGetFramesRequest) (*Frames, *http.Response, error)

Execute executes the request

@return Frames

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 Impression

type Impression struct {
	LastViewedOrCreatedAt *string `json:"last_viewed_or_created_at,omitempty"`
	ViewCount             *string `json:"view_count,omitempty"`
	GestureDirection      *string `json:"gesture_direction,omitempty"`
	CreatedAt             *string `json:"created_at,omitempty"`
	LivePhotoOnTransition *string `json:"live_photo_on_transition,omitempty"`
	ViewedAt              *string `json:"viewed_at,omitempty"`
	Id                    *string `json:"id,omitempty"`
	LastViewedAt          *string `json:"last_viewed_at,omitempty"`
	LastShownWithAssetId  *string `json:"last_shown_with_asset_id,omitempty"`
	FrameId               *string `json:"frame_id,omitempty"`
	AssetId               *string `json:"asset_id,omitempty"`
	Asset                 *Asset  `json:"asset,omitempty"`
}

Impression struct for Impression

func NewImpression

func NewImpression() *Impression

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

func NewImpressionWithDefaults

func NewImpressionWithDefaults() *Impression

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

func (*Impression) GetAsset

func (o *Impression) GetAsset() Asset

GetAsset returns the Asset field value if set, zero value otherwise.

func (*Impression) GetAssetId

func (o *Impression) GetAssetId() string

GetAssetId returns the AssetId field value if set, zero value otherwise.

func (*Impression) GetAssetIdOk

func (o *Impression) GetAssetIdOk() (*string, bool)

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

func (*Impression) GetAssetOk

func (o *Impression) GetAssetOk() (*Asset, bool)

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

func (*Impression) GetCreatedAt

func (o *Impression) GetCreatedAt() string

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

func (*Impression) GetCreatedAtOk

func (o *Impression) GetCreatedAtOk() (*string, bool)

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

func (*Impression) GetFrameId

func (o *Impression) GetFrameId() string

GetFrameId returns the FrameId field value if set, zero value otherwise.

func (*Impression) GetFrameIdOk

func (o *Impression) GetFrameIdOk() (*string, bool)

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

func (*Impression) GetGestureDirection

func (o *Impression) GetGestureDirection() string

GetGestureDirection returns the GestureDirection field value if set, zero value otherwise.

func (*Impression) GetGestureDirectionOk

func (o *Impression) GetGestureDirectionOk() (*string, bool)

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

func (*Impression) GetId

func (o *Impression) GetId() string

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

func (*Impression) GetIdOk

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

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

func (*Impression) GetLastShownWithAssetId

func (o *Impression) GetLastShownWithAssetId() string

GetLastShownWithAssetId returns the LastShownWithAssetId field value if set, zero value otherwise.

func (*Impression) GetLastShownWithAssetIdOk

func (o *Impression) GetLastShownWithAssetIdOk() (*string, bool)

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

func (*Impression) GetLastViewedAt

func (o *Impression) GetLastViewedAt() string

GetLastViewedAt returns the LastViewedAt field value if set, zero value otherwise.

func (*Impression) GetLastViewedAtOk

func (o *Impression) GetLastViewedAtOk() (*string, bool)

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

func (*Impression) GetLastViewedOrCreatedAt

func (o *Impression) GetLastViewedOrCreatedAt() string

GetLastViewedOrCreatedAt returns the LastViewedOrCreatedAt field value if set, zero value otherwise.

func (*Impression) GetLastViewedOrCreatedAtOk

func (o *Impression) GetLastViewedOrCreatedAtOk() (*string, bool)

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

func (*Impression) GetLivePhotoOnTransition

func (o *Impression) GetLivePhotoOnTransition() string

GetLivePhotoOnTransition returns the LivePhotoOnTransition field value if set, zero value otherwise.

func (*Impression) GetLivePhotoOnTransitionOk

func (o *Impression) GetLivePhotoOnTransitionOk() (*string, bool)

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

func (*Impression) GetViewCount

func (o *Impression) GetViewCount() string

GetViewCount returns the ViewCount field value if set, zero value otherwise.

func (*Impression) GetViewCountOk

func (o *Impression) GetViewCountOk() (*string, bool)

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

func (*Impression) GetViewedAt

func (o *Impression) GetViewedAt() string

GetViewedAt returns the ViewedAt field value if set, zero value otherwise.

func (*Impression) GetViewedAtOk

func (o *Impression) GetViewedAtOk() (*string, bool)

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

func (*Impression) HasAsset

func (o *Impression) HasAsset() bool

HasAsset returns a boolean if a field has been set.

func (*Impression) HasAssetId

func (o *Impression) HasAssetId() bool

HasAssetId returns a boolean if a field has been set.

func (*Impression) HasCreatedAt

func (o *Impression) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Impression) HasFrameId

func (o *Impression) HasFrameId() bool

HasFrameId returns a boolean if a field has been set.

func (*Impression) HasGestureDirection

func (o *Impression) HasGestureDirection() bool

HasGestureDirection returns a boolean if a field has been set.

func (*Impression) HasId

func (o *Impression) HasId() bool

HasId returns a boolean if a field has been set.

func (*Impression) HasLastShownWithAssetId

func (o *Impression) HasLastShownWithAssetId() bool

HasLastShownWithAssetId returns a boolean if a field has been set.

func (*Impression) HasLastViewedAt

func (o *Impression) HasLastViewedAt() bool

HasLastViewedAt returns a boolean if a field has been set.

func (*Impression) HasLastViewedOrCreatedAt

func (o *Impression) HasLastViewedOrCreatedAt() bool

HasLastViewedOrCreatedAt returns a boolean if a field has been set.

func (*Impression) HasLivePhotoOnTransition

func (o *Impression) HasLivePhotoOnTransition() bool

HasLivePhotoOnTransition returns a boolean if a field has been set.

func (*Impression) HasViewCount

func (o *Impression) HasViewCount() bool

HasViewCount returns a boolean if a field has been set.

func (*Impression) HasViewedAt

func (o *Impression) HasViewedAt() bool

HasViewedAt returns a boolean if a field has been set.

func (Impression) MarshalJSON

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

func (*Impression) SetAsset

func (o *Impression) SetAsset(v Asset)

SetAsset gets a reference to the given Asset and assigns it to the Asset field.

func (*Impression) SetAssetId

func (o *Impression) SetAssetId(v string)

SetAssetId gets a reference to the given string and assigns it to the AssetId field.

func (*Impression) SetCreatedAt

func (o *Impression) SetCreatedAt(v string)

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

func (*Impression) SetFrameId

func (o *Impression) SetFrameId(v string)

SetFrameId gets a reference to the given string and assigns it to the FrameId field.

func (*Impression) SetGestureDirection

func (o *Impression) SetGestureDirection(v string)

SetGestureDirection gets a reference to the given string and assigns it to the GestureDirection field.

func (*Impression) SetId

func (o *Impression) SetId(v string)

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

func (*Impression) SetLastShownWithAssetId

func (o *Impression) SetLastShownWithAssetId(v string)

SetLastShownWithAssetId gets a reference to the given string and assigns it to the LastShownWithAssetId field.

func (*Impression) SetLastViewedAt

func (o *Impression) SetLastViewedAt(v string)

SetLastViewedAt gets a reference to the given string and assigns it to the LastViewedAt field.

func (*Impression) SetLastViewedOrCreatedAt

func (o *Impression) SetLastViewedOrCreatedAt(v string)

SetLastViewedOrCreatedAt gets a reference to the given string and assigns it to the LastViewedOrCreatedAt field.

func (*Impression) SetLivePhotoOnTransition

func (o *Impression) SetLivePhotoOnTransition(v string)

SetLivePhotoOnTransition gets a reference to the given string and assigns it to the LivePhotoOnTransition field.

func (*Impression) SetViewCount

func (o *Impression) SetViewCount(v string)

SetViewCount gets a reference to the given string and assigns it to the ViewCount field.

func (*Impression) SetViewedAt

func (o *Impression) SetViewedAt(v string)

SetViewedAt gets a reference to the given string and assigns it to the ViewedAt field.

type LoginRequest

type LoginRequest struct {
	AppIdentifier       string           `json:"app_identifier"`
	ClientDeviceId      string           `json:"client_device_id"`
	IdentifierForVendor string           `json:"identifier_for_vendor"`
	Locale              string           `json:"locale"`
	User                LoginRequestUser `json:"user"`
}

LoginRequest struct for LoginRequest

func NewLoginRequest

func NewLoginRequest(appIdentifier string, clientDeviceId string, identifierForVendor string, locale string, user LoginRequestUser) *LoginRequest

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

func NewLoginRequestWithDefaults

func NewLoginRequestWithDefaults() *LoginRequest

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

func (*LoginRequest) GetAppIdentifier

func (o *LoginRequest) GetAppIdentifier() string

GetAppIdentifier returns the AppIdentifier field value

func (*LoginRequest) GetAppIdentifierOk

func (o *LoginRequest) GetAppIdentifierOk() (*string, bool)

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

func (*LoginRequest) GetClientDeviceId

func (o *LoginRequest) GetClientDeviceId() string

GetClientDeviceId returns the ClientDeviceId field value

func (*LoginRequest) GetClientDeviceIdOk

func (o *LoginRequest) GetClientDeviceIdOk() (*string, bool)

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

func (*LoginRequest) GetIdentifierForVendor

func (o *LoginRequest) GetIdentifierForVendor() string

GetIdentifierForVendor returns the IdentifierForVendor field value

func (*LoginRequest) GetIdentifierForVendorOk

func (o *LoginRequest) GetIdentifierForVendorOk() (*string, bool)

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

func (*LoginRequest) GetLocale

func (o *LoginRequest) GetLocale() string

GetLocale returns the Locale field value

func (*LoginRequest) GetLocaleOk

func (o *LoginRequest) GetLocaleOk() (*string, bool)

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

func (*LoginRequest) GetUser

func (o *LoginRequest) GetUser() LoginRequestUser

GetUser returns the User field value

func (*LoginRequest) GetUserOk

func (o *LoginRequest) GetUserOk() (*LoginRequestUser, bool)

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

func (LoginRequest) MarshalJSON

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

func (*LoginRequest) SetAppIdentifier

func (o *LoginRequest) SetAppIdentifier(v string)

SetAppIdentifier sets field value

func (*LoginRequest) SetClientDeviceId

func (o *LoginRequest) SetClientDeviceId(v string)

SetClientDeviceId sets field value

func (*LoginRequest) SetIdentifierForVendor

func (o *LoginRequest) SetIdentifierForVendor(v string)

SetIdentifierForVendor sets field value

func (*LoginRequest) SetLocale

func (o *LoginRequest) SetLocale(v string)

SetLocale sets field value

func (*LoginRequest) SetUser

func (o *LoginRequest) SetUser(v LoginRequestUser)

SetUser sets field value

type LoginRequestUser

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

LoginRequestUser struct for LoginRequestUser

func NewLoginRequestUser

func NewLoginRequestUser(email string, password string) *LoginRequestUser

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

func NewLoginRequestUserWithDefaults

func NewLoginRequestUserWithDefaults() *LoginRequestUser

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

func (*LoginRequestUser) GetEmail

func (o *LoginRequestUser) GetEmail() string

GetEmail returns the Email field value

func (*LoginRequestUser) GetEmailOk

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

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

func (*LoginRequestUser) GetPassword

func (o *LoginRequestUser) GetPassword() string

GetPassword returns the Password field value

func (*LoginRequestUser) GetPasswordOk

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

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

func (LoginRequestUser) MarshalJSON

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

func (*LoginRequestUser) SetEmail

func (o *LoginRequestUser) SetEmail(v string)

SetEmail sets field value

func (*LoginRequestUser) SetPassword

func (o *LoginRequestUser) SetPassword(v string)

SetPassword sets field value

type LoginResponse

type LoginResponse struct {
	Result *LoginResponseResult `json:"result,omitempty"`
}

LoginResponse struct for LoginResponse

func NewLoginResponse

func NewLoginResponse() *LoginResponse

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

func NewLoginResponseWithDefaults

func NewLoginResponseWithDefaults() *LoginResponse

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

func (*LoginResponse) GetResult

func (o *LoginResponse) GetResult() LoginResponseResult

GetResult returns the Result field value if set, zero value otherwise.

func (*LoginResponse) GetResultOk

func (o *LoginResponse) GetResultOk() (*LoginResponseResult, bool)

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

func (*LoginResponse) HasResult

func (o *LoginResponse) HasResult() bool

HasResult returns a boolean if a field has been set.

func (LoginResponse) MarshalJSON

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

func (*LoginResponse) SetResult

func (o *LoginResponse) SetResult(v LoginResponseResult)

SetResult gets a reference to the given LoginResponseResult and assigns it to the Result field.

type LoginResponseResult

type LoginResponseResult struct {
	CurrentUser *CurrentUser `json:"current_user,omitempty"`
}

LoginResponseResult struct for LoginResponseResult

func NewLoginResponseResult

func NewLoginResponseResult() *LoginResponseResult

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

func NewLoginResponseResultWithDefaults

func NewLoginResponseResultWithDefaults() *LoginResponseResult

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

func (*LoginResponseResult) GetCurrentUser

func (o *LoginResponseResult) GetCurrentUser() CurrentUser

GetCurrentUser returns the CurrentUser field value if set, zero value otherwise.

func (*LoginResponseResult) GetCurrentUserOk

func (o *LoginResponseResult) GetCurrentUserOk() (*CurrentUser, bool)

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

func (*LoginResponseResult) HasCurrentUser

func (o *LoginResponseResult) HasCurrentUser() bool

HasCurrentUser returns a boolean if a field has been set.

func (LoginResponseResult) MarshalJSON

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

func (*LoginResponseResult) SetCurrentUser

func (o *LoginResponseResult) SetCurrentUser(v CurrentUser)

SetCurrentUser gets a reference to the given CurrentUser and assigns it to the CurrentUser field.

type Metadata

type Metadata struct {
	Attribution *string `json:"attribution,omitempty"`
	Date        *string `json:"date,omitempty"`
	Location    *string `json:"location,omitempty"`
	PairReasons *string `json:"pair_reasons,omitempty"`
}

Metadata struct for Metadata

func NewMetadata

func NewMetadata() *Metadata

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

func NewMetadataWithDefaults

func NewMetadataWithDefaults() *Metadata

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

func (*Metadata) GetAttribution

func (o *Metadata) GetAttribution() string

GetAttribution returns the Attribution field value if set, zero value otherwise.

func (*Metadata) GetAttributionOk

func (o *Metadata) GetAttributionOk() (*string, bool)

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

func (*Metadata) GetDate

func (o *Metadata) GetDate() string

GetDate returns the Date field value if set, zero value otherwise.

func (*Metadata) GetDateOk

func (o *Metadata) GetDateOk() (*string, bool)

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

func (*Metadata) GetLocation

func (o *Metadata) GetLocation() string

GetLocation returns the Location field value if set, zero value otherwise.

func (*Metadata) GetLocationOk

func (o *Metadata) GetLocationOk() (*string, bool)

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

func (*Metadata) GetPairReasons

func (o *Metadata) GetPairReasons() string

GetPairReasons returns the PairReasons field value if set, zero value otherwise.

func (*Metadata) GetPairReasonsOk

func (o *Metadata) GetPairReasonsOk() (*string, bool)

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

func (*Metadata) HasAttribution

func (o *Metadata) HasAttribution() bool

HasAttribution returns a boolean if a field has been set.

func (*Metadata) HasDate

func (o *Metadata) HasDate() bool

HasDate returns a boolean if a field has been set.

func (*Metadata) HasLocation

func (o *Metadata) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*Metadata) HasPairReasons

func (o *Metadata) HasPairReasons() bool

HasPairReasons returns a boolean if a field has been set.

func (Metadata) MarshalJSON

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

func (*Metadata) SetAttribution

func (o *Metadata) SetAttribution(v string)

SetAttribution gets a reference to the given string and assigns it to the Attribution field.

func (*Metadata) SetDate

func (o *Metadata) SetDate(v string)

SetDate gets a reference to the given string and assigns it to the Date field.

func (*Metadata) SetLocation

func (o *Metadata) SetLocation(v string)

SetLocation gets a reference to the given string and assigns it to the Location field.

func (*Metadata) SetPairReasons

func (o *Metadata) SetPairReasons(v string)

SetPairReasons gets a reference to the given string and assigns it to the PairReasons field.

type NullableAsset

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

func NewNullableAsset

func NewNullableAsset(val *Asset) *NullableAsset

func (NullableAsset) Get

func (v NullableAsset) Get() *Asset

func (NullableAsset) IsSet

func (v NullableAsset) IsSet() bool

func (NullableAsset) MarshalJSON

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

func (*NullableAsset) Set

func (v *NullableAsset) Set(val *Asset)

func (*NullableAsset) UnmarshalJSON

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

func (*NullableAsset) Unset

func (v *NullableAsset) 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 NullableContributorTokens

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

func NewNullableContributorTokens

func NewNullableContributorTokens(val *ContributorTokens) *NullableContributorTokens

func (NullableContributorTokens) Get

func (NullableContributorTokens) IsSet

func (v NullableContributorTokens) IsSet() bool

func (NullableContributorTokens) MarshalJSON

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

func (*NullableContributorTokens) Set

func (*NullableContributorTokens) UnmarshalJSON

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

func (*NullableContributorTokens) Unset

func (v *NullableContributorTokens) Unset()

type NullableCurrentUser

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

func NewNullableCurrentUser

func NewNullableCurrentUser(val *CurrentUser) *NullableCurrentUser

func (NullableCurrentUser) Get

func (NullableCurrentUser) IsSet

func (v NullableCurrentUser) IsSet() bool

func (NullableCurrentUser) MarshalJSON

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

func (*NullableCurrentUser) Set

func (v *NullableCurrentUser) Set(val *CurrentUser)

func (*NullableCurrentUser) UnmarshalJSON

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

func (*NullableCurrentUser) Unset

func (v *NullableCurrentUser) 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 NullableFeedItem

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

func NewNullableFeedItem

func NewNullableFeedItem(val *FeedItem) *NullableFeedItem

func (NullableFeedItem) Get

func (v NullableFeedItem) Get() *FeedItem

func (NullableFeedItem) IsSet

func (v NullableFeedItem) IsSet() bool

func (NullableFeedItem) MarshalJSON

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

func (*NullableFeedItem) Set

func (v *NullableFeedItem) Set(val *FeedItem)

func (*NullableFeedItem) UnmarshalJSON

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

func (*NullableFeedItem) Unset

func (v *NullableFeedItem) 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 NullableFrame

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

func NewNullableFrame

func NewNullableFrame(val *Frame) *NullableFrame

func (NullableFrame) Get

func (v NullableFrame) Get() *Frame

func (NullableFrame) IsSet

func (v NullableFrame) IsSet() bool

func (NullableFrame) MarshalJSON

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

func (*NullableFrame) Set

func (v *NullableFrame) Set(val *Frame)

func (*NullableFrame) UnmarshalJSON

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

func (*NullableFrame) Unset

func (v *NullableFrame) Unset()

type NullableFrameEnvironment

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

func NewNullableFrameEnvironment

func NewNullableFrameEnvironment(val *FrameEnvironment) *NullableFrameEnvironment

func (NullableFrameEnvironment) Get

func (NullableFrameEnvironment) IsSet

func (v NullableFrameEnvironment) IsSet() bool

func (NullableFrameEnvironment) MarshalJSON

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

func (*NullableFrameEnvironment) Set

func (*NullableFrameEnvironment) UnmarshalJSON

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

func (*NullableFrameEnvironment) Unset

func (v *NullableFrameEnvironment) Unset()

type NullableFrames

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

func NewNullableFrames

func NewNullableFrames(val *Frames) *NullableFrames

func (NullableFrames) Get

func (v NullableFrames) Get() *Frames

func (NullableFrames) IsSet

func (v NullableFrames) IsSet() bool

func (NullableFrames) MarshalJSON

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

func (*NullableFrames) Set

func (v *NullableFrames) Set(val *Frames)

func (*NullableFrames) UnmarshalJSON

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

func (*NullableFrames) Unset

func (v *NullableFrames) Unset()

type NullableImpression

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

func NewNullableImpression

func NewNullableImpression(val *Impression) *NullableImpression

func (NullableImpression) Get

func (v NullableImpression) Get() *Impression

func (NullableImpression) IsSet

func (v NullableImpression) IsSet() bool

func (NullableImpression) MarshalJSON

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

func (*NullableImpression) Set

func (v *NullableImpression) Set(val *Impression)

func (*NullableImpression) UnmarshalJSON

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

func (*NullableImpression) Unset

func (v *NullableImpression) 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 NullableLoginRequest

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

func NewNullableLoginRequest

func NewNullableLoginRequest(val *LoginRequest) *NullableLoginRequest

func (NullableLoginRequest) Get

func (NullableLoginRequest) IsSet

func (v NullableLoginRequest) IsSet() bool

func (NullableLoginRequest) MarshalJSON

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

func (*NullableLoginRequest) Set

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

func (*NullableLoginRequest) UnmarshalJSON

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

func (*NullableLoginRequest) Unset

func (v *NullableLoginRequest) Unset()

type NullableLoginRequestUser

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

func NewNullableLoginRequestUser

func NewNullableLoginRequestUser(val *LoginRequestUser) *NullableLoginRequestUser

func (NullableLoginRequestUser) Get

func (NullableLoginRequestUser) IsSet

func (v NullableLoginRequestUser) IsSet() bool

func (NullableLoginRequestUser) MarshalJSON

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

func (*NullableLoginRequestUser) Set

func (*NullableLoginRequestUser) UnmarshalJSON

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

func (*NullableLoginRequestUser) Unset

func (v *NullableLoginRequestUser) Unset()

type NullableLoginResponse

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

func NewNullableLoginResponse

func NewNullableLoginResponse(val *LoginResponse) *NullableLoginResponse

func (NullableLoginResponse) Get

func (NullableLoginResponse) IsSet

func (v NullableLoginResponse) IsSet() bool

func (NullableLoginResponse) MarshalJSON

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

func (*NullableLoginResponse) Set

func (v *NullableLoginResponse) Set(val *LoginResponse)

func (*NullableLoginResponse) UnmarshalJSON

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

func (*NullableLoginResponse) Unset

func (v *NullableLoginResponse) Unset()

type NullableLoginResponseResult

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

func NewNullableLoginResponseResult

func NewNullableLoginResponseResult(val *LoginResponseResult) *NullableLoginResponseResult

func (NullableLoginResponseResult) Get

func (NullableLoginResponseResult) IsSet

func (NullableLoginResponseResult) MarshalJSON

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

func (*NullableLoginResponseResult) Set

func (*NullableLoginResponseResult) UnmarshalJSON

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

func (*NullableLoginResponseResult) Unset

func (v *NullableLoginResponseResult) Unset()

type NullableMetadata

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

func NewNullableMetadata

func NewNullableMetadata(val *Metadata) *NullableMetadata

func (NullableMetadata) Get

func (v NullableMetadata) Get() *Metadata

func (NullableMetadata) IsSet

func (v NullableMetadata) IsSet() bool

func (NullableMetadata) MarshalJSON

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

func (*NullableMetadata) Set

func (v *NullableMetadata) Set(val *Metadata)

func (*NullableMetadata) UnmarshalJSON

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

func (*NullableMetadata) Unset

func (v *NullableMetadata) Unset()

type NullableString

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

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

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

func (*NullableString) Set

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

func (*NullableString) UnmarshalJSON

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

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

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

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

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

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

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

func (*NullableTime) Set

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

func (*NullableTime) UnmarshalJSON

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

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableUser

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

func NewNullableUser

func NewNullableUser(val *User) *NullableUser

func (NullableUser) Get

func (v NullableUser) Get() *User

func (NullableUser) IsSet

func (v NullableUser) IsSet() bool

func (NullableUser) MarshalJSON

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

func (*NullableUser) Set

func (v *NullableUser) Set(val *User)

func (*NullableUser) UnmarshalJSON

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

func (*NullableUser) Unset

func (v *NullableUser) Unset()

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

type User struct {
	Id                *string `json:"id,omitempty"`
	ShortId           *string `json:"short_id,omitempty"`
	TestAccount       *string `json:"test_account,omitempty"`
	CreatedAt         *string `json:"created_at,omitempty"`
	UpdatedAt         *string `json:"updated_at,omitempty"`
	LatestAppVersion  *string `json:"latest_app_version,omitempty"`
	Name              *string `json:"name,omitempty"`
	Email             *string `json:"email,omitempty"`
	AttributionId     *string `json:"attribution_id,omitempty"`
	AttributionString *string `json:"attribution_string,omitempty"`
	ShowPushPrompt    *bool   `json:"show_push_prompt,omitempty"`
	AvatarFileName    *string `json:"avatar_file_name,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) GetAttributionId

func (o *User) GetAttributionId() string

GetAttributionId returns the AttributionId field value if set, zero value otherwise.

func (*User) GetAttributionIdOk

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

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

func (*User) GetAttributionString

func (o *User) GetAttributionString() string

GetAttributionString returns the AttributionString field value if set, zero value otherwise.

func (*User) GetAttributionStringOk

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

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

func (*User) GetAvatarFileName

func (o *User) GetAvatarFileName() string

GetAvatarFileName returns the AvatarFileName field value if set, zero value otherwise.

func (*User) GetAvatarFileNameOk

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

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

func (*User) GetCreatedAt

func (o *User) GetCreatedAt() string

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

func (*User) GetCreatedAtOk

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

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

func (*User) GetEmail

func (o *User) GetEmail() string

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

func (*User) GetEmailOk

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

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

func (*User) GetId

func (o *User) GetId() string

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

func (*User) GetIdOk

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

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

func (*User) GetLatestAppVersion

func (o *User) GetLatestAppVersion() string

GetLatestAppVersion returns the LatestAppVersion field value if set, zero value otherwise.

func (*User) GetLatestAppVersionOk

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

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

func (*User) GetName

func (o *User) GetName() string

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

func (*User) GetNameOk

func (o *User) 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 (*User) GetShortId

func (o *User) GetShortId() string

GetShortId returns the ShortId field value if set, zero value otherwise.

func (*User) GetShortIdOk

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

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

func (*User) GetShowPushPrompt

func (o *User) GetShowPushPrompt() bool

GetShowPushPrompt returns the ShowPushPrompt field value if set, zero value otherwise.

func (*User) GetShowPushPromptOk

func (o *User) GetShowPushPromptOk() (*bool, bool)

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

func (*User) GetTestAccount

func (o *User) GetTestAccount() string

GetTestAccount returns the TestAccount field value if set, zero value otherwise.

func (*User) GetTestAccountOk

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

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

func (*User) GetUpdatedAt

func (o *User) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*User) GetUpdatedAtOk

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

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

func (*User) HasAttributionId

func (o *User) HasAttributionId() bool

HasAttributionId returns a boolean if a field has been set.

func (*User) HasAttributionString

func (o *User) HasAttributionString() bool

HasAttributionString returns a boolean if a field has been set.

func (*User) HasAvatarFileName

func (o *User) HasAvatarFileName() bool

HasAvatarFileName returns a boolean if a field has been set.

func (*User) HasCreatedAt

func (o *User) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*User) HasEmail

func (o *User) HasEmail() bool

HasEmail 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) HasLatestAppVersion

func (o *User) HasLatestAppVersion() bool

HasLatestAppVersion returns a boolean if a field has been set.

func (*User) HasName

func (o *User) HasName() bool

HasName returns a boolean if a field has been set.

func (*User) HasShortId

func (o *User) HasShortId() bool

HasShortId returns a boolean if a field has been set.

func (*User) HasShowPushPrompt

func (o *User) HasShowPushPrompt() bool

HasShowPushPrompt returns a boolean if a field has been set.

func (*User) HasTestAccount

func (o *User) HasTestAccount() bool

HasTestAccount returns a boolean if a field has been set.

func (*User) HasUpdatedAt

func (o *User) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (User) MarshalJSON

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

func (*User) SetAttributionId

func (o *User) SetAttributionId(v string)

SetAttributionId gets a reference to the given string and assigns it to the AttributionId field.

func (*User) SetAttributionString

func (o *User) SetAttributionString(v string)

SetAttributionString gets a reference to the given string and assigns it to the AttributionString field.

func (*User) SetAvatarFileName

func (o *User) SetAvatarFileName(v string)

SetAvatarFileName gets a reference to the given string and assigns it to the AvatarFileName field.

func (*User) SetCreatedAt

func (o *User) SetCreatedAt(v string)

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

func (*User) SetEmail

func (o *User) SetEmail(v string)

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

func (*User) SetId

func (o *User) SetId(v string)

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

func (*User) SetLatestAppVersion

func (o *User) SetLatestAppVersion(v string)

SetLatestAppVersion gets a reference to the given string and assigns it to the LatestAppVersion field.

func (*User) SetName

func (o *User) SetName(v string)

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

func (*User) SetShortId

func (o *User) SetShortId(v string)

SetShortId gets a reference to the given string and assigns it to the ShortId field.

func (*User) SetShowPushPrompt

func (o *User) SetShowPushPrompt(v bool)

SetShowPushPrompt gets a reference to the given bool and assigns it to the ShowPushPrompt field.

func (*User) SetTestAccount

func (o *User) SetTestAccount(v string)

SetTestAccount gets a reference to the given string and assigns it to the TestAccount field.

func (*User) SetUpdatedAt

func (o *User) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given string and assigns it to the UpdatedAt field.

Jump to

Keyboard shortcuts

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