openapi

package
v0.0.27 Latest Latest
Warning

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

Go to latest
Published: Mar 27, 2026 License: Apache-2.0 Imports: 20 Imported by: 0

README

Go API client for openapi

rh-trex-ai Service API

Overview

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

  • API version: 0.0.1
  • Package version: 1.0.0
  • Generator version: 7.16.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

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

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

import openapi "github.com/GIT_USER_ID/GIT_REPO_ID"

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

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

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

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

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

Documentation for API Endpoints

All URIs are relative to http://localhost:8000

Class Method HTTP request Description
DefaultAPI ApiRhTrexAiV1DinosaursGet Get /api/rh-trex-ai/v1/dinosaurs Returns a list of dinosaurs
DefaultAPI ApiRhTrexAiV1DinosaursIdGet Get /api/rh-trex-ai/v1/dinosaurs/{id} Get an dinosaur by id
DefaultAPI ApiRhTrexAiV1DinosaursIdPatch Patch /api/rh-trex-ai/v1/dinosaurs/{id} Update an dinosaur
DefaultAPI ApiRhTrexAiV1DinosaursPost Post /api/rh-trex-ai/v1/dinosaurs Create a new dinosaur
DefaultAPI ApiRhTrexAiV1FossilsGet Get /api/rh-trex-ai/v1/fossils Returns a list of fossils
DefaultAPI ApiRhTrexAiV1FossilsIdGet Get /api/rh-trex-ai/v1/fossils/{id} Get an fossil by id
DefaultAPI ApiRhTrexAiV1FossilsIdPatch Patch /api/rh-trex-ai/v1/fossils/{id} Update an fossil
DefaultAPI ApiRhTrexAiV1FossilsPost Post /api/rh-trex-ai/v1/fossils Create a new fossil
DefaultAPI ApiRhTrexAiV1ScientistsGet Get /api/rh-trex-ai/v1/scientists Returns a list of scientists
DefaultAPI ApiRhTrexAiV1ScientistsIdGet Get /api/rh-trex-ai/v1/scientists/{id} Get an scientist by id
DefaultAPI ApiRhTrexAiV1ScientistsIdPatch Patch /api/rh-trex-ai/v1/scientists/{id} Update an scientist
DefaultAPI ApiRhTrexAiV1ScientistsPost Post /api/rh-trex-ai/v1/scientists Create a new scientist

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

Bearer
  • Type: HTTP Bearer token authentication

Example

