yq1

package module
v0.0.0-...-176940d Latest Latest
Warning

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

Go to latest
Published: Aug 18, 2024 License: Apache-2.0 Imports: 20 Imported by: 0

README

Go API client for yq1

Yahoo Finance API specification

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: 1.0.9
  • Package version: 1.0.0
  • Generator version: 7.7.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen For more information, please visit https://help.yahoo.com/kb/finance-for-web

Installation

Install the following dependencies:

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

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

import yq1 "github.com/S035779/yahoo-finance-openapi/gen/go/yq1"

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 yq1.ContextServerIndex of type int.

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

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

ctx := context.WithValue(context.Background(), yq1.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 yq1.ContextOperationServerIndices and yq1.ContextOperationServerVariables context maps.

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

Documentation for API Endpoints

All URIs are relative to https://query1.finance.yahoo.com

Class Method HTTP request Description
ChartAPI GetChart Get /v8/finance/chart/{symbol}
CrumbAPI GetCrumb Get /v1/test/getcrumb Retrieve crumb for authentication
DownloadAPI Download Get /v7/finance/download/{symbol} Download financial data for a specific symbol
QuoteAPI GetQuote Get /v7/finance/quote Returns quotes for the specified symbols
SparkAPI Spark Get /v7/finance/spark

Documentation For Models

Documentation For Authorization

Endpoints do not require authorization.

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

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`)
	XmlCheck  = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`)
)
View Source
var (
	// ContextServerIndex uses a server configuration from the index.
	ContextServerIndex = contextKey("serverIndex")

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

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

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)
View Source
var AllowedIntervalEnumValues = []Interval{
	"1m",
	"5m",
	"15m",
	"30m",
	"1h",
	"6h",
	"1d",
}

All allowed values of Interval enum

View Source
var AllowedRangeEnumValues = []Range{
	"1d",
	"5d",
	"1mo",
	"3mo",
	"6mo",
	"1y",
	"2y",
	"5y",
	"10y",
	"ytd",
	"max",
}

All allowed values of Range enum

Functions

func CacheExpires

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

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

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	ChartAPI *ChartAPIService

	CrumbAPI *CrumbAPIService

	DownloadAPI *DownloadAPIService

	QuoteAPI *QuoteAPIService

	SparkAPI *SparkAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the Yahoo Finance API v1.0.9 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 ApiDownloadRequest

type ApiDownloadRequest struct {
	ApiService *DownloadAPIService
	// contains filtered or unexported fields
}

func (ApiDownloadRequest) A1

Yahoo cookie A1 for authentication

func (ApiDownloadRequest) Crumb

Yahoo cookie crumb

func (ApiDownloadRequest) Events

func (r ApiDownloadRequest) Events(events []string) ApiDownloadRequest

The events to include (e.g., div, split)

func (ApiDownloadRequest) Execute

func (r ApiDownloadRequest) Execute() (*os.File, *http.Response, error)

func (ApiDownloadRequest) Interval

func (r ApiDownloadRequest) Interval(interval Interval) ApiDownloadRequest

The data interval (e.g., 1d, 1wk, 1mo)

func (ApiDownloadRequest) Period1

func (r ApiDownloadRequest) Period1(period1 int64) ApiDownloadRequest

The start period for the data (Unix timestamp)

func (ApiDownloadRequest) Period2

func (r ApiDownloadRequest) Period2(period2 int64) ApiDownloadRequest

The end period for the data (Unix timestamp)

type ApiGetChartRequest

type ApiGetChartRequest struct {
	ApiService *ChartAPIService
	// contains filtered or unexported fields
}

func (ApiGetChartRequest) A1

Yahoo cookie A1 for authentication

func (ApiGetChartRequest) CorsDomain

func (r ApiGetChartRequest) CorsDomain(corsDomain string) ApiGetChartRequest

func (ApiGetChartRequest) Crumb

Yahoo cookie crumb

func (ApiGetChartRequest) Events

func (r ApiGetChartRequest) Events(events []string) ApiGetChartRequest

func (ApiGetChartRequest) Execute

func (ApiGetChartRequest) IncludePrePost

func (r ApiGetChartRequest) IncludePrePost(includePrePost bool) ApiGetChartRequest

func (ApiGetChartRequest) Interval

func (r ApiGetChartRequest) Interval(interval Interval) ApiGetChartRequest

func (ApiGetChartRequest) Lang

func (ApiGetChartRequest) Period1

func (r ApiGetChartRequest) Period1(period1 int64) ApiGetChartRequest

func (ApiGetChartRequest) Period2

func (r ApiGetChartRequest) Period2(period2 int64) ApiGetChartRequest

func (ApiGetChartRequest) Region

func (r ApiGetChartRequest) Region(region string) ApiGetChartRequest

func (ApiGetChartRequest) Tsrc

func (ApiGetChartRequest) UseYfid

func (r ApiGetChartRequest) UseYfid(useYfid bool) ApiGetChartRequest

type ApiGetCrumbRequest

type ApiGetCrumbRequest struct {
	ApiService *CrumbAPIService
	// contains filtered or unexported fields
}

func (ApiGetCrumbRequest) A1

Yahoo cookie A1 for authentication

func (ApiGetCrumbRequest) Execute

func (r ApiGetCrumbRequest) Execute() (string, *http.Response, error)

type ApiGetQuoteRequest

type ApiGetQuoteRequest struct {
	ApiService *QuoteAPIService
	// contains filtered or unexported fields
}

func (ApiGetQuoteRequest) A1

Yahoo cookie A1 for authentication

func (ApiGetQuoteRequest) CorsDomain

func (r ApiGetQuoteRequest) CorsDomain(corsDomain string) ApiGetQuoteRequest

func (ApiGetQuoteRequest) Crumb

Yahoo cookie crumb

func (ApiGetQuoteRequest) Execute

func (ApiGetQuoteRequest) Fields

func (r ApiGetQuoteRequest) Fields(fields string) ApiGetQuoteRequest

func (ApiGetQuoteRequest) Formatted

func (r ApiGetQuoteRequest) Formatted(formatted bool) ApiGetQuoteRequest

func (ApiGetQuoteRequest) IncludePrePost

func (r ApiGetQuoteRequest) IncludePrePost(includePrePost bool) ApiGetQuoteRequest

func (ApiGetQuoteRequest) Lang

func (ApiGetQuoteRequest) Region

func (r ApiGetQuoteRequest) Region(region string) ApiGetQuoteRequest

func (ApiGetQuoteRequest) Symbols

func (r ApiGetQuoteRequest) Symbols(symbols string) ApiGetQuoteRequest

type ApiSparkRequest

type ApiSparkRequest struct {
	ApiService *SparkAPIService
	// contains filtered or unexported fields
}

func (ApiSparkRequest) A1

Yahoo cookie A1 for authentication

func (ApiSparkRequest) CorsDomain

func (r ApiSparkRequest) CorsDomain(corsDomain string) ApiSparkRequest

func (ApiSparkRequest) Crumb

func (r ApiSparkRequest) Crumb(crumb string) ApiSparkRequest

Yahoo cookie crumb

func (ApiSparkRequest) Execute

func (r ApiSparkRequest) Execute() (*QuoteResponse, *http.Response, error)

func (ApiSparkRequest) IncludePrePost

func (r ApiSparkRequest) IncludePrePost(includePrePost bool) ApiSparkRequest

func (ApiSparkRequest) IncludeTimestamps

func (r ApiSparkRequest) IncludeTimestamps(includeTimestamps bool) ApiSparkRequest

func (ApiSparkRequest) Indicators

func (r ApiSparkRequest) Indicators(indicators string) ApiSparkRequest

func (ApiSparkRequest) Interval

func (r ApiSparkRequest) Interval(interval Interval) ApiSparkRequest

func (ApiSparkRequest) Lang

func (r ApiSparkRequest) Lang(lang string) ApiSparkRequest

func (ApiSparkRequest) Range_

func (r ApiSparkRequest) Range_(range_ Range) ApiSparkRequest

func (ApiSparkRequest) Symbols

func (r ApiSparkRequest) Symbols(symbols string) ApiSparkRequest

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 ChartAPIService

type ChartAPIService service

ChartAPIService ChartAPI service

func (*ChartAPIService) GetChart

func (a *ChartAPIService) GetChart(ctx context.Context, symbol string) ApiGetChartRequest

GetChart Method for GetChart

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

func (*ChartAPIService) GetChartExecute

func (a *ChartAPIService) GetChartExecute(r ApiGetChartRequest) (*ChartResponse, *http.Response, error)

Execute executes the request

@return ChartResponse

type ChartResponse

type ChartResponse struct {
	Chart *ChartResponseChart `json:"chart,omitempty"`
}

ChartResponse struct for ChartResponse

func NewChartResponse

func NewChartResponse() *ChartResponse

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

func NewChartResponseWithDefaults

func NewChartResponseWithDefaults() *ChartResponse

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

func (*ChartResponse) GetChart

func (o *ChartResponse) GetChart() ChartResponseChart

GetChart returns the Chart field value if set, zero value otherwise.

func (*ChartResponse) GetChartOk

func (o *ChartResponse) GetChartOk() (*ChartResponseChart, bool)

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

func (*ChartResponse) HasChart

func (o *ChartResponse) HasChart() bool

HasChart returns a boolean if a field has been set.

func (ChartResponse) MarshalJSON

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

func (*ChartResponse) SetChart

func (o *ChartResponse) SetChart(v ChartResponseChart)

SetChart gets a reference to the given ChartResponseChart and assigns it to the Chart field.

func (ChartResponse) ToMap

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

type ChartResponseChart

type ChartResponseChart struct {
	Result []ChartResponseChartResultInner `json:"result,omitempty"`
	Error  *Error                          `json:"error,omitempty"`
}

ChartResponseChart struct for ChartResponseChart

func NewChartResponseChart

func NewChartResponseChart() *ChartResponseChart

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

func NewChartResponseChartWithDefaults

func NewChartResponseChartWithDefaults() *ChartResponseChart

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

func (*ChartResponseChart) GetError

func (o *ChartResponseChart) GetError() Error

GetError returns the Error field value if set, zero value otherwise.

func (*ChartResponseChart) GetErrorOk

func (o *ChartResponseChart) GetErrorOk() (*Error, bool)

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

func (*ChartResponseChart) GetResult

GetResult returns the Result field value if set, zero value otherwise.

func (*ChartResponseChart) GetResultOk

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 (*ChartResponseChart) HasError

func (o *ChartResponseChart) HasError() bool

HasError returns a boolean if a field has been set.

func (*ChartResponseChart) HasResult

func (o *ChartResponseChart) HasResult() bool

HasResult returns a boolean if a field has been set.

func (ChartResponseChart) MarshalJSON

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

func (*ChartResponseChart) SetError

func (o *ChartResponseChart) SetError(v Error)

SetError gets a reference to the given Error and assigns it to the Error field.

func (*ChartResponseChart) SetResult

SetResult gets a reference to the given []ChartResponseChartResultInner and assigns it to the Result field.

func (ChartResponseChart) ToMap

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

type ChartResponseChartResultInner

type ChartResponseChartResultInner struct {
	Meta       *ChartResponseChartResultInnerMeta       `json:"meta,omitempty"`
	Timestamp  []int32                                  `json:"timestamp,omitempty"`
	Indicators *ChartResponseChartResultInnerIndicators `json:"indicators,omitempty"`
}

ChartResponseChartResultInner struct for ChartResponseChartResultInner

func NewChartResponseChartResultInner

func NewChartResponseChartResultInner() *ChartResponseChartResultInner

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

func NewChartResponseChartResultInnerWithDefaults

func NewChartResponseChartResultInnerWithDefaults() *ChartResponseChartResultInner

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

func (*ChartResponseChartResultInner) GetIndicators

GetIndicators returns the Indicators field value if set, zero value otherwise.

func (*ChartResponseChartResultInner) GetIndicatorsOk

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

func (*ChartResponseChartResultInner) GetMeta

GetMeta returns the Meta field value if set, zero value otherwise.

func (*ChartResponseChartResultInner) GetMetaOk

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

func (*ChartResponseChartResultInner) GetTimestamp

func (o *ChartResponseChartResultInner) GetTimestamp() []int32

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

func (*ChartResponseChartResultInner) GetTimestampOk

func (o *ChartResponseChartResultInner) GetTimestampOk() ([]int32, bool)

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

func (*ChartResponseChartResultInner) HasIndicators

func (o *ChartResponseChartResultInner) HasIndicators() bool

HasIndicators returns a boolean if a field has been set.

func (*ChartResponseChartResultInner) HasMeta

func (o *ChartResponseChartResultInner) HasMeta() bool

HasMeta returns a boolean if a field has been set.

func (*ChartResponseChartResultInner) HasTimestamp

func (o *ChartResponseChartResultInner) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (ChartResponseChartResultInner) MarshalJSON

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

func (*ChartResponseChartResultInner) SetIndicators

SetIndicators gets a reference to the given ChartResponseChartResultInnerIndicators and assigns it to the Indicators field.

func (*ChartResponseChartResultInner) SetMeta

SetMeta gets a reference to the given ChartResponseChartResultInnerMeta and assigns it to the Meta field.

func (*ChartResponseChartResultInner) SetTimestamp

func (o *ChartResponseChartResultInner) SetTimestamp(v []int32)

SetTimestamp gets a reference to the given []int32 and assigns it to the Timestamp field.

func (ChartResponseChartResultInner) ToMap

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

type ChartResponseChartResultInnerIndicators

type ChartResponseChartResultInnerIndicators struct {
	Quote []ChartResponseChartResultInnerIndicatorsQuoteInner `json:"quote,omitempty"`
}

ChartResponseChartResultInnerIndicators struct for ChartResponseChartResultInnerIndicators

func NewChartResponseChartResultInnerIndicators

func NewChartResponseChartResultInnerIndicators() *ChartResponseChartResultInnerIndicators

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

func NewChartResponseChartResultInnerIndicatorsWithDefaults

func NewChartResponseChartResultInnerIndicatorsWithDefaults() *ChartResponseChartResultInnerIndicators

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

func (*ChartResponseChartResultInnerIndicators) GetQuote

GetQuote returns the Quote field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerIndicators) GetQuoteOk

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

func (*ChartResponseChartResultInnerIndicators) HasQuote

HasQuote returns a boolean if a field has been set.

func (ChartResponseChartResultInnerIndicators) MarshalJSON

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

func (*ChartResponseChartResultInnerIndicators) SetQuote

SetQuote gets a reference to the given []ChartResponseChartResultInnerIndicatorsQuoteInner and assigns it to the Quote field.

func (ChartResponseChartResultInnerIndicators) ToMap

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

type ChartResponseChartResultInnerIndicatorsQuoteInner

type ChartResponseChartResultInnerIndicatorsQuoteInner struct {
	High   []float32 `json:"high,omitempty"`
	Close  []float32 `json:"close,omitempty"`
	Volume []int32   `json:"volume,omitempty"`
	Low    []float32 `json:"low,omitempty"`
	Open   []float32 `json:"open,omitempty"`
}

ChartResponseChartResultInnerIndicatorsQuoteInner struct for ChartResponseChartResultInnerIndicatorsQuoteInner

func NewChartResponseChartResultInnerIndicatorsQuoteInner

func NewChartResponseChartResultInnerIndicatorsQuoteInner() *ChartResponseChartResultInnerIndicatorsQuoteInner

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

func NewChartResponseChartResultInnerIndicatorsQuoteInnerWithDefaults

func NewChartResponseChartResultInnerIndicatorsQuoteInnerWithDefaults() *ChartResponseChartResultInnerIndicatorsQuoteInner

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

func (*ChartResponseChartResultInnerIndicatorsQuoteInner) GetClose

GetClose returns the Close field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerIndicatorsQuoteInner) GetCloseOk

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

func (*ChartResponseChartResultInnerIndicatorsQuoteInner) GetHigh

GetHigh returns the High field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerIndicatorsQuoteInner) GetHighOk

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

func (*ChartResponseChartResultInnerIndicatorsQuoteInner) GetLow

GetLow returns the Low field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerIndicatorsQuoteInner) GetLowOk

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

func (*ChartResponseChartResultInnerIndicatorsQuoteInner) GetOpen

GetOpen returns the Open field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerIndicatorsQuoteInner) GetOpenOk

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

func (*ChartResponseChartResultInnerIndicatorsQuoteInner) GetVolume

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

func (*ChartResponseChartResultInnerIndicatorsQuoteInner) GetVolumeOk

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 (*ChartResponseChartResultInnerIndicatorsQuoteInner) HasClose

HasClose returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerIndicatorsQuoteInner) HasHigh

HasHigh returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerIndicatorsQuoteInner) HasLow

HasLow returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerIndicatorsQuoteInner) HasOpen

HasOpen returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerIndicatorsQuoteInner) HasVolume

HasVolume returns a boolean if a field has been set.

func (ChartResponseChartResultInnerIndicatorsQuoteInner) MarshalJSON

func (*ChartResponseChartResultInnerIndicatorsQuoteInner) SetClose

SetClose gets a reference to the given []float32 and assigns it to the Close field.

func (*ChartResponseChartResultInnerIndicatorsQuoteInner) SetHigh

SetHigh gets a reference to the given []float32 and assigns it to the High field.

func (*ChartResponseChartResultInnerIndicatorsQuoteInner) SetLow

SetLow gets a reference to the given []float32 and assigns it to the Low field.

func (*ChartResponseChartResultInnerIndicatorsQuoteInner) SetOpen

SetOpen gets a reference to the given []float32 and assigns it to the Open field.

func (*ChartResponseChartResultInnerIndicatorsQuoteInner) SetVolume

SetVolume gets a reference to the given []int32 and assigns it to the Volume field.

func (ChartResponseChartResultInnerIndicatorsQuoteInner) ToMap

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

type ChartResponseChartResultInnerMeta

type ChartResponseChartResultInnerMeta struct {
	Currency             *string                                                          `json:"currency,omitempty"`
	Symbol               *string                                                          `json:"symbol,omitempty"`
	ExchangeName         *string                                                          `json:"exchangeName,omitempty"`
	InstrumentType       *string                                                          `json:"instrumentType,omitempty"`
	FirstTradeDate       *int32                                                           `json:"firstTradeDate,omitempty"`
	RegularMarketTime    *int32                                                           `json:"regularMarketTime,omitempty"`
	Gmtoffset            *int32                                                           `json:"gmtoffset,omitempty"`
	Timezone             *string                                                          `json:"timezone,omitempty"`
	ExchangeTimezoneName *string                                                          `json:"exchangeTimezoneName,omitempty"`
	RegularMarketPrice   *float32                                                         `json:"regularMarketPrice,omitempty"`
	ChartPreviousClose   *float32                                                         `json:"chartPreviousClose,omitempty"`
	PreviousClose        *float32                                                         `json:"previousClose,omitempty"`
	Scale                *int32                                                           `json:"scale,omitempty"`
	PriceHint            *int32                                                           `json:"priceHint,omitempty"`
	CurrentTradingPeriod *ChartResponseChartResultInnerMetaCurrentTradingPeriod           `json:"currentTradingPeriod,omitempty"`
	TradingPeriods       [][]ChartResponseChartResultInnerMetaCurrentTradingPeriodRegular `json:"tradingPeriods,omitempty"`
	DataGranularity      *string                                                          `json:"dataGranularity,omitempty"`
	Range                *string                                                          `json:"range,omitempty"`
	ValidRanges          []string                                                         `json:"validRanges,omitempty"`
}

ChartResponseChartResultInnerMeta struct for ChartResponseChartResultInnerMeta

func NewChartResponseChartResultInnerMeta

func NewChartResponseChartResultInnerMeta() *ChartResponseChartResultInnerMeta

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

func NewChartResponseChartResultInnerMetaWithDefaults

func NewChartResponseChartResultInnerMetaWithDefaults() *ChartResponseChartResultInnerMeta

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

func (*ChartResponseChartResultInnerMeta) GetChartPreviousClose

func (o *ChartResponseChartResultInnerMeta) GetChartPreviousClose() float32

GetChartPreviousClose returns the ChartPreviousClose field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMeta) GetChartPreviousCloseOk

func (o *ChartResponseChartResultInnerMeta) GetChartPreviousCloseOk() (*float32, bool)

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

func (*ChartResponseChartResultInnerMeta) GetCurrency

func (o *ChartResponseChartResultInnerMeta) GetCurrency() string

GetCurrency returns the Currency field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMeta) GetCurrencyOk

