Versions in this module Expand all Collapse all v0 v0.32.0 Aug 1, 2026 Changes in this version + var ContextOperationServerIndices = contextKey("serverOperationIndices") + var ContextOperationServerVariables = contextKey("serverOperationVariables") + var ContextServerIndex = contextKey("serverIndex") + var ContextServerVariables = contextKey("serverVariables") + var JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`) + var XmlCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`) + func CacheExpires(r *http.Response) time.Time + func IsNil(i interface{}) bool + func PtrBool(v bool) *bool + func PtrFloat32(v float32) *float32 + func PtrFloat64(v float64) *float64 + func PtrInt(v int) *int + func PtrInt32(v int32) *int32 + func PtrInt64(v int64) *int64 + func PtrString(v string) *string + func PtrTime(v time.Time) *time.Time + type APIClient struct + DefaultAPI *DefaultAPIService + func NewAPIClient(cfg *Configuration) *APIClient + func (c *APIClient) GetConfig() *Configuration + type APIKey struct + Key string + Prefix string + type APIResponse struct + Message string + Method string + Operation string + Payload []byte + RequestURL string + func NewAPIResponse(r *http.Response) *APIResponse + func NewAPIResponseWithError(errorMessage string) *APIResponse + type ApiHealthGetRequest struct + ApiService *DefaultAPIService + func (r ApiHealthGetRequest) Execute() (*HealthGet200Response, *http.Response, error) + type ApiModelsGetRequest struct + ApiService *DefaultAPIService + func (r ApiModelsGetRequest) Execute() ([]string, *http.Response, error) + type ApiModelsIdGetRequest struct + ApiService *DefaultAPIService + func (r ApiModelsIdGetRequest) Execute() (*ModelsIdGet200Response, *http.Response, error) + type ApiPredictPostRequest struct + ApiService *DefaultAPIService + func (r ApiPredictPostRequest) Execute() (*PredictPost200Response, *http.Response, error) + func (r ApiPredictPostRequest) PredictPostRequest(predictPostRequest PredictPostRequest) ApiPredictPostRequest + type ApiPredictionsIdFeedbackPostRequest struct + ApiService *DefaultAPIService + func (r ApiPredictionsIdFeedbackPostRequest) Execute() (*PredictionsIdFeedbackPost200Response, *http.Response, error) + func (r ApiPredictionsIdFeedbackPostRequest) PredictionsIdFeedbackPostRequest(predictionsIdFeedbackPostRequest PredictionsIdFeedbackPostRequest) ApiPredictionsIdFeedbackPostRequest + type BasicAuth struct + Password string + UserName string + type Configuration struct + Debug bool + DefaultHeader map[string]string + HTTPClient *http.Client + Host string + OperationServers map[string]ServerConfigurations + Scheme string + Servers ServerConfigurations + UserAgent string + func NewConfiguration() *Configuration + func (c *Configuration) AddDefaultHeader(key string, value string) + func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error) + func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error) + type DefaultAPIService service + func (a *DefaultAPIService) HealthGet(ctx context.Context) ApiHealthGetRequest + func (a *DefaultAPIService) HealthGetExecute(r ApiHealthGetRequest) (*HealthGet200Response, *http.Response, error) + func (a *DefaultAPIService) ModelsGet(ctx context.Context) ApiModelsGetRequest + func (a *DefaultAPIService) ModelsGetExecute(r ApiModelsGetRequest) ([]string, *http.Response, error) + func (a *DefaultAPIService) ModelsIdGet(ctx context.Context, id string) ApiModelsIdGetRequest + func (a *DefaultAPIService) ModelsIdGetExecute(r ApiModelsIdGetRequest) (*ModelsIdGet200Response, *http.Response, error) + func (a *DefaultAPIService) PredictPost(ctx context.Context) ApiPredictPostRequest + func (a *DefaultAPIService) PredictPostExecute(r ApiPredictPostRequest) (*PredictPost200Response, *http.Response, error) + func (a *DefaultAPIService) PredictionsIdFeedbackPost(ctx context.Context, id string) ApiPredictionsIdFeedbackPostRequest + func (a *DefaultAPIService) PredictionsIdFeedbackPostExecute(r ApiPredictionsIdFeedbackPostRequest) (*PredictionsIdFeedbackPost200Response, *http.Response, error) + type GenericOpenAPIError struct + func (e GenericOpenAPIError) Body() []byte + func (e GenericOpenAPIError) Error() string + func (e GenericOpenAPIError) Model() interface{} + type HealthGet200Response struct + Status string + func NewHealthGet200Response(status string) *HealthGet200Response + func NewHealthGet200ResponseWithDefaults() *HealthGet200Response + func (o *HealthGet200Response) GetStatus() string + func (o *HealthGet200Response) GetStatusOk() (*string, bool) + func (o *HealthGet200Response) SetStatus(v string) + func (o *HealthGet200Response) UnmarshalJSON(data []byte) (err error) + func (o HealthGet200Response) MarshalJSON() ([]byte, error) + func (o HealthGet200Response) ToMap() (map[string]interface{}, error) + type MappedNullable interface + ToMap func() (map[string]interface{}, error) + type ModelsIdGet200Response struct + Id string + Metrics map[string]interface{} + Schema map[string]interface{} + func NewModelsIdGet200Response(id string, schema map[string]interface{}, metrics map[string]interface{}) *ModelsIdGet200Response + func NewModelsIdGet200ResponseWithDefaults() *ModelsIdGet200Response + func (o *ModelsIdGet200Response) GetId() string + func (o *ModelsIdGet200Response) GetIdOk() (*string, bool) + func (o *ModelsIdGet200Response) GetMetrics() map[string]interface{} + func (o *ModelsIdGet200Response) GetMetricsOk() (map[string]interface{}, bool) + func (o *ModelsIdGet200Response) GetSchema() map[string]interface{} + func (o *ModelsIdGet200Response) GetSchemaOk() (map[string]interface{}, bool) + func (o *ModelsIdGet200Response) SetId(v string) + func (o *ModelsIdGet200Response) SetMetrics(v map[string]interface{}) + func (o *ModelsIdGet200Response) SetSchema(v map[string]interface{}) + func (o *ModelsIdGet200Response) UnmarshalJSON(data []byte) (err error) + func (o ModelsIdGet200Response) MarshalJSON() ([]byte, error) + func (o ModelsIdGet200Response) ToMap() (map[string]interface{}, error) + type NullableBool struct + func NewNullableBool(val *bool) *NullableBool + func (v *NullableBool) Set(val *bool) + func (v *NullableBool) UnmarshalJSON(src []byte) error + func (v *NullableBool) Unset() + func (v NullableBool) Get() *bool + func (v NullableBool) IsSet() bool + func (v NullableBool) MarshalJSON() ([]byte, error) + type NullableFloat32 struct + func NewNullableFloat32(val *float32) *NullableFloat32 + func (v *NullableFloat32) Set(val *float32) + func (v *NullableFloat32) UnmarshalJSON(src []byte) error + func (v *NullableFloat32) Unset() + func (v NullableFloat32) Get() *float32 + func (v NullableFloat32) IsSet() bool + func (v NullableFloat32) MarshalJSON() ([]byte, error) + type NullableFloat64 struct + func NewNullableFloat64(val *float64) *NullableFloat64 + func (v *NullableFloat64) Set(val *float64) + func (v *NullableFloat64) UnmarshalJSON(src []byte) error + func (v *NullableFloat64) Unset() + func (v NullableFloat64) Get() *float64 + func (v NullableFloat64) IsSet() bool + func (v NullableFloat64) MarshalJSON() ([]byte, error) + type NullableHealthGet200Response struct + func NewNullableHealthGet200Response(val *HealthGet200Response) *NullableHealthGet200Response + func (v *NullableHealthGet200Response) Set(val *HealthGet200Response) + func (v *NullableHealthGet200Response) UnmarshalJSON(src []byte) error + func (v *NullableHealthGet200Response) Unset() + func (v NullableHealthGet200Response) Get() *HealthGet200Response + func (v NullableHealthGet200Response) IsSet() bool + func (v NullableHealthGet200Response) MarshalJSON() ([]byte, error) + type NullableInt struct + func NewNullableInt(val *int) *NullableInt + func (v *NullableInt) Set(val *int) + func (v *NullableInt) UnmarshalJSON(src []byte) error + func (v *NullableInt) Unset() + func (v NullableInt) Get() *int + func (v NullableInt) IsSet() bool + func (v NullableInt) MarshalJSON() ([]byte, error) + type NullableInt32 struct + func NewNullableInt32(val *int32) *NullableInt32 + func (v *NullableInt32) Set(val *int32) + func (v *NullableInt32) UnmarshalJSON(src []byte) error + func (v *NullableInt32) Unset() + func (v NullableInt32) Get() *int32 + func (v NullableInt32) IsSet() bool + func (v NullableInt32) MarshalJSON() ([]byte, error) + type NullableInt64 struct + func NewNullableInt64(val *int64) *NullableInt64 + func (v *NullableInt64) Set(val *int64) + func (v *NullableInt64) UnmarshalJSON(src []byte) error + func (v *NullableInt64) Unset() + func (v NullableInt64) Get() *int64 + func (v NullableInt64) IsSet() bool + func (v NullableInt64) MarshalJSON() ([]byte, error) + type NullableModelsIdGet200Response struct + func NewNullableModelsIdGet200Response(val *ModelsIdGet200Response) *NullableModelsIdGet200Response + func (v *NullableModelsIdGet200Response) Set(val *ModelsIdGet200Response) + func (v *NullableModelsIdGet200Response) UnmarshalJSON(src []byte) error + func (v *NullableModelsIdGet200Response) Unset() + func (v NullableModelsIdGet200Response) Get() *ModelsIdGet200Response + func (v NullableModelsIdGet200Response) IsSet() bool + func (v NullableModelsIdGet200Response) MarshalJSON() ([]byte, error) + type NullablePredictPost200Response struct + func NewNullablePredictPost200Response(val *PredictPost200Response) *NullablePredictPost200Response + func (v *NullablePredictPost200Response) Set(val *PredictPost200Response) + func (v *NullablePredictPost200Response) UnmarshalJSON(src []byte) error + func (v *NullablePredictPost200Response) Unset() + func (v NullablePredictPost200Response) Get() *PredictPost200Response + func (v NullablePredictPost200Response) IsSet() bool + func (v NullablePredictPost200Response) MarshalJSON() ([]byte, error) + type NullablePredictPost200ResponseConfidence struct + func NewNullablePredictPost200ResponseConfidence(val *PredictPost200ResponseConfidence) *NullablePredictPost200ResponseConfidence + func (v *NullablePredictPost200ResponseConfidence) Set(val *PredictPost200ResponseConfidence) + func (v *NullablePredictPost200ResponseConfidence) UnmarshalJSON(src []byte) error + func (v *NullablePredictPost200ResponseConfidence) Unset() + func (v NullablePredictPost200ResponseConfidence) Get() *PredictPost200ResponseConfidence + func (v NullablePredictPost200ResponseConfidence) IsSet() bool + func (v NullablePredictPost200ResponseConfidence) MarshalJSON() ([]byte, error) + type NullablePredictPost200ResponseConfidenceInterval struct + func NewNullablePredictPost200ResponseConfidenceInterval(val *PredictPost200ResponseConfidenceInterval) *NullablePredictPost200ResponseConfidenceInterval + func (v *NullablePredictPost200ResponseConfidenceInterval) Set(val *PredictPost200ResponseConfidenceInterval) + func (v *NullablePredictPost200ResponseConfidenceInterval) UnmarshalJSON(src []byte) error + func (v *NullablePredictPost200ResponseConfidenceInterval) Unset() + func (v NullablePredictPost200ResponseConfidenceInterval) Get() *PredictPost200ResponseConfidenceInterval + func (v NullablePredictPost200ResponseConfidenceInterval) IsSet() bool + func (v NullablePredictPost200ResponseConfidenceInterval) MarshalJSON() ([]byte, error) + type NullablePredictPost200ResponseMetadata struct + func NewNullablePredictPost200ResponseMetadata(val *PredictPost200ResponseMetadata) *NullablePredictPost200ResponseMetadata + func (v *NullablePredictPost200ResponseMetadata) Set(val *PredictPost200ResponseMetadata) + func (v *NullablePredictPost200ResponseMetadata) UnmarshalJSON(src []byte) error + func (v *NullablePredictPost200ResponseMetadata) Unset() + func (v NullablePredictPost200ResponseMetadata) Get() *PredictPost200ResponseMetadata + func (v NullablePredictPost200ResponseMetadata) IsSet() bool + func (v NullablePredictPost200ResponseMetadata) MarshalJSON() ([]byte, error) + type NullablePredictPost200ResponseTopFactorsInner struct + func NewNullablePredictPost200ResponseTopFactorsInner(val *PredictPost200ResponseTopFactorsInner) *NullablePredictPost200ResponseTopFactorsInner + func (v *NullablePredictPost200ResponseTopFactorsInner) Set(val *PredictPost200ResponseTopFactorsInner) + func (v *NullablePredictPost200ResponseTopFactorsInner) UnmarshalJSON(src []byte) error + func (v *NullablePredictPost200ResponseTopFactorsInner) Unset() + func (v NullablePredictPost200ResponseTopFactorsInner) Get() *PredictPost200ResponseTopFactorsInner + func (v NullablePredictPost200ResponseTopFactorsInner) IsSet() bool + func (v NullablePredictPost200ResponseTopFactorsInner) MarshalJSON() ([]byte, error) + type NullablePredictPost400Response struct + func NewNullablePredictPost400Response(val *PredictPost400Response) *NullablePredictPost400Response + func (v *NullablePredictPost400Response) Set(val *PredictPost400Response) + func (v *NullablePredictPost400Response) UnmarshalJSON(src []byte) error + func (v *NullablePredictPost400Response) Unset() + func (v NullablePredictPost400Response) Get() *PredictPost400Response + func (v NullablePredictPost400Response) IsSet() bool + func (v NullablePredictPost400Response) MarshalJSON() ([]byte, error) + type NullablePredictPostRequest struct + func NewNullablePredictPostRequest(val *PredictPostRequest) *NullablePredictPostRequest + func (v *NullablePredictPostRequest) Set(val *PredictPostRequest) + func (v *NullablePredictPostRequest) UnmarshalJSON(src []byte) error + func (v *NullablePredictPostRequest) Unset() + func (v NullablePredictPostRequest) Get() *PredictPostRequest + func (v NullablePredictPostRequest) IsSet() bool + func (v NullablePredictPostRequest) MarshalJSON() ([]byte, error) + type NullablePredictionsIdFeedbackPost200Response struct + func NewNullablePredictionsIdFeedbackPost200Response(val *PredictionsIdFeedbackPost200Response) *NullablePredictionsIdFeedbackPost200Response + func (v *NullablePredictionsIdFeedbackPost200Response) Set(val *PredictionsIdFeedbackPost200Response) + func (v *NullablePredictionsIdFeedbackPost200Response) UnmarshalJSON(src []byte) error + func (v *NullablePredictionsIdFeedbackPost200Response) Unset() + func (v NullablePredictionsIdFeedbackPost200Response) Get() *PredictionsIdFeedbackPost200Response + func (v NullablePredictionsIdFeedbackPost200Response) IsSet() bool + func (v NullablePredictionsIdFeedbackPost200Response) MarshalJSON() ([]byte, error) + type NullablePredictionsIdFeedbackPostRequest struct + func NewNullablePredictionsIdFeedbackPostRequest(val *PredictionsIdFeedbackPostRequest) *NullablePredictionsIdFeedbackPostRequest + func (v *NullablePredictionsIdFeedbackPostRequest) Set(val *PredictionsIdFeedbackPostRequest) + func (v *NullablePredictionsIdFeedbackPostRequest) UnmarshalJSON(src []byte) error + func (v *NullablePredictionsIdFeedbackPostRequest) Unset() + func (v NullablePredictionsIdFeedbackPostRequest) Get() *PredictionsIdFeedbackPostRequest + func (v NullablePredictionsIdFeedbackPostRequest) IsSet() bool + func (v NullablePredictionsIdFeedbackPostRequest) MarshalJSON() ([]byte, error) + type NullableString struct + func NewNullableString(val *string) *NullableString + func (v *NullableString) Set(val *string) + func (v *NullableString) UnmarshalJSON(src []byte) error + func (v *NullableString) Unset() + func (v NullableString) Get() *string + func (v NullableString) IsSet() bool + func (v NullableString) MarshalJSON() ([]byte, error) + type NullableTime struct + func NewNullableTime(val *time.Time) *NullableTime + func (v *NullableTime) Set(val *time.Time) + func (v *NullableTime) UnmarshalJSON(src []byte) error + func (v *NullableTime) Unset() + func (v NullableTime) Get() *time.Time + func (v NullableTime) IsSet() bool + func (v NullableTime) MarshalJSON() ([]byte, error) + type PredictPost200Response struct + Confidence *PredictPost200ResponseConfidence + ConfidenceInterval *PredictPost200ResponseConfidenceInterval + ConfidenceLevel *float32 + FeedbackUrl string + Interval []float32 + LatencyMs float32 + Metadata *PredictPost200ResponseMetadata + Model string + PredictionId string + TopFactors []PredictPost200ResponseTopFactorsInner + Value float32 + func NewPredictPost200Response(value float32, model string, latencyMs float32, predictionId string, ...) *PredictPost200Response + func NewPredictPost200ResponseWithDefaults() *PredictPost200Response + func (o *PredictPost200Response) GetConfidence() PredictPost200ResponseConfidence + func (o *PredictPost200Response) GetConfidenceInterval() PredictPost200ResponseConfidenceInterval + func (o *PredictPost200Response) GetConfidenceIntervalOk() (*PredictPost200ResponseConfidenceInterval, bool) + func (o *PredictPost200Response) GetConfidenceLevel() float32 + func (o *PredictPost200Response) GetConfidenceLevelOk() (*float32, bool) + func (o *PredictPost200Response) GetConfidenceOk() (*PredictPost200ResponseConfidence, bool) + func (o *PredictPost200Response) GetFeedbackUrl() string + func (o *PredictPost200Response) GetFeedbackUrlOk() (*string, bool) + func (o *PredictPost200Response) GetInterval() []float32 + func (o *PredictPost200Response) GetIntervalOk() ([]float32, bool) + func (o *PredictPost200Response) GetLatencyMs() float32 + func (o *PredictPost200Response) GetLatencyMsOk() (*float32, bool) + func (o *PredictPost200Response) GetMetadata() PredictPost200ResponseMetadata + func (o *PredictPost200Response) GetMetadataOk() (*PredictPost200ResponseMetadata, bool) + func (o *PredictPost200Response) GetModel() string + func (o *PredictPost200Response) GetModelOk() (*string, bool) + func (o *PredictPost200Response) GetPredictionId() string + func (o *PredictPost200Response) GetPredictionIdOk() (*string, bool) + func (o *PredictPost200Response) GetTopFactors() []PredictPost200ResponseTopFactorsInner + func (o *PredictPost200Response) GetTopFactorsOk() ([]PredictPost200ResponseTopFactorsInner, bool) + func (o *PredictPost200Response) GetValue() float32 + func (o *PredictPost200Response) GetValueOk() (*float32, bool) + func (o *PredictPost200Response) HasConfidence() bool + func (o *PredictPost200Response) HasConfidenceInterval() bool + func (o *PredictPost200Response) HasConfidenceLevel() bool + func (o *PredictPost200Response) HasInterval() bool + func (o *PredictPost200Response) HasMetadata() bool + func (o *PredictPost200Response) HasTopFactors() bool + func (o *PredictPost200Response) SetConfidence(v PredictPost200ResponseConfidence) + func (o *PredictPost200Response) SetConfidenceInterval(v PredictPost200ResponseConfidenceInterval) + func (o *PredictPost200Response) SetConfidenceLevel(v float32) + func (o *PredictPost200Response) SetFeedbackUrl(v string) + func (o *PredictPost200Response) SetInterval(v []float32) + func (o *PredictPost200Response) SetLatencyMs(v float32) + func (o *PredictPost200Response) SetMetadata(v PredictPost200ResponseMetadata) + func (o *PredictPost200Response) SetModel(v string) + func (o *PredictPost200Response) SetPredictionId(v string) + func (o *PredictPost200Response) SetTopFactors(v []PredictPost200ResponseTopFactorsInner) + func (o *PredictPost200Response) SetValue(v float32) + func (o *PredictPost200Response) UnmarshalJSON(data []byte) (err error) + func (o PredictPost200Response) MarshalJSON() ([]byte, error) + func (o PredictPost200Response) ToMap() (map[string]interface{}, error) + type PredictPost200ResponseConfidence struct + Level float32 + Score float32 + func NewPredictPost200ResponseConfidence(level float32, score float32) *PredictPost200ResponseConfidence + func NewPredictPost200ResponseConfidenceWithDefaults() *PredictPost200ResponseConfidence + func (o *PredictPost200ResponseConfidence) GetLevel() float32 + func (o *PredictPost200ResponseConfidence) GetLevelOk() (*float32, bool) + func (o *PredictPost200ResponseConfidence) GetScore() float32 + func (o *PredictPost200ResponseConfidence) GetScoreOk() (*float32, bool) + func (o *PredictPost200ResponseConfidence) SetLevel(v float32) + func (o *PredictPost200ResponseConfidence) SetScore(v float32) + func (o *PredictPost200ResponseConfidence) UnmarshalJSON(data []byte) (err error) + func (o PredictPost200ResponseConfidence) MarshalJSON() ([]byte, error) + func (o PredictPost200ResponseConfidence) ToMap() (map[string]interface{}, error) + type PredictPost200ResponseConfidenceInterval struct + Coverage float32 + Lower float32 + Upper float32 + func NewPredictPost200ResponseConfidenceInterval(lower float32, upper float32, coverage float32) *PredictPost200ResponseConfidenceInterval + func NewPredictPost200ResponseConfidenceIntervalWithDefaults() *PredictPost200ResponseConfidenceInterval + func (o *PredictPost200ResponseConfidenceInterval) GetCoverage() float32 + func (o *PredictPost200ResponseConfidenceInterval) GetCoverageOk() (*float32, bool) + func (o *PredictPost200ResponseConfidenceInterval) GetLower() float32 + func (o *PredictPost200ResponseConfidenceInterval) GetLowerOk() (*float32, bool) + func (o *PredictPost200ResponseConfidenceInterval) GetUpper() float32 + func (o *PredictPost200ResponseConfidenceInterval) GetUpperOk() (*float32, bool) + func (o *PredictPost200ResponseConfidenceInterval) SetCoverage(v float32) + func (o *PredictPost200ResponseConfidenceInterval) SetLower(v float32) + func (o *PredictPost200ResponseConfidenceInterval) SetUpper(v float32) + func (o *PredictPost200ResponseConfidenceInterval) UnmarshalJSON(data []byte) (err error) + func (o PredictPost200ResponseConfidenceInterval) MarshalJSON() ([]byte, error) + func (o PredictPost200ResponseConfidenceInterval) ToMap() (map[string]interface{}, error) + type PredictPost200ResponseMetadata struct + ModelVersion string + PredictionBasis string + TrainingData string + func NewPredictPost200ResponseMetadata(modelVersion string, trainingData string, predictionBasis string) *PredictPost200ResponseMetadata + func NewPredictPost200ResponseMetadataWithDefaults() *PredictPost200ResponseMetadata + func (o *PredictPost200ResponseMetadata) GetModelVersion() string + func (o *PredictPost200ResponseMetadata) GetModelVersionOk() (*string, bool) + func (o *PredictPost200ResponseMetadata) GetPredictionBasis() string + func (o *PredictPost200ResponseMetadata) GetPredictionBasisOk() (*string, bool) + func (o *PredictPost200ResponseMetadata) GetTrainingData() string + func (o *PredictPost200ResponseMetadata) GetTrainingDataOk() (*string, bool) + func (o *PredictPost200ResponseMetadata) SetModelVersion(v string) + func (o *PredictPost200ResponseMetadata) SetPredictionBasis(v string) + func (o *PredictPost200ResponseMetadata) SetTrainingData(v string) + func (o *PredictPost200ResponseMetadata) UnmarshalJSON(data []byte) (err error) + func (o PredictPost200ResponseMetadata) MarshalJSON() ([]byte, error) + func (o PredictPost200ResponseMetadata) ToMap() (map[string]interface{}, error) + type PredictPost200ResponseTopFactorsInner struct + Feature string + Impact float32 + func NewPredictPost200ResponseTopFactorsInner(feature string, impact float32) *PredictPost200ResponseTopFactorsInner + func NewPredictPost200ResponseTopFactorsInnerWithDefaults() *PredictPost200ResponseTopFactorsInner + func (o *PredictPost200ResponseTopFactorsInner) GetFeature() string + func (o *PredictPost200ResponseTopFactorsInner) GetFeatureOk() (*string, bool) + func (o *PredictPost200ResponseTopFactorsInner) GetImpact() float32 + func (o *PredictPost200ResponseTopFactorsInner) GetImpactOk() (*float32, bool) + func (o *PredictPost200ResponseTopFactorsInner) SetFeature(v string) + func (o *PredictPost200ResponseTopFactorsInner) SetImpact(v float32) + func (o *PredictPost200ResponseTopFactorsInner) UnmarshalJSON(data []byte) (err error) + func (o PredictPost200ResponseTopFactorsInner) MarshalJSON() ([]byte, error) + func (o PredictPost200ResponseTopFactorsInner) ToMap() (map[string]interface{}, error) + type PredictPost400Response struct + Error string + func NewPredictPost400Response(error_ string) *PredictPost400Response + func NewPredictPost400ResponseWithDefaults() *PredictPost400Response + func (o *PredictPost400Response) GetError() string + func (o *PredictPost400Response) GetErrorOk() (*string, bool) + func (o *PredictPost400Response) SetError(v string) + func (o *PredictPost400Response) UnmarshalJSON(data []byte) (err error) + func (o PredictPost400Response) MarshalJSON() ([]byte, error) + func (o PredictPost400Response) ToMap() (map[string]interface{}, error) + type PredictPostRequest struct + Features map[string]interface{} + Model string + TrainConsent *bool + func NewPredictPostRequest(model string, features map[string]interface{}) *PredictPostRequest + func NewPredictPostRequestWithDefaults() *PredictPostRequest + func (o *PredictPostRequest) GetFeatures() map[string]interface{} + func (o *PredictPostRequest) GetFeaturesOk() (map[string]interface{}, bool) + func (o *PredictPostRequest) GetModel() string + func (o *PredictPostRequest) GetModelOk() (*string, bool) + func (o *PredictPostRequest) GetTrainConsent() bool + func (o *PredictPostRequest) GetTrainConsentOk() (*bool, bool) + func (o *PredictPostRequest) HasTrainConsent() bool + func (o *PredictPostRequest) SetFeatures(v map[string]interface{}) + func (o *PredictPostRequest) SetModel(v string) + func (o *PredictPostRequest) SetTrainConsent(v bool) + func (o *PredictPostRequest) UnmarshalJSON(data []byte) (err error) + func (o PredictPostRequest) MarshalJSON() ([]byte, error) + func (o PredictPostRequest) ToMap() (map[string]interface{}, error) + type PredictionsIdFeedbackPost200Response struct + CreditsAwarded float32 + Duplicate *bool + Received bool + func NewPredictionsIdFeedbackPost200Response(received bool, creditsAwarded float32) *PredictionsIdFeedbackPost200Response + func NewPredictionsIdFeedbackPost200ResponseWithDefaults() *PredictionsIdFeedbackPost200Response + func (o *PredictionsIdFeedbackPost200Response) GetCreditsAwarded() float32 + func (o *PredictionsIdFeedbackPost200Response) GetCreditsAwardedOk() (*float32, bool) + func (o *PredictionsIdFeedbackPost200Response) GetDuplicate() bool + func (o *PredictionsIdFeedbackPost200Response) GetDuplicateOk() (*bool, bool) + func (o *PredictionsIdFeedbackPost200Response) GetReceived() bool + func (o *PredictionsIdFeedbackPost200Response) GetReceivedOk() (*bool, bool) + func (o *PredictionsIdFeedbackPost200Response) HasDuplicate() bool + func (o *PredictionsIdFeedbackPost200Response) SetCreditsAwarded(v float32) + func (o *PredictionsIdFeedbackPost200Response) SetDuplicate(v bool) + func (o *PredictionsIdFeedbackPost200Response) SetReceived(v bool) + func (o *PredictionsIdFeedbackPost200Response) UnmarshalJSON(data []byte) (err error) + func (o PredictionsIdFeedbackPost200Response) MarshalJSON() ([]byte, error) + func (o PredictionsIdFeedbackPost200Response) ToMap() (map[string]interface{}, error) + type PredictionsIdFeedbackPostRequest struct + ActualClass *bool + ActualValue *float32 + Comment *string + ConfidenceInMeasurement *float32 + Issue *string + OutcomeDate *string + Rating *int32 + func NewPredictionsIdFeedbackPostRequest() *PredictionsIdFeedbackPostRequest + func NewPredictionsIdFeedbackPostRequestWithDefaults() *PredictionsIdFeedbackPostRequest + func (o *PredictionsIdFeedbackPostRequest) GetActualClass() bool + func (o *PredictionsIdFeedbackPostRequest) GetActualClassOk() (*bool, bool) + func (o *PredictionsIdFeedbackPostRequest) GetActualValue() float32 + func (o *PredictionsIdFeedbackPostRequest) GetActualValueOk() (*float32, bool) + func (o *PredictionsIdFeedbackPostRequest) GetComment() string + func (o *PredictionsIdFeedbackPostRequest) GetCommentOk() (*string, bool) + func (o *PredictionsIdFeedbackPostRequest) GetConfidenceInMeasurement() float32 + func (o *PredictionsIdFeedbackPostRequest) GetConfidenceInMeasurementOk() (*float32, bool) + func (o *PredictionsIdFeedbackPostRequest) GetIssue() string + func (o *PredictionsIdFeedbackPostRequest) GetIssueOk() (*string, bool) + func (o *PredictionsIdFeedbackPostRequest) GetOutcomeDate() string + func (o *PredictionsIdFeedbackPostRequest) GetOutcomeDateOk() (*string, bool) + func (o *PredictionsIdFeedbackPostRequest) GetRating() int32 + func (o *PredictionsIdFeedbackPostRequest) GetRatingOk() (*int32, bool) + func (o *PredictionsIdFeedbackPostRequest) HasActualClass() bool + func (o *PredictionsIdFeedbackPostRequest) HasActualValue() bool + func (o *PredictionsIdFeedbackPostRequest) HasComment() bool + func (o *PredictionsIdFeedbackPostRequest) HasConfidenceInMeasurement() bool + func (o *PredictionsIdFeedbackPostRequest) HasIssue() bool + func (o *PredictionsIdFeedbackPostRequest) HasOutcomeDate() bool + func (o *PredictionsIdFeedbackPostRequest) HasRating() bool + func (o *PredictionsIdFeedbackPostRequest) SetActualClass(v bool) + func (o *PredictionsIdFeedbackPostRequest) SetActualValue(v float32) + func (o *PredictionsIdFeedbackPostRequest) SetComment(v string) + func (o *PredictionsIdFeedbackPostRequest) SetConfidenceInMeasurement(v float32) + func (o *PredictionsIdFeedbackPostRequest) SetIssue(v string) + func (o *PredictionsIdFeedbackPostRequest) SetOutcomeDate(v string) + func (o *PredictionsIdFeedbackPostRequest) SetRating(v int32) + func (o PredictionsIdFeedbackPostRequest) MarshalJSON() ([]byte, error) + func (o PredictionsIdFeedbackPostRequest) ToMap() (map[string]interface{}, error) + type ServerConfiguration struct + Description string + URL string + Variables map[string]ServerVariable + type ServerConfigurations []ServerConfiguration + func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error) + type ServerVariable struct + DefaultValue string + Description string + EnumValues []string