auth := context.WithValue(context.Background(), openapi.ContextAccessToken, "BEARER_TOKEN_STRING")
r, err := client.Service.Operation(auth, args)

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 (
	// ContextAccessToken takes a string oauth2 access token as authentication for the request.
	ContextAccessToken = contextKey("accesstoken")

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

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

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

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

Functions

func CacheExpires

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

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

func 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 {
	DefaultAPI *DefaultAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the rh-trex-ai Service API API v0.0.1 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

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

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

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

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

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

type APIResponse

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

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

type ApiApiRhTrexAiV1DinosaursGetRequest added in v0.0.2

type ApiApiRhTrexAiV1DinosaursGetRequest struct {
	ApiService *DefaultAPIService
	// contains filtered or unexported fields
}

func (ApiApiRhTrexAiV1DinosaursGetRequest) Execute added in v0.0.2

func (ApiApiRhTrexAiV1DinosaursGetRequest) Fields added in v0.0.2

Supplies a comma-separated list of fields to be returned. Fields of sub-structures and of arrays use <structure>.<field> notation. <stucture>.* means all field of a structure Example: For each Subscription to get id, href, plan(id and kind) and labels (all fields) ``` curl '/api/v1/subscriptions?fields=id,href,plan.id,plan.kind,labels.*&fetchLabels=true' ```

func (ApiApiRhTrexAiV1DinosaursGetRequest) OrderBy added in v0.0.2

Specifies the order by criteria. The syntax of this parameter is similar to the syntax of the _order by_ clause of an SQL statement, but using the names of the json attributes / column of the account. For example, in order to retrieve all accounts ordered by username: ```sql username asc ``` Or in order to retrieve all accounts ordered by username _and_ first name: ```sql username asc, firstName asc ``` If the parameter isn't provided, or if the value is empty, then no explicit ordering will be applied.

func (ApiApiRhTrexAiV1DinosaursGetRequest) Page added in v0.0.2

Page number of record list when record list exceeds specified page size

func (ApiApiRhTrexAiV1DinosaursGetRequest) Search added in v0.0.2

Specifies the search criteria. The syntax of this parameter is similar to the syntax of the _where_ clause of an SQL statement, using the names of the json attributes / column names of the account. For example, in order to retrieve all the accounts with a username starting with `my`: ```sql username like 'my%' ``` The search criteria can also be applied on related resource. For example, in order to retrieve all the subscriptions labeled by `foo=bar`, ```sql subscription_labels.key = 'foo' and subscription_labels.value = 'bar' ``` If the parameter isn't provided, or if the value is empty, then all the accounts that the user has permission to see will be returned.

func (ApiApiRhTrexAiV1DinosaursGetRequest) Size added in v0.0.2

Maximum number of records to return

type ApiApiRhTrexAiV1DinosaursIdGetRequest added in v0.0.2

type ApiApiRhTrexAiV1DinosaursIdGetRequest struct {
	ApiService *DefaultAPIService
	// contains filtered or unexported fields
}

func (ApiApiRhTrexAiV1DinosaursIdGetRequest) Execute added in v0.0.2

type ApiApiRhTrexAiV1DinosaursIdPatchRequest added in v0.0.2

type ApiApiRhTrexAiV1DinosaursIdPatchRequest struct {
	ApiService *DefaultAPIService
	// contains filtered or unexported fields
}

func (ApiApiRhTrexAiV1DinosaursIdPatchRequest) DinosaurPatchRequest added in v0.0.2

Updated dinosaur data

func (ApiApiRhTrexAiV1DinosaursIdPatchRequest) Execute added in v0.0.2

type ApiApiRhTrexAiV1DinosaursPostRequest added in v0.0.2

type ApiApiRhTrexAiV1DinosaursPostRequest struct {
	ApiService *DefaultAPIService
	// contains filtered or unexported fields
}

func (ApiApiRhTrexAiV1DinosaursPostRequest) Dinosaur added in v0.0.2

Dinosaur data

func (ApiApiRhTrexAiV1DinosaursPostRequest) Execute added in v0.0.2

type ApiApiRhTrexAiV1FossilsGetRequest added in v0.0.2

type ApiApiRhTrexAiV1FossilsGetRequest struct {
	ApiService *DefaultAPIService
	// contains filtered or unexported fields
}

func (ApiApiRhTrexAiV1FossilsGetRequest) Execute added in v0.0.2

func (ApiApiRhTrexAiV1FossilsGetRequest) Fields added in v0.0.2

Supplies a comma-separated list of fields to be returned. Fields of sub-structures and of arrays use <structure>.<field> notation. <stucture>.* means all field of a structure Example: For each Subscription to get id, href, plan(id and kind) and labels (all fields) ``` curl '/api/v1/subscriptions?fields=id,href,plan.id,plan.kind,labels.*&fetchLabels=true' ```

func (ApiApiRhTrexAiV1FossilsGetRequest) OrderBy added in v0.0.2

Specifies the order by criteria. The syntax of this parameter is similar to the syntax of the _order by_ clause of an SQL statement, but using the names of the json attributes / column of the account. For example, in order to retrieve all accounts ordered by username: ```sql username asc ``` Or in order to retrieve all accounts ordered by username _and_ first name: ```sql username asc, firstName asc ``` If the parameter isn't provided, or if the value is empty, then no explicit ordering will be applied.

func (ApiApiRhTrexAiV1FossilsGetRequest) Page added in v0.0.2

Page number of record list when record list exceeds specified page size

func (ApiApiRhTrexAiV1FossilsGetRequest) Search added in v0.0.2

Specifies the search criteria. The syntax of this parameter is similar to the syntax of the _where_ clause of an SQL statement, using the names of the json attributes / column names of the account. For example, in order to retrieve all the accounts with a username starting with `my`: ```sql username like 'my%' ``` The search criteria can also be applied on related resource. For example, in order to retrieve all the subscriptions labeled by `foo=bar`, ```sql subscription_labels.key = 'foo' and subscription_labels.value = 'bar' ``` If the parameter isn't provided, or if the value is empty, then all the accounts that the user has permission to see will be returned.

func (ApiApiRhTrexAiV1FossilsGetRequest) Size added in v0.0.2

Maximum number of records to return

type ApiApiRhTrexAiV1FossilsIdGetRequest added in v0.0.2

type ApiApiRhTrexAiV1FossilsIdGetRequest struct {
	ApiService *DefaultAPIService
	// contains filtered or unexported fields
}

func (ApiApiRhTrexAiV1FossilsIdGetRequest) Execute added in v0.0.2

type ApiApiRhTrexAiV1FossilsIdPatchRequest added in v0.0.2

type ApiApiRhTrexAiV1FossilsIdPatchRequest struct {
	ApiService *DefaultAPIService
	// contains filtered or unexported fields
}

func (ApiApiRhTrexAiV1FossilsIdPatchRequest) Execute added in v0.0.2

func (ApiApiRhTrexAiV1FossilsIdPatchRequest) FossilPatchRequest added in v0.0.2

Updated fossil data

type ApiApiRhTrexAiV1FossilsPostRequest added in v0.0.2

type ApiApiRhTrexAiV1FossilsPostRequest struct {
	ApiService *DefaultAPIService
	// contains filtered or unexported fields
}

func (ApiApiRhTrexAiV1FossilsPostRequest) Execute added in v0.0.2

func (ApiApiRhTrexAiV1FossilsPostRequest) Fossil added in v0.0.2

Fossil data

type ApiApiRhTrexAiV1ScientistsGetRequest added in v0.0.5

type ApiApiRhTrexAiV1ScientistsGetRequest struct {
	ApiService *DefaultAPIService
	// contains filtered or unexported fields
}

func (ApiApiRhTrexAiV1ScientistsGetRequest) Execute added in v0.0.5

func (ApiApiRhTrexAiV1ScientistsGetRequest) Fields added in v0.0.5

Supplies a comma-separated list of fields to be returned. Fields of sub-structures and of arrays use <structure>.<field> notation. <stucture>.* means all field of a structure Example: For each Subscription to get id, href, plan(id and kind) and labels (all fields) ``` curl '/api/v1/subscriptions?fields=id,href,plan.id,plan.kind,labels.*&fetchLabels=true' ```

func (ApiApiRhTrexAiV1ScientistsGetRequest) OrderBy added in v0.0.5

Specifies the order by criteria. The syntax of this parameter is similar to the syntax of the _order by_ clause of an SQL statement, but using the names of the json attributes / column of the account. For example, in order to retrieve all accounts ordered by username: ```sql username asc ``` Or in order to retrieve all accounts ordered by username _and_ first name: ```sql username asc, firstName asc ``` If the parameter isn't provided, or if the value is empty, then no explicit ordering will be applied.

func (ApiApiRhTrexAiV1ScientistsGetRequest) Page added in v0.0.5

Page number of record list when record list exceeds specified page size

func (ApiApiRhTrexAiV1ScientistsGetRequest) Search added in v0.0.5

Specifies the search criteria. The syntax of this parameter is similar to the syntax of the _where_ clause of an SQL statement, using the names of the json attributes / column names of the account. For example, in order to retrieve all the accounts with a username starting with `my`: ```sql username like 'my%' ``` The search criteria can also be applied on related resource. For example, in order to retrieve all the subscriptions labeled by `foo=bar`, ```sql subscription_labels.key = 'foo' and subscription_labels.value = 'bar' ``` If the parameter isn't provided, or if the value is empty, then all the accounts that the user has permission to see will be returned.

func (ApiApiRhTrexAiV1ScientistsGetRequest) Size added in v0.0.5

Maximum number of records to return

type ApiApiRhTrexAiV1ScientistsIdGetRequest added in v0.0.5

type ApiApiRhTrexAiV1ScientistsIdGetRequest struct {
	ApiService *DefaultAPIService
	// contains filtered or unexported fields
}

func (ApiApiRhTrexAiV1ScientistsIdGetRequest) Execute added in v0.0.5

type ApiApiRhTrexAiV1ScientistsIdPatchRequest added in v0.0.5

type ApiApiRhTrexAiV1ScientistsIdPatchRequest struct {
	ApiService *DefaultAPIService
	// contains filtered or unexported fields
}

func (ApiApiRhTrexAiV1ScientistsIdPatchRequest) Execute added in v0.0.5

func (ApiApiRhTrexAiV1ScientistsIdPatchRequest) ScientistPatchRequest added in v0.0.5

Updated scientist data

type ApiApiRhTrexAiV1ScientistsPostRequest added in v0.0.5

type ApiApiRhTrexAiV1ScientistsPostRequest struct {
	ApiService *DefaultAPIService
	// contains filtered or unexported fields
}

func (ApiApiRhTrexAiV1ScientistsPostRequest) Execute added in v0.0.5

func (ApiApiRhTrexAiV1ScientistsPostRequest) Scientist added in v0.0.5

Scientist data

type BasicAuth

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

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

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) ServerURL

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

ServerURLWithContext returns a new server URL given an endpoint

type DefaultAPIService

type DefaultAPIService service

DefaultAPIService DefaultAPI service

func (*DefaultAPIService) ApiRhTrexAiV1DinosaursGet added in v0.0.2

func (a *DefaultAPIService) ApiRhTrexAiV1DinosaursGet(ctx context.Context) ApiApiRhTrexAiV1DinosaursGetRequest

ApiRhTrexAiV1DinosaursGet Returns a list of dinosaurs

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

func (*DefaultAPIService) ApiRhTrexAiV1DinosaursGetExecute added in v0.0.2

func (a *DefaultAPIService) ApiRhTrexAiV1DinosaursGetExecute(r ApiApiRhTrexAiV1DinosaursGetRequest) (*DinosaurList, *http.Response, error)

Execute executes the request

@return DinosaurList

func (*DefaultAPIService) ApiRhTrexAiV1DinosaursIdGet added in v0.0.2

func (a *DefaultAPIService) ApiRhTrexAiV1DinosaursIdGet(ctx context.Context, id string) ApiApiRhTrexAiV1DinosaursIdGetRequest

ApiRhTrexAiV1DinosaursIdGet Get an dinosaur by id

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

func (*DefaultAPIService) ApiRhTrexAiV1DinosaursIdGetExecute added in v0.0.2

func (a *DefaultAPIService) ApiRhTrexAiV1DinosaursIdGetExecute(r ApiApiRhTrexAiV1DinosaursIdGetRequest) (*Dinosaur, *http.Response, error)

Execute executes the request

@return Dinosaur

func (*DefaultAPIService) ApiRhTrexAiV1DinosaursIdPatch added in v0.0.2

func (a *DefaultAPIService) ApiRhTrexAiV1DinosaursIdPatch(ctx context.Context, id string) ApiApiRhTrexAiV1DinosaursIdPatchRequest

ApiRhTrexAiV1DinosaursIdPatch Update an dinosaur

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

func (*DefaultAPIService) ApiRhTrexAiV1DinosaursIdPatchExecute added in v0.0.2

func (a *DefaultAPIService) ApiRhTrexAiV1DinosaursIdPatchExecute(r ApiApiRhTrexAiV1DinosaursIdPatchRequest) (*Dinosaur, *http.Response, error)

Execute executes the request

@return Dinosaur

func (*DefaultAPIService) ApiRhTrexAiV1DinosaursPost added in v0.0.2

func (a *DefaultAPIService) ApiRhTrexAiV1DinosaursPost(ctx context.Context) ApiApiRhTrexAiV1DinosaursPostRequest

ApiRhTrexAiV1DinosaursPost Create a new dinosaur

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

func (*DefaultAPIService) ApiRhTrexAiV1DinosaursPostExecute added in v0.0.2

func (a *DefaultAPIService) ApiRhTrexAiV1DinosaursPostExecute(r ApiApiRhTrexAiV1DinosaursPostRequest) (*Dinosaur, *http.Response, error)

Execute executes the request

@return Dinosaur

func (*DefaultAPIService) ApiRhTrexAiV1FossilsGet added in v0.0.2

func (a *DefaultAPIService) ApiRhTrexAiV1FossilsGet(ctx context.Context) ApiApiRhTrexAiV1FossilsGetRequest

ApiRhTrexAiV1FossilsGet Returns a list of fossils

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

func (*DefaultAPIService) ApiRhTrexAiV1FossilsGetExecute added in v0.0.2

func (a *DefaultAPIService) ApiRhTrexAiV1FossilsGetExecute(r ApiApiRhTrexAiV1FossilsGetRequest) (*FossilList, *http.Response, error)

Execute executes the request

@return FossilList

func (*DefaultAPIService) ApiRhTrexAiV1FossilsIdGet added in v0.0.2

func (a *DefaultAPIService) ApiRhTrexAiV1FossilsIdGet(ctx context.Context, id string) ApiApiRhTrexAiV1FossilsIdGetRequest

ApiRhTrexAiV1FossilsIdGet Get an fossil by id

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

func (*DefaultAPIService) ApiRhTrexAiV1FossilsIdGetExecute added in v0.0.2

func (a *DefaultAPIService) ApiRhTrexAiV1FossilsIdGetExecute(r ApiApiRhTrexAiV1FossilsIdGetRequest) (*Fossil, *http.Response, error)

Execute executes the request

@return Fossil

func (*DefaultAPIService) ApiRhTrexAiV1FossilsIdPatch added in v0.0.2

func (a *DefaultAPIService) ApiRhTrexAiV1FossilsIdPatch(ctx context.Context, id string) ApiApiRhTrexAiV1FossilsIdPatchRequest

ApiRhTrexAiV1FossilsIdPatch Update an fossil

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

func (*DefaultAPIService) ApiRhTrexAiV1FossilsIdPatchExecute added in v0.0.2

func (a *DefaultAPIService) ApiRhTrexAiV1FossilsIdPatchExecute(r ApiApiRhTrexAiV1FossilsIdPatchRequest) (*Fossil, *http.Response, error)

Execute executes the request

@return Fossil

func (*DefaultAPIService) ApiRhTrexAiV1FossilsPost added in v0.0.2

func (a *DefaultAPIService) ApiRhTrexAiV1FossilsPost(ctx context.Context) ApiApiRhTrexAiV1FossilsPostRequest

ApiRhTrexAiV1FossilsPost Create a new fossil

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

func (*DefaultAPIService) ApiRhTrexAiV1FossilsPostExecute added in v0.0.2

func (a *DefaultAPIService) ApiRhTrexAiV1FossilsPostExecute(r ApiApiRhTrexAiV1FossilsPostRequest) (*Fossil, *http.Response, error)

Execute executes the request

@return Fossil

func (*DefaultAPIService) ApiRhTrexAiV1ScientistsGet added in v0.0.5

func (a *DefaultAPIService) ApiRhTrexAiV1ScientistsGet(ctx context.Context) ApiApiRhTrexAiV1ScientistsGetRequest

ApiRhTrexAiV1ScientistsGet Returns a list of scientists

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

func (*DefaultAPIService) ApiRhTrexAiV1ScientistsGetExecute added in v0.0.5

func (a *DefaultAPIService) ApiRhTrexAiV1ScientistsGetExecute(r ApiApiRhTrexAiV1ScientistsGetRequest) (*ScientistList, *http.Response, error)

Execute executes the request

@return ScientistList

func (*DefaultAPIService) ApiRhTrexAiV1ScientistsIdGet added in v0.0.5

func (a *DefaultAPIService) ApiRhTrexAiV1ScientistsIdGet(ctx context.Context, id string) ApiApiRhTrexAiV1ScientistsIdGetRequest

ApiRhTrexAiV1ScientistsIdGet Get an scientist by id

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

func (*DefaultAPIService) ApiRhTrexAiV1ScientistsIdGetExecute added in v0.0.5

func (a *DefaultAPIService) ApiRhTrexAiV1ScientistsIdGetExecute(r ApiApiRhTrexAiV1ScientistsIdGetRequest) (*Scientist, *http.Response, error)

Execute executes the request

@return Scientist

func (*DefaultAPIService) ApiRhTrexAiV1ScientistsIdPatch added in v0.0.5

func (a *DefaultAPIService) ApiRhTrexAiV1ScientistsIdPatch(ctx context.Context, id string) ApiApiRhTrexAiV1ScientistsIdPatchRequest

ApiRhTrexAiV1ScientistsIdPatch Update an scientist

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

func (*DefaultAPIService) ApiRhTrexAiV1ScientistsIdPatchExecute added in v0.0.5

func (a *DefaultAPIService) ApiRhTrexAiV1ScientistsIdPatchExecute(r ApiApiRhTrexAiV1ScientistsIdPatchRequest) (*Scientist, *http.Response, error)

Execute executes the request

@return Scientist

func (*DefaultAPIService) ApiRhTrexAiV1ScientistsPost added in v0.0.5

func (a *DefaultAPIService) ApiRhTrexAiV1ScientistsPost(ctx context.Context) ApiApiRhTrexAiV1ScientistsPostRequest

ApiRhTrexAiV1ScientistsPost Create a new scientist

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

func (*DefaultAPIService) ApiRhTrexAiV1ScientistsPostExecute added in v0.0.5

func (a *DefaultAPIService) ApiRhTrexAiV1ScientistsPostExecute(r ApiApiRhTrexAiV1ScientistsPostRequest) (*Scientist, *http.Response, error)

Execute executes the request

@return Scientist

type Dinosaur

type Dinosaur struct {
	Id        *string    `json:"id,omitempty"`
	Kind      *string    `json:"kind,omitempty"`
	Href      *string    `json:"href,omitempty"`
	CreatedAt *time.Time `json:"created_at,omitempty"`
	UpdatedAt *time.Time `json:"updated_at,omitempty"`
	Species   string     `json:"species"`
}

Dinosaur struct for Dinosaur

func NewDinosaur

func NewDinosaur(species string) *Dinosaur

NewDinosaur instantiates a new Dinosaur 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 NewDinosaurWithDefaults

func NewDinosaurWithDefaults() *Dinosaur

NewDinosaurWithDefaults instantiates a new Dinosaur 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 (*Dinosaur) GetCreatedAt

func (o *Dinosaur) GetCreatedAt() time.Time

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

func (*Dinosaur) GetCreatedAtOk

func (o *Dinosaur) GetCreatedAtOk() (*time.Time, bool)

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

func (*Dinosaur) GetHref

func (o *Dinosaur) GetHref() string

GetHref returns the Href field value if set, zero value otherwise.

func (*Dinosaur) GetHrefOk

func (o *Dinosaur) GetHrefOk() (*string, bool)

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

func (*Dinosaur) GetId

func (o *Dinosaur) GetId() string

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

func (*Dinosaur) GetIdOk

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

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

func (*Dinosaur) GetKind

func (o *Dinosaur) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*Dinosaur) GetKindOk