func (o *ChartResponseChartResultInnerMeta) GetCurrencyOk() (*string, bool)

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

func (*ChartResponseChartResultInnerMeta) GetCurrentTradingPeriod

GetCurrentTradingPeriod returns the CurrentTradingPeriod field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMeta) GetCurrentTradingPeriodOk

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

func (*ChartResponseChartResultInnerMeta) GetDataGranularity

func (o *ChartResponseChartResultInnerMeta) GetDataGranularity() string

GetDataGranularity returns the DataGranularity field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMeta) GetDataGranularityOk

func (o *ChartResponseChartResultInnerMeta) GetDataGranularityOk() (*string, bool)

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

func (*ChartResponseChartResultInnerMeta) GetExchangeName

func (o *ChartResponseChartResultInnerMeta) GetExchangeName() string

GetExchangeName returns the ExchangeName field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMeta) GetExchangeNameOk

func (o *ChartResponseChartResultInnerMeta) GetExchangeNameOk() (*string, bool)

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

func (*ChartResponseChartResultInnerMeta) GetExchangeTimezoneName

func (o *ChartResponseChartResultInnerMeta) GetExchangeTimezoneName() string

GetExchangeTimezoneName returns the ExchangeTimezoneName field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMeta) GetExchangeTimezoneNameOk

func (o *ChartResponseChartResultInnerMeta) GetExchangeTimezoneNameOk() (*string, bool)

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

func (*ChartResponseChartResultInnerMeta) GetFirstTradeDate

func (o *ChartResponseChartResultInnerMeta) GetFirstTradeDate() int32

GetFirstTradeDate returns the FirstTradeDate field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMeta) GetFirstTradeDateOk

func (o *ChartResponseChartResultInnerMeta) GetFirstTradeDateOk() (*int32, bool)

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

func (*ChartResponseChartResultInnerMeta) GetGmtoffset

func (o *ChartResponseChartResultInnerMeta) GetGmtoffset() int32

GetGmtoffset returns the Gmtoffset field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMeta) GetGmtoffsetOk

func (o *ChartResponseChartResultInnerMeta) GetGmtoffsetOk() (*int32, bool)

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

func (*ChartResponseChartResultInnerMeta) GetInstrumentType

func (o *ChartResponseChartResultInnerMeta) GetInstrumentType() string

GetInstrumentType returns the InstrumentType field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMeta) GetInstrumentTypeOk

func (o *ChartResponseChartResultInnerMeta) GetInstrumentTypeOk() (*string, bool)

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

func (*ChartResponseChartResultInnerMeta) GetPreviousClose

func (o *ChartResponseChartResultInnerMeta) GetPreviousClose() float32

GetPreviousClose returns the PreviousClose field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMeta) GetPreviousCloseOk

func (o *ChartResponseChartResultInnerMeta) GetPreviousCloseOk() (*float32, bool)

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

func (*ChartResponseChartResultInnerMeta) GetPriceHint

func (o *ChartResponseChartResultInnerMeta) GetPriceHint() int32

GetPriceHint returns the PriceHint field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMeta) GetPriceHintOk

func (o *ChartResponseChartResultInnerMeta) GetPriceHintOk() (*int32, bool)

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

func (*ChartResponseChartResultInnerMeta) GetRange

GetRange returns the Range field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMeta) GetRangeOk

func (o *ChartResponseChartResultInnerMeta) GetRangeOk() (*string, bool)

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

func (*ChartResponseChartResultInnerMeta) GetRegularMarketPrice

func (o *ChartResponseChartResultInnerMeta) GetRegularMarketPrice() float32

GetRegularMarketPrice returns the RegularMarketPrice field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMeta) GetRegularMarketPriceOk

func (o *ChartResponseChartResultInnerMeta) GetRegularMarketPriceOk() (*float32, bool)

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

func (*ChartResponseChartResultInnerMeta) GetRegularMarketTime

func (o *ChartResponseChartResultInnerMeta) GetRegularMarketTime() int32

GetRegularMarketTime returns the RegularMarketTime field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMeta) GetRegularMarketTimeOk

func (o *ChartResponseChartResultInnerMeta) GetRegularMarketTimeOk() (*int32, bool)

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

func (*ChartResponseChartResultInnerMeta) GetScale

GetScale returns the Scale field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMeta) GetScaleOk

func (o *ChartResponseChartResultInnerMeta) GetScaleOk() (*int32, bool)

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

func (*ChartResponseChartResultInnerMeta) GetSymbol

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMeta) GetSymbolOk

func (o *ChartResponseChartResultInnerMeta) GetSymbolOk() (*string, bool)

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

func (*ChartResponseChartResultInnerMeta) GetTimezone

func (o *ChartResponseChartResultInnerMeta) GetTimezone() string

GetTimezone returns the Timezone field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMeta) GetTimezoneOk

func (o *ChartResponseChartResultInnerMeta) 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 (*ChartResponseChartResultInnerMeta) GetTradingPeriods

GetTradingPeriods returns the TradingPeriods field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMeta) GetTradingPeriodsOk

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

func (*ChartResponseChartResultInnerMeta) GetValidRanges

func (o *ChartResponseChartResultInnerMeta) GetValidRanges() []string

GetValidRanges returns the ValidRanges field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMeta) GetValidRangesOk

func (o *ChartResponseChartResultInnerMeta) GetValidRangesOk() ([]string, bool)

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

func (*ChartResponseChartResultInnerMeta) HasChartPreviousClose

func (o *ChartResponseChartResultInnerMeta) HasChartPreviousClose() bool

HasChartPreviousClose returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerMeta) HasCurrency

func (o *ChartResponseChartResultInnerMeta) HasCurrency() bool

HasCurrency returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerMeta) HasCurrentTradingPeriod

func (o *ChartResponseChartResultInnerMeta) HasCurrentTradingPeriod() bool

HasCurrentTradingPeriod returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerMeta) HasDataGranularity

func (o *ChartResponseChartResultInnerMeta) HasDataGranularity() bool

HasDataGranularity returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerMeta) HasExchangeName

func (o *ChartResponseChartResultInnerMeta) HasExchangeName() bool

HasExchangeName returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerMeta) HasExchangeTimezoneName

func (o *ChartResponseChartResultInnerMeta) HasExchangeTimezoneName() bool

HasExchangeTimezoneName returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerMeta) HasFirstTradeDate

func (o *ChartResponseChartResultInnerMeta) HasFirstTradeDate() bool

HasFirstTradeDate returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerMeta) HasGmtoffset

func (o *ChartResponseChartResultInnerMeta) HasGmtoffset() bool

HasGmtoffset returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerMeta) HasInstrumentType

func (o *ChartResponseChartResultInnerMeta) HasInstrumentType() bool

HasInstrumentType returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerMeta) HasPreviousClose

func (o *ChartResponseChartResultInnerMeta) HasPreviousClose() bool

HasPreviousClose returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerMeta) HasPriceHint

func (o *ChartResponseChartResultInnerMeta) HasPriceHint() bool

HasPriceHint returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerMeta) HasRange

HasRange returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerMeta) HasRegularMarketPrice

func (o *ChartResponseChartResultInnerMeta) HasRegularMarketPrice() bool

HasRegularMarketPrice returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerMeta) HasRegularMarketTime

func (o *ChartResponseChartResultInnerMeta) HasRegularMarketTime() bool

HasRegularMarketTime returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerMeta) HasScale

HasScale returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerMeta) HasSymbol

func (o *ChartResponseChartResultInnerMeta) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerMeta) HasTimezone

func (o *ChartResponseChartResultInnerMeta) HasTimezone() bool

HasTimezone returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerMeta) HasTradingPeriods

func (o *ChartResponseChartResultInnerMeta) HasTradingPeriods() bool

HasTradingPeriods returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerMeta) HasValidRanges

func (o *ChartResponseChartResultInnerMeta) HasValidRanges() bool

HasValidRanges returns a boolean if a field has been set.

func (ChartResponseChartResultInnerMeta) MarshalJSON

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

func (*ChartResponseChartResultInnerMeta) SetChartPreviousClose

func (o *ChartResponseChartResultInnerMeta) SetChartPreviousClose(v float32)

SetChartPreviousClose gets a reference to the given float32 and assigns it to the ChartPreviousClose field.

func (*ChartResponseChartResultInnerMeta) SetCurrency

func (o *ChartResponseChartResultInnerMeta) SetCurrency(v string)

SetCurrency gets a reference to the given string and assigns it to the Currency field.

func (*ChartResponseChartResultInnerMeta) SetCurrentTradingPeriod

SetCurrentTradingPeriod gets a reference to the given ChartResponseChartResultInnerMetaCurrentTradingPeriod and assigns it to the CurrentTradingPeriod field.

func (*ChartResponseChartResultInnerMeta) SetDataGranularity

func (o *ChartResponseChartResultInnerMeta) SetDataGranularity(v string)

SetDataGranularity gets a reference to the given string and assigns it to the DataGranularity field.

func (*ChartResponseChartResultInnerMeta) SetExchangeName

func (o *ChartResponseChartResultInnerMeta) SetExchangeName(v string)

SetExchangeName gets a reference to the given string and assigns it to the ExchangeName field.

func (*ChartResponseChartResultInnerMeta) SetExchangeTimezoneName

func (o *ChartResponseChartResultInnerMeta) SetExchangeTimezoneName(v string)

SetExchangeTimezoneName gets a reference to the given string and assigns it to the ExchangeTimezoneName field.

func (*ChartResponseChartResultInnerMeta) SetFirstTradeDate

func (o *ChartResponseChartResultInnerMeta) SetFirstTradeDate(v int32)

SetFirstTradeDate gets a reference to the given int32 and assigns it to the FirstTradeDate field.

func (*ChartResponseChartResultInnerMeta) SetGmtoffset

func (o *ChartResponseChartResultInnerMeta) SetGmtoffset(v int32)

SetGmtoffset gets a reference to the given int32 and assigns it to the Gmtoffset field.

func (*ChartResponseChartResultInnerMeta) SetInstrumentType

func (o *ChartResponseChartResultInnerMeta) SetInstrumentType(v string)

SetInstrumentType gets a reference to the given string and assigns it to the InstrumentType field.

func (*ChartResponseChartResultInnerMeta) SetPreviousClose

func (o *ChartResponseChartResultInnerMeta) SetPreviousClose(v float32)

SetPreviousClose gets a reference to the given float32 and assigns it to the PreviousClose field.

func (*ChartResponseChartResultInnerMeta) SetPriceHint

func (o *ChartResponseChartResultInnerMeta) SetPriceHint(v int32)

SetPriceHint gets a reference to the given int32 and assigns it to the PriceHint field.

func (*ChartResponseChartResultInnerMeta) SetRange

SetRange gets a reference to the given string and assigns it to the Range field.

func (*ChartResponseChartResultInnerMeta) SetRegularMarketPrice

func (o *ChartResponseChartResultInnerMeta) SetRegularMarketPrice(v float32)

SetRegularMarketPrice gets a reference to the given float32 and assigns it to the RegularMarketPrice field.

func (*ChartResponseChartResultInnerMeta) SetRegularMarketTime

func (o *ChartResponseChartResultInnerMeta) SetRegularMarketTime(v int32)

SetRegularMarketTime gets a reference to the given int32 and assigns it to the RegularMarketTime field.

func (*ChartResponseChartResultInnerMeta) SetScale

SetScale gets a reference to the given int32 and assigns it to the Scale field.

func (*ChartResponseChartResultInnerMeta) SetSymbol

func (o *ChartResponseChartResultInnerMeta) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*ChartResponseChartResultInnerMeta) SetTimezone

func (o *ChartResponseChartResultInnerMeta) SetTimezone(v string)

SetTimezone gets a reference to the given string and assigns it to the Timezone field.

func (*ChartResponseChartResultInnerMeta) SetTradingPeriods

SetTradingPeriods gets a reference to the given [][]ChartResponseChartResultInnerMetaCurrentTradingPeriodRegular and assigns it to the TradingPeriods field.

func (*ChartResponseChartResultInnerMeta) SetValidRanges

func (o *ChartResponseChartResultInnerMeta) SetValidRanges(v []string)

SetValidRanges gets a reference to the given []string and assigns it to the ValidRanges field.

func (ChartResponseChartResultInnerMeta) ToMap

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

type ChartResponseChartResultInnerMetaCurrentTradingPeriod

type ChartResponseChartResultInnerMetaCurrentTradingPeriod struct {
	Pre     *ChartResponseChartResultInnerMetaCurrentTradingPeriodPre     `json:"pre,omitempty"`
	Regular *ChartResponseChartResultInnerMetaCurrentTradingPeriodRegular `json:"regular,omitempty"`
	Post    *ChartResponseChartResultInnerMetaCurrentTradingPeriodPost    `json:"post,omitempty"`
}

ChartResponseChartResultInnerMetaCurrentTradingPeriod struct for ChartResponseChartResultInnerMetaCurrentTradingPeriod

func NewChartResponseChartResultInnerMetaCurrentTradingPeriod

func NewChartResponseChartResultInnerMetaCurrentTradingPeriod() *ChartResponseChartResultInnerMetaCurrentTradingPeriod

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

func NewChartResponseChartResultInnerMetaCurrentTradingPeriodWithDefaults

func NewChartResponseChartResultInnerMetaCurrentTradingPeriodWithDefaults() *ChartResponseChartResultInnerMetaCurrentTradingPeriod

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

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriod) GetPost

GetPost returns the Post field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriod) GetPostOk

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

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriod) GetPre

GetPre returns the Pre field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriod) GetPreOk

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

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriod) GetRegular

GetRegular returns the Regular field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriod) GetRegularOk

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

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriod) HasPost

HasPost returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriod) HasPre

HasPre returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriod) HasRegular

HasRegular returns a boolean if a field has been set.

func (ChartResponseChartResultInnerMetaCurrentTradingPeriod) MarshalJSON

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriod) SetPost

SetPost gets a reference to the given ChartResponseChartResultInnerMetaCurrentTradingPeriodPost and assigns it to the Post field.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriod) SetPre

SetPre gets a reference to the given ChartResponseChartResultInnerMetaCurrentTradingPeriodPre and assigns it to the Pre field.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriod) SetRegular

SetRegular gets a reference to the given ChartResponseChartResultInnerMetaCurrentTradingPeriodRegular and assigns it to the Regular field.

func (ChartResponseChartResultInnerMetaCurrentTradingPeriod) ToMap

type ChartResponseChartResultInnerMetaCurrentTradingPeriodPost

type ChartResponseChartResultInnerMetaCurrentTradingPeriodPost struct {
	Timezone  *string `json:"timezone,omitempty"`
	Start     *int32  `json:"start,omitempty"`
	End       *int32  `json:"end,omitempty"`
	Gmtoffset *int32  `json:"gmtoffset,omitempty"`
}

ChartResponseChartResultInnerMetaCurrentTradingPeriodPost struct for ChartResponseChartResultInnerMetaCurrentTradingPeriodPost

func NewChartResponseChartResultInnerMetaCurrentTradingPeriodPost

func NewChartResponseChartResultInnerMetaCurrentTradingPeriodPost() *ChartResponseChartResultInnerMetaCurrentTradingPeriodPost

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

func NewChartResponseChartResultInnerMetaCurrentTradingPeriodPostWithDefaults

func NewChartResponseChartResultInnerMetaCurrentTradingPeriodPostWithDefaults() *ChartResponseChartResultInnerMetaCurrentTradingPeriodPost

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

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPost) GetEnd

GetEnd returns the End field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPost) GetEndOk

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

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPost) GetGmtoffset

GetGmtoffset returns the Gmtoffset field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPost) GetGmtoffsetOk

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

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPost) GetStart

GetStart returns the Start field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPost) GetStartOk

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

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPost) GetTimezone

GetTimezone returns the Timezone field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPost) GetTimezoneOk

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 (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPost) HasEnd

HasEnd returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPost) HasGmtoffset

HasGmtoffset returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPost) HasStart

HasStart returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPost) HasTimezone

HasTimezone returns a boolean if a field has been set.

func (ChartResponseChartResultInnerMetaCurrentTradingPeriodPost) MarshalJSON

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPost) SetEnd

SetEnd gets a reference to the given int32 and assigns it to the End field.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPost) SetGmtoffset

SetGmtoffset gets a reference to the given int32 and assigns it to the Gmtoffset field.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPost) SetStart

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPost) SetTimezone

SetTimezone gets a reference to the given string and assigns it to the Timezone field.

func (ChartResponseChartResultInnerMetaCurrentTradingPeriodPost) ToMap

type ChartResponseChartResultInnerMetaCurrentTradingPeriodPre

type ChartResponseChartResultInnerMetaCurrentTradingPeriodPre struct {
	Timezone  *string `json:"timezone,omitempty"`
	Start     *int32  `json:"start,omitempty"`
	End       *int32  `json:"end,omitempty"`
	Gmtoffset *int32  `json:"gmtoffset,omitempty"`
}

ChartResponseChartResultInnerMetaCurrentTradingPeriodPre struct for ChartResponseChartResultInnerMetaCurrentTradingPeriodPre

func NewChartResponseChartResultInnerMetaCurrentTradingPeriodPre

func NewChartResponseChartResultInnerMetaCurrentTradingPeriodPre() *ChartResponseChartResultInnerMetaCurrentTradingPeriodPre

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

func NewChartResponseChartResultInnerMetaCurrentTradingPeriodPreWithDefaults

func NewChartResponseChartResultInnerMetaCurrentTradingPeriodPreWithDefaults() *ChartResponseChartResultInnerMetaCurrentTradingPeriodPre

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

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPre) GetEnd

GetEnd returns the End field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPre) GetEndOk

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

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPre) GetGmtoffset

GetGmtoffset returns the Gmtoffset field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPre) GetGmtoffsetOk

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

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPre) GetStart

GetStart returns the Start field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPre) GetStartOk

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

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPre) GetTimezone

GetTimezone returns the Timezone field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPre) GetTimezoneOk

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 (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPre) HasEnd

HasEnd returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPre) HasGmtoffset

HasGmtoffset returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPre) HasStart

HasStart returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPre) HasTimezone

HasTimezone returns a boolean if a field has been set.

func (ChartResponseChartResultInnerMetaCurrentTradingPeriodPre) MarshalJSON

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPre) SetEnd

SetEnd gets a reference to the given int32 and assigns it to the End field.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPre) SetGmtoffset

SetGmtoffset gets a reference to the given int32 and assigns it to the Gmtoffset field.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPre) SetStart

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodPre) SetTimezone

SetTimezone gets a reference to the given string and assigns it to the Timezone field.

func (ChartResponseChartResultInnerMetaCurrentTradingPeriodPre) ToMap

type ChartResponseChartResultInnerMetaCurrentTradingPeriodRegular

type ChartResponseChartResultInnerMetaCurrentTradingPeriodRegular struct {
	Timezone  *string `json:"timezone,omitempty"`
	Start     *int32  `json:"start,omitempty"`
	End       *int32  `json:"end,omitempty"`
	Gmtoffset *int32  `json:"gmtoffset,omitempty"`
}

ChartResponseChartResultInnerMetaCurrentTradingPeriodRegular struct for ChartResponseChartResultInnerMetaCurrentTradingPeriodRegular

func NewChartResponseChartResultInnerMetaCurrentTradingPeriodRegular

func NewChartResponseChartResultInnerMetaCurrentTradingPeriodRegular() *ChartResponseChartResultInnerMetaCurrentTradingPeriodRegular

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

func NewChartResponseChartResultInnerMetaCurrentTradingPeriodRegularWithDefaults

func NewChartResponseChartResultInnerMetaCurrentTradingPeriodRegularWithDefaults() *ChartResponseChartResultInnerMetaCurrentTradingPeriodRegular

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

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodRegular) GetEnd

GetEnd returns the End field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodRegular) GetEndOk

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

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodRegular) GetGmtoffset

GetGmtoffset returns the Gmtoffset field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodRegular) GetGmtoffsetOk

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

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodRegular) GetStart

GetStart returns the Start field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodRegular) GetStartOk

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

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodRegular) GetTimezone

GetTimezone returns the Timezone field value if set, zero value otherwise.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodRegular) GetTimezoneOk

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 (*ChartResponseChartResultInnerMetaCurrentTradingPeriodRegular) HasEnd

HasEnd returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodRegular) HasGmtoffset

HasGmtoffset returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodRegular) HasStart