func (o *Dinosaur) GetKindOk() (*string, bool)

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

func (*Dinosaur) GetSpecies

func (o *Dinosaur) GetSpecies() string

GetSpecies returns the Species field value

func (*Dinosaur) GetSpeciesOk

func (o *Dinosaur) GetSpeciesOk() (*string, bool)

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

func (*Dinosaur) GetUpdatedAt

func (o *Dinosaur) GetUpdatedAt() time.Time

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

func (*Dinosaur) GetUpdatedAtOk

func (o *Dinosaur) GetUpdatedAtOk() (*time.Time, bool)

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

func (*Dinosaur) HasCreatedAt

func (o *Dinosaur) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Dinosaur) HasHref

func (o *Dinosaur) HasHref() bool

HasHref returns a boolean if a field has been set.

func (*Dinosaur) HasId

func (o *Dinosaur) HasId() bool

HasId returns a boolean if a field has been set.

func (*Dinosaur) HasKind

func (o *Dinosaur) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*Dinosaur) HasUpdatedAt

func (o *Dinosaur) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (Dinosaur) MarshalJSON

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

func (*Dinosaur) SetCreatedAt

func (o *Dinosaur) SetCreatedAt(v time.Time)

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

func (*Dinosaur) SetHref

func (o *Dinosaur) SetHref(v string)

SetHref gets a reference to the given string and assigns it to the Href field.

func (*Dinosaur) SetId

func (o *Dinosaur) SetId(v string)

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

func (*Dinosaur) SetKind

func (o *Dinosaur) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*Dinosaur) SetSpecies

func (o *Dinosaur) SetSpecies(v string)

SetSpecies sets field value

func (*Dinosaur) SetUpdatedAt

func (o *Dinosaur) SetUpdatedAt(v time.Time)

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

func (Dinosaur) ToMap

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

func (*Dinosaur) UnmarshalJSON

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

type DinosaurList

type DinosaurList struct {
	Kind  string     `json:"kind"`
	Page  int32      `json:"page"`
	Size  int32      `json:"size"`
	Total int32      `json:"total"`
	Items []Dinosaur `json:"items"`
}

DinosaurList struct for DinosaurList

func NewDinosaurList

func NewDinosaurList(kind string, page int32, size int32, total int32, items []Dinosaur) *DinosaurList

NewDinosaurList instantiates a new DinosaurList 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 NewDinosaurListWithDefaults

func NewDinosaurListWithDefaults() *DinosaurList

NewDinosaurListWithDefaults instantiates a new DinosaurList 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 (*DinosaurList) GetItems

func (o *DinosaurList) GetItems() []Dinosaur

GetItems returns the Items field value

func (*DinosaurList) GetItemsOk

func (o *DinosaurList) GetItemsOk() ([]Dinosaur, bool)

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

func (*DinosaurList) GetKind

func (o *DinosaurList) GetKind() string

GetKind returns the Kind field value

func (*DinosaurList) GetKindOk

func (o *DinosaurList) GetKindOk() (*string, bool)

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

func (*DinosaurList) GetPage

func (o *DinosaurList) GetPage() int32

GetPage returns the Page field value

func (*DinosaurList) GetPageOk

func (o *DinosaurList) GetPageOk() (*int32, bool)

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

func (*DinosaurList) GetSize

func (o *DinosaurList) GetSize() int32

GetSize returns the Size field value

func (*DinosaurList) GetSizeOk

func (o *DinosaurList) GetSizeOk() (*int32, bool)

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

func (*DinosaurList) GetTotal

func (o *DinosaurList) GetTotal() int32

GetTotal returns the Total field value

func (*DinosaurList) GetTotalOk

func (o *DinosaurList) GetTotalOk() (*int32, bool)

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

func (DinosaurList) MarshalJSON

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

func (*DinosaurList) SetItems

func (o *DinosaurList) SetItems(v []Dinosaur)

SetItems sets field value

func (*DinosaurList) SetKind

func (o *DinosaurList) SetKind(v string)

SetKind sets field value

func (*DinosaurList) SetPage

func (o *DinosaurList) SetPage(v int32)

SetPage sets field value

func (*DinosaurList) SetSize

func (o *DinosaurList) SetSize(v int32)

SetSize sets field value

func (*DinosaurList) SetTotal

func (o *DinosaurList) SetTotal(v int32)

SetTotal sets field value

func (DinosaurList) ToMap

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

func (*DinosaurList) UnmarshalJSON

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

type DinosaurPatchRequest

type DinosaurPatchRequest struct {
	Species *string `json:"species,omitempty"`
}

DinosaurPatchRequest struct for DinosaurPatchRequest

func NewDinosaurPatchRequest

func NewDinosaurPatchRequest() *DinosaurPatchRequest

NewDinosaurPatchRequest instantiates a new DinosaurPatchRequest 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 NewDinosaurPatchRequestWithDefaults

func NewDinosaurPatchRequestWithDefaults() *DinosaurPatchRequest

NewDinosaurPatchRequestWithDefaults instantiates a new DinosaurPatchRequest 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 (*DinosaurPatchRequest) GetSpecies

func (o *DinosaurPatchRequest) GetSpecies() string

GetSpecies returns the Species field value if set, zero value otherwise.

func (*DinosaurPatchRequest) GetSpeciesOk

func (o *DinosaurPatchRequest) GetSpeciesOk() (*string, bool)

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

func (*DinosaurPatchRequest) HasSpecies

func (o *DinosaurPatchRequest) HasSpecies() bool

HasSpecies returns a boolean if a field has been set.

func (DinosaurPatchRequest) MarshalJSON

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

func (*DinosaurPatchRequest) SetSpecies

func (o *DinosaurPatchRequest) SetSpecies(v string)

SetSpecies gets a reference to the given string and assigns it to the Species field.

func (DinosaurPatchRequest) ToMap

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

type Error