HasStart returns a boolean if a field has been set.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodRegular) HasTimezone

HasTimezone returns a boolean if a field has been set.

func (ChartResponseChartResultInnerMetaCurrentTradingPeriodRegular) MarshalJSON

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodRegular) SetEnd

SetEnd gets a reference to the given int32 and assigns it to the End field.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodRegular) SetGmtoffset

SetGmtoffset gets a reference to the given int32 and assigns it to the Gmtoffset field.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodRegular) SetStart

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*ChartResponseChartResultInnerMetaCurrentTradingPeriodRegular) SetTimezone

SetTimezone gets a reference to the given string and assigns it to the Timezone field.

func (ChartResponseChartResultInnerMetaCurrentTradingPeriodRegular) ToMap

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 CrumbAPIService

type CrumbAPIService service

CrumbAPIService CrumbAPI service

func (*CrumbAPIService) GetCrumb

GetCrumb Retrieve crumb for authentication

Retrieve crumb for Yahoo Finance API authentication

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

func (*CrumbAPIService) GetCrumbExecute

func (a *CrumbAPIService) GetCrumbExecute(r ApiGetCrumbRequest) (string, *http.Response, error)

Execute executes the request

@return string

type DownloadAPIService

type DownloadAPIService service

DownloadAPIService DownloadAPI service

func (*DownloadAPIService) Download

func (a *DownloadAPIService) Download(ctx context.Context, symbol string) ApiDownloadRequest

Download Download financial data for a specific symbol

Retrieve financial data in CSV format for the given symbol

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param symbol The stock symbol to download data for
@return ApiDownloadRequest

func (*DownloadAPIService) DownloadExecute

func (a *DownloadAPIService) DownloadExecute(r ApiDownloadRequest) (*os.File, *http.Response, error)

Execute executes the request

@return *os.File

type Error

type Error struct {
	Code        *string `json:"code,omitempty"`
	Description *string `json:"description,omitempty"`
}

Error struct for Error

func NewError

func NewError() *Error

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

func NewErrorWithDefaults

func NewErrorWithDefaults() *Error

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

func (*Error) GetCode

func (o *Error) GetCode() string

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

func (*Error) GetCodeOk

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

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

func (*Error) GetDescription

func (o *Error) GetDescription() string

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

func (*Error) GetDescriptionOk

func (o *Error) 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 (*Error) HasCode

func (o *Error) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*Error) HasDescription

func (o *Error) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (Error) MarshalJSON

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

func (*Error) SetCode

func (o *Error) SetCode(v string)

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

func (*Error) SetDescription

func (o *Error) SetDescription(v string)

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

func (Error) ToMap

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

type GenericOpenAPIError

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

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

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

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

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type Interval

type Interval string

Interval the model 'Interval'

const (
	INTERVAL__1M  Interval = "1m"
	INTERVAL__5M  Interval = "5m"
	INTERVAL__15M Interval = "15m"
	INTERVAL__30M Interval = "30m"
	INTERVAL__1H  Interval = "1h"
	INTERVAL__6H  Interval = "6h"
	INTERVAL__1D  Interval = "1d"
)

List of Interval

func NewIntervalFromValue

func NewIntervalFromValue(v string) (*Interval, error)

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

func (Interval) IsValid

func (v Interval) IsValid() bool

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

func (Interval) Ptr

func (v Interval) Ptr() *Interval

Ptr returns reference to Interval value

func (*Interval) UnmarshalJSON

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

type MappedNullable

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

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 NullableChartResponse

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

func NewNullableChartResponse

func NewNullableChartResponse(val *ChartResponse) *NullableChartResponse

func (NullableChartResponse) Get

func (NullableChartResponse) IsSet

func (v NullableChartResponse) IsSet() bool

func (NullableChartResponse) MarshalJSON

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

func (*NullableChartResponse) Set

func (v *NullableChartResponse) Set(val *ChartResponse)

func (*NullableChartResponse) UnmarshalJSON

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

func (*NullableChartResponse) Unset

func (v *NullableChartResponse) Unset()

type NullableChartResponseChart

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

func NewNullableChartResponseChart

func NewNullableChartResponseChart(val *ChartResponseChart) *NullableChartResponseChart

func (NullableChartResponseChart) Get

func (NullableChartResponseChart) IsSet

func (v NullableChartResponseChart) IsSet() bool

func (NullableChartResponseChart) MarshalJSON

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

func (*NullableChartResponseChart) Set

func (*NullableChartResponseChart) UnmarshalJSON

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

func (*NullableChartResponseChart) Unset

func (v *NullableChartResponseChart) Unset()

type NullableChartResponseChartResultInner

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

func (NullableChartResponseChartResultInner) Get

func (NullableChartResponseChartResultInner) IsSet

func (NullableChartResponseChartResultInner) MarshalJSON

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

func (*NullableChartResponseChartResultInner) Set

func (*NullableChartResponseChartResultInner) UnmarshalJSON

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

func (*NullableChartResponseChartResultInner) Unset

type NullableChartResponseChartResultInnerIndicators

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

func (NullableChartResponseChartResultInnerIndicators) Get

func (NullableChartResponseChartResultInnerIndicators) IsSet

func (NullableChartResponseChartResultInnerIndicators) MarshalJSON

func (*NullableChartResponseChartResultInnerIndicators) Set

func (*NullableChartResponseChartResultInnerIndicators) UnmarshalJSON

func (*NullableChartResponseChartResultInnerIndicators) Unset

type NullableChartResponseChartResultInnerIndicatorsQuoteInner

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

func (NullableChartResponseChartResultInnerIndicatorsQuoteInner) Get

func (NullableChartResponseChartResultInnerIndicatorsQuoteInner) IsSet

func (NullableChartResponseChartResultInnerIndicatorsQuoteInner) MarshalJSON

func (*NullableChartResponseChartResultInnerIndicatorsQuoteInner) Set

func (*NullableChartResponseChartResultInnerIndicatorsQuoteInner) UnmarshalJSON

func (*NullableChartResponseChartResultInnerIndicatorsQuoteInner) Unset

type NullableChartResponseChartResultInnerMeta

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

func (NullableChartResponseChartResultInnerMeta) Get

func (NullableChartResponseChartResultInnerMeta) IsSet

func (NullableChartResponseChartResultInnerMeta) MarshalJSON

func (*NullableChartResponseChartResultInnerMeta) Set

func (*NullableChartResponseChartResultInnerMeta) UnmarshalJSON

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

func (*NullableChartResponseChartResultInnerMeta) Unset

type NullableChartResponseChartResultInnerMetaCurrentTradingPeriod

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

func (NullableChartResponseChartResultInnerMetaCurrentTradingPeriod) Get

func (NullableChartResponseChartResultInnerMetaCurrentTradingPeriod) IsSet

func (NullableChartResponseChartResultInnerMetaCurrentTradingPeriod) MarshalJSON

func (*NullableChartResponseChartResultInnerMetaCurrentTradingPeriod) Set

func (*NullableChartResponseChartResultInnerMetaCurrentTradingPeriod) UnmarshalJSON

func (*NullableChartResponseChartResultInnerMetaCurrentTradingPeriod) Unset

type NullableChartResponseChartResultInnerMetaCurrentTradingPeriodPost

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

func (NullableChartResponseChartResultInnerMetaCurrentTradingPeriodPost) Get

func (NullableChartResponseChartResultInnerMetaCurrentTradingPeriodPost) IsSet

func (NullableChartResponseChartResultInnerMetaCurrentTradingPeriodPost) MarshalJSON

func (*NullableChartResponseChartResultInnerMetaCurrentTradingPeriodPost) Set

func (*NullableChartResponseChartResultInnerMetaCurrentTradingPeriodPost) UnmarshalJSON

func (*NullableChartResponseChartResultInnerMetaCurrentTradingPeriodPost) Unset

type NullableChartResponseChartResultInnerMetaCurrentTradingPeriodPre

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

func (NullableChartResponseChartResultInnerMetaCurrentTradingPeriodPre) Get

func (NullableChartResponseChartResultInnerMetaCurrentTradingPeriodPre) IsSet

func (NullableChartResponseChartResultInnerMetaCurrentTradingPeriodPre) MarshalJSON

func (*NullableChartResponseChartResultInnerMetaCurrentTradingPeriodPre) Set

func (*NullableChartResponseChartResultInnerMetaCurrentTradingPeriodPre) UnmarshalJSON

func (*NullableChartResponseChartResultInnerMetaCurrentTradingPeriodPre) Unset

type NullableChartResponseChartResultInnerMetaCurrentTradingPeriodRegular

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

func (NullableChartResponseChartResultInnerMetaCurrentTradingPeriodRegular) Get

func (NullableChartResponseChartResultInnerMetaCurrentTradingPeriodRegular) IsSet

func (NullableChartResponseChartResultInnerMetaCurrentTradingPeriodRegular) MarshalJSON

func (*NullableChartResponseChartResultInnerMetaCurrentTradingPeriodRegular) Set

func (*NullableChartResponseChartResultInnerMetaCurrentTradingPeriodRegular) UnmarshalJSON

func (*NullableChartResponseChartResultInnerMetaCurrentTradingPeriodRegular) Unset

type NullableError

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

func NewNullableError

func NewNullableError(val *Error) *NullableError

func (NullableError) Get

func (v NullableError) Get() *Error

func (NullableError) IsSet

func (v NullableError) IsSet() bool

func (NullableError) MarshalJSON

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

func (*NullableError) Set

func (v *NullableError) Set(val *Error)

func (*NullableError) UnmarshalJSON

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

func (*NullableError) Unset

func (v *NullableError) Unset()

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

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

func NewNullableInterval

func NewNullableInterval(val *Interval) *NullableInterval

func (NullableInterval) Get

func (v NullableInterval) Get() *Interval

func (NullableInterval) IsSet

func (v NullableInterval) IsSet() bool

func (NullableInterval) MarshalJSON

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

func (*NullableInterval) Set

func (v *NullableInterval) Set(val *Interval)

func (*NullableInterval) UnmarshalJSON

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

func (*NullableInterval) Unset

func (v *NullableInterval) Unset()

type NullableQuoteResponse

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

func NewNullableQuoteResponse

func NewNullableQuoteResponse(val *QuoteResponse) *NullableQuoteResponse

func (NullableQuoteResponse) Get

func (NullableQuoteResponse) IsSet

func (v NullableQuoteResponse) IsSet() bool

func (NullableQuoteResponse) MarshalJSON

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

func (*NullableQuoteResponse) Set

func (v *NullableQuoteResponse) Set(val *QuoteResponse)

func (*NullableQuoteResponse) UnmarshalJSON

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

func (*NullableQuoteResponse) Unset

func (v *NullableQuoteResponse) Unset()

type NullableQuoteResponseQuoteResponse

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

func (NullableQuoteResponseQuoteResponse) Get

func (NullableQuoteResponseQuoteResponse) IsSet

func (NullableQuoteResponseQuoteResponse) MarshalJSON

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

func (*NullableQuoteResponseQuoteResponse) Set

func (*NullableQuoteResponseQuoteResponse) UnmarshalJSON

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

func (*NullableQuoteResponseQuoteResponse) Unset

type NullableQuoteResult

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

func NewNullableQuoteResult

func NewNullableQuoteResult(val *QuoteResult) *NullableQuoteResult

func (NullableQuoteResult) Get

func (NullableQuoteResult) IsSet

func (v NullableQuoteResult) IsSet() bool

func (NullableQuoteResult) MarshalJSON

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

func (*NullableQuoteResult) Set

func (v *NullableQuoteResult) Set(val *QuoteResult)

func (*NullableQuoteResult) UnmarshalJSON

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

func (*NullableQuoteResult) Unset

func (v *NullableQuoteResult) Unset()

type NullableQuoteResultFiftyTwoWeekHighChange

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

func (NullableQuoteResultFiftyTwoWeekHighChange) Get

func (NullableQuoteResultFiftyTwoWeekHighChange) IsSet

func (NullableQuoteResultFiftyTwoWeekHighChange) MarshalJSON

func (*NullableQuoteResultFiftyTwoWeekHighChange) Set

func (*NullableQuoteResultFiftyTwoWeekHighChange) UnmarshalJSON

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

func (*NullableQuoteResultFiftyTwoWeekHighChange) Unset

type NullableQuoteResultFiftyTwoWeekHighChangePercent

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

func (NullableQuoteResultFiftyTwoWeekHighChangePercent) Get

func (NullableQuoteResultFiftyTwoWeekHighChangePercent) IsSet

func (NullableQuoteResultFiftyTwoWeekHighChangePercent) MarshalJSON

func (*NullableQuoteResultFiftyTwoWeekHighChangePercent) Set

func (*NullableQuoteResultFiftyTwoWeekHighChangePercent) UnmarshalJSON

func (*NullableQuoteResultFiftyTwoWeekHighChangePercent) Unset

type NullableQuoteResultFiftyTwoWeekLow

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

func (NullableQuoteResultFiftyTwoWeekLow) Get

func (NullableQuoteResultFiftyTwoWeekLow) IsSet

func (NullableQuoteResultFiftyTwoWeekLow) MarshalJSON

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

func (*NullableQuoteResultFiftyTwoWeekLow) Set

func (*NullableQuoteResultFiftyTwoWeekLow) UnmarshalJSON

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

func (*NullableQuoteResultFiftyTwoWeekLow) Unset

type NullableQuoteResultFiftyTwoWeekLowChange

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

func (NullableQuoteResultFiftyTwoWeekLowChange) Get

func (NullableQuoteResultFiftyTwoWeekLowChange) IsSet

func (NullableQuoteResultFiftyTwoWeekLowChange) MarshalJSON

func (*NullableQuoteResultFiftyTwoWeekLowChange) Set

func (*NullableQuoteResultFiftyTwoWeekLowChange) UnmarshalJSON

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

func (*NullableQuoteResultFiftyTwoWeekLowChange) Unset

type NullableQuoteResultFiftyTwoWeekLowChangePercent

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

func (NullableQuoteResultFiftyTwoWeekLowChangePercent) Get

func (NullableQuoteResultFiftyTwoWeekLowChangePercent) IsSet

func (NullableQuoteResultFiftyTwoWeekLowChangePercent) MarshalJSON

func (*NullableQuoteResultFiftyTwoWeekLowChangePercent) Set

func (*NullableQuoteResultFiftyTwoWeekLowChangePercent) UnmarshalJSON

func (*NullableQuoteResultFiftyTwoWeekLowChangePercent) Unset

type NullableQuoteResultFiftyTwoWeekRange

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

func (NullableQuoteResultFiftyTwoWeekRange) Get

func (NullableQuoteResultFiftyTwoWeekRange) IsSet

func (NullableQuoteResultFiftyTwoWeekRange) MarshalJSON

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

func (*NullableQuoteResultFiftyTwoWeekRange) Set

func (*NullableQuoteResultFiftyTwoWeekRange) UnmarshalJSON

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

func (*NullableQuoteResultFiftyTwoWeekRange) Unset

type NullableQuoteResultRegularMarketChange

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

func (NullableQuoteResultRegularMarketChange) Get

func (NullableQuoteResultRegularMarketChange) IsSet

func (NullableQuoteResultRegularMarketChange) MarshalJSON

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

func (*NullableQuoteResultRegularMarketChange) Set

func (*NullableQuoteResultRegularMarketChange) UnmarshalJSON

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

func (*NullableQuoteResultRegularMarketChange) Unset

type NullableQuoteResultRegularMarketChangePercent

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

func (NullableQuoteResultRegularMarketChangePercent) Get

func (NullableQuoteResultRegularMarketChangePercent) IsSet

func (NullableQuoteResultRegularMarketChangePercent) MarshalJSON

func (*NullableQuoteResultRegularMarketChangePercent) Set

func (*NullableQuoteResultRegularMarketChangePercent) UnmarshalJSON

func (*NullableQuoteResultRegularMarketChangePercent) Unset

type NullableQuoteResultRegularMarketDayHigh

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

func (NullableQuoteResultRegularMarketDayHigh) Get

func (NullableQuoteResultRegularMarketDayHigh) IsSet

func (NullableQuoteResultRegularMarketDayHigh) MarshalJSON

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

func (*NullableQuoteResultRegularMarketDayHigh) Set

func (*NullableQuoteResultRegularMarketDayHigh) UnmarshalJSON

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

func (*NullableQuoteResultRegularMarketDayHigh) Unset

type NullableQuoteResultRegularMarketDayLow

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

func (NullableQuoteResultRegularMarketDayLow) Get

func (NullableQuoteResultRegularMarketDayLow) IsSet

func (NullableQuoteResultRegularMarketDayLow) MarshalJSON

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

func (*NullableQuoteResultRegularMarketDayLow) Set

func (*NullableQuoteResultRegularMarketDayLow) UnmarshalJSON

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

func (*NullableQuoteResultRegularMarketDayLow) Unset

type NullableQuoteResultRegularMarketDayRange

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

func (NullableQuoteResultRegularMarketDayRange) Get

func (NullableQuoteResultRegularMarketDayRange) IsSet

func (NullableQuoteResultRegularMarketDayRange) MarshalJSON

func (*NullableQuoteResultRegularMarketDayRange) Set

func (*NullableQuoteResultRegularMarketDayRange) UnmarshalJSON

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

func (*NullableQuoteResultRegularMarketDayRange) Unset

type NullableQuoteResultRegularMarketOpen

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

func (NullableQuoteResultRegularMarketOpen) Get

func (NullableQuoteResultRegularMarketOpen) IsSet

func (NullableQuoteResultRegularMarketOpen) MarshalJSON

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

func (*NullableQuoteResultRegularMarketOpen) Set

func (*NullableQuoteResultRegularMarketOpen) UnmarshalJSON

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

func (*NullableQuoteResultRegularMarketOpen) Unset

type NullableQuoteResultRegularMarketPreviousClose

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

func (NullableQuoteResultRegularMarketPreviousClose) Get

func (NullableQuoteResultRegularMarketPreviousClose) IsSet

func (NullableQuoteResultRegularMarketPreviousClose) MarshalJSON

func (*NullableQuoteResultRegularMarketPreviousClose) Set

func (*NullableQuoteResultRegularMarketPreviousClose) UnmarshalJSON

func (*NullableQuoteResultRegularMarketPreviousClose) Unset

type NullableQuoteResultRegularMarketPrice

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

func (NullableQuoteResultRegularMarketPrice) Get

func (NullableQuoteResultRegularMarketPrice) IsSet

func (NullableQuoteResultRegularMarketPrice) MarshalJSON

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

func (*NullableQuoteResultRegularMarketPrice) Set

func (*NullableQuoteResultRegularMarketPrice) UnmarshalJSON

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

func (*NullableQuoteResultRegularMarketPrice) Unset

type NullableQuoteResultRegularMarketTime

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

func (NullableQuoteResultRegularMarketTime) Get

func (NullableQuoteResultRegularMarketTime) IsSet

func (NullableQuoteResultRegularMarketTime) MarshalJSON

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

func (*NullableQuoteResultRegularMarketTime) Set

func (*NullableQuoteResultRegularMarketTime) UnmarshalJSON

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

func (*NullableQuoteResultRegularMarketTime) Unset

type NullableQuoteResultRegularMarketVolume

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

func (NullableQuoteResultRegularMarketVolume) Get

func (NullableQuoteResultRegularMarketVolume) IsSet

func (NullableQuoteResultRegularMarketVolume) MarshalJSON

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

func (*NullableQuoteResultRegularMarketVolume) Set

func (*NullableQuoteResultRegularMarketVolume) UnmarshalJSON

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

func (*NullableQuoteResultRegularMarketVolume) Unset

type NullableRange

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

func NewNullableRange

func NewNullableRange(val *Range) *NullableRange

func (NullableRange) Get

func (v NullableRange) Get() *Range

func (NullableRange) IsSet

func (v NullableRange) IsSet() bool

func (NullableRange) MarshalJSON

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

func (*NullableRange) Set

func (v *NullableRange) Set(val *Range)

func (*NullableRange) UnmarshalJSON

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

func (*NullableRange) Unset

func (v *NullableRange) Unset()

type NullableSparkResponse

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

func NewNullableSparkResponse

func NewNullableSparkResponse(val *SparkResponse) *NullableSparkResponse

func (NullableSparkResponse) Get

func (NullableSparkResponse) IsSet

func (v NullableSparkResponse) IsSet() bool

func (NullableSparkResponse) MarshalJSON

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

func (*NullableSparkResponse) Set

func (v *NullableSparkResponse) Set(val *SparkResponse)

func (*NullableSparkResponse) UnmarshalJSON

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

func (*NullableSparkResponse) Unset

func (v *NullableSparkResponse) Unset()

type NullableSparkResponseSpark

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

func NewNullableSparkResponseSpark

func NewNullableSparkResponseSpark(val *SparkResponseSpark) *NullableSparkResponseSpark

func (NullableSparkResponseSpark) Get

func (NullableSparkResponseSpark) IsSet

func (v NullableSparkResponseSpark) IsSet() bool

func (NullableSparkResponseSpark) MarshalJSON

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

func (*NullableSparkResponseSpark) Set

func (*NullableSparkResponseSpark) UnmarshalJSON

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

func (*NullableSparkResponseSpark) Unset

func (v *NullableSparkResponseSpark) Unset()

type NullableSparkResponseSparkResultInner

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

func (NullableSparkResponseSparkResultInner) Get

func (NullableSparkResponseSparkResultInner) IsSet

func (NullableSparkResponseSparkResultInner) MarshalJSON

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

func (*NullableSparkResponseSparkResultInner) Set

func (*NullableSparkResponseSparkResultInner) UnmarshalJSON

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

func (*NullableSparkResponseSparkResultInner) Unset

type NullableSparkResponseSparkResultInnerResponseInner

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

func (NullableSparkResponseSparkResultInnerResponseInner) Get

func (NullableSparkResponseSparkResultInnerResponseInner) IsSet

func (NullableSparkResponseSparkResultInnerResponseInner) MarshalJSON

func (*NullableSparkResponseSparkResultInnerResponseInner) Set

func (*NullableSparkResponseSparkResultInnerResponseInner) UnmarshalJSON

func (*NullableSparkResponseSparkResultInnerResponseInner) Unset

type NullableSparkResponseSparkResultInnerResponseInnerIndicators

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

func (NullableSparkResponseSparkResultInnerResponseInnerIndicators) Get

func (NullableSparkResponseSparkResultInnerResponseInnerIndicators) IsSet

func (NullableSparkResponseSparkResultInnerResponseInnerIndicators) MarshalJSON

func (*NullableSparkResponseSparkResultInnerResponseInnerIndicators) Set

func (*NullableSparkResponseSparkResultInnerResponseInnerIndicators) UnmarshalJSON

func (*NullableSparkResponseSparkResultInnerResponseInnerIndicators) Unset

type NullableSparkResponseSparkResultInnerResponseInnerIndicatorsQuoteInner

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

func (NullableSparkResponseSparkResultInnerResponseInnerIndicatorsQuoteInner) Get

func (NullableSparkResponseSparkResultInnerResponseInnerIndicatorsQuoteInner) IsSet

func (NullableSparkResponseSparkResultInnerResponseInnerIndicatorsQuoteInner) MarshalJSON

func (*NullableSparkResponseSparkResultInnerResponseInnerIndicatorsQuoteInner) Set

func (*NullableSparkResponseSparkResultInnerResponseInnerIndicatorsQuoteInner) UnmarshalJSON

func (*NullableSparkResponseSparkResultInnerResponseInnerIndicatorsQuoteInner) Unset

type NullableSparkResponseSparkResultInnerResponseInnerMeta

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

func (NullableSparkResponseSparkResultInnerResponseInnerMeta) Get

func (NullableSparkResponseSparkResultInnerResponseInnerMeta) IsSet

func (NullableSparkResponseSparkResultInnerResponseInnerMeta) MarshalJSON

func (*NullableSparkResponseSparkResultInnerResponseInnerMeta) Set

func (*NullableSparkResponseSparkResultInnerResponseInnerMeta) UnmarshalJSON

func (*NullableSparkResponseSparkResultInnerResponseInnerMeta) Unset

type NullableSparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod

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

func (NullableSparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod) Get

func (NullableSparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod) IsSet

func (NullableSparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod) MarshalJSON

func (*NullableSparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod) Set

func (*NullableSparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod) UnmarshalJSON

func (*NullableSparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod) Unset

type NullableSparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre

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

func (NullableSparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre) Get

func (NullableSparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre) IsSet

func (NullableSparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre) MarshalJSON

func (*NullableSparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre) Set

func (*NullableSparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre) UnmarshalJSON

func (*NullableSparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre) 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 QuoteAPIService

type QuoteAPIService service

QuoteAPIService QuoteAPI service

func (*QuoteAPIService) GetQuote

GetQuote Returns quotes for the specified symbols

Returns quotes for the specified symbols

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

func (*QuoteAPIService) GetQuoteExecute

func (a *QuoteAPIService) GetQuoteExecute(r ApiGetQuoteRequest) (*QuoteResponse, *http.Response, error)

Execute executes the request

@return QuoteResponse

type QuoteResponse

type QuoteResponse struct {
	QuoteResponse *QuoteResponseQuoteResponse `json:"quoteResponse,omitempty"`
}

QuoteResponse struct for QuoteResponse

func NewQuoteResponse

func NewQuoteResponse() *QuoteResponse

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

func NewQuoteResponseWithDefaults

func NewQuoteResponseWithDefaults() *QuoteResponse

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

func (*QuoteResponse) GetQuoteResponse

func (o *QuoteResponse) GetQuoteResponse() QuoteResponseQuoteResponse

GetQuoteResponse returns the QuoteResponse field value if set, zero value otherwise.

func (*QuoteResponse) GetQuoteResponseOk

func (o *QuoteResponse) GetQuoteResponseOk() (*QuoteResponseQuoteResponse, bool)

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

func (*QuoteResponse) HasQuoteResponse

func (o *QuoteResponse) HasQuoteResponse() bool

HasQuoteResponse returns a boolean if a field has been set.

func (QuoteResponse) MarshalJSON

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

func (*QuoteResponse) SetQuoteResponse

func (o *QuoteResponse) SetQuoteResponse(v QuoteResponseQuoteResponse)

SetQuoteResponse gets a reference to the given QuoteResponseQuoteResponse and assigns it to the QuoteResponse field.

func (QuoteResponse) ToMap

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

type QuoteResponseQuoteResponse

type QuoteResponseQuoteResponse struct {
	Result []QuoteResult `json:"result,omitempty"`
	Error  *Error        `json:"error,omitempty"`
}

QuoteResponseQuoteResponse struct for QuoteResponseQuoteResponse

func NewQuoteResponseQuoteResponse

func NewQuoteResponseQuoteResponse() *QuoteResponseQuoteResponse

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

func NewQuoteResponseQuoteResponseWithDefaults

func NewQuoteResponseQuoteResponseWithDefaults() *QuoteResponseQuoteResponse

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

func (*QuoteResponseQuoteResponse) GetError

func (o *QuoteResponseQuoteResponse) GetError() Error

GetError returns the Error field value if set, zero value otherwise.

func (*QuoteResponseQuoteResponse) GetErrorOk

func (o *QuoteResponseQuoteResponse) GetErrorOk() (*Error, bool)

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

func (*QuoteResponseQuoteResponse) GetResult

func (o *QuoteResponseQuoteResponse) GetResult() []QuoteResult

GetResult returns the Result field value if set, zero value otherwise.

func (*QuoteResponseQuoteResponse) GetResultOk

func (o *QuoteResponseQuoteResponse) GetResultOk() ([]QuoteResult, 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 (*QuoteResponseQuoteResponse) HasError

func (o *QuoteResponseQuoteResponse) HasError() bool

HasError returns a boolean if a field has been set.

func (*QuoteResponseQuoteResponse) HasResult

func (o *QuoteResponseQuoteResponse) HasResult() bool

HasResult returns a boolean if a field has been set.

func (QuoteResponseQuoteResponse) MarshalJSON

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

func (*QuoteResponseQuoteResponse) SetError

func (o *QuoteResponseQuoteResponse) SetError(v Error)

SetError gets a reference to the given Error and assigns it to the Error field.

func (*QuoteResponseQuoteResponse) SetResult

func (o *QuoteResponseQuoteResponse) SetResult(v []QuoteResult)

SetResult gets a reference to the given []QuoteResult and assigns it to the Result field.

func (QuoteResponseQuoteResponse) ToMap

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

type QuoteResult

type QuoteResult struct {
	FullExchangeName              *string                                   `json:"fullExchangeName,omitempty"`
	Symbol                        *string                                   `json:"symbol,omitempty"`
	FiftyTwoWeekLowChangePercent  *QuoteResultFiftyTwoWeekLowChangePercent  `json:"fiftyTwoWeekLowChangePercent,omitempty"`
	GmtOffSetMilliseconds         *int32                                    `json:"gmtOffSetMilliseconds,omitempty"`
	RegularMarketOpen             *QuoteResultRegularMarketOpen             `json:"regularMarketOpen,omitempty"`
	Language                      *string                                   `json:"language,omitempty"`
	RegularMarketTime             *QuoteResultRegularMarketTime             `json:"regularMarketTime,omitempty"`
	RegularMarketChangePercent    *QuoteResultRegularMarketChangePercent    `json:"regularMarketChangePercent,omitempty"`
	QuoteType                     *string                                   `json:"quoteType,omitempty"`
	Uuid                          *string                                   `json:"uuid,omitempty"`
	RegularMarketDayRange         *QuoteResultRegularMarketDayRange         `json:"regularMarketDayRange,omitempty"`
	FiftyTwoWeekLowChange         *QuoteResultFiftyTwoWeekLowChange         `json:"fiftyTwoWeekLowChange,omitempty"`
	FiftyTwoWeekHighChangePercent *QuoteResultFiftyTwoWeekHighChangePercent `json:"fiftyTwoWeekHighChangePercent,omitempty"`
	RegularMarketDayHigh          *QuoteResultRegularMarketDayHigh          `json:"regularMarketDayHigh,omitempty"`
	Tradeable                     *bool                                     `json:"tradeable,omitempty"`
	Currency                      *string                                   `json:"currency,omitempty"`
	FiftyTwoWeekHigh              *QuoteResultRegularMarketDayHigh          `json:"fiftyTwoWeekHigh,omitempty"`
	RegularMarketPreviousClose    *QuoteResultRegularMarketPreviousClose    `json:"regularMarketPreviousClose,omitempty"`
	ExchangeTimezoneName          *string                                   `json:"exchangeTimezoneName,omitempty"`
	FiftyTwoWeekHighChange        *QuoteResultFiftyTwoWeekHighChange        `json:"fiftyTwoWeekHighChange,omitempty"`
	RegularMarketChange           *QuoteResultRegularMarketChange           `json:"regularMarketChange,omitempty"`
	FiftyTwoWeekRange             *QuoteResultFiftyTwoWeekRange             `json:"fiftyTwoWeekRange,omitempty"`
	ExchangeDataDelayedBy         *int32                                    `json:"exchangeDataDelayedBy,omitempty"`
	FirstTradeDateMilliseconds    *int64                                    `json:"firstTradeDateMilliseconds,omitempty"`
	ExchangeTimezoneShortName     *string                                   `json:"exchangeTimezoneShortName,omitempty"`
	MarketState                   *string                                   `json:"marketState,omitempty"`
	FiftyTwoWeekLow               *QuoteResultFiftyTwoWeekLow               `json:"fiftyTwoWeekLow,omitempty"`
	RegularMarketPrice            *QuoteResultRegularMarketPrice            `json:"regularMarketPrice,omitempty"`
	Market                        *string                                   `json:"market,omitempty"`
	RegularMarketVolume           *QuoteResultRegularMarketVolume           `json:"regularMarketVolume,omitempty"`
	QuoteSourceName               *string                                   `json:"quoteSourceName,omitempty"`
	MessageBoardId                *string                                   `json:"messageBoardId,omitempty"`
	PriceHint                     *int32                                    `json:"priceHint,omitempty"`
	Exchange                      *string                                   `json:"exchange,omitempty"`
	SourceInterval                *int32                                    `json:"sourceInterval,omitempty"`
	RegularMarketDayLow           *QuoteResultRegularMarketDayLow           `json:"regularMarketDayLow,omitempty"`
	Region                        *string                                   `json:"region,omitempty"`
	ShortName                     *string                                   `json:"shortName,omitempty"`
	Triggerable                   *bool                                     `json:"triggerable,omitempty"`
}

QuoteResult struct for QuoteResult

func NewQuoteResult

func NewQuoteResult() *QuoteResult

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

func NewQuoteResultWithDefaults

func NewQuoteResultWithDefaults() *QuoteResult

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

func (*QuoteResult) GetCurrency

func (o *QuoteResult) GetCurrency() string

GetCurrency returns the Currency field value if set, zero value otherwise.

func (*QuoteResult) GetCurrencyOk

func (o *QuoteResult) GetCurrencyOk() (*string, bool)

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

func (*QuoteResult) GetExchange

func (o *QuoteResult) GetExchange() string

GetExchange returns the Exchange field value if set, zero value otherwise.

func (*QuoteResult) GetExchangeDataDelayedBy

func (o *QuoteResult) GetExchangeDataDelayedBy() int32

GetExchangeDataDelayedBy returns the ExchangeDataDelayedBy field value if set, zero value otherwise.

func (*QuoteResult) GetExchangeDataDelayedByOk

func (o *QuoteResult) GetExchangeDataDelayedByOk() (*int32, bool)

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

func (*QuoteResult) GetExchangeOk

func (o *QuoteResult) GetExchangeOk() (*string, bool)

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

func (*QuoteResult) GetExchangeTimezoneName

func (o *QuoteResult) GetExchangeTimezoneName() string

GetExchangeTimezoneName returns the ExchangeTimezoneName field value if set, zero value otherwise.

func (*QuoteResult) GetExchangeTimezoneNameOk

func (o *QuoteResult) GetExchangeTimezoneNameOk() (*string, bool)

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

func (*QuoteResult) GetExchangeTimezoneShortName

func (o *QuoteResult) GetExchangeTimezoneShortName() string

GetExchangeTimezoneShortName returns the ExchangeTimezoneShortName field value if set, zero value otherwise.

func (*QuoteResult) GetExchangeTimezoneShortNameOk

func (o *QuoteResult) GetExchangeTimezoneShortNameOk() (*string, bool)

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

func (*QuoteResult) GetFiftyTwoWeekHigh

func (o *QuoteResult) GetFiftyTwoWeekHigh() QuoteResultRegularMarketDayHigh

GetFiftyTwoWeekHigh returns the FiftyTwoWeekHigh field value if set, zero value otherwise.

func (*QuoteResult) GetFiftyTwoWeekHighChange

func (o *QuoteResult) GetFiftyTwoWeekHighChange() QuoteResultFiftyTwoWeekHighChange

GetFiftyTwoWeekHighChange returns the FiftyTwoWeekHighChange field value if set, zero value otherwise.

func (*QuoteResult) GetFiftyTwoWeekHighChangeOk

func (o *QuoteResult) GetFiftyTwoWeekHighChangeOk() (*QuoteResultFiftyTwoWeekHighChange, bool)

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

func (*QuoteResult) GetFiftyTwoWeekHighChangePercent

func (o *QuoteResult) GetFiftyTwoWeekHighChangePercent() QuoteResultFiftyTwoWeekHighChangePercent

GetFiftyTwoWeekHighChangePercent returns the FiftyTwoWeekHighChangePercent field value if set, zero value otherwise.

func (*QuoteResult) GetFiftyTwoWeekHighChangePercentOk

func (o *QuoteResult) GetFiftyTwoWeekHighChangePercentOk() (*QuoteResultFiftyTwoWeekHighChangePercent, bool)

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

func (*QuoteResult) GetFiftyTwoWeekHighOk

func (o *QuoteResult) GetFiftyTwoWeekHighOk() (*QuoteResultRegularMarketDayHigh, bool)

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

func (*QuoteResult) GetFiftyTwoWeekLow

func (o *QuoteResult) GetFiftyTwoWeekLow() QuoteResultFiftyTwoWeekLow

GetFiftyTwoWeekLow returns the FiftyTwoWeekLow field value if set, zero value otherwise.

func (*QuoteResult) GetFiftyTwoWeekLowChange

func (o *QuoteResult) GetFiftyTwoWeekLowChange() QuoteResultFiftyTwoWeekLowChange

GetFiftyTwoWeekLowChange returns the FiftyTwoWeekLowChange field value if set, zero value otherwise.

func (*QuoteResult) GetFiftyTwoWeekLowChangeOk

func (o *QuoteResult) GetFiftyTwoWeekLowChangeOk() (*QuoteResultFiftyTwoWeekLowChange, bool)

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

func (*QuoteResult) GetFiftyTwoWeekLowChangePercent

func (o *QuoteResult) GetFiftyTwoWeekLowChangePercent() QuoteResultFiftyTwoWeekLowChangePercent

GetFiftyTwoWeekLowChangePercent returns the FiftyTwoWeekLowChangePercent field value if set, zero value otherwise.

func (*QuoteResult) GetFiftyTwoWeekLowChangePercentOk

func (o *QuoteResult) GetFiftyTwoWeekLowChangePercentOk() (*QuoteResultFiftyTwoWeekLowChangePercent, bool)

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

func (*QuoteResult) GetFiftyTwoWeekLowOk

func (o *QuoteResult) GetFiftyTwoWeekLowOk() (*QuoteResultFiftyTwoWeekLow, bool)

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

func (*QuoteResult) GetFiftyTwoWeekRange

func (o *QuoteResult) GetFiftyTwoWeekRange() QuoteResultFiftyTwoWeekRange

GetFiftyTwoWeekRange returns the FiftyTwoWeekRange field value if set, zero value otherwise.

func (*QuoteResult) GetFiftyTwoWeekRangeOk

func (o *QuoteResult) GetFiftyTwoWeekRangeOk() (*QuoteResultFiftyTwoWeekRange, bool)

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

func (*QuoteResult) GetFirstTradeDateMilliseconds

func (o *QuoteResult) GetFirstTradeDateMilliseconds() int64

GetFirstTradeDateMilliseconds returns the FirstTradeDateMilliseconds field value if set, zero value otherwise.

func (*QuoteResult) GetFirstTradeDateMillisecondsOk

func (o *QuoteResult) GetFirstTradeDateMillisecondsOk() (*int64, bool)

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

func (*QuoteResult) GetFullExchangeName

func (o *QuoteResult) GetFullExchangeName() string

GetFullExchangeName returns the FullExchangeName field value if set, zero value otherwise.

func (*QuoteResult) GetFullExchangeNameOk

func (o *QuoteResult) GetFullExchangeNameOk() (*string, bool)

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

func (*QuoteResult) GetGmtOffSetMilliseconds

func (o *QuoteResult) GetGmtOffSetMilliseconds() int32

GetGmtOffSetMilliseconds returns the GmtOffSetMilliseconds field value if set, zero value otherwise.

func (*QuoteResult) GetGmtOffSetMillisecondsOk

func (o *QuoteResult) GetGmtOffSetMillisecondsOk() (*int32, bool)

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

func (*QuoteResult) GetLanguage

func (o *QuoteResult) GetLanguage() string

GetLanguage returns the Language field value if set, zero value otherwise.

func (*QuoteResult) GetLanguageOk

func (o *QuoteResult) GetLanguageOk() (*string, bool)

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

func (*QuoteResult) GetMarket

func (o *QuoteResult) GetMarket() string

GetMarket returns the Market field value if set, zero value otherwise.

func (*QuoteResult) GetMarketOk

func (o *QuoteResult) GetMarketOk() (*string, bool)

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

func (*QuoteResult) GetMarketState

func (o *QuoteResult) GetMarketState() string

GetMarketState returns the MarketState field value if set, zero value otherwise.

func (*QuoteResult) GetMarketStateOk

func (o *QuoteResult) GetMarketStateOk() (*string, bool)

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

func (*QuoteResult) GetMessageBoardId

func (o *QuoteResult) GetMessageBoardId() string

GetMessageBoardId returns the MessageBoardId field value if set, zero value otherwise.

func (*QuoteResult) GetMessageBoardIdOk

func (o *QuoteResult) GetMessageBoardIdOk() (*string, bool)

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

func (*QuoteResult) GetPriceHint

func (o *QuoteResult) GetPriceHint() int32

GetPriceHint returns the PriceHint field value if set, zero value otherwise.

func (*QuoteResult) GetPriceHintOk

func (o *QuoteResult) GetPriceHintOk() (*int32, bool)

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

func (*QuoteResult) GetQuoteSourceName

func (o *QuoteResult) GetQuoteSourceName() string

GetQuoteSourceName returns the QuoteSourceName field value if set, zero value otherwise.

func (*QuoteResult) GetQuoteSourceNameOk

func (o *QuoteResult) GetQuoteSourceNameOk() (*string, bool)

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

func (*QuoteResult) GetQuoteType

func (o *QuoteResult) GetQuoteType() string

GetQuoteType returns the QuoteType field value if set, zero value otherwise.

func (*QuoteResult) GetQuoteTypeOk

func (o *QuoteResult) GetQuoteTypeOk() (*string, bool)

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

func (*QuoteResult) GetRegion

func (o *QuoteResult) GetRegion() string

GetRegion returns the Region field value if set, zero value otherwise.

func (*QuoteResult) GetRegionOk

func (o *QuoteResult) GetRegionOk() (*string, bool)

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

func (*QuoteResult) GetRegularMarketChange

func (o *QuoteResult) GetRegularMarketChange() QuoteResultRegularMarketChange

GetRegularMarketChange returns the RegularMarketChange field value if set, zero value otherwise.

func (*QuoteResult) GetRegularMarketChangeOk

func (o *QuoteResult) GetRegularMarketChangeOk() (*QuoteResultRegularMarketChange, bool)

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

func (*QuoteResult) GetRegularMarketChangePercent

func (o *QuoteResult) GetRegularMarketChangePercent() QuoteResultRegularMarketChangePercent

GetRegularMarketChangePercent returns the RegularMarketChangePercent field value if set, zero value otherwise.

func (*QuoteResult) GetRegularMarketChangePercentOk

func (o *QuoteResult) GetRegularMarketChangePercentOk() (*QuoteResultRegularMarketChangePercent, bool)

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

func (*QuoteResult) GetRegularMarketDayHigh

func (o *QuoteResult) GetRegularMarketDayHigh() QuoteResultRegularMarketDayHigh

GetRegularMarketDayHigh returns the RegularMarketDayHigh field value if set, zero value otherwise.

func (*QuoteResult) GetRegularMarketDayHighOk

func (o *QuoteResult) GetRegularMarketDayHighOk() (*QuoteResultRegularMarketDayHigh, bool)

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

func (*QuoteResult) GetRegularMarketDayLow

func (o *QuoteResult) GetRegularMarketDayLow() QuoteResultRegularMarketDayLow

GetRegularMarketDayLow returns the RegularMarketDayLow field value if set, zero value otherwise.

func (*QuoteResult) GetRegularMarketDayLowOk

func (o *QuoteResult) GetRegularMarketDayLowOk() (*QuoteResultRegularMarketDayLow, bool)

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

func (*QuoteResult) GetRegularMarketDayRange

func (o *QuoteResult) GetRegularMarketDayRange() QuoteResultRegularMarketDayRange

GetRegularMarketDayRange returns the RegularMarketDayRange field value if set, zero value otherwise.

func (*QuoteResult) GetRegularMarketDayRangeOk

func (o *QuoteResult) GetRegularMarketDayRangeOk() (*QuoteResultRegularMarketDayRange, bool)

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

func (*QuoteResult) GetRegularMarketOpen

func (o *QuoteResult) GetRegularMarketOpen() QuoteResultRegularMarketOpen

GetRegularMarketOpen returns the RegularMarketOpen field value if set, zero value otherwise.

func (*QuoteResult) GetRegularMarketOpenOk

func (o *QuoteResult) GetRegularMarketOpenOk() (*QuoteResultRegularMarketOpen, bool)

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

func (*QuoteResult) GetRegularMarketPreviousClose

func (o *QuoteResult) GetRegularMarketPreviousClose() QuoteResultRegularMarketPreviousClose

GetRegularMarketPreviousClose returns the RegularMarketPreviousClose field value if set, zero value otherwise.

func (*QuoteResult) GetRegularMarketPreviousCloseOk

func (o *QuoteResult) GetRegularMarketPreviousCloseOk() (*QuoteResultRegularMarketPreviousClose, bool)

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

func (*QuoteResult) GetRegularMarketPrice

func (o *QuoteResult) GetRegularMarketPrice() QuoteResultRegularMarketPrice

GetRegularMarketPrice returns the RegularMarketPrice field value if set, zero value otherwise.

func (*QuoteResult) GetRegularMarketPriceOk

func (o *QuoteResult) GetRegularMarketPriceOk() (*QuoteResultRegularMarketPrice, bool)

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

func (*QuoteResult) GetRegularMarketTime

func (o *QuoteResult) GetRegularMarketTime() QuoteResultRegularMarketTime

GetRegularMarketTime returns the RegularMarketTime field value if set, zero value otherwise.

func (*QuoteResult) GetRegularMarketTimeOk

func (o *QuoteResult) GetRegularMarketTimeOk() (*QuoteResultRegularMarketTime, bool)

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

func (*QuoteResult) GetRegularMarketVolume

func (o *QuoteResult) GetRegularMarketVolume() QuoteResultRegularMarketVolume

GetRegularMarketVolume returns the RegularMarketVolume field value if set, zero value otherwise.

func (*QuoteResult) GetRegularMarketVolumeOk

func (o *QuoteResult) GetRegularMarketVolumeOk() (*QuoteResultRegularMarketVolume, bool)

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

func (*QuoteResult) GetShortName

func (o *QuoteResult) GetShortName() string

GetShortName returns the ShortName field value if set, zero value otherwise.

func (*QuoteResult) GetShortNameOk

func (o *QuoteResult) GetShortNameOk() (*string, bool)

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

func (*QuoteResult) GetSourceInterval

func (o *QuoteResult) GetSourceInterval() int32

GetSourceInterval returns the SourceInterval field value if set, zero value otherwise.

func (*QuoteResult) GetSourceIntervalOk

func (o *QuoteResult) GetSourceIntervalOk() (*int32, bool)

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

func (*QuoteResult) GetSymbol

func (o *QuoteResult) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*QuoteResult) GetSymbolOk