type Error struct {
	Id          *string    `json:"id,omitempty"`
	Kind        *string    `json:"kind,omitempty"`
	Href        *string    `json:"href,omitempty"`
	CreatedAt   *time.Time `json:"created_at,omitempty"`
	UpdatedAt   *time.Time `json:"updated_at,omitempty"`
	Code        *string    `json:"code,omitempty"`
	Reason      *string    `json:"reason,omitempty"`
	OperationId *string    `json:"operation_id,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) GetCreatedAt

func (o *Error) GetCreatedAt() time.Time

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

func (*Error) GetCreatedAtOk

func (o *Error) GetCreatedAtOk() (*time.Time, bool)

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

func (*Error) GetHref

func (o *Error) GetHref() string

GetHref returns the Href field value if set, zero value otherwise.

func (*Error) GetHrefOk

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

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

func (*Error) GetId

func (o *Error) GetId() string

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

func (*Error) GetIdOk

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

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

func (*Error) GetKind

func (o *Error) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*Error) GetKindOk

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

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

func (*Error) GetOperationId

func (o *Error) GetOperationId() string

GetOperationId returns the OperationId field value if set, zero value otherwise.

func (*Error) GetOperationIdOk

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

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

func (*Error) GetReason

func (o *Error) GetReason() string

GetReason returns the Reason field value if set, zero value otherwise.

func (*Error) GetReasonOk

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

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

func (*Error) GetUpdatedAt

func (o *Error) GetUpdatedAt() time.Time

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

func (*Error) GetUpdatedAtOk

func (o *Error) GetUpdatedAtOk() (*time.Time, bool)

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

func (*Error) HasCode

func (o *Error) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*Error) HasCreatedAt

func (o *Error) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Error) HasHref

func (o *Error) HasHref() bool

HasHref returns a boolean if a field has been set.

func (*Error) HasId

func (o *Error) HasId() bool

HasId returns a boolean if a field has been set.

func (*Error) HasKind

func (o *Error) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*Error) HasOperationId

func (o *Error) HasOperationId() bool

HasOperationId returns a boolean if a field has been set.

func (*Error) HasReason

func (o *Error) HasReason() bool

HasReason returns a boolean if a field has been set.

func (*Error) HasUpdatedAt

func (o *Error) HasUpdatedAt() bool

HasUpdatedAt 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) SetCreatedAt

func (o *Error) SetCreatedAt(v time.Time)

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

func (*Error) SetHref

func (o *Error) SetHref(v string)

SetHref gets a reference to the given string and assigns it to the Href field.

func (*Error) SetId

func (o *Error) SetId(v string)

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

func (*Error) SetKind

func (o *Error) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*Error) SetOperationId

func (o *Error) SetOperationId(v string)

SetOperationId gets a reference to the given string and assigns it to the OperationId field.

func (*Error) SetReason

func (o *Error) SetReason(v string)

SetReason gets a reference to the given string and assigns it to the Reason field.

func (*Error) SetUpdatedAt

func (o *Error) SetUpdatedAt(v time.Time)

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

func (Error) ToMap

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

type Fossil added in v0.0.2

type Fossil struct {
	Id                *string    `json:"id,omitempty"`
	Kind              *string    `json:"kind,omitempty"`
	Href              *string    `json:"href,omitempty"`
	CreatedAt         *time.Time `json:"created_at,omitempty"`
	UpdatedAt         *time.Time `json:"updated_at,omitempty"`
	DiscoveryLocation string     `json:"discovery_location"`
	EstimatedAge      *int32     `json:"estimated_age,omitempty"`
	FossilType        *string    `json:"fossil_type,omitempty"`
	ExcavatorName     *string    `json:"excavator_name,omitempty"`
}

Fossil struct for Fossil

func NewFossil added in v0.0.2

func NewFossil(discoveryLocation string) *Fossil

NewFossil instantiates a new Fossil 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 NewFossilWithDefaults added in v0.0.2

func NewFossilWithDefaults() *Fossil

NewFossilWithDefaults instantiates a new Fossil 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 (*Fossil) GetCreatedAt added in v0.0.2

func (o *Fossil) GetCreatedAt() time.Time

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

func (*Fossil) GetCreatedAtOk added in v0.0.2

func (o *Fossil) GetCreatedAtOk() (*time.Time, bool)

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

func (*Fossil) GetDiscoveryLocation added in v0.0.2

func (o *Fossil) GetDiscoveryLocation() string

GetDiscoveryLocation returns the DiscoveryLocation field value

func (*Fossil) GetDiscoveryLocationOk added in v0.0.2

func (o *Fossil) GetDiscoveryLocationOk() (*string, bool)

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

func (*Fossil) GetEstimatedAge added in v0.0.2

func (o *Fossil) GetEstimatedAge() int32

GetEstimatedAge returns the EstimatedAge field value if set, zero value otherwise.

func (*Fossil) GetEstimatedAgeOk added in v0.0.2

func (o *Fossil) GetEstimatedAgeOk() (*int32, bool)

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

func (*Fossil) GetExcavatorName added in v0.0.2

func (o *Fossil) GetExcavatorName() string

GetExcavatorName returns the ExcavatorName field value if set, zero value otherwise.

func (*Fossil) GetExcavatorNameOk added in v0.0.2

func (o *Fossil) GetExcavatorNameOk() (*string, bool)

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

func (*Fossil) GetFossilType added in v0.0.2

func (o *Fossil) GetFossilType() string

GetFossilType returns the FossilType field value if set, zero value otherwise.

func (*Fossil) GetFossilTypeOk added in v0.0.2

func (o *Fossil) GetFossilTypeOk() (*string, bool)

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

func (*Fossil) GetHref added in v0.0.2

func (o *Fossil) GetHref() string

GetHref returns the Href field value if set, zero value otherwise.

func (*Fossil) GetHrefOk added in v0.0.2

func (o *Fossil) GetHrefOk() (*string, bool)

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

func (*Fossil) GetId added in v0.0.2

func (o *Fossil) GetId() string

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

func (*Fossil) GetIdOk added in v0.0.2

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

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

func (*Fossil) GetKind added in v0.0.2

func (o *Fossil) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*Fossil) GetKindOk added in v0.0.2

func (o *Fossil) GetKindOk() (*string, bool)

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

func (*Fossil) GetUpdatedAt added in v0.0.2

func (o *Fossil) GetUpdatedAt() time.Time

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

func (*Fossil) GetUpdatedAtOk added in v0.0.2

func (o *Fossil) GetUpdatedAtOk() (*time.Time, bool)

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

func (*Fossil) HasCreatedAt added in v0.0.2

func (o *Fossil) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Fossil) HasEstimatedAge added in v0.0.2

func (o *Fossil) HasEstimatedAge() bool

HasEstimatedAge returns a boolean if a field has been set.

func (*Fossil) HasExcavatorName added in v0.0.2

func (o *Fossil) HasExcavatorName() bool

HasExcavatorName returns a boolean if a field has been set.

func (*Fossil) HasFossilType added in v0.0.2

func (o *Fossil) HasFossilType() bool

HasFossilType returns a boolean if a field has been set.

func (*Fossil) HasHref added in v0.0.2

func (o *Fossil) HasHref() bool

HasHref returns a boolean if a field has been set.

func (*Fossil) HasId added in v0.0.2

func (o *Fossil) HasId() bool

HasId returns a boolean if a field has been set.

func (*Fossil) HasKind added in v0.0.2

func (o *Fossil) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*Fossil) HasUpdatedAt added in v0.0.2

func (o *Fossil) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (Fossil) MarshalJSON added in v0.0.2

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

func (*Fossil) SetCreatedAt added in v0.0.2

func (o *Fossil) SetCreatedAt(v time.Time)

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

func (*Fossil) SetDiscoveryLocation added in v0.0.2

func (o *Fossil) SetDiscoveryLocation(v string)

SetDiscoveryLocation sets field value

func (*Fossil) SetEstimatedAge added in v0.0.2

func (o *Fossil) SetEstimatedAge(v int32)

SetEstimatedAge gets a reference to the given int32 and assigns it to the EstimatedAge field.

func (*Fossil) SetExcavatorName added in v0.0.2

func (o *Fossil) SetExcavatorName(v string)

SetExcavatorName gets a reference to the given string and assigns it to the ExcavatorName field.

func (*Fossil) SetFossilType added in v0.0.2

func (o *Fossil) SetFossilType(v string)

SetFossilType gets a reference to the given string and assigns it to the FossilType field.

func (*Fossil) SetHref added in v0.0.2

func (o *Fossil) SetHref(v string)

SetHref gets a reference to the given string and assigns it to the Href field.

func (*Fossil) SetId added in v0.0.2

func (o *Fossil) SetId(v string)

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

func (*Fossil) SetKind added in v0.0.2

func (o *Fossil) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*Fossil) SetUpdatedAt added in v0.0.2

func (o *Fossil) SetUpdatedAt(v time.Time)

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

func (Fossil) ToMap added in v0.0.2

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

func (*Fossil) UnmarshalJSON added in v0.0.2

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

type FossilList added in v0.0.2

type FossilList struct {
	Kind  string   `json:"kind"`
	Page  int32    `json:"page"`
	Size  int32    `json:"size"`
	Total int32    `json:"total"`
	Items []Fossil `json:"items"`
}

FossilList struct for FossilList

func NewFossilList added in v0.0.2

func NewFossilList(kind string, page int32, size int32, total int32, items []Fossil) *FossilList

NewFossilList instantiates a new FossilList 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 NewFossilListWithDefaults added in v0.0.2

func NewFossilListWithDefaults() *FossilList

NewFossilListWithDefaults instantiates a new FossilList 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 (*FossilList) GetItems added in v0.0.2

func (o *FossilList) GetItems() []Fossil

GetItems returns the Items field value

func (*FossilList) GetItemsOk added in v0.0.2

func (o *FossilList) GetItemsOk() ([]Fossil, bool)

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

func (*FossilList) GetKind added in v0.0.2

func (o *FossilList) GetKind() string

GetKind returns the Kind field value

func (*FossilList) GetKindOk added in v0.0.2

func (o *FossilList) GetKindOk() (*string, bool)

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

func (*FossilList) GetPage added in v0.0.2

func (o *FossilList) GetPage() int32

GetPage returns the Page field value

func (*FossilList) GetPageOk added in v0.0.2

func (o *FossilList) GetPageOk() (*int32, bool)

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

func (*FossilList) GetSize added in v0.0.2

func (o *FossilList) GetSize() int32

GetSize returns the Size field value

func (*FossilList) GetSizeOk added in v0.0.2

func (o *FossilList) GetSizeOk() (*int32, bool)

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

func (*FossilList) GetTotal added in v0.0.2

func (o *FossilList) GetTotal() int32

GetTotal returns the Total field value

func (*FossilList) GetTotalOk added in v0.0.2

func (o *FossilList) GetTotalOk() (*int32, bool)

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

func (FossilList) MarshalJSON added in v0.0.2

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

func (*FossilList) SetItems added in v0.0.2

func (o *FossilList) SetItems(v []Fossil)

SetItems sets field value

func (*FossilList) SetKind added in v0.0.2

func (o *FossilList) SetKind(v string)

SetKind sets field value

func (*FossilList) SetPage added in v0.0.2

func (o *FossilList) SetPage(v int32)

SetPage sets field value

func (*FossilList) SetSize added in v0.0.2

func (o *FossilList) SetSize(v int32)

SetSize sets field value

func (*FossilList) SetTotal added in v0.0.2

func (o *FossilList) SetTotal(v int32)

SetTotal sets field value

func (FossilList) ToMap added in v0.0.2

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

func (*FossilList) UnmarshalJSON added in v0.0.2

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

type FossilPatchRequest added in v0.0.2

type FossilPatchRequest struct {
	DiscoveryLocation *string `json:"discovery_location,omitempty"`
	EstimatedAge      *int32  `json:"estimated_age,omitempty"`
	FossilType        *string `json:"fossil_type,omitempty"`
	ExcavatorName     *string `json:"excavator_name,omitempty"`
}

FossilPatchRequest struct for FossilPatchRequest

func NewFossilPatchRequest added in v0.0.2

func NewFossilPatchRequest() *FossilPatchRequest

NewFossilPatchRequest instantiates a new FossilPatchRequest 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 NewFossilPatchRequestWithDefaults added in v0.0.2

func NewFossilPatchRequestWithDefaults() *FossilPatchRequest

NewFossilPatchRequestWithDefaults instantiates a new FossilPatchRequest 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 (*FossilPatchRequest) GetDiscoveryLocation added in v0.0.2

func (o *FossilPatchRequest) GetDiscoveryLocation() string

GetDiscoveryLocation returns the DiscoveryLocation field value if set, zero value otherwise.

func (*FossilPatchRequest) GetDiscoveryLocationOk added in v0.0.2

func (o *FossilPatchRequest) GetDiscoveryLocationOk() (*string, bool)

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

func (*FossilPatchRequest) GetEstimatedAge added in v0.0.2

func (o *FossilPatchRequest) GetEstimatedAge() int32

GetEstimatedAge returns the EstimatedAge field value if set, zero value otherwise.

func (*FossilPatchRequest) GetEstimatedAgeOk added in v0.0.2

func (o *FossilPatchRequest) GetEstimatedAgeOk() (*int32, bool)

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

func (*FossilPatchRequest) GetExcavatorName added in v0.0.2

func (o *FossilPatchRequest) GetExcavatorName() string

GetExcavatorName returns the ExcavatorName field value if set, zero value otherwise.

func (*FossilPatchRequest) GetExcavatorNameOk added in v0.0.2

func (o *FossilPatchRequest) GetExcavatorNameOk() (*string, bool)

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

func (*FossilPatchRequest) GetFossilType added in v0.0.2

func (o *FossilPatchRequest) GetFossilType() string

GetFossilType returns the FossilType field value if set, zero value otherwise.

func (*FossilPatchRequest) GetFossilTypeOk added in v0.0.2

func (o *FossilPatchRequest) GetFossilTypeOk() (*string, bool)

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

func (*FossilPatchRequest) HasDiscoveryLocation added in v0.0.2

func (o *FossilPatchRequest) HasDiscoveryLocation() bool

HasDiscoveryLocation returns a boolean if a field has been set.

func (*FossilPatchRequest) HasEstimatedAge added in v0.0.2

func (o *FossilPatchRequest) HasEstimatedAge() bool

HasEstimatedAge returns a boolean if a field has been set.

func (*FossilPatchRequest) HasExcavatorName added in v0.0.2

func (o *FossilPatchRequest) HasExcavatorName() bool

HasExcavatorName returns a boolean if a field has been set.

func (*FossilPatchRequest) HasFossilType added in v0.0.2

func (o *FossilPatchRequest) HasFossilType() bool

HasFossilType returns a boolean if a field has been set.

func (FossilPatchRequest) MarshalJSON added in v0.0.2

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

func (*FossilPatchRequest) SetDiscoveryLocation added in v0.0.2

func (o *FossilPatchRequest) SetDiscoveryLocation(v string)

SetDiscoveryLocation gets a reference to the given string and assigns it to the DiscoveryLocation field.

func (*FossilPatchRequest) SetEstimatedAge added in v0.0.2

func (o *FossilPatchRequest) SetEstimatedAge(v int32)

SetEstimatedAge gets a reference to the given int32 and assigns it to the EstimatedAge field.

func (*FossilPatchRequest) SetExcavatorName added in v0.0.2

func (o *FossilPatchRequest) SetExcavatorName(v string)

SetExcavatorName gets a reference to the given string and assigns it to the ExcavatorName field.

func (*FossilPatchRequest) SetFossilType added in v0.0.2

func (o *FossilPatchRequest) SetFossilType(v string)

SetFossilType gets a reference to the given string and assigns it to the FossilType field.

func (FossilPatchRequest) ToMap added in v0.0.2

func (o FossilPatchRequest) 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 List

type List struct {
	Kind  string `json:"kind"`
	Page  int32  `json:"page"`
	Size  int32  `json:"size"`
	Total int32  `json:"total"`
}

List struct for List

func NewList

func NewList(kind string, page int32, size int32, total int32) *List

NewList instantiates a new List 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 NewListWithDefaults

func NewListWithDefaults() *List

NewListWithDefaults instantiates a new List 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 (*List) GetKind

func (o *List) GetKind() string

GetKind returns the Kind field value

func (*List) GetKindOk

func (o *List) GetKindOk() (*string, bool)

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

func (*List) GetPage

func (o *List) GetPage() int32

GetPage returns the Page field value

func (*List) GetPageOk

func (o *List) GetPageOk() (*int32, bool)

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

func (*List) GetSize

func (o *List) GetSize() int32

GetSize returns the Size field value

func (*List) GetSizeOk

func (o *List) GetSizeOk() (*int32, bool)

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

func (*List) GetTotal

func (o *List) GetTotal() int32

GetTotal returns the Total field value

func (*List) GetTotalOk

func (o *List) GetTotalOk() (*int32, bool)

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

func (List) MarshalJSON

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

func (*List) SetKind

func (o *List) SetKind(v string)

SetKind sets field value

func (*List) SetPage

func (o *List) SetPage(v int32)

SetPage sets field value

func (*List) SetSize

func (o *List) SetSize(v int32)

SetSize sets field value

func (*List) SetTotal

func (o *List) SetTotal(v int32)

SetTotal sets field value

func (List) ToMap

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

func (*List) UnmarshalJSON

func (o *List) UnmarshalJSON(data []byte) (err 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 NullableDinosaur

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

func NewNullableDinosaur

func NewNullableDinosaur(val *Dinosaur) *NullableDinosaur

func (NullableDinosaur) Get

func (v NullableDinosaur) Get() *Dinosaur

func (NullableDinosaur) IsSet

func (v NullableDinosaur) IsSet() bool

func (NullableDinosaur) MarshalJSON

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

func (*NullableDinosaur) Set

func (v *NullableDinosaur) Set(val *Dinosaur)

func (*NullableDinosaur) UnmarshalJSON

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

func (*NullableDinosaur) Unset

func (v *NullableDinosaur) Unset()

type NullableDinosaurList

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

func NewNullableDinosaurList

func NewNullableDinosaurList(val *DinosaurList) *NullableDinosaurList

func (NullableDinosaurList) Get

func (NullableDinosaurList) IsSet

func (v NullableDinosaurList) IsSet() bool

func (NullableDinosaurList) MarshalJSON

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

func (*NullableDinosaurList) Set

func (v *NullableDinosaurList) Set(val *DinosaurList)

func (*NullableDinosaurList) UnmarshalJSON

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

func (*NullableDinosaurList) Unset

func (v *NullableDinosaurList) Unset()

type NullableDinosaurPatchRequest

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

func NewNullableDinosaurPatchRequest

func NewNullableDinosaurPatchRequest(val *DinosaurPatchRequest) *NullableDinosaurPatchRequest

func (NullableDinosaurPatchRequest) Get

func (NullableDinosaurPatchRequest) IsSet

func (NullableDinosaurPatchRequest) MarshalJSON

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

func (*NullableDinosaurPatchRequest) Set

func (*NullableDinosaurPatchRequest) UnmarshalJSON

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

func (*NullableDinosaurPatchRequest) Unset

func (v *NullableDinosaurPatchRequest) 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 NullableFossil added in v0.0.2

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

func NewNullableFossil added in v0.0.2

func NewNullableFossil(val *Fossil) *NullableFossil

func (NullableFossil) Get added in v0.0.2

func (v NullableFossil) Get() *Fossil

func (NullableFossil) IsSet added in v0.0.2

func (v NullableFossil) IsSet() bool

func (NullableFossil) MarshalJSON added in v0.0.2

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

func (*NullableFossil) Set added in v0.0.2

func (v *NullableFossil) Set(val *Fossil)

func (*NullableFossil) UnmarshalJSON added in v0.0.2

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

func (*NullableFossil) Unset added in v0.0.2

func (v *NullableFossil) Unset()

type NullableFossilList added in v0.0.2

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

func NewNullableFossilList added in v0.0.2

func NewNullableFossilList(val *FossilList) *NullableFossilList

func (NullableFossilList) Get added in v0.0.2

func (v NullableFossilList) Get() *FossilList

func (NullableFossilList) IsSet added in v0.0.2

func (v NullableFossilList) IsSet() bool

func (NullableFossilList) MarshalJSON added in v0.0.2

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

func (*NullableFossilList) Set added in v0.0.2

func (v *NullableFossilList) Set(val *FossilList)

func (*NullableFossilList) UnmarshalJSON added in v0.0.2

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

func (*NullableFossilList) Unset added in v0.0.2

func (v *NullableFossilList) Unset()

type NullableFossilPatchRequest added in v0.0.2

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

func NewNullableFossilPatchRequest added in v0.0.2

func NewNullableFossilPatchRequest(val *FossilPatchRequest) *NullableFossilPatchRequest

func (NullableFossilPatchRequest) Get added in v0.0.2

func (NullableFossilPatchRequest) IsSet added in v0.0.2

func (v NullableFossilPatchRequest) IsSet() bool

func (NullableFossilPatchRequest) MarshalJSON added in v0.0.2

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

func (*NullableFossilPatchRequest) Set added in v0.0.2

func (*NullableFossilPatchRequest) UnmarshalJSON added in v0.0.2

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

func (*NullableFossilPatchRequest) Unset added in v0.0.2

func (v *NullableFossilPatchRequest) 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 NullableList

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

func NewNullableList

func NewNullableList(val *List) *NullableList

func (NullableList) Get

func (v NullableList) Get() *List

func (NullableList) IsSet

func (v NullableList) IsSet() bool

func (NullableList) MarshalJSON

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

func (*NullableList) Set

func (v *NullableList) Set(val *List)

func (*NullableList) UnmarshalJSON

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

func (*NullableList) Unset

func (v *NullableList) Unset()

type NullableObjectReference

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

func NewNullableObjectReference

func NewNullableObjectReference(val *ObjectReference) *NullableObjectReference

func (NullableObjectReference) Get

func (NullableObjectReference) IsSet

func (v NullableObjectReference) IsSet() bool

func (NullableObjectReference) MarshalJSON

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

func (*NullableObjectReference) Set

func (*NullableObjectReference) UnmarshalJSON

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

func (*NullableObjectReference) Unset

func (v *NullableObjectReference) Unset()

type NullableScientist added in v0.0.5

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

func NewNullableScientist added in v0.0.5

func NewNullableScientist(val *Scientist) *NullableScientist

func (NullableScientist) Get added in v0.0.5

func (v NullableScientist) Get() *Scientist

func (NullableScientist) IsSet added in v0.0.5

func (v NullableScientist) IsSet() bool

func (NullableScientist) MarshalJSON added in v0.0.5

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

func (*NullableScientist) Set added in v0.0.5

func (v *NullableScientist) Set(val *Scientist)

func (*NullableScientist) UnmarshalJSON added in v0.0.5

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

func (*NullableScientist) Unset added in v0.0.5

func (v *NullableScientist) Unset()

type NullableScientistList added in v0.0.5

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

func NewNullableScientistList added in v0.0.5

func NewNullableScientistList(val *ScientistList) *NullableScientistList

func (NullableScientistList) Get added in v0.0.5

func (NullableScientistList) IsSet added in v0.0.5

func (v NullableScientistList) IsSet() bool

func (NullableScientistList) MarshalJSON added in v0.0.5

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

func (*NullableScientistList) Set added in v0.0.5

func (v *NullableScientistList) Set(val *ScientistList)

func (*NullableScientistList) UnmarshalJSON added in v0.0.5

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

func (*NullableScientistList) Unset added in v0.0.5

func (v *NullableScientistList) Unset()

type NullableScientistPatchRequest added in v0.0.5

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

func NewNullableScientistPatchRequest added in v0.0.5

func NewNullableScientistPatchRequest(val *ScientistPatchRequest) *NullableScientistPatchRequest

func (NullableScientistPatchRequest) Get added in v0.0.5

func (NullableScientistPatchRequest) IsSet added in v0.0.5

func (NullableScientistPatchRequest) MarshalJSON added in v0.0.5

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

func (*NullableScientistPatchRequest) Set added in v0.0.5

func (*NullableScientistPatchRequest) UnmarshalJSON added in v0.0.5

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

func (*NullableScientistPatchRequest) Unset added in v0.0.5

func (v *NullableScientistPatchRequest) 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 ObjectReference

type ObjectReference struct {
	Id        *string    `json:"id,omitempty"`
	Kind      *string    `json:"kind,omitempty"`
	Href      *string    `json:"href,omitempty"`
	CreatedAt *time.Time `json:"created_at,omitempty"`
	UpdatedAt *time.Time `json:"updated_at,omitempty"`
}

ObjectReference struct for ObjectReference

func NewObjectReference

func NewObjectReference() *ObjectReference

NewObjectReference instantiates a new ObjectReference 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 NewObjectReferenceWithDefaults

func NewObjectReferenceWithDefaults() *ObjectReference

NewObjectReferenceWithDefaults instantiates a new ObjectReference 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 (*ObjectReference) GetCreatedAt

func (o *ObjectReference) GetCreatedAt() time.Time

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

func (*ObjectReference) GetCreatedAtOk

func (o *ObjectReference) GetCreatedAtOk() (*time.Time, bool)

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

func (*ObjectReference) GetHref

func (o *ObjectReference) GetHref() string

GetHref returns the Href field value if set, zero value otherwise.

func (*ObjectReference) GetHrefOk

func (o *ObjectReference) GetHrefOk() (*string, bool)

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

func (*ObjectReference) GetId

func (o *ObjectReference) GetId() string

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

func (*ObjectReference) GetIdOk

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

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

func (*ObjectReference) GetKind

func (o *ObjectReference) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*ObjectReference) GetKindOk

func (o *ObjectReference) GetKindOk() (*string, bool)

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

func (*ObjectReference) GetUpdatedAt

func (o *ObjectReference) GetUpdatedAt() time.Time

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

func (*ObjectReference) GetUpdatedAtOk

func (o *ObjectReference) GetUpdatedAtOk() (*time.Time, bool)

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

func (*ObjectReference) HasCreatedAt

func (o *ObjectReference) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ObjectReference) HasHref

func (o *ObjectReference) HasHref() bool

HasHref returns a boolean if a field has been set.

func (*ObjectReference) HasId

func (o *ObjectReference) HasId() bool

HasId returns a boolean if a field has been set.

func (*ObjectReference) HasKind

func (o *ObjectReference) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*ObjectReference) HasUpdatedAt

func (o *ObjectReference) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (ObjectReference) MarshalJSON

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

func (*ObjectReference) SetCreatedAt

func (o *ObjectReference) SetCreatedAt(v time.Time)

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

func (*ObjectReference) SetHref

func (o *ObjectReference) SetHref(v string)

SetHref gets a reference to the given string and assigns it to the Href field.

func (*ObjectReference) SetId

func (o *ObjectReference) SetId(v string)

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

func (*ObjectReference) SetKind

func (o *ObjectReference) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*ObjectReference) SetUpdatedAt

func (o *ObjectReference) SetUpdatedAt(v time.Time)

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

func (ObjectReference) ToMap

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

type Scientist added in v0.0.5

type Scientist struct {
	Id        *string    `json:"id,omitempty"`
	Kind      *string    `json:"kind,omitempty"`
	Href      *string    `json:"href,omitempty"`
	CreatedAt *time.Time `json:"created_at,omitempty"`
	UpdatedAt *time.Time `json:"updated_at,omitempty"`
	Name      string     `json:"name"`
	Field     string     `json:"field"`
}

Scientist struct for Scientist

func NewScientist added in v0.0.5

func NewScientist(name string, field string) *Scientist

NewScientist instantiates a new Scientist 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 NewScientistWithDefaults added in v0.0.5

func NewScientistWithDefaults() *Scientist

NewScientistWithDefaults instantiates a new Scientist 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 (*Scientist) GetCreatedAt added in v0.0.5

func (o *Scientist) GetCreatedAt() time.Time

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

func (*Scientist) GetCreatedAtOk added in v0.0.5

func (o *Scientist) GetCreatedAtOk() (*time.Time, bool)

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

func (*Scientist) GetField added in v0.0.5

func (o *Scientist) GetField() string

GetField returns the Field field value

func (*Scientist) GetFieldOk added in v0.0.5

func (o *Scientist) GetFieldOk() (*string, bool)

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

func (*Scientist) GetHref added in v0.0.5

func (o *Scientist) GetHref() string

GetHref returns the Href field value if set, zero value otherwise.

func (*Scientist) GetHrefOk added in v0.0.5

func (o *Scientist) GetHrefOk() (*string, bool)

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

func (*Scientist) GetId added in v0.0.5

func (o *Scientist) GetId() string

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

func (*Scientist) GetIdOk added in v0.0.5

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

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

func (*Scientist) GetKind added in v0.0.5

func (o *Scientist) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*Scientist) GetKindOk added in v0.0.5

func (o *Scientist) GetKindOk() (*string, bool)

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

func (*Scientist) GetName added in v0.0.5

func (o *Scientist) GetName() string

GetName returns the Name field value

func (*Scientist) GetNameOk added in v0.0.5

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

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

func (*Scientist) GetUpdatedAt added in v0.0.5

func (o *Scientist) GetUpdatedAt() time.Time

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

func (*Scientist) GetUpdatedAtOk added in v0.0.5

func (o *Scientist) GetUpdatedAtOk() (*time.Time, bool)

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

func (*Scientist) HasCreatedAt added in v0.0.5

func (o *Scientist) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Scientist) HasHref added in v0.0.5

func (o *Scientist) HasHref() bool

HasHref returns a boolean if a field has been set.

func (*Scientist) HasId added in v0.0.5

func (o *Scientist) HasId() bool

HasId returns a boolean if a field has been set.

func (*Scientist) HasKind added in v0.0.5

func (o *Scientist) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*Scientist) HasUpdatedAt added in v0.0.5

func (o *Scientist) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (Scientist) MarshalJSON added in v0.0.5

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

func (*Scientist) SetCreatedAt added in v0.0.5

func (o *Scientist) SetCreatedAt(v time.Time)

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

func (*Scientist) SetField added in v0.0.5

func (o *Scientist) SetField(v string)

SetField sets field value

func (*Scientist) SetHref added in v0.0.5

func (o *Scientist) SetHref(v string)

SetHref gets a reference to the given string and assigns it to the Href field.

func (*Scientist) SetId added in v0.0.5

func (o *Scientist) SetId(v string)

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

func (*Scientist) SetKind added in v0.0.5

func (o *Scientist) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*Scientist) SetName added in v0.0.5

func (o *Scientist) SetName(v string)

SetName sets field value

func (*Scientist) SetUpdatedAt added in v0.0.5

func (o *Scientist) SetUpdatedAt(v time.Time)

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

func (Scientist) ToMap added in v0.0.5

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

func (*Scientist) UnmarshalJSON added in v0.0.5

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

type ScientistList added in v0.0.5

type ScientistList struct {
	Kind  string      `json:"kind"`
	Page  int32       `json:"page"`
	Size  int32       `json:"size"`
	Total int32       `json:"total"`
	Items []Scientist `json:"items"`
}

ScientistList struct for ScientistList

func NewScientistList added in v0.0.5

func NewScientistList(kind string, page int32, size int32, total int32, items []Scientist) *ScientistList

NewScientistList instantiates a new ScientistList 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 NewScientistListWithDefaults added in v0.0.5

func NewScientistListWithDefaults() *ScientistList

NewScientistListWithDefaults instantiates a new ScientistList 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 (*ScientistList) GetItems added in v0.0.5

func (o *ScientistList) GetItems() []Scientist

GetItems returns the Items field value

func (*ScientistList) GetItemsOk added in v0.0.5

func (o *ScientistList) GetItemsOk() ([]Scientist, bool)

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

func (*ScientistList) GetKind added in v0.0.5

func (o *ScientistList) GetKind() string

GetKind returns the Kind field value

func (*ScientistList) GetKindOk added in v0.0.5

func (o *ScientistList) GetKindOk() (*string, bool)

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

func (*ScientistList) GetPage added in v0.0.5

func (o *ScientistList) GetPage() int32

GetPage returns the Page field value

func (*ScientistList) GetPageOk added in v0.0.5

func (o *ScientistList) GetPageOk() (*int32, bool)

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

func (*ScientistList) GetSize added in v0.0.5

func (o *ScientistList) GetSize() int32

GetSize returns the Size field value

func (*ScientistList) GetSizeOk added in v0.0.5

func (o *ScientistList) GetSizeOk() (*int32, bool)

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

func (*ScientistList) GetTotal added in v0.0.5

func (o *ScientistList) GetTotal() int32

GetTotal returns the Total field value

func (*ScientistList) GetTotalOk added in v0.0.5

func (o *ScientistList) GetTotalOk() (*int32, bool)

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

func (ScientistList) MarshalJSON added in v0.0.5

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

func (*ScientistList) SetItems added in v0.0.5

func (o *ScientistList) SetItems(v []Scientist)

SetItems sets field value

func (*ScientistList) SetKind added in v0.0.5

func (o *ScientistList) SetKind(v string)

SetKind sets field value

func (*ScientistList) SetPage added in v0.0.5

func (o *ScientistList) SetPage(v int32)

SetPage sets field value

func (*ScientistList) SetSize added in v0.0.5

func (o *ScientistList) SetSize(v int32)

SetSize sets field value

func (*ScientistList) SetTotal added in v0.0.5

func (o *ScientistList) SetTotal(v int32)

SetTotal sets field value

func (ScientistList) ToMap added in v0.0.5

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

func (*ScientistList) UnmarshalJSON added in v0.0.5

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

type ScientistPatchRequest added in v0.0.5

type ScientistPatchRequest struct {
	Name  *string `json:"name,omitempty"`
	Field *string `json:"field,omitempty"`
}

ScientistPatchRequest struct for ScientistPatchRequest

func NewScientistPatchRequest added in v0.0.5

func NewScientistPatchRequest() *ScientistPatchRequest

NewScientistPatchRequest instantiates a new ScientistPatchRequest 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 NewScientistPatchRequestWithDefaults added in v0.0.5

func NewScientistPatchRequestWithDefaults() *ScientistPatchRequest

NewScientistPatchRequestWithDefaults instantiates a new ScientistPatchRequest 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 (*ScientistPatchRequest) GetField added in v0.0.5

func (o *ScientistPatchRequest) GetField() string

GetField returns the Field field value if set, zero value otherwise.

func (*ScientistPatchRequest) GetFieldOk added in v0.0.5

func (o *ScientistPatchRequest) GetFieldOk() (*string, bool)

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

func (*ScientistPatchRequest) GetName added in v0.0.5

func (o *ScientistPatchRequest) GetName() string

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

func (*ScientistPatchRequest) GetNameOk added in v0.0.5

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

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

func (*ScientistPatchRequest) HasField added in v0.0.5

func (o *ScientistPatchRequest) HasField() bool

HasField returns a boolean if a field has been set.

func (*ScientistPatchRequest) HasName added in v0.0.5

func (o *ScientistPatchRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (ScientistPatchRequest) MarshalJSON added in v0.0.5

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

func (*ScientistPatchRequest) SetField added in v0.0.5

func (o *ScientistPatchRequest) SetField(v string)

SetField gets a reference to the given string and assigns it to the Field field.

func (*ScientistPatchRequest) SetName added in v0.0.5

func (o *ScientistPatchRequest) SetName(v string)

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

func (ScientistPatchRequest) ToMap added in v0.0.5

func (o ScientistPatchRequest) ToMap() (map[string]interface{}, 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

Jump to

Keyboard shortcuts

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