func (o *QuoteResult) GetSymbolOk() (*string, bool)

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

func (*QuoteResult) GetTradeable

func (o *QuoteResult) GetTradeable() bool

GetTradeable returns the Tradeable field value if set, zero value otherwise.

func (*QuoteResult) GetTradeableOk

func (o *QuoteResult) GetTradeableOk() (*bool, bool)

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

func (*QuoteResult) GetTriggerable

func (o *QuoteResult) GetTriggerable() bool

GetTriggerable returns the Triggerable field value if set, zero value otherwise.

func (*QuoteResult) GetTriggerableOk

func (o *QuoteResult) GetTriggerableOk() (*bool, bool)

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

func (*QuoteResult) GetUuid

func (o *QuoteResult) GetUuid() string

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

func (*QuoteResult) GetUuidOk

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

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

func (*QuoteResult) HasCurrency

func (o *QuoteResult) HasCurrency() bool

HasCurrency returns a boolean if a field has been set.

func (*QuoteResult) HasExchange

func (o *QuoteResult) HasExchange() bool

HasExchange returns a boolean if a field has been set.

func (*QuoteResult) HasExchangeDataDelayedBy

func (o *QuoteResult) HasExchangeDataDelayedBy() bool

HasExchangeDataDelayedBy returns a boolean if a field has been set.

func (*QuoteResult) HasExchangeTimezoneName

func (o *QuoteResult) HasExchangeTimezoneName() bool

HasExchangeTimezoneName returns a boolean if a field has been set.

func (*QuoteResult) HasExchangeTimezoneShortName

func (o *QuoteResult) HasExchangeTimezoneShortName() bool

HasExchangeTimezoneShortName returns a boolean if a field has been set.

func (*QuoteResult) HasFiftyTwoWeekHigh

func (o *QuoteResult) HasFiftyTwoWeekHigh() bool

HasFiftyTwoWeekHigh returns a boolean if a field has been set.

func (*QuoteResult) HasFiftyTwoWeekHighChange

func (o *QuoteResult) HasFiftyTwoWeekHighChange() bool

HasFiftyTwoWeekHighChange returns a boolean if a field has been set.

func (*QuoteResult) HasFiftyTwoWeekHighChangePercent

func (o *QuoteResult) HasFiftyTwoWeekHighChangePercent() bool

HasFiftyTwoWeekHighChangePercent returns a boolean if a field has been set.

func (*QuoteResult) HasFiftyTwoWeekLow

func (o *QuoteResult) HasFiftyTwoWeekLow() bool

HasFiftyTwoWeekLow returns a boolean if a field has been set.

func (*QuoteResult) HasFiftyTwoWeekLowChange

func (o *QuoteResult) HasFiftyTwoWeekLowChange() bool

HasFiftyTwoWeekLowChange returns a boolean if a field has been set.

func (*QuoteResult) HasFiftyTwoWeekLowChangePercent

func (o *QuoteResult) HasFiftyTwoWeekLowChangePercent() bool

HasFiftyTwoWeekLowChangePercent returns a boolean if a field has been set.

func (*QuoteResult) HasFiftyTwoWeekRange

func (o *QuoteResult) HasFiftyTwoWeekRange() bool

HasFiftyTwoWeekRange returns a boolean if a field has been set.

func (*QuoteResult) HasFirstTradeDateMilliseconds

func (o *QuoteResult) HasFirstTradeDateMilliseconds() bool

HasFirstTradeDateMilliseconds returns a boolean if a field has been set.

func (*QuoteResult) HasFullExchangeName

func (o *QuoteResult) HasFullExchangeName() bool

HasFullExchangeName returns a boolean if a field has been set.

func (*QuoteResult) HasGmtOffSetMilliseconds

func (o *QuoteResult) HasGmtOffSetMilliseconds() bool

HasGmtOffSetMilliseconds returns a boolean if a field has been set.

func (*QuoteResult) HasLanguage

func (o *QuoteResult) HasLanguage() bool

HasLanguage returns a boolean if a field has been set.

func (*QuoteResult) HasMarket

func (o *QuoteResult) HasMarket() bool

HasMarket returns a boolean if a field has been set.

func (*QuoteResult) HasMarketState

func (o *QuoteResult) HasMarketState() bool

HasMarketState returns a boolean if a field has been set.

func (*QuoteResult) HasMessageBoardId

func (o *QuoteResult) HasMessageBoardId() bool

HasMessageBoardId returns a boolean if a field has been set.

func (*QuoteResult) HasPriceHint

func (o *QuoteResult) HasPriceHint() bool

HasPriceHint returns a boolean if a field has been set.

func (*QuoteResult) HasQuoteSourceName

func (o *QuoteResult) HasQuoteSourceName() bool

HasQuoteSourceName returns a boolean if a field has been set.

func (*QuoteResult) HasQuoteType

func (o *QuoteResult) HasQuoteType() bool

HasQuoteType returns a boolean if a field has been set.

func (*QuoteResult) HasRegion

func (o *QuoteResult) HasRegion() bool

HasRegion returns a boolean if a field has been set.

func (*QuoteResult) HasRegularMarketChange

func (o *QuoteResult) HasRegularMarketChange() bool

HasRegularMarketChange returns a boolean if a field has been set.

func (*QuoteResult) HasRegularMarketChangePercent

func (o *QuoteResult) HasRegularMarketChangePercent() bool

HasRegularMarketChangePercent returns a boolean if a field has been set.

func (*QuoteResult) HasRegularMarketDayHigh

func (o *QuoteResult) HasRegularMarketDayHigh() bool

HasRegularMarketDayHigh returns a boolean if a field has been set.

func (*QuoteResult) HasRegularMarketDayLow

func (o *QuoteResult) HasRegularMarketDayLow() bool

HasRegularMarketDayLow returns a boolean if a field has been set.

func (*QuoteResult) HasRegularMarketDayRange

func (o *QuoteResult) HasRegularMarketDayRange() bool

HasRegularMarketDayRange returns a boolean if a field has been set.

func (*QuoteResult) HasRegularMarketOpen

func (o *QuoteResult) HasRegularMarketOpen() bool

HasRegularMarketOpen returns a boolean if a field has been set.

func (*QuoteResult) HasRegularMarketPreviousClose

func (o *QuoteResult) HasRegularMarketPreviousClose() bool

HasRegularMarketPreviousClose returns a boolean if a field has been set.

func (*QuoteResult) HasRegularMarketPrice

func (o *QuoteResult) HasRegularMarketPrice() bool

HasRegularMarketPrice returns a boolean if a field has been set.

func (*QuoteResult) HasRegularMarketTime

func (o *QuoteResult) HasRegularMarketTime() bool

HasRegularMarketTime returns a boolean if a field has been set.

func (*QuoteResult) HasRegularMarketVolume

func (o *QuoteResult) HasRegularMarketVolume() bool

HasRegularMarketVolume returns a boolean if a field has been set.

func (*QuoteResult) HasShortName

func (o *QuoteResult) HasShortName() bool

HasShortName returns a boolean if a field has been set.

func (*QuoteResult) HasSourceInterval

func (o *QuoteResult) HasSourceInterval() bool

HasSourceInterval returns a boolean if a field has been set.

func (*QuoteResult) HasSymbol

func (o *QuoteResult) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*QuoteResult) HasTradeable

func (o *QuoteResult) HasTradeable() bool

HasTradeable returns a boolean if a field has been set.

func (*QuoteResult) HasTriggerable

func (o *QuoteResult) HasTriggerable() bool

HasTriggerable returns a boolean if a field has been set.

func (*QuoteResult) HasUuid

func (o *QuoteResult) HasUuid() bool

HasUuid returns a boolean if a field has been set.

func (QuoteResult) MarshalJSON

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

func (*QuoteResult) SetCurrency

func (o *QuoteResult) SetCurrency(v string)

SetCurrency gets a reference to the given string and assigns it to the Currency field.

func (*QuoteResult) SetExchange

func (o *QuoteResult) SetExchange(v string)

SetExchange gets a reference to the given string and assigns it to the Exchange field.

func (*QuoteResult) SetExchangeDataDelayedBy

func (o *QuoteResult) SetExchangeDataDelayedBy(v int32)

SetExchangeDataDelayedBy gets a reference to the given int32 and assigns it to the ExchangeDataDelayedBy field.

func (*QuoteResult) SetExchangeTimezoneName

func (o *QuoteResult) SetExchangeTimezoneName(v string)

SetExchangeTimezoneName gets a reference to the given string and assigns it to the ExchangeTimezoneName field.

func (*QuoteResult) SetExchangeTimezoneShortName

func (o *QuoteResult) SetExchangeTimezoneShortName(v string)

SetExchangeTimezoneShortName gets a reference to the given string and assigns it to the ExchangeTimezoneShortName field.

func (*QuoteResult) SetFiftyTwoWeekHigh

func (o *QuoteResult) SetFiftyTwoWeekHigh(v QuoteResultRegularMarketDayHigh)

SetFiftyTwoWeekHigh gets a reference to the given QuoteResultRegularMarketDayHigh and assigns it to the FiftyTwoWeekHigh field.

func (*QuoteResult) SetFiftyTwoWeekHighChange

func (o *QuoteResult) SetFiftyTwoWeekHighChange(v QuoteResultFiftyTwoWeekHighChange)

SetFiftyTwoWeekHighChange gets a reference to the given QuoteResultFiftyTwoWeekHighChange and assigns it to the FiftyTwoWeekHighChange field.

func (*QuoteResult) SetFiftyTwoWeekHighChangePercent

func (o *QuoteResult) SetFiftyTwoWeekHighChangePercent(v QuoteResultFiftyTwoWeekHighChangePercent)

SetFiftyTwoWeekHighChangePercent gets a reference to the given QuoteResultFiftyTwoWeekHighChangePercent and assigns it to the FiftyTwoWeekHighChangePercent field.

func (*QuoteResult) SetFiftyTwoWeekLow

func (o *QuoteResult) SetFiftyTwoWeekLow(v QuoteResultFiftyTwoWeekLow)

SetFiftyTwoWeekLow gets a reference to the given QuoteResultFiftyTwoWeekLow and assigns it to the FiftyTwoWeekLow field.

func (*QuoteResult) SetFiftyTwoWeekLowChange

func (o *QuoteResult) SetFiftyTwoWeekLowChange(v QuoteResultFiftyTwoWeekLowChange)

SetFiftyTwoWeekLowChange gets a reference to the given QuoteResultFiftyTwoWeekLowChange and assigns it to the FiftyTwoWeekLowChange field.

func (*QuoteResult) SetFiftyTwoWeekLowChangePercent

func (o *QuoteResult) SetFiftyTwoWeekLowChangePercent(v QuoteResultFiftyTwoWeekLowChangePercent)

SetFiftyTwoWeekLowChangePercent gets a reference to the given QuoteResultFiftyTwoWeekLowChangePercent and assigns it to the FiftyTwoWeekLowChangePercent field.

func (*QuoteResult) SetFiftyTwoWeekRange

func (o *QuoteResult) SetFiftyTwoWeekRange(v QuoteResultFiftyTwoWeekRange)

SetFiftyTwoWeekRange gets a reference to the given QuoteResultFiftyTwoWeekRange and assigns it to the FiftyTwoWeekRange field.

func (*QuoteResult) SetFirstTradeDateMilliseconds

func (o *QuoteResult) SetFirstTradeDateMilliseconds(v int64)

SetFirstTradeDateMilliseconds gets a reference to the given int64 and assigns it to the FirstTradeDateMilliseconds field.

func (*QuoteResult) SetFullExchangeName

func (o *QuoteResult) SetFullExchangeName(v string)

SetFullExchangeName gets a reference to the given string and assigns it to the FullExchangeName field.

func (*QuoteResult) SetGmtOffSetMilliseconds

func (o *QuoteResult) SetGmtOffSetMilliseconds(v int32)

SetGmtOffSetMilliseconds gets a reference to the given int32 and assigns it to the GmtOffSetMilliseconds field.

func (*QuoteResult) SetLanguage

func (o *QuoteResult) SetLanguage(v string)

SetLanguage gets a reference to the given string and assigns it to the Language field.

func (*QuoteResult) SetMarket

func (o *QuoteResult) SetMarket(v string)

SetMarket gets a reference to the given string and assigns it to the Market field.

func (*QuoteResult) SetMarketState

func (o *QuoteResult) SetMarketState(v string)

SetMarketState gets a reference to the given string and assigns it to the MarketState field.

func (*QuoteResult) SetMessageBoardId

func (o *QuoteResult) SetMessageBoardId(v string)

SetMessageBoardId gets a reference to the given string and assigns it to the MessageBoardId field.

func (*QuoteResult) SetPriceHint

func (o *QuoteResult) SetPriceHint(v int32)

SetPriceHint gets a reference to the given int32 and assigns it to the PriceHint field.

func (*QuoteResult) SetQuoteSourceName

func (o *QuoteResult) SetQuoteSourceName(v string)

SetQuoteSourceName gets a reference to the given string and assigns it to the QuoteSourceName field.

func (*QuoteResult) SetQuoteType

func (o *QuoteResult) SetQuoteType(v string)

SetQuoteType gets a reference to the given string and assigns it to the QuoteType field.

func (*QuoteResult) SetRegion

func (o *QuoteResult) SetRegion(v string)

SetRegion gets a reference to the given string and assigns it to the Region field.

func (*QuoteResult) SetRegularMarketChange

func (o *QuoteResult) SetRegularMarketChange(v QuoteResultRegularMarketChange)

SetRegularMarketChange gets a reference to the given QuoteResultRegularMarketChange and assigns it to the RegularMarketChange field.

func (*QuoteResult) SetRegularMarketChangePercent

func (o *QuoteResult) SetRegularMarketChangePercent(v QuoteResultRegularMarketChangePercent)

SetRegularMarketChangePercent gets a reference to the given QuoteResultRegularMarketChangePercent and assigns it to the RegularMarketChangePercent field.

func (*QuoteResult) SetRegularMarketDayHigh

func (o *QuoteResult) SetRegularMarketDayHigh(v QuoteResultRegularMarketDayHigh)

SetRegularMarketDayHigh gets a reference to the given QuoteResultRegularMarketDayHigh and assigns it to the RegularMarketDayHigh field.

func (*QuoteResult) SetRegularMarketDayLow

func (o *QuoteResult) SetRegularMarketDayLow(v QuoteResultRegularMarketDayLow)

SetRegularMarketDayLow gets a reference to the given QuoteResultRegularMarketDayLow and assigns it to the RegularMarketDayLow field.

func (*QuoteResult) SetRegularMarketDayRange

func (o *QuoteResult) SetRegularMarketDayRange(v QuoteResultRegularMarketDayRange)

SetRegularMarketDayRange gets a reference to the given QuoteResultRegularMarketDayRange and assigns it to the RegularMarketDayRange field.

func (*QuoteResult) SetRegularMarketOpen

func (o *QuoteResult) SetRegularMarketOpen(v QuoteResultRegularMarketOpen)

SetRegularMarketOpen gets a reference to the given QuoteResultRegularMarketOpen and assigns it to the RegularMarketOpen field.

func (*QuoteResult) SetRegularMarketPreviousClose

func (o *QuoteResult) SetRegularMarketPreviousClose(v QuoteResultRegularMarketPreviousClose)

SetRegularMarketPreviousClose gets a reference to the given QuoteResultRegularMarketPreviousClose and assigns it to the RegularMarketPreviousClose field.

func (*QuoteResult) SetRegularMarketPrice

func (o *QuoteResult) SetRegularMarketPrice(v QuoteResultRegularMarketPrice)

SetRegularMarketPrice gets a reference to the given QuoteResultRegularMarketPrice and assigns it to the RegularMarketPrice field.

func (*QuoteResult) SetRegularMarketTime

func (o *QuoteResult) SetRegularMarketTime(v QuoteResultRegularMarketTime)

SetRegularMarketTime gets a reference to the given QuoteResultRegularMarketTime and assigns it to the RegularMarketTime field.

func (*QuoteResult) SetRegularMarketVolume

func (o *QuoteResult) SetRegularMarketVolume(v QuoteResultRegularMarketVolume)

SetRegularMarketVolume gets a reference to the given QuoteResultRegularMarketVolume and assigns it to the RegularMarketVolume field.

func (*QuoteResult) SetShortName

func (o *QuoteResult) SetShortName(v string)

SetShortName gets a reference to the given string and assigns it to the ShortName field.

func (*QuoteResult) SetSourceInterval

func (o *QuoteResult) SetSourceInterval(v int32)

SetSourceInterval gets a reference to the given int32 and assigns it to the SourceInterval field.

func (*QuoteResult) SetSymbol

func (o *QuoteResult) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*QuoteResult) SetTradeable

func (o *QuoteResult) SetTradeable(v bool)

SetTradeable gets a reference to the given bool and assigns it to the Tradeable field.

func (*QuoteResult) SetTriggerable

func (o *QuoteResult) SetTriggerable(v bool)

SetTriggerable gets a reference to the given bool and assigns it to the Triggerable field.

func (*QuoteResult) SetUuid

func (o *QuoteResult) SetUuid(v string)

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

func (QuoteResult) ToMap

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

type QuoteResultFiftyTwoWeekHighChange

type QuoteResultFiftyTwoWeekHighChange struct {
	Raw *float32 `json:"raw,omitempty"`
	Fmt *string  `json:"fmt,omitempty"`
}

QuoteResultFiftyTwoWeekHighChange struct for QuoteResultFiftyTwoWeekHighChange

func NewQuoteResultFiftyTwoWeekHighChange

func NewQuoteResultFiftyTwoWeekHighChange() *QuoteResultFiftyTwoWeekHighChange

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

func NewQuoteResultFiftyTwoWeekHighChangeWithDefaults

func NewQuoteResultFiftyTwoWeekHighChangeWithDefaults() *QuoteResultFiftyTwoWeekHighChange

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

func (*QuoteResultFiftyTwoWeekHighChange) GetFmt

GetFmt returns the Fmt field value if set, zero value otherwise.

func (*QuoteResultFiftyTwoWeekHighChange) GetFmtOk

func (o *QuoteResultFiftyTwoWeekHighChange) GetFmtOk() (*string, bool)

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

func (*QuoteResultFiftyTwoWeekHighChange) GetRaw

GetRaw returns the Raw field value if set, zero value otherwise.

func (*QuoteResultFiftyTwoWeekHighChange) GetRawOk

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

func (*QuoteResultFiftyTwoWeekHighChange) HasFmt

HasFmt returns a boolean if a field has been set.

func (*QuoteResultFiftyTwoWeekHighChange) HasRaw

HasRaw returns a boolean if a field has been set.

func (QuoteResultFiftyTwoWeekHighChange) MarshalJSON

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

func (*QuoteResultFiftyTwoWeekHighChange) SetFmt

SetFmt gets a reference to the given string and assigns it to the Fmt field.

func (*QuoteResultFiftyTwoWeekHighChange) SetRaw

SetRaw gets a reference to the given float32 and assigns it to the Raw field.

func (QuoteResultFiftyTwoWeekHighChange) ToMap

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

type QuoteResultFiftyTwoWeekHighChangePercent

type QuoteResultFiftyTwoWeekHighChangePercent struct {
	Raw *float32 `json:"raw,omitempty"`
	Fmt *string  `json:"fmt,omitempty"`
}

QuoteResultFiftyTwoWeekHighChangePercent struct for QuoteResultFiftyTwoWeekHighChangePercent

func NewQuoteResultFiftyTwoWeekHighChangePercent

func NewQuoteResultFiftyTwoWeekHighChangePercent() *QuoteResultFiftyTwoWeekHighChangePercent

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

func NewQuoteResultFiftyTwoWeekHighChangePercentWithDefaults

func NewQuoteResultFiftyTwoWeekHighChangePercentWithDefaults() *QuoteResultFiftyTwoWeekHighChangePercent

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

func (*QuoteResultFiftyTwoWeekHighChangePercent) GetFmt

GetFmt returns the Fmt field value if set, zero value otherwise.

func (*QuoteResultFiftyTwoWeekHighChangePercent) GetFmtOk

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

func (*QuoteResultFiftyTwoWeekHighChangePercent) GetRaw

GetRaw returns the Raw field value if set, zero value otherwise.

func (*QuoteResultFiftyTwoWeekHighChangePercent) GetRawOk

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

func (*QuoteResultFiftyTwoWeekHighChangePercent) HasFmt

HasFmt returns a boolean if a field has been set.

func (*QuoteResultFiftyTwoWeekHighChangePercent) HasRaw

HasRaw returns a boolean if a field has been set.

func (QuoteResultFiftyTwoWeekHighChangePercent) MarshalJSON

func (*QuoteResultFiftyTwoWeekHighChangePercent) SetFmt

SetFmt gets a reference to the given string and assigns it to the Fmt field.

func (*QuoteResultFiftyTwoWeekHighChangePercent) SetRaw

SetRaw gets a reference to the given float32 and assigns it to the Raw field.

func (QuoteResultFiftyTwoWeekHighChangePercent) ToMap

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

type QuoteResultFiftyTwoWeekLow

type QuoteResultFiftyTwoWeekLow struct {
	Raw *float32 `json:"raw,omitempty"`
	Fmt *string  `json:"fmt,omitempty"`
}

QuoteResultFiftyTwoWeekLow struct for QuoteResultFiftyTwoWeekLow

func NewQuoteResultFiftyTwoWeekLow

func NewQuoteResultFiftyTwoWeekLow() *QuoteResultFiftyTwoWeekLow

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

func NewQuoteResultFiftyTwoWeekLowWithDefaults

func NewQuoteResultFiftyTwoWeekLowWithDefaults() *QuoteResultFiftyTwoWeekLow

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

func (*QuoteResultFiftyTwoWeekLow) GetFmt

func (o *QuoteResultFiftyTwoWeekLow) GetFmt() string

GetFmt returns the Fmt field value if set, zero value otherwise.

func (*QuoteResultFiftyTwoWeekLow) GetFmtOk

func (o *QuoteResultFiftyTwoWeekLow) GetFmtOk() (*string, bool)

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

func (*QuoteResultFiftyTwoWeekLow) GetRaw

func (o *QuoteResultFiftyTwoWeekLow) GetRaw() float32

GetRaw returns the Raw field value if set, zero value otherwise.

func (*QuoteResultFiftyTwoWeekLow) GetRawOk

func (o *QuoteResultFiftyTwoWeekLow) GetRawOk() (*float32, bool)

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

func (*QuoteResultFiftyTwoWeekLow) HasFmt

func (o *QuoteResultFiftyTwoWeekLow) HasFmt() bool

HasFmt returns a boolean if a field has been set.

func (*QuoteResultFiftyTwoWeekLow) HasRaw

func (o *QuoteResultFiftyTwoWeekLow) HasRaw() bool

HasRaw returns a boolean if a field has been set.

func (QuoteResultFiftyTwoWeekLow) MarshalJSON

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

func (*QuoteResultFiftyTwoWeekLow) SetFmt

func (o *QuoteResultFiftyTwoWeekLow) SetFmt(v string)

SetFmt gets a reference to the given string and assigns it to the Fmt field.

func (*QuoteResultFiftyTwoWeekLow) SetRaw

func (o *QuoteResultFiftyTwoWeekLow) SetRaw(v float32)

SetRaw gets a reference to the given float32 and assigns it to the Raw field.

func (QuoteResultFiftyTwoWeekLow) ToMap

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

type QuoteResultFiftyTwoWeekLowChange

type QuoteResultFiftyTwoWeekLowChange struct {
	Raw *float32 `json:"raw,omitempty"`
	Fmt *string  `json:"fmt,omitempty"`
}

QuoteResultFiftyTwoWeekLowChange struct for QuoteResultFiftyTwoWeekLowChange

func NewQuoteResultFiftyTwoWeekLowChange

func NewQuoteResultFiftyTwoWeekLowChange() *QuoteResultFiftyTwoWeekLowChange

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

func NewQuoteResultFiftyTwoWeekLowChangeWithDefaults

func NewQuoteResultFiftyTwoWeekLowChangeWithDefaults() *QuoteResultFiftyTwoWeekLowChange

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

func (*QuoteResultFiftyTwoWeekLowChange) GetFmt

GetFmt returns the Fmt field value if set, zero value otherwise.

func (*QuoteResultFiftyTwoWeekLowChange) GetFmtOk

func (o *QuoteResultFiftyTwoWeekLowChange) GetFmtOk() (*string, bool)

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

func (*QuoteResultFiftyTwoWeekLowChange) GetRaw

GetRaw returns the Raw field value if set, zero value otherwise.

func (*QuoteResultFiftyTwoWeekLowChange) GetRawOk

func (o *QuoteResultFiftyTwoWeekLowChange) GetRawOk() (*float32, bool)

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

func (*QuoteResultFiftyTwoWeekLowChange) HasFmt

HasFmt returns a boolean if a field has been set.

func (*QuoteResultFiftyTwoWeekLowChange) HasRaw

HasRaw returns a boolean if a field has been set.

func (QuoteResultFiftyTwoWeekLowChange) MarshalJSON

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

func (*QuoteResultFiftyTwoWeekLowChange) SetFmt

SetFmt gets a reference to the given string and assigns it to the Fmt field.

func (*QuoteResultFiftyTwoWeekLowChange) SetRaw

SetRaw gets a reference to the given float32 and assigns it to the Raw field.

func (QuoteResultFiftyTwoWeekLowChange) ToMap

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

type QuoteResultFiftyTwoWeekLowChangePercent

type QuoteResultFiftyTwoWeekLowChangePercent struct {
	Raw *float32 `json:"raw,omitempty"`
	Fmt *string  `json:"fmt,omitempty"`
}

QuoteResultFiftyTwoWeekLowChangePercent struct for QuoteResultFiftyTwoWeekLowChangePercent

func NewQuoteResultFiftyTwoWeekLowChangePercent

func NewQuoteResultFiftyTwoWeekLowChangePercent() *QuoteResultFiftyTwoWeekLowChangePercent

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

func NewQuoteResultFiftyTwoWeekLowChangePercentWithDefaults

func NewQuoteResultFiftyTwoWeekLowChangePercentWithDefaults() *QuoteResultFiftyTwoWeekLowChangePercent

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

func (*QuoteResultFiftyTwoWeekLowChangePercent) GetFmt

GetFmt returns the Fmt field value if set, zero value otherwise.

func (*QuoteResultFiftyTwoWeekLowChangePercent) GetFmtOk

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

func (*QuoteResultFiftyTwoWeekLowChangePercent) GetRaw

GetRaw returns the Raw field value if set, zero value otherwise.

func (*QuoteResultFiftyTwoWeekLowChangePercent) GetRawOk

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

func (*QuoteResultFiftyTwoWeekLowChangePercent) HasFmt

HasFmt returns a boolean if a field has been set.

func (*QuoteResultFiftyTwoWeekLowChangePercent) HasRaw

HasRaw returns a boolean if a field has been set.

func (QuoteResultFiftyTwoWeekLowChangePercent) MarshalJSON

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

func (*QuoteResultFiftyTwoWeekLowChangePercent) SetFmt

SetFmt gets a reference to the given string and assigns it to the Fmt field.

func (*QuoteResultFiftyTwoWeekLowChangePercent) SetRaw

SetRaw gets a reference to the given float32 and assigns it to the Raw field.

func (QuoteResultFiftyTwoWeekLowChangePercent) ToMap

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

type QuoteResultFiftyTwoWeekRange

type QuoteResultFiftyTwoWeekRange struct {
	Raw *string `json:"raw,omitempty"`
	Fmt *string `json:"fmt,omitempty"`
}

QuoteResultFiftyTwoWeekRange struct for QuoteResultFiftyTwoWeekRange

func NewQuoteResultFiftyTwoWeekRange

func NewQuoteResultFiftyTwoWeekRange() *QuoteResultFiftyTwoWeekRange

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

func NewQuoteResultFiftyTwoWeekRangeWithDefaults

func NewQuoteResultFiftyTwoWeekRangeWithDefaults() *QuoteResultFiftyTwoWeekRange

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

func (*QuoteResultFiftyTwoWeekRange) GetFmt

GetFmt returns the Fmt field value if set, zero value otherwise.

func (*QuoteResultFiftyTwoWeekRange) GetFmtOk

func (o *QuoteResultFiftyTwoWeekRange) GetFmtOk() (*string, bool)

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

func (*QuoteResultFiftyTwoWeekRange) GetRaw

GetRaw returns the Raw field value if set, zero value otherwise.

func (*QuoteResultFiftyTwoWeekRange) GetRawOk

func (o *QuoteResultFiftyTwoWeekRange) GetRawOk() (*string, bool)

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

func (*QuoteResultFiftyTwoWeekRange) HasFmt

func (o *QuoteResultFiftyTwoWeekRange) HasFmt() bool

HasFmt returns a boolean if a field has been set.

func (*QuoteResultFiftyTwoWeekRange) HasRaw

func (o *QuoteResultFiftyTwoWeekRange) HasRaw() bool

HasRaw returns a boolean if a field has been set.

func (QuoteResultFiftyTwoWeekRange) MarshalJSON

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

func (*QuoteResultFiftyTwoWeekRange) SetFmt

func (o *QuoteResultFiftyTwoWeekRange) SetFmt(v string)

SetFmt gets a reference to the given string and assigns it to the Fmt field.

func (*QuoteResultFiftyTwoWeekRange) SetRaw

func (o *QuoteResultFiftyTwoWeekRange) SetRaw(v string)

SetRaw gets a reference to the given string and assigns it to the Raw field.

func (QuoteResultFiftyTwoWeekRange) ToMap

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

type QuoteResultRegularMarketChange

type QuoteResultRegularMarketChange struct {
	Raw *float32 `json:"raw,omitempty"`
	Fmt *string  `json:"fmt,omitempty"`
}

QuoteResultRegularMarketChange struct for QuoteResultRegularMarketChange

func NewQuoteResultRegularMarketChange

func NewQuoteResultRegularMarketChange() *QuoteResultRegularMarketChange

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

func NewQuoteResultRegularMarketChangeWithDefaults

func NewQuoteResultRegularMarketChangeWithDefaults() *QuoteResultRegularMarketChange

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

func (*QuoteResultRegularMarketChange) GetFmt

GetFmt returns the Fmt field value if set, zero value otherwise.

func (*QuoteResultRegularMarketChange) GetFmtOk

func (o *QuoteResultRegularMarketChange) GetFmtOk() (*string, bool)

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

func (*QuoteResultRegularMarketChange) GetRaw

GetRaw returns the Raw field value if set, zero value otherwise.

func (*QuoteResultRegularMarketChange) GetRawOk

func (o *QuoteResultRegularMarketChange) GetRawOk() (*float32, bool)

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

func (*QuoteResultRegularMarketChange) HasFmt

HasFmt returns a boolean if a field has been set.

func (*QuoteResultRegularMarketChange) HasRaw

HasRaw returns a boolean if a field has been set.

func (QuoteResultRegularMarketChange) MarshalJSON

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

func (*QuoteResultRegularMarketChange) SetFmt

SetFmt gets a reference to the given string and assigns it to the Fmt field.

func (*QuoteResultRegularMarketChange) SetRaw

SetRaw gets a reference to the given float32 and assigns it to the Raw field.

func (QuoteResultRegularMarketChange) ToMap

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

type QuoteResultRegularMarketChangePercent

type QuoteResultRegularMarketChangePercent struct {
	Raw *float32 `json:"raw,omitempty"`
	Fmt *string  `json:"fmt,omitempty"`
}

QuoteResultRegularMarketChangePercent struct for QuoteResultRegularMarketChangePercent

func NewQuoteResultRegularMarketChangePercent

func NewQuoteResultRegularMarketChangePercent() *QuoteResultRegularMarketChangePercent

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

func NewQuoteResultRegularMarketChangePercentWithDefaults

func NewQuoteResultRegularMarketChangePercentWithDefaults() *QuoteResultRegularMarketChangePercent

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

func (*QuoteResultRegularMarketChangePercent) GetFmt

GetFmt returns the Fmt field value if set, zero value otherwise.

func (*QuoteResultRegularMarketChangePercent) GetFmtOk

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

func (*QuoteResultRegularMarketChangePercent) GetRaw

GetRaw returns the Raw field value if set, zero value otherwise.

func (*QuoteResultRegularMarketChangePercent) GetRawOk

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

func (*QuoteResultRegularMarketChangePercent) HasFmt

HasFmt returns a boolean if a field has been set.

func (*QuoteResultRegularMarketChangePercent) HasRaw

HasRaw returns a boolean if a field has been set.

func (QuoteResultRegularMarketChangePercent) MarshalJSON

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

func (*QuoteResultRegularMarketChangePercent) SetFmt

SetFmt gets a reference to the given string and assigns it to the Fmt field.

func (*QuoteResultRegularMarketChangePercent) SetRaw

SetRaw gets a reference to the given float32 and assigns it to the Raw field.

func (QuoteResultRegularMarketChangePercent) ToMap

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

type QuoteResultRegularMarketDayHigh

type QuoteResultRegularMarketDayHigh struct {
	Raw *float32 `json:"raw,omitempty"`
	Fmt *string  `json:"fmt,omitempty"`
}

QuoteResultRegularMarketDayHigh struct for QuoteResultRegularMarketDayHigh

func NewQuoteResultRegularMarketDayHigh

func NewQuoteResultRegularMarketDayHigh() *QuoteResultRegularMarketDayHigh

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

func NewQuoteResultRegularMarketDayHighWithDefaults

func NewQuoteResultRegularMarketDayHighWithDefaults() *QuoteResultRegularMarketDayHigh

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

func (*QuoteResultRegularMarketDayHigh) GetFmt

GetFmt returns the Fmt field value if set, zero value otherwise.

func (*QuoteResultRegularMarketDayHigh) GetFmtOk

func (o *QuoteResultRegularMarketDayHigh) GetFmtOk() (*string, bool)

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

func (*QuoteResultRegularMarketDayHigh) GetRaw

GetRaw returns the Raw field value if set, zero value otherwise.

func (*QuoteResultRegularMarketDayHigh) GetRawOk

func (o *QuoteResultRegularMarketDayHigh) GetRawOk() (*float32, bool)

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

func (*QuoteResultRegularMarketDayHigh) HasFmt

HasFmt returns a boolean if a field has been set.

func (*QuoteResultRegularMarketDayHigh) HasRaw

HasRaw returns a boolean if a field has been set.

func (QuoteResultRegularMarketDayHigh) MarshalJSON

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

func (*QuoteResultRegularMarketDayHigh) SetFmt

SetFmt gets a reference to the given string and assigns it to the Fmt field.

func (*QuoteResultRegularMarketDayHigh) SetRaw

SetRaw gets a reference to the given float32 and assigns it to the Raw field.

func (QuoteResultRegularMarketDayHigh) ToMap

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

type QuoteResultRegularMarketDayLow

type QuoteResultRegularMarketDayLow struct {
	Raw *float32 `json:"raw,omitempty"`
	Fmt *string  `json:"fmt,omitempty"`
}

QuoteResultRegularMarketDayLow struct for QuoteResultRegularMarketDayLow

func NewQuoteResultRegularMarketDayLow

func NewQuoteResultRegularMarketDayLow() *QuoteResultRegularMarketDayLow

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

func NewQuoteResultRegularMarketDayLowWithDefaults

func NewQuoteResultRegularMarketDayLowWithDefaults() *QuoteResultRegularMarketDayLow

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

func (*QuoteResultRegularMarketDayLow) GetFmt

GetFmt returns the Fmt field value if set, zero value otherwise.

func (*QuoteResultRegularMarketDayLow) GetFmtOk

func (o *QuoteResultRegularMarketDayLow) GetFmtOk() (*string, bool)

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

func (*QuoteResultRegularMarketDayLow) GetRaw

GetRaw returns the Raw field value if set, zero value otherwise.

func (*QuoteResultRegularMarketDayLow) GetRawOk

func (o *QuoteResultRegularMarketDayLow) GetRawOk() (*float32, bool)

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

func (*QuoteResultRegularMarketDayLow) HasFmt

HasFmt returns a boolean if a field has been set.

func (*QuoteResultRegularMarketDayLow) HasRaw

HasRaw returns a boolean if a field has been set.

func (QuoteResultRegularMarketDayLow) MarshalJSON

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

func (*QuoteResultRegularMarketDayLow) SetFmt

SetFmt gets a reference to the given string and assigns it to the Fmt field.

func (*QuoteResultRegularMarketDayLow) SetRaw

SetRaw gets a reference to the given float32 and assigns it to the Raw field.

func (QuoteResultRegularMarketDayLow) ToMap

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

type QuoteResultRegularMarketDayRange

type QuoteResultRegularMarketDayRange struct {
	Raw *string `json:"raw,omitempty"`
	Fmt *string `json:"fmt,omitempty"`
}

QuoteResultRegularMarketDayRange struct for QuoteResultRegularMarketDayRange

func NewQuoteResultRegularMarketDayRange

func NewQuoteResultRegularMarketDayRange() *QuoteResultRegularMarketDayRange

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

func NewQuoteResultRegularMarketDayRangeWithDefaults

func NewQuoteResultRegularMarketDayRangeWithDefaults() *QuoteResultRegularMarketDayRange

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

func (*QuoteResultRegularMarketDayRange) GetFmt

GetFmt returns the Fmt field value if set, zero value otherwise.

func (*QuoteResultRegularMarketDayRange) GetFmtOk

func (o *QuoteResultRegularMarketDayRange) GetFmtOk() (*string, bool)

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

func (*QuoteResultRegularMarketDayRange) GetRaw

GetRaw returns the Raw field value if set, zero value otherwise.

func (*QuoteResultRegularMarketDayRange) GetRawOk

func (o *QuoteResultRegularMarketDayRange) GetRawOk() (*string, bool)

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

func (*QuoteResultRegularMarketDayRange) HasFmt

HasFmt returns a boolean if a field has been set.

func (*QuoteResultRegularMarketDayRange) HasRaw

HasRaw returns a boolean if a field has been set.

func (QuoteResultRegularMarketDayRange) MarshalJSON

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

func (*QuoteResultRegularMarketDayRange) SetFmt

SetFmt gets a reference to the given string and assigns it to the Fmt field.

func (*QuoteResultRegularMarketDayRange) SetRaw

SetRaw gets a reference to the given string and assigns it to the Raw field.

func (QuoteResultRegularMarketDayRange) ToMap

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

type QuoteResultRegularMarketOpen

type QuoteResultRegularMarketOpen struct {
	Raw *float32 `json:"raw,omitempty"`
	Fmt *string  `json:"fmt,omitempty"`
}

QuoteResultRegularMarketOpen struct for QuoteResultRegularMarketOpen

func NewQuoteResultRegularMarketOpen

func NewQuoteResultRegularMarketOpen() *QuoteResultRegularMarketOpen

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

func NewQuoteResultRegularMarketOpenWithDefaults

func NewQuoteResultRegularMarketOpenWithDefaults() *QuoteResultRegularMarketOpen

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

func (*QuoteResultRegularMarketOpen) GetFmt

GetFmt returns the Fmt field value if set, zero value otherwise.

func (*QuoteResultRegularMarketOpen) GetFmtOk

func (o *QuoteResultRegularMarketOpen) GetFmtOk() (*string, bool)

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

func (*QuoteResultRegularMarketOpen) GetRaw

GetRaw returns the Raw field value if set, zero value otherwise.

func (*QuoteResultRegularMarketOpen) GetRawOk

func (o *QuoteResultRegularMarketOpen) GetRawOk() (*float32, bool)

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

func (*QuoteResultRegularMarketOpen) HasFmt

func (o *QuoteResultRegularMarketOpen) HasFmt() bool

HasFmt returns a boolean if a field has been set.

func (*QuoteResultRegularMarketOpen) HasRaw

func (o *QuoteResultRegularMarketOpen) HasRaw() bool

HasRaw returns a boolean if a field has been set.

func (QuoteResultRegularMarketOpen) MarshalJSON

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

func (*QuoteResultRegularMarketOpen) SetFmt

func (o *QuoteResultRegularMarketOpen) SetFmt(v string)

SetFmt gets a reference to the given string and assigns it to the Fmt field.

func (*QuoteResultRegularMarketOpen) SetRaw

SetRaw gets a reference to the given float32 and assigns it to the Raw field.

func (QuoteResultRegularMarketOpen) ToMap

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

type QuoteResultRegularMarketPreviousClose

type QuoteResultRegularMarketPreviousClose struct {
	Raw *float32 `json:"raw,omitempty"`
	Fmt *string  `json:"fmt,omitempty"`
}

QuoteResultRegularMarketPreviousClose struct for QuoteResultRegularMarketPreviousClose

func NewQuoteResultRegularMarketPreviousClose

func NewQuoteResultRegularMarketPreviousClose() *QuoteResultRegularMarketPreviousClose

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

func NewQuoteResultRegularMarketPreviousCloseWithDefaults

func NewQuoteResultRegularMarketPreviousCloseWithDefaults() *QuoteResultRegularMarketPreviousClose

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

func (*QuoteResultRegularMarketPreviousClose) GetFmt

GetFmt returns the Fmt field value if set, zero value otherwise.

func (*QuoteResultRegularMarketPreviousClose) GetFmtOk

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

func (*QuoteResultRegularMarketPreviousClose) GetRaw

GetRaw returns the Raw field value if set, zero value otherwise.

func (*QuoteResultRegularMarketPreviousClose) GetRawOk

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

func (*QuoteResultRegularMarketPreviousClose) HasFmt

HasFmt returns a boolean if a field has been set.

func (*QuoteResultRegularMarketPreviousClose) HasRaw

HasRaw returns a boolean if a field has been set.

func (QuoteResultRegularMarketPreviousClose) MarshalJSON

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

func (*QuoteResultRegularMarketPreviousClose) SetFmt

SetFmt gets a reference to the given string and assigns it to the Fmt field.

func (*QuoteResultRegularMarketPreviousClose) SetRaw

SetRaw gets a reference to the given float32 and assigns it to the Raw field.

func (QuoteResultRegularMarketPreviousClose) ToMap

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

type QuoteResultRegularMarketPrice

type QuoteResultRegularMarketPrice struct {
	Raw *float32 `json:"raw,omitempty"`
	Fmt *string  `json:"fmt,omitempty"`
}

QuoteResultRegularMarketPrice struct for QuoteResultRegularMarketPrice

func NewQuoteResultRegularMarketPrice

func NewQuoteResultRegularMarketPrice() *QuoteResultRegularMarketPrice

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

func NewQuoteResultRegularMarketPriceWithDefaults

func NewQuoteResultRegularMarketPriceWithDefaults() *QuoteResultRegularMarketPrice

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

func (*QuoteResultRegularMarketPrice) GetFmt

GetFmt returns the Fmt field value if set, zero value otherwise.

func (*QuoteResultRegularMarketPrice) GetFmtOk

func (o *QuoteResultRegularMarketPrice) GetFmtOk() (*string, bool)

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

func (*QuoteResultRegularMarketPrice) GetRaw

GetRaw returns the Raw field value if set, zero value otherwise.

func (*QuoteResultRegularMarketPrice) GetRawOk

func (o *QuoteResultRegularMarketPrice) GetRawOk() (*float32, bool)

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

func (*QuoteResultRegularMarketPrice) HasFmt

func (o *QuoteResultRegularMarketPrice) HasFmt() bool

HasFmt returns a boolean if a field has been set.

func (*QuoteResultRegularMarketPrice) HasRaw

func (o *QuoteResultRegularMarketPrice) HasRaw() bool

HasRaw returns a boolean if a field has been set.

func (QuoteResultRegularMarketPrice) MarshalJSON

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

func (*QuoteResultRegularMarketPrice) SetFmt

SetFmt gets a reference to the given string and assigns it to the Fmt field.

func (*QuoteResultRegularMarketPrice) SetRaw

SetRaw gets a reference to the given float32 and assigns it to the Raw field.

func (QuoteResultRegularMarketPrice) ToMap

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

type QuoteResultRegularMarketTime

type QuoteResultRegularMarketTime struct {
	Raw *int32  `json:"raw,omitempty"`
	Fmt *string `json:"fmt,omitempty"`
}

QuoteResultRegularMarketTime struct for QuoteResultRegularMarketTime

func NewQuoteResultRegularMarketTime

func NewQuoteResultRegularMarketTime() *QuoteResultRegularMarketTime

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

func NewQuoteResultRegularMarketTimeWithDefaults

func NewQuoteResultRegularMarketTimeWithDefaults() *QuoteResultRegularMarketTime

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

func (*QuoteResultRegularMarketTime) GetFmt

GetFmt returns the Fmt field value if set, zero value otherwise.

func (*QuoteResultRegularMarketTime) GetFmtOk

func (o *QuoteResultRegularMarketTime) GetFmtOk() (*string, bool)

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

func (*QuoteResultRegularMarketTime) GetRaw

func (o *QuoteResultRegularMarketTime) GetRaw() int32

GetRaw returns the Raw field value if set, zero value otherwise.

func (*QuoteResultRegularMarketTime) GetRawOk

func (o *QuoteResultRegularMarketTime) GetRawOk() (*int32, bool)

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

func (*QuoteResultRegularMarketTime) HasFmt

func (o *QuoteResultRegularMarketTime) HasFmt() bool

HasFmt returns a boolean if a field has been set.

func (*QuoteResultRegularMarketTime) HasRaw

func (o *QuoteResultRegularMarketTime) HasRaw() bool

HasRaw returns a boolean if a field has been set.

func (QuoteResultRegularMarketTime) MarshalJSON

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

func (*QuoteResultRegularMarketTime) SetFmt

func (o *QuoteResultRegularMarketTime) SetFmt(v string)

SetFmt gets a reference to the given string and assigns it to the Fmt field.

func (*QuoteResultRegularMarketTime) SetRaw

func (o *QuoteResultRegularMarketTime) SetRaw(v int32)

SetRaw gets a reference to the given int32 and assigns it to the Raw field.

func (QuoteResultRegularMarketTime) ToMap

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

type QuoteResultRegularMarketVolume

type QuoteResultRegularMarketVolume struct {
	Raw     *int64  `json:"raw,omitempty"`
	Fmt     *string `json:"fmt,omitempty"`
	LongFmt *string `json:"longFmt,omitempty"`
}

QuoteResultRegularMarketVolume struct for QuoteResultRegularMarketVolume

func NewQuoteResultRegularMarketVolume

func NewQuoteResultRegularMarketVolume() *QuoteResultRegularMarketVolume

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

func NewQuoteResultRegularMarketVolumeWithDefaults

func NewQuoteResultRegularMarketVolumeWithDefaults() *QuoteResultRegularMarketVolume

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

func (*QuoteResultRegularMarketVolume) GetFmt

GetFmt returns the Fmt field value if set, zero value otherwise.

func (*QuoteResultRegularMarketVolume) GetFmtOk

func (o *QuoteResultRegularMarketVolume) GetFmtOk() (*string, bool)

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

func (*QuoteResultRegularMarketVolume) GetLongFmt

func (o *QuoteResultRegularMarketVolume) GetLongFmt() string

GetLongFmt returns the LongFmt field value if set, zero value otherwise.

func (*QuoteResultRegularMarketVolume) GetLongFmtOk

func (o *QuoteResultRegularMarketVolume) GetLongFmtOk() (*string, bool)

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

func (*QuoteResultRegularMarketVolume) GetRaw

GetRaw returns the Raw field value if set, zero value otherwise.

func (*QuoteResultRegularMarketVolume) GetRawOk

func (o *QuoteResultRegularMarketVolume) GetRawOk() (*int64, bool)

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

func (*QuoteResultRegularMarketVolume) HasFmt

HasFmt returns a boolean if a field has been set.

func (*QuoteResultRegularMarketVolume) HasLongFmt

func (o *QuoteResultRegularMarketVolume) HasLongFmt() bool

HasLongFmt returns a boolean if a field has been set.

func (*QuoteResultRegularMarketVolume) HasRaw

HasRaw returns a boolean if a field has been set.

func (QuoteResultRegularMarketVolume) MarshalJSON

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

func (*QuoteResultRegularMarketVolume) SetFmt

SetFmt gets a reference to the given string and assigns it to the Fmt field.

func (*QuoteResultRegularMarketVolume) SetLongFmt

func (o *QuoteResultRegularMarketVolume) SetLongFmt(v string)

SetLongFmt gets a reference to the given string and assigns it to the LongFmt field.

func (*QuoteResultRegularMarketVolume) SetRaw

SetRaw gets a reference to the given int64 and assigns it to the Raw field.

func (QuoteResultRegularMarketVolume) ToMap

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

type Range

type Range string

Range the model 'Range'

const (
	RANGE__1D  Range = "1d"
	RANGE__5D  Range = "5d"
	RANGE__1MO Range = "1mo"
	RANGE__3MO Range = "3mo"
	RANGE__6MO Range = "6mo"
	RANGE__1Y  Range = "1y"
	RANGE__2Y  Range = "2y"
	RANGE__5Y  Range = "5y"
	RANGE__10Y Range = "10y"
	RANGE_YTD  Range = "ytd"
	RANGE_MAX  Range = "max"
)

List of Range

func NewRangeFromValue

func NewRangeFromValue(v string) (*Range, error)

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

func (Range) IsValid

func (v Range) IsValid() bool

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

func (Range) Ptr

func (v Range) Ptr() *Range

Ptr returns reference to Range value

func (*Range) UnmarshalJSON

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

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type SparkAPIService

type SparkAPIService service

SparkAPIService SparkAPI service

func (*SparkAPIService) Spark

Spark Method for Spark

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

func (*SparkAPIService) SparkExecute

Execute executes the request

@return QuoteResponse

type SparkResponse

type SparkResponse struct {
	Spark *SparkResponseSpark `json:"spark,omitempty"`
}

SparkResponse struct for SparkResponse

func NewSparkResponse

func NewSparkResponse() *SparkResponse

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

func NewSparkResponseWithDefaults

func NewSparkResponseWithDefaults() *SparkResponse

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

func (*SparkResponse) GetSpark

func (o *SparkResponse) GetSpark() SparkResponseSpark

GetSpark returns the Spark field value if set, zero value otherwise.

func (*SparkResponse) GetSparkOk

func (o *SparkResponse) GetSparkOk() (*SparkResponseSpark, bool)

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

func (*SparkResponse) HasSpark

func (o *SparkResponse) HasSpark() bool

HasSpark returns a boolean if a field has been set.

func (SparkResponse) MarshalJSON

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

func (*SparkResponse) SetSpark

func (o *SparkResponse) SetSpark(v SparkResponseSpark)

SetSpark gets a reference to the given SparkResponseSpark and assigns it to the Spark field.

func (SparkResponse) ToMap

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

type SparkResponseSpark

type SparkResponseSpark struct {
	Result []SparkResponseSparkResultInner `json:"result,omitempty"`
	Error  *Error                          `json:"error,omitempty"`
}

SparkResponseSpark struct for SparkResponseSpark

func NewSparkResponseSpark

func NewSparkResponseSpark() *SparkResponseSpark

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

func NewSparkResponseSparkWithDefaults

func NewSparkResponseSparkWithDefaults() *SparkResponseSpark

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

func (*SparkResponseSpark) GetError

func (o *SparkResponseSpark) GetError() Error

GetError returns the Error field value if set, zero value otherwise.

func (*SparkResponseSpark) GetErrorOk

func (o *SparkResponseSpark) GetErrorOk() (*Error, bool)

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

func (*SparkResponseSpark) GetResult

GetResult returns the Result field value if set, zero value otherwise.

func (*SparkResponseSpark) GetResultOk

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 (*SparkResponseSpark) HasError

func (o *SparkResponseSpark) HasError() bool

HasError returns a boolean if a field has been set.

func (*SparkResponseSpark) HasResult

func (o *SparkResponseSpark) HasResult() bool

HasResult returns a boolean if a field has been set.

func (SparkResponseSpark) MarshalJSON

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

func (*SparkResponseSpark) SetError

func (o *SparkResponseSpark) SetError(v Error)

SetError gets a reference to the given Error and assigns it to the Error field.

func (*SparkResponseSpark) SetResult

SetResult gets a reference to the given []SparkResponseSparkResultInner and assigns it to the Result field.

func (SparkResponseSpark) ToMap

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

type SparkResponseSparkResultInner

type SparkResponseSparkResultInner struct {
	Symbol   *string                                      `json:"symbol,omitempty"`
	Response []SparkResponseSparkResultInnerResponseInner `json:"response,omitempty"`
}

SparkResponseSparkResultInner struct for SparkResponseSparkResultInner

func NewSparkResponseSparkResultInner

func NewSparkResponseSparkResultInner() *SparkResponseSparkResultInner

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

func NewSparkResponseSparkResultInnerWithDefaults

func NewSparkResponseSparkResultInnerWithDefaults() *SparkResponseSparkResultInner

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

func (*SparkResponseSparkResultInner) GetResponse

GetResponse returns the Response field value if set, zero value otherwise.

func (*SparkResponseSparkResultInner) GetResponseOk

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

func (*SparkResponseSparkResultInner) GetSymbol

func (o *SparkResponseSparkResultInner) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*SparkResponseSparkResultInner) GetSymbolOk

func (o *SparkResponseSparkResultInner) GetSymbolOk() (*string, bool)

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

func (*SparkResponseSparkResultInner) HasResponse

func (o *SparkResponseSparkResultInner) HasResponse() bool

HasResponse returns a boolean if a field has been set.

func (*SparkResponseSparkResultInner) HasSymbol

func (o *SparkResponseSparkResultInner) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (SparkResponseSparkResultInner) MarshalJSON

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

func (*SparkResponseSparkResultInner) SetResponse

SetResponse gets a reference to the given []SparkResponseSparkResultInnerResponseInner and assigns it to the Response field.

func (*SparkResponseSparkResultInner) SetSymbol

func (o *SparkResponseSparkResultInner) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (SparkResponseSparkResultInner) ToMap

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

type SparkResponseSparkResultInnerResponseInner

type SparkResponseSparkResultInnerResponseInner struct {
	Meta       *SparkResponseSparkResultInnerResponseInnerMeta       `json:"meta,omitempty"`
	Timestamp  []int32                                               `json:"timestamp,omitempty"`
	Indicators *SparkResponseSparkResultInnerResponseInnerIndicators `json:"indicators,omitempty"`
}

SparkResponseSparkResultInnerResponseInner struct for SparkResponseSparkResultInnerResponseInner

func NewSparkResponseSparkResultInnerResponseInner

func NewSparkResponseSparkResultInnerResponseInner() *SparkResponseSparkResultInnerResponseInner

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

func NewSparkResponseSparkResultInnerResponseInnerWithDefaults

func NewSparkResponseSparkResultInnerResponseInnerWithDefaults() *SparkResponseSparkResultInnerResponseInner

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

func (*SparkResponseSparkResultInnerResponseInner) GetIndicators

GetIndicators returns the Indicators field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInner) GetIndicatorsOk

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

func (*SparkResponseSparkResultInnerResponseInner) GetMeta

GetMeta returns the Meta field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInner) GetMetaOk

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

func (*SparkResponseSparkResultInnerResponseInner) GetTimestamp

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

func (*SparkResponseSparkResultInnerResponseInner) GetTimestampOk

func (o *SparkResponseSparkResultInnerResponseInner) GetTimestampOk() ([]int32, bool)

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

func (*SparkResponseSparkResultInnerResponseInner) HasIndicators

HasIndicators returns a boolean if a field has been set.

func (*SparkResponseSparkResultInnerResponseInner) HasMeta

HasMeta returns a boolean if a field has been set.

func (*SparkResponseSparkResultInnerResponseInner) HasTimestamp

HasTimestamp returns a boolean if a field has been set.

func (SparkResponseSparkResultInnerResponseInner) MarshalJSON

func (*SparkResponseSparkResultInnerResponseInner) SetIndicators

SetIndicators gets a reference to the given SparkResponseSparkResultInnerResponseInnerIndicators and assigns it to the Indicators field.

func (*SparkResponseSparkResultInnerResponseInner) SetMeta

SetMeta gets a reference to the given SparkResponseSparkResultInnerResponseInnerMeta and assigns it to the Meta field.

func (*SparkResponseSparkResultInnerResponseInner) SetTimestamp

SetTimestamp gets a reference to the given []int32 and assigns it to the Timestamp field.

func (SparkResponseSparkResultInnerResponseInner) ToMap

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

type SparkResponseSparkResultInnerResponseInnerIndicators

type SparkResponseSparkResultInnerResponseInnerIndicators struct {
	Quote []SparkResponseSparkResultInnerResponseInnerIndicatorsQuoteInner `json:"quote,omitempty"`
}

SparkResponseSparkResultInnerResponseInnerIndicators struct for SparkResponseSparkResultInnerResponseInnerIndicators

func NewSparkResponseSparkResultInnerResponseInnerIndicators

func NewSparkResponseSparkResultInnerResponseInnerIndicators() *SparkResponseSparkResultInnerResponseInnerIndicators

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

func NewSparkResponseSparkResultInnerResponseInnerIndicatorsWithDefaults

func NewSparkResponseSparkResultInnerResponseInnerIndicatorsWithDefaults() *SparkResponseSparkResultInnerResponseInnerIndicators

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

func (*SparkResponseSparkResultInnerResponseInnerIndicators) GetQuote

GetQuote returns the Quote field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInnerIndicators) GetQuoteOk

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

func (*SparkResponseSparkResultInnerResponseInnerIndicators) HasQuote

HasQuote returns a boolean if a field has been set.

func (SparkResponseSparkResultInnerResponseInnerIndicators) MarshalJSON

func (*SparkResponseSparkResultInnerResponseInnerIndicators) SetQuote

SetQuote gets a reference to the given []SparkResponseSparkResultInnerResponseInnerIndicatorsQuoteInner and assigns it to the Quote field.

func (SparkResponseSparkResultInnerResponseInnerIndicators) ToMap

type SparkResponseSparkResultInnerResponseInnerIndicatorsQuoteInner

type SparkResponseSparkResultInnerResponseInnerIndicatorsQuoteInner struct {
	Close []float32 `json:"close,omitempty"`
}

SparkResponseSparkResultInnerResponseInnerIndicatorsQuoteInner struct for SparkResponseSparkResultInnerResponseInnerIndicatorsQuoteInner

func NewSparkResponseSparkResultInnerResponseInnerIndicatorsQuoteInner

func NewSparkResponseSparkResultInnerResponseInnerIndicatorsQuoteInner() *SparkResponseSparkResultInnerResponseInnerIndicatorsQuoteInner

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

func NewSparkResponseSparkResultInnerResponseInnerIndicatorsQuoteInnerWithDefaults

func NewSparkResponseSparkResultInnerResponseInnerIndicatorsQuoteInnerWithDefaults() *SparkResponseSparkResultInnerResponseInnerIndicatorsQuoteInner

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

func (*SparkResponseSparkResultInnerResponseInnerIndicatorsQuoteInner) GetClose

GetClose returns the Close field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInnerIndicatorsQuoteInner) GetCloseOk

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

func (*SparkResponseSparkResultInnerResponseInnerIndicatorsQuoteInner) HasClose

HasClose returns a boolean if a field has been set.

func (SparkResponseSparkResultInnerResponseInnerIndicatorsQuoteInner) MarshalJSON

func (*SparkResponseSparkResultInnerResponseInnerIndicatorsQuoteInner) SetClose

SetClose gets a reference to the given []float32 and assigns it to the Close field.

func (SparkResponseSparkResultInnerResponseInnerIndicatorsQuoteInner) ToMap

type SparkResponseSparkResultInnerResponseInnerMeta

type SparkResponseSparkResultInnerResponseInnerMeta struct {
	Currency             *string                                                                   `json:"currency,omitempty"`
	Symbol               *string                                                                   `json:"symbol,omitempty"`
	ExchangeName         *string                                                                   `json:"exchangeName,omitempty"`
	InstrumentType       *string                                                                   `json:"instrumentType,omitempty"`
	FirstTradeDate       *int32                                                                    `json:"firstTradeDate,omitempty"`
	RegularMarketTime    *int32                                                                    `json:"regularMarketTime,omitempty"`
	Gmtoffset            *int32                                                                    `json:"gmtoffset,omitempty"`
	Timezone             *string                                                                   `json:"timezone,omitempty"`
	ExchangeTimezoneName *string                                                                   `json:"exchangeTimezoneName,omitempty"`
	RegularMarketPrice   *float32                                                                  `json:"regularMarketPrice,omitempty"`
	ChartPreviousClose   *float32                                                                  `json:"chartPreviousClose,omitempty"`
	PreviousClose        *float32                                                                  `json:"previousClose,omitempty"`
	Scale                *int32                                                                    `json:"scale,omitempty"`
	PriceHint            *int32                                                                    `json:"priceHint,omitempty"`
	CurrentTradingPeriod *SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod       `json:"currentTradingPeriod,omitempty"`
	TradingPeriods       [][]SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre `json:"tradingPeriods,omitempty"`
	DataGranularity      *string                                                                   `json:"dataGranularity,omitempty"`
	Range                *string                                                                   `json:"range,omitempty"`
	ValidRanges          []string                                                                  `json:"validRanges,omitempty"`
}

SparkResponseSparkResultInnerResponseInnerMeta struct for SparkResponseSparkResultInnerResponseInnerMeta

func NewSparkResponseSparkResultInnerResponseInnerMeta

func NewSparkResponseSparkResultInnerResponseInnerMeta() *SparkResponseSparkResultInnerResponseInnerMeta

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

func NewSparkResponseSparkResultInnerResponseInnerMetaWithDefaults

func NewSparkResponseSparkResultInnerResponseInnerMetaWithDefaults() *SparkResponseSparkResultInnerResponseInnerMeta

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

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetChartPreviousClose

func (o *SparkResponseSparkResultInnerResponseInnerMeta) GetChartPreviousClose() float32

GetChartPreviousClose returns the ChartPreviousClose field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetChartPreviousCloseOk

func (o *SparkResponseSparkResultInnerResponseInnerMeta) GetChartPreviousCloseOk() (*float32, bool)

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

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetCurrency

GetCurrency returns the Currency field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetCurrencyOk

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

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetCurrentTradingPeriod

GetCurrentTradingPeriod returns the CurrentTradingPeriod field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetCurrentTradingPeriodOk

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

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetDataGranularity

GetDataGranularity returns the DataGranularity field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetDataGranularityOk

func (o *SparkResponseSparkResultInnerResponseInnerMeta) GetDataGranularityOk() (*string, bool)

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

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetExchangeName

GetExchangeName returns the ExchangeName field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetExchangeNameOk

func (o *SparkResponseSparkResultInnerResponseInnerMeta) GetExchangeNameOk() (*string, bool)

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

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetExchangeTimezoneName

func (o *SparkResponseSparkResultInnerResponseInnerMeta) GetExchangeTimezoneName() string

GetExchangeTimezoneName returns the ExchangeTimezoneName field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetExchangeTimezoneNameOk

func (o *SparkResponseSparkResultInnerResponseInnerMeta) GetExchangeTimezoneNameOk() (*string, bool)

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

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetFirstTradeDate

GetFirstTradeDate returns the FirstTradeDate field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetFirstTradeDateOk

func (o *SparkResponseSparkResultInnerResponseInnerMeta) GetFirstTradeDateOk() (*int32, bool)

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

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetGmtoffset

GetGmtoffset returns the Gmtoffset field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetGmtoffsetOk

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

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetInstrumentType

GetInstrumentType returns the InstrumentType field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetInstrumentTypeOk

func (o *SparkResponseSparkResultInnerResponseInnerMeta) GetInstrumentTypeOk() (*string, bool)

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

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetPreviousClose

GetPreviousClose returns the PreviousClose field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetPreviousCloseOk

func (o *SparkResponseSparkResultInnerResponseInnerMeta) GetPreviousCloseOk() (*float32, bool)

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

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetPriceHint

GetPriceHint returns the PriceHint field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetPriceHintOk

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

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetRange

GetRange returns the Range field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetRangeOk

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

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetRegularMarketPrice

func (o *SparkResponseSparkResultInnerResponseInnerMeta) GetRegularMarketPrice() float32

GetRegularMarketPrice returns the RegularMarketPrice field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetRegularMarketPriceOk

func (o *SparkResponseSparkResultInnerResponseInnerMeta) GetRegularMarketPriceOk() (*float32, bool)

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

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetRegularMarketTime

func (o *SparkResponseSparkResultInnerResponseInnerMeta) GetRegularMarketTime() int32

GetRegularMarketTime returns the RegularMarketTime field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetRegularMarketTimeOk

func (o *SparkResponseSparkResultInnerResponseInnerMeta) GetRegularMarketTimeOk() (*int32, bool)

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

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetScale

GetScale returns the Scale field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetScaleOk

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

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetSymbol

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetSymbolOk

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

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetTimezone

GetTimezone returns the Timezone field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetTimezoneOk

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 (*SparkResponseSparkResultInnerResponseInnerMeta) GetTradingPeriods

GetTradingPeriods returns the TradingPeriods field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetTradingPeriodsOk

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

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetValidRanges

GetValidRanges returns the ValidRanges field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInnerMeta) GetValidRangesOk

func (o *SparkResponseSparkResultInnerResponseInnerMeta) GetValidRangesOk() ([]string, bool)

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

func (*SparkResponseSparkResultInnerResponseInnerMeta) HasChartPreviousClose

func (o *SparkResponseSparkResultInnerResponseInnerMeta) HasChartPreviousClose() bool

HasChartPreviousClose returns a boolean if a field has been set.

func (*SparkResponseSparkResultInnerResponseInnerMeta) HasCurrency

HasCurrency returns a boolean if a field has been set.

func (*SparkResponseSparkResultInnerResponseInnerMeta) HasCurrentTradingPeriod

func (o *SparkResponseSparkResultInnerResponseInnerMeta) HasCurrentTradingPeriod() bool

HasCurrentTradingPeriod returns a boolean if a field has been set.

func (*SparkResponseSparkResultInnerResponseInnerMeta) HasDataGranularity

func (o *SparkResponseSparkResultInnerResponseInnerMeta) HasDataGranularity() bool

HasDataGranularity returns a boolean if a field has been set.

func (*SparkResponseSparkResultInnerResponseInnerMeta) HasExchangeName

HasExchangeName returns a boolean if a field has been set.

func (*SparkResponseSparkResultInnerResponseInnerMeta) HasExchangeTimezoneName

func (o *SparkResponseSparkResultInnerResponseInnerMeta) HasExchangeTimezoneName() bool

HasExchangeTimezoneName returns a boolean if a field has been set.

func (*SparkResponseSparkResultInnerResponseInnerMeta) HasFirstTradeDate

HasFirstTradeDate returns a boolean if a field has been set.

func (*SparkResponseSparkResultInnerResponseInnerMeta) HasGmtoffset

HasGmtoffset returns a boolean if a field has been set.

func (*SparkResponseSparkResultInnerResponseInnerMeta) HasInstrumentType

HasInstrumentType returns a boolean if a field has been set.

func (*SparkResponseSparkResultInnerResponseInnerMeta) HasPreviousClose

HasPreviousClose returns a boolean if a field has been set.

func (*SparkResponseSparkResultInnerResponseInnerMeta) HasPriceHint

HasPriceHint returns a boolean if a field has been set.

func (*SparkResponseSparkResultInnerResponseInnerMeta) HasRange

HasRange returns a boolean if a field has been set.

func (*SparkResponseSparkResultInnerResponseInnerMeta) HasRegularMarketPrice

func (o *SparkResponseSparkResultInnerResponseInnerMeta) HasRegularMarketPrice() bool

HasRegularMarketPrice returns a boolean if a field has been set.

func (*SparkResponseSparkResultInnerResponseInnerMeta) HasRegularMarketTime

func (o *SparkResponseSparkResultInnerResponseInnerMeta) HasRegularMarketTime() bool

HasRegularMarketTime returns a boolean if a field has been set.

func (*SparkResponseSparkResultInnerResponseInnerMeta) HasScale

HasScale returns a boolean if a field has been set.

func (*SparkResponseSparkResultInnerResponseInnerMeta) HasSymbol

HasSymbol returns a boolean if a field has been set.

func (*SparkResponseSparkResultInnerResponseInnerMeta) HasTimezone

HasTimezone returns a boolean if a field has been set.

func (*SparkResponseSparkResultInnerResponseInnerMeta) HasTradingPeriods

HasTradingPeriods returns a boolean if a field has been set.

func (*SparkResponseSparkResultInnerResponseInnerMeta) HasValidRanges

HasValidRanges returns a boolean if a field has been set.

func (SparkResponseSparkResultInnerResponseInnerMeta) MarshalJSON

func (*SparkResponseSparkResultInnerResponseInnerMeta) SetChartPreviousClose

func (o *SparkResponseSparkResultInnerResponseInnerMeta) SetChartPreviousClose(v float32)

SetChartPreviousClose gets a reference to the given float32 and assigns it to the ChartPreviousClose field.

func (*SparkResponseSparkResultInnerResponseInnerMeta) SetCurrency

SetCurrency gets a reference to the given string and assigns it to the Currency field.

func (*SparkResponseSparkResultInnerResponseInnerMeta) SetCurrentTradingPeriod

SetCurrentTradingPeriod gets a reference to the given SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod and assigns it to the CurrentTradingPeriod field.

func (*SparkResponseSparkResultInnerResponseInnerMeta) SetDataGranularity

func (o *SparkResponseSparkResultInnerResponseInnerMeta) SetDataGranularity(v string)

SetDataGranularity gets a reference to the given string and assigns it to the DataGranularity field.

func (*SparkResponseSparkResultInnerResponseInnerMeta) SetExchangeName

SetExchangeName gets a reference to the given string and assigns it to the ExchangeName field.

func (*SparkResponseSparkResultInnerResponseInnerMeta) SetExchangeTimezoneName

func (o *SparkResponseSparkResultInnerResponseInnerMeta) SetExchangeTimezoneName(v string)

SetExchangeTimezoneName gets a reference to the given string and assigns it to the ExchangeTimezoneName field.

func (*SparkResponseSparkResultInnerResponseInnerMeta) SetFirstTradeDate

func (o *SparkResponseSparkResultInnerResponseInnerMeta) SetFirstTradeDate(v int32)

SetFirstTradeDate gets a reference to the given int32 and assigns it to the FirstTradeDate field.

func (*SparkResponseSparkResultInnerResponseInnerMeta) SetGmtoffset

SetGmtoffset gets a reference to the given int32 and assigns it to the Gmtoffset field.

func (*SparkResponseSparkResultInnerResponseInnerMeta) SetInstrumentType

SetInstrumentType gets a reference to the given string and assigns it to the InstrumentType field.

func (*SparkResponseSparkResultInnerResponseInnerMeta) SetPreviousClose

SetPreviousClose gets a reference to the given float32 and assigns it to the PreviousClose field.

func (*SparkResponseSparkResultInnerResponseInnerMeta) SetPriceHint

SetPriceHint gets a reference to the given int32 and assigns it to the PriceHint field.

func (*SparkResponseSparkResultInnerResponseInnerMeta) SetRange

SetRange gets a reference to the given string and assigns it to the Range field.

func (*SparkResponseSparkResultInnerResponseInnerMeta) SetRegularMarketPrice

func (o *SparkResponseSparkResultInnerResponseInnerMeta) SetRegularMarketPrice(v float32)

SetRegularMarketPrice gets a reference to the given float32 and assigns it to the RegularMarketPrice field.

func (*SparkResponseSparkResultInnerResponseInnerMeta) SetRegularMarketTime

func (o *SparkResponseSparkResultInnerResponseInnerMeta) SetRegularMarketTime(v int32)

SetRegularMarketTime gets a reference to the given int32 and assigns it to the RegularMarketTime field.

func (*SparkResponseSparkResultInnerResponseInnerMeta) SetScale

SetScale gets a reference to the given int32 and assigns it to the Scale field.

func (*SparkResponseSparkResultInnerResponseInnerMeta) SetSymbol

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*SparkResponseSparkResultInnerResponseInnerMeta) SetTimezone

SetTimezone gets a reference to the given string and assigns it to the Timezone field.

func (*SparkResponseSparkResultInnerResponseInnerMeta) SetTradingPeriods

SetTradingPeriods gets a reference to the given [][]SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre and assigns it to the TradingPeriods field.

func (*SparkResponseSparkResultInnerResponseInnerMeta) SetValidRanges

SetValidRanges gets a reference to the given []string and assigns it to the ValidRanges field.

func (SparkResponseSparkResultInnerResponseInnerMeta) ToMap

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

type SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod

type SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod struct {
	Pre     *SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre `json:"pre,omitempty"`
	Regular *SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre `json:"regular,omitempty"`
	Post    *SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre `json:"post,omitempty"`
}

SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod struct for SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod

func NewSparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod

func NewSparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod() *SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod

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

func NewSparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodWithDefaults

func NewSparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodWithDefaults() *SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod

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

func (*SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod) GetPost

GetPost returns the Post field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod) GetPostOk

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

func (*SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod) GetPre

GetPre returns the Pre field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod) GetPreOk

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

func (*SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod) GetRegular

GetRegular returns the Regular field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod) GetRegularOk

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

func (*SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod) HasPost

HasPost returns a boolean if a field has been set.

func (*SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod) HasPre

HasPre returns a boolean if a field has been set.

func (*SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod) HasRegular

HasRegular returns a boolean if a field has been set.

func (SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod) MarshalJSON

func (*SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod) SetPost

SetPost gets a reference to the given SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre and assigns it to the Post field.

func (*SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod) SetPre

SetPre gets a reference to the given SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre and assigns it to the Pre field.

func (*SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod) SetRegular

SetRegular gets a reference to the given SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre and assigns it to the Regular field.

func (SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriod) ToMap

type SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre

type SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre struct {
	Timezone  *string `json:"timezone,omitempty"`
	End       *int32  `json:"end,omitempty"`
	Start     *int32  `json:"start,omitempty"`
	Gmtoffset *int32  `json:"gmtoffset,omitempty"`
}

SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre struct for SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre

func NewSparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre

func NewSparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre() *SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre

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

func NewSparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPreWithDefaults

func NewSparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPreWithDefaults() *SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre

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

func (*SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre) GetEnd

GetEnd returns the End field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre) GetEndOk

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

func (*SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre) GetGmtoffset

GetGmtoffset returns the Gmtoffset field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre) GetGmtoffsetOk

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

func (*SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre) GetStart

GetStart returns the Start field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre) GetStartOk

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

func (*SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre) GetTimezone

GetTimezone returns the Timezone field value if set, zero value otherwise.

func (*SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre) GetTimezoneOk

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 (*SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre) HasEnd

HasEnd returns a boolean if a field has been set.

func (*SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre) HasGmtoffset

HasGmtoffset returns a boolean if a field has been set.

func (*SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre) HasStart

HasStart returns a boolean if a field has been set.

func (*SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre) HasTimezone

HasTimezone returns a boolean if a field has been set.

func (SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre) MarshalJSON

func (*SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre) SetEnd

SetEnd gets a reference to the given int32 and assigns it to the End field.

func (*SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre) SetGmtoffset

SetGmtoffset gets a reference to the given int32 and assigns it to the Gmtoffset field.

func (*SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre) SetStart

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre) SetTimezone

SetTimezone gets a reference to the given string and assigns it to the Timezone field.

func (SparkResponseSparkResultInnerResponseInnerMetaCurrentTradingPeriodPre) ToMap

Source Files

Jump to

Keyboard shortcuts